-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathshared.ts
429 lines (394 loc) · 7.72 KB
/
shared.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
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
// File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
/**
* Type of account financial account
*/
export type AccountFinancialAccountType = 'ISSUING' | 'OPERATING';
export interface Address {
/**
* Valid deliverable address (no PO boxes).
*/
address1: string;
/**
* Name of city.
*/
city: string;
/**
* Valid country code, entered in uppercase ISO 3166-1 alpha-3 three-character
* format. Only USA is currently supported for all workflows. KYC_EXEMPT supports
* CAN additionally.
*/
country: string;
/**
* Valid postal code. USA postal codes (ZIP codes) are supported, entered as a
* five-digit postal code or nine-digit postal code (ZIP+4) using the format
* 12345-1234. KYC_EXEMPT supports Canadian postal codes.
*/
postal_code: string;
/**
* Valid state code. USA state codes are supported, entered in uppercase ISO 3166-2
* two-character format. KYC_EXEMPT supports Canadian province codes.
*/
state: string;
/**
* Unit or apartment number (if applicable).
*/
address2?: string;
}
export interface Carrier {
/**
* QR code url to display on the card carrier
*/
qr_code_url?: string;
}
/**
* ISO 4217 currency. Its enumerants are ISO 4217 currencies except for some
* special currencies like `XXX`. Enumerants names are lowercase currency code e.g.
* `EUR`, `USD`.
*/
export type Currency =
| 'AED'
| 'AFN'
| 'ALL'
| 'AMD'
| 'ANG'
| 'AOA'
| 'ARS'
| 'AUD'
| 'AWG'
| 'AZN'
| 'BAM'
| 'BBD'
| 'BDT'
| 'BGN'
| 'BHD'
| 'BIF'
| 'BMD'
| 'BND'
| 'BOB'
| 'BOV'
| 'BRL'
| 'BSD'
| 'BTN'
| 'BWP'
| 'BYN'
| 'BZD'
| 'CAD'
| 'CDF'
| 'CHE'
| 'CHF'
| 'CHW'
| 'CLF'
| 'CLP'
| 'CNY'
| 'COP'
| 'COU'
| 'CRC'
| 'CUC'
| 'CUP'
| 'CVE'
| 'CZK'
| 'DJF'
| 'DKK'
| 'DOP'
| 'DZD'
| 'EGP'
| 'ERN'
| 'ETB'
| 'EUR'
| 'FJD'
| 'FKP'
| 'GBP'
| 'GEL'
| 'GHS'
| 'GIP'
| 'GMD'
| 'GNF'
| 'GTQ'
| 'GYD'
| 'HKD'
| 'HNL'
| 'HRK'
| 'HTG'
| 'HUF'
| 'IDR'
| 'ILS'
| 'INR'
| 'IQD'
| 'IRR'
| 'ISK'
| 'JMD'
| 'JOD'
| 'JPY'
| 'KES'
| 'KGS'
| 'KHR'
| 'KMF'
| 'KPW'
| 'KRW'
| 'KWD'
| 'KYD'
| 'KZT'
| 'LAK'
| 'LBP'
| 'LKR'
| 'LRD'
| 'LSL'
| 'LYD'
| 'MAD'
| 'MDL'
| 'MGA'
| 'MKD'
| 'MMK'
| 'MNT'
| 'MOP'
| 'MRU'
| 'MUR'
| 'MVR'
| 'MWK'
| 'MXN'
| 'MXV'
| 'MYR'
| 'MZN'
| 'NAD'
| 'NGN'
| 'NIO'
| 'NOK'
| 'NPR'
| 'NZD'
| 'OMR'
| 'PAB'
| 'PEN'
| 'PGK'
| 'PHP'
| 'PKR'
| 'PLN'
| 'PYG'
| 'QAR'
| 'RON'
| 'RSD'
| 'RUB'
| 'RWF'
| 'SAR'
| 'SBD'
| 'SCR'
| 'SDG'
| 'SEK'
| 'SGD'
| 'SHP'
| 'SLE'
| 'SLL'
| 'SOS'
| 'SRD'
| 'SSP'
| 'STN'
| 'SVC'
| 'SYP'
| 'SZL'
| 'THB'
| 'TJS'
| 'TMT'
| 'TND'
| 'TOP'
| 'TRY'
| 'TTD'
| 'TWD'
| 'TZS'
| 'UAH'
| 'UGX'
| 'USD'
| 'USN'
| 'UYI'
| 'UYU'
| 'UYW'
| 'UZS'
| 'VED'
| 'VES'
| 'VND'
| 'VUV'
| 'WST'
| 'XAF'
| 'XAG'
| 'XAU'
| 'XBA'
| 'XBB'
| 'XBC'
| 'XBD'
| 'XCD'
| 'XDR'
| 'XOF'
| 'XPD'
| 'XPF'
| 'XPT'
| 'XSU'
| 'XTS'
| 'XUA'
| 'XXX'
| 'YER'
| 'ZAR'
| 'ZMW'
| 'ZWL';
/**
* Describes the document and the required document image uploads required to
* re-run KYC
*/
export interface Document {
/**
* Globally unique identifier for the document.
*/
token: string;
/**
* Globally unique identifier for the account holder.
*/
account_holder_token: string;
/**
* Type of documentation to be submitted for verification of an account holder
*/
document_type:
| 'DRIVERS_LICENSE'
| 'PASSPORT'
| 'PASSPORT_CARD'
| 'EIN_LETTER'
| 'TAX_RETURN'
| 'OPERATING_AGREEMENT'
| 'CERTIFICATE_OF_FORMATION'
| 'CERTIFICATE_OF_GOOD_STANDING'
| 'ARTICLES_OF_INCORPORATION'
| 'ARTICLES_OF_ORGANIZATION'
| 'BYLAWS'
| 'GOVERNMENT_BUSINESS_LICENSE'
| 'PARTNERSHIP_AGREEMENT'
| 'SS4_FORM'
| 'BANK_STATEMENT'
| 'UTILITY_BILL_STATEMENT'
| 'SSN_CARD'
| 'ITIN_LETTER'
| 'FINCEN_BOI_REPORT';
/**
* Globally unique identifier for an entity.
*/
entity_token: string;
/**
* Represents a single image of the document to upload.
*/
required_document_uploads: Array<Document.RequiredDocumentUpload>;
}
export namespace Document {
/**
* Represents a single image of the document to upload.
*/
export interface RequiredDocumentUpload {
/**
* Globally unique identifier for the document upload.
*/
token: string;
/**
* A list of status reasons associated with a KYB account holder that have been
* satisfied by the document upload
*/
accepted_entity_status_reasons: Array<string>;
/**
* When the document upload was created
*/
created: string;
/**
* Type of image to upload.
*/
image_type: 'FRONT' | 'BACK';
/**
* A list of status reasons associated with a KYB account holder that have not been
* satisfied by the document upload
*/
rejected_entity_status_reasons: Array<string>;
/**
* Status of an account holder's document upload.
*/
status: 'ACCEPTED' | 'REJECTED' | 'PENDING_UPLOAD' | 'UPLOADED' | 'PARTIAL_APPROVAL';
/**
* Reasons for document image upload status.
*/
status_reasons: Array<
| 'DOCUMENT_MISSING_REQUIRED_DATA'
| 'DOCUMENT_UPLOAD_TOO_BLURRY'
| 'FILE_SIZE_TOO_LARGE'
| 'INVALID_DOCUMENT_TYPE'
| 'INVALID_DOCUMENT_UPLOAD'
| 'INVALID_ENTITY'
| 'DOCUMENT_EXPIRED'
| 'DOCUMENT_ISSUED_GREATER_THAN_30_DAYS'
| 'DOCUMENT_TYPE_NOT_SUPPORTED'
| 'UNKNOWN_FAILURE_REASON'
| 'UNKNOWN_ERROR'
>;
/**
* When the document upload was last updated
*/
updated: string;
/**
* URL to upload document image to.
*
* Note that the upload URLs expire after 7 days. If an upload URL expires, you can
* refresh the URLs by retrieving the document upload from
* `GET /account_holders/{account_holder_token}/documents`.
*/
upload_url: string;
}
}
/**
* Type of instance financial account
*/
export type InstanceFinancialAccountType = 'ISSUING' | 'RESERVE' | 'OPERATING';
export interface ShippingAddress {
/**
* Valid USPS routable address.
*/
address1: string;
/**
* City
*/
city: string;
/**
* Uppercase ISO 3166-1 alpha-3 three character abbreviation.
*/
country: string;
/**
* Customer's first name. This will be the first name printed on the physical card.
* The combined length of `first_name` and `last_name` may not exceed 25
* characters.
*/
first_name: string;
/**
* Customer's surname (family name). This will be the last name printed on the
* physical card. The combined length of `first_name` and `last_name` may not
* exceed 25 characters.
*/
last_name: string;
/**
* Postal code (formerly zipcode). For US addresses, either five-digit postal code
* or nine-digit postal code (ZIP+4) using the format 12345-1234.
*/
postal_code: string;
/**
* Uppercase ISO 3166-2 two character abbreviation for US and CA. Optional with a
* limit of 24 characters for other countries.
*/
state: string;
/**
* Unit number (if applicable).
*/
address2?: string;
/**
* Email address to be contacted for expedited shipping process purposes. Required
* if `shipping_method` is `EXPEDITED`.
*/
email?: string;
/**
* Text to be printed on line two of the physical card. Use of this field requires
* additional permissions.
*/
line2_text?: string;
/**
* Cardholder's phone number in E.164 format to be contacted for expedited shipping
* process purposes. Required if `shipping_method` is `EXPEDITED`.
*/
phone_number?: string;
}