-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtokenizations.ts
412 lines (364 loc) · 14 KB
/
tokenizations.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
import { APIResource } from '../resource';
import { isRequestOptions } from '../core';
import * as Core from '../core';
import { CursorPage, type CursorPageParams } from '../pagination';
export class Tokenizations extends APIResource {
/**
* Get tokenization
*/
retrieve(
tokenizationToken: string,
options?: Core.RequestOptions,
): Core.APIPromise<TokenizationRetrieveResponse> {
return this._client.get(`/v1/tokenizations/${tokenizationToken}`, options);
}
/**
* List card tokenizations
*/
list(
query?: TokenizationListParams,
options?: Core.RequestOptions,
): Core.PagePromise<TokenizationsCursorPage, Tokenization>;
list(options?: Core.RequestOptions): Core.PagePromise<TokenizationsCursorPage, Tokenization>;
list(
query: TokenizationListParams | Core.RequestOptions = {},
options?: Core.RequestOptions,
): Core.PagePromise<TokenizationsCursorPage, Tokenization> {
if (isRequestOptions(query)) {
return this.list({}, query);
}
return this._client.getAPIList('/v1/tokenizations', TokenizationsCursorPage, { query, ...options });
}
/**
* This endpoint is used to ask the card network to activate a tokenization. A
* successful response indicates that the request was successfully delivered to the
* card network. When the card network activates the tokenization, the state will
* be updated and a tokenization.updated event will be sent. The endpoint may only
* be used on digital wallet tokenizations with status `INACTIVE`,
* `PENDING_ACTIVATION`, or `PENDING_2FA`. This will put the tokenization in an
* active state, and transactions will be allowed. Reach out at
* [lithic.com/contact](https://lithic.com/contact) for more information.
*/
activate(tokenizationToken: string, options?: Core.RequestOptions): Core.APIPromise<void> {
return this._client.post(`/v1/tokenizations/${tokenizationToken}/activate`, options);
}
/**
* This endpoint is used to ask the card network to deactivate a tokenization. A
* successful response indicates that the request was successfully delivered to the
* card network. When the card network deactivates the tokenization, the state will
* be updated and a tokenization.updated event will be sent. Authorizations
* attempted with a deactivated tokenization will be blocked and will not be
* forwarded to Lithic from the network. Deactivating the token is a permanent
* operation. If the target is a digital wallet tokenization, it will be removed
* from its device. Reach out at [lithic.com/contact](https://lithic.com/contact)
* for more information.
*/
deactivate(tokenizationToken: string, options?: Core.RequestOptions): Core.APIPromise<void> {
return this._client.post(`/v1/tokenizations/${tokenizationToken}/deactivate`, options);
}
/**
* This endpoint is used to ask the card network to pause a tokenization. A
* successful response indicates that the request was successfully delivered to the
* card network. When the card network pauses the tokenization, the state will be
* updated and a tokenization.updated event will be sent. The endpoint may only be
* used on tokenizations with status `ACTIVE`. A paused token will prevent
* merchants from sending authorizations, and is a temporary status that can be
* changed. Reach out at [lithic.com/contact](https://lithic.com/contact) for more
* information.
*/
pause(tokenizationToken: string, options?: Core.RequestOptions): Core.APIPromise<void> {
return this._client.post(`/v1/tokenizations/${tokenizationToken}/pause`, options);
}
/**
* This endpoint is used to ask the card network to send another activation code to
* a cardholder that has already tried tokenizing a card. A successful response
* indicates that the request was successfully delivered to the card network. The
* endpoint may only be used on Mastercard digital wallet tokenizations with status
* `INACTIVE`, `PENDING_ACTIVATION`, or `PENDING_2FA`. The network will send a new
* activation code to the one of the contact methods provided in the initial
* tokenization flow. If a user fails to enter the code correctly 3 times, the
* contact method will not be eligible for resending the activation code, and the
* cardholder must restart the provision process. Reach out at
* [lithic.com/contact](https://lithic.com/contact) for more information.
*/
resendActivationCode(
tokenizationToken: string,
body?: TokenizationResendActivationCodeParams,
options?: Core.RequestOptions,
): Core.APIPromise<void>;
resendActivationCode(tokenizationToken: string, options?: Core.RequestOptions): Core.APIPromise<void>;
resendActivationCode(
tokenizationToken: string,
body: TokenizationResendActivationCodeParams | Core.RequestOptions = {},
options?: Core.RequestOptions,
): Core.APIPromise<void> {
if (isRequestOptions(body)) {
return this.resendActivationCode(tokenizationToken, {}, body);
}
return this._client.post(`/v1/tokenizations/${tokenizationToken}/resend_activation_code`, {
body,
...options,
});
}
/**
* This endpoint is used to simulate a card's tokenization in the Digital Wallet
* and merchant tokenization ecosystem.
*/
simulate(
body: TokenizationSimulateParams,
options?: Core.RequestOptions,
): Core.APIPromise<TokenizationSimulateResponse> {
return this._client.post('/v1/simulate/tokenizations', { body, ...options });
}
/**
* This endpoint is used to ask the card network to unpause a tokenization. A
* successful response indicates that the request was successfully delivered to the
* card network. When the card network unpauses the tokenization, the state will be
* updated and a tokenization.updated event will be sent. The endpoint may only be
* used on tokenizations with status `PAUSED`. This will put the tokenization in an
* active state, and transactions may resume. Reach out at
* [lithic.com/contact](https://lithic.com/contact) for more information.
*/
unpause(tokenizationToken: string, options?: Core.RequestOptions): Core.APIPromise<void> {
return this._client.post(`/v1/tokenizations/${tokenizationToken}/unpause`, options);
}
/**
* This endpoint is used update the digital card art for a digital wallet
* tokenization. A successful response indicates that the card network has updated
* the tokenization's art, and the tokenization's `digital_cart_art_token` field
* was updated. The endpoint may not be used on tokenizations with status
* `DEACTIVATED`. Note that this updates the art for one specific tokenization, not
* all tokenizations for a card. New tokenizations for a card will be created with
* the art referenced in the card object's `digital_card_art_token` field. Reach
* out at [lithic.com/contact](https://lithic.com/contact) for more information.
*/
updateDigitalCardArt(
tokenizationToken: string,
body?: TokenizationUpdateDigitalCardArtParams,
options?: Core.RequestOptions,
): Core.APIPromise<TokenizationUpdateDigitalCardArtResponse>;
updateDigitalCardArt(
tokenizationToken: string,
options?: Core.RequestOptions,
): Core.APIPromise<TokenizationUpdateDigitalCardArtResponse>;
updateDigitalCardArt(
tokenizationToken: string,
body: TokenizationUpdateDigitalCardArtParams | Core.RequestOptions = {},
options?: Core.RequestOptions,
): Core.APIPromise<TokenizationUpdateDigitalCardArtResponse> {
if (isRequestOptions(body)) {
return this.updateDigitalCardArt(tokenizationToken, {}, body);
}
return this._client.post(`/v1/tokenizations/${tokenizationToken}/update_digital_card_art`, {
body,
...options,
});
}
}
export class TokenizationsCursorPage extends CursorPage<Tokenization> {}
export interface Tokenization {
/**
* Globally unique identifier for a Tokenization
*/
token: string;
/**
* The account token associated with the card being tokenized.
*/
account_token: string;
/**
* The card token associated with the card being tokenized.
*/
card_token: string;
/**
* Date and time when the tokenization first occurred. UTC time zone.
*/
created_at: string;
/**
* The dynamic pan assigned to the token by the network.
*/
dpan: string | null;
/**
* The status of the tokenization request
*/
status: 'ACTIVE' | 'DEACTIVATED' | 'INACTIVE' | 'PAUSED' | 'PENDING_2FA' | 'PENDING_ACTIVATION' | 'UNKNOWN';
/**
* The entity that requested the tokenization. Represents a Digital Wallet or
* merchant.
*/
token_requestor_name:
| 'AMAZON_ONE'
| 'ANDROID_PAY'
| 'APPLE_PAY'
| 'FACEBOOK'
| 'FITBIT_PAY'
| 'GARMIN_PAY'
| 'MICROSOFT_PAY'
| 'NETFLIX'
| 'SAMSUNG_PAY'
| 'UNKNOWN'
| 'VISA_CHECKOUT';
/**
* The network's unique reference for the tokenization.
*/
token_unique_reference: string;
/**
* The channel through which the tokenization was made.
*/
tokenization_channel: 'DIGITAL_WALLET' | 'MERCHANT';
/**
* Latest date and time when the tokenization was updated. UTC time zone.
*/
updated_at: string;
/**
* Specifies the digital card art displayed in the user’s digital wallet after
* tokenization. This will be null if the tokenization was created without an
* associated digital card art. See
* [Flexible Card Art Guide](https://docs.lithic.com/docs/about-digital-wallets#flexible-card-art).
*/
digital_card_art_token?: string;
/**
* A list of events related to the tokenization.
*/
events?: Array<Tokenization.Event>;
/**
* The network's unique reference for the card that is tokenized.
*/
payment_account_reference_id?: string | null;
}
export namespace Tokenization {
export interface Event {
/**
* Globally unique identifier for a Tokenization Event
*/
token?: string;
/**
* Date and time when the tokenization event first occurred. UTC time zone.
*/
created_at?: string;
/**
* Enum representing the result of the tokenization event
*/
result?:
| 'APPROVED'
| 'DECLINED'
| 'NOTIFICATION_DELIVERED'
| 'REQUIRE_ADDITIONAL_AUTHENTICATION'
| 'TOKEN_ACTIVATED'
| 'TOKEN_CREATED'
| 'TOKEN_DEACTIVATED'
| 'TOKEN_INACTIVE'
| 'TOKEN_STATE_UNKNOWN'
| 'TOKEN_SUSPENDED'
| 'TOKEN_UPDATED';
/**
* Enum representing the type of tokenization event that occurred
*/
type?:
| 'TOKENIZATION_2FA'
| 'TOKENIZATION_AUTHORIZATION'
| 'TOKENIZATION_DECISIONING'
| 'TOKENIZATION_ELIGIBILITY_CHECK'
| 'TOKENIZATION_UPDATED';
}
}
export interface TokenizationRetrieveResponse {
data?: Tokenization;
}
export interface TokenizationSimulateResponse {
data?: Array<Tokenization>;
}
export interface TokenizationUpdateDigitalCardArtResponse {
data?: Tokenization;
}
export interface TokenizationListParams extends CursorPageParams {
/**
* Filters for tokenizations associated with a specific account.
*/
account_token?: string;
/**
* Filter for tokenizations created after this date.
*/
begin?: string;
/**
* Filters for tokenizations associated with a specific card.
*/
card_token?: string;
/**
* Filter for tokenizations created before this date.
*/
end?: string;
/**
* Filter for tokenizations by tokenization channel. If this is not specified, only
* DIGITAL_WALLET tokenizations will be returned.
*/
tokenization_channel?: 'DIGITAL_WALLET' | 'MERCHANT' | 'ALL';
}
export interface TokenizationResendActivationCodeParams {
/**
* The communication method that the user has selected to use to receive the
* authentication code. Supported Values: Sms = "TEXT_TO_CARDHOLDER_NUMBER". Email
* = "EMAIL_TO_CARDHOLDER_ADDRESS"
*/
activation_method_type?: 'EMAIL_TO_CARDHOLDER_ADDRESS' | 'TEXT_TO_CARDHOLDER_NUMBER';
}
export interface TokenizationSimulateParams {
/**
* The three digit cvv for the card.
*/
cvv: string;
/**
* The expiration date of the card in 'MM/YY' format.
*/
expiration_date: string;
/**
* The sixteen digit card number.
*/
pan: string;
/**
* The source of the tokenization request.
*/
tokenization_source: 'APPLE_PAY' | 'GOOGLE' | 'SAMSUNG_PAY' | 'MERCHANT';
/**
* The account score (1-5) that represents how the Digital Wallet's view on how
* reputable an end user's account is.
*/
account_score?: number;
/**
* The device score (1-5) that represents how the Digital Wallet's view on how
* reputable an end user's device is.
*/
device_score?: number;
/**
* Optional field to specify the token requestor name for a merchant token
* simulation. Ignored when tokenization_source is not MERCHANT.
*/
entity?: string;
/**
* The decision that the Digital Wallet's recommend
*/
wallet_recommended_decision?: 'APPROVED' | 'DECLINED' | 'REQUIRE_ADDITIONAL_AUTHENTICATION';
}
export interface TokenizationUpdateDigitalCardArtParams {
/**
* Specifies the digital card art to be displayed in the user’s digital wallet for
* a tokenization. This artwork must be approved by the network and configured by
* Lithic to use. See
* [Flexible Card Art Guide](https://docs.lithic.com/docs/about-digital-wallets#flexible-card-art).
*/
digital_card_art_token?: string;
}
Tokenizations.TokenizationsCursorPage = TokenizationsCursorPage;
export declare namespace Tokenizations {
export {
type Tokenization as Tokenization,
type TokenizationRetrieveResponse as TokenizationRetrieveResponse,
type TokenizationSimulateResponse as TokenizationSimulateResponse,
type TokenizationUpdateDigitalCardArtResponse as TokenizationUpdateDigitalCardArtResponse,
TokenizationsCursorPage as TokenizationsCursorPage,
type TokenizationListParams as TokenizationListParams,
type TokenizationResendActivationCodeParams as TokenizationResendActivationCodeParams,
type TokenizationSimulateParams as TokenizationSimulateParams,
type TokenizationUpdateDigitalCardArtParams as TokenizationUpdateDigitalCardArtParams,
};
}