increase 0.472.0 → 0.473.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/package.json +1 -1
- package/resources/beneficial-owners.d.mts +119 -0
- package/resources/beneficial-owners.d.mts.map +1 -1
- package/resources/beneficial-owners.d.ts +119 -0
- package/resources/beneficial-owners.d.ts.map +1 -1
- package/src/resources/beneficial-owners.ts +144 -0
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.473.0 (2026-03-11)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.472.0...v0.473.0](https://github.com/Increase/increase-typescript/compare/v0.472.0...v0.473.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([2f4b214](https://github.com/Increase/increase-typescript/commit/2f4b2144199dbca245c8dcaba822286bf63c27a6))
|
|
10
|
+
|
|
3
11
|
## 0.472.0 (2026-03-11)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.471.0...v0.472.0](https://github.com/Increase/increase-typescript/compare/v0.471.0...v0.472.0)
|
package/package.json
CHANGED
|
@@ -155,6 +155,17 @@ export interface BeneficialOwnerUpdateParams {
|
|
|
155
155
|
* PMB's are disallowed.
|
|
156
156
|
*/
|
|
157
157
|
address?: BeneficialOwnerUpdateParams.Address;
|
|
158
|
+
/**
|
|
159
|
+
* The identification method for an individual can only be a passport, driver's
|
|
160
|
+
* license, or other document if you've confirmed the individual does not have a US
|
|
161
|
+
* tax id (either a Social Security Number or Individual Taxpayer Identification
|
|
162
|
+
* Number).
|
|
163
|
+
*/
|
|
164
|
+
confirmed_no_us_tax_id?: boolean;
|
|
165
|
+
/**
|
|
166
|
+
* A means of verifying the person's identity.
|
|
167
|
+
*/
|
|
168
|
+
identification?: BeneficialOwnerUpdateParams.Identification;
|
|
158
169
|
}
|
|
159
170
|
export declare namespace BeneficialOwnerUpdateParams {
|
|
160
171
|
/**
|
|
@@ -188,6 +199,114 @@ export declare namespace BeneficialOwnerUpdateParams {
|
|
|
188
199
|
*/
|
|
189
200
|
zip?: string;
|
|
190
201
|
}
|
|
202
|
+
/**
|
|
203
|
+
* A means of verifying the person's identity.
|
|
204
|
+
*/
|
|
205
|
+
interface Identification {
|
|
206
|
+
/**
|
|
207
|
+
* A method that can be used to verify the individual's identity.
|
|
208
|
+
*
|
|
209
|
+
* - `social_security_number` - A social security number.
|
|
210
|
+
* - `individual_taxpayer_identification_number` - An individual taxpayer
|
|
211
|
+
* identification number (ITIN).
|
|
212
|
+
* - `passport` - A passport number.
|
|
213
|
+
* - `drivers_license` - A driver's license number.
|
|
214
|
+
* - `other` - Another identifying document.
|
|
215
|
+
*/
|
|
216
|
+
method: 'social_security_number' | 'individual_taxpayer_identification_number' | 'passport' | 'drivers_license' | 'other';
|
|
217
|
+
/**
|
|
218
|
+
* An identification number that can be used to verify the individual's identity,
|
|
219
|
+
* such as a social security number.
|
|
220
|
+
*/
|
|
221
|
+
number: string;
|
|
222
|
+
/**
|
|
223
|
+
* Information about the United States driver's license used for identification.
|
|
224
|
+
* Required if `method` is equal to `drivers_license`.
|
|
225
|
+
*/
|
|
226
|
+
drivers_license?: Identification.DriversLicense;
|
|
227
|
+
/**
|
|
228
|
+
* Information about the identification document provided. Required if `method` is
|
|
229
|
+
* equal to `other`.
|
|
230
|
+
*/
|
|
231
|
+
other?: Identification.Other;
|
|
232
|
+
/**
|
|
233
|
+
* Information about the passport used for identification. Required if `method` is
|
|
234
|
+
* equal to `passport`.
|
|
235
|
+
*/
|
|
236
|
+
passport?: Identification.Passport;
|
|
237
|
+
[k: string]: unknown;
|
|
238
|
+
}
|
|
239
|
+
namespace Identification {
|
|
240
|
+
/**
|
|
241
|
+
* Information about the United States driver's license used for identification.
|
|
242
|
+
* Required if `method` is equal to `drivers_license`.
|
|
243
|
+
*/
|
|
244
|
+
interface DriversLicense {
|
|
245
|
+
/**
|
|
246
|
+
* The driver's license's expiration date in YYYY-MM-DD format.
|
|
247
|
+
*/
|
|
248
|
+
expiration_date: string;
|
|
249
|
+
/**
|
|
250
|
+
* The identifier of the File containing the front of the driver's license.
|
|
251
|
+
*/
|
|
252
|
+
file_id: string;
|
|
253
|
+
/**
|
|
254
|
+
* The state that issued the provided driver's license.
|
|
255
|
+
*/
|
|
256
|
+
state: string;
|
|
257
|
+
/**
|
|
258
|
+
* The identifier of the File containing the back of the driver's license.
|
|
259
|
+
*/
|
|
260
|
+
back_file_id?: string;
|
|
261
|
+
}
|
|
262
|
+
/**
|
|
263
|
+
* Information about the identification document provided. Required if `method` is
|
|
264
|
+
* equal to `other`.
|
|
265
|
+
*/
|
|
266
|
+
interface Other {
|
|
267
|
+
/**
|
|
268
|
+
* The two-character ISO 3166-1 code representing the country that issued the
|
|
269
|
+
* document (e.g., `US`).
|
|
270
|
+
*/
|
|
271
|
+
country: string;
|
|
272
|
+
/**
|
|
273
|
+
* A description of the document submitted.
|
|
274
|
+
*/
|
|
275
|
+
description: string;
|
|
276
|
+
/**
|
|
277
|
+
* The identifier of the File containing the front of the document.
|
|
278
|
+
*/
|
|
279
|
+
file_id: string;
|
|
280
|
+
/**
|
|
281
|
+
* The identifier of the File containing the back of the document. Not every
|
|
282
|
+
* document has a reverse side.
|
|
283
|
+
*/
|
|
284
|
+
back_file_id?: string;
|
|
285
|
+
/**
|
|
286
|
+
* The document's expiration date in YYYY-MM-DD format.
|
|
287
|
+
*/
|
|
288
|
+
expiration_date?: string;
|
|
289
|
+
}
|
|
290
|
+
/**
|
|
291
|
+
* Information about the passport used for identification. Required if `method` is
|
|
292
|
+
* equal to `passport`.
|
|
293
|
+
*/
|
|
294
|
+
interface Passport {
|
|
295
|
+
/**
|
|
296
|
+
* The two-character ISO 3166-1 code representing the country that issued the
|
|
297
|
+
* document (e.g., `US`).
|
|
298
|
+
*/
|
|
299
|
+
country: string;
|
|
300
|
+
/**
|
|
301
|
+
* The passport's expiration date in YYYY-MM-DD format.
|
|
302
|
+
*/
|
|
303
|
+
expiration_date: string;
|
|
304
|
+
/**
|
|
305
|
+
* The identifier of the File containing the passport.
|
|
306
|
+
*/
|
|
307
|
+
file_id: string;
|
|
308
|
+
}
|
|
309
|
+
}
|
|
191
310
|
}
|
|
192
311
|
export interface BeneficialOwnerListParams extends PageParams {
|
|
193
312
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"beneficial-owners.d.mts","sourceRoot":"","sources":["../src/resources/beneficial-owners.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;OACf,EAAE,UAAU,EAAE;OACd,EAAE,IAAI,EAAE,KAAK,UAAU,EAAE,WAAW,EAAE;OACtC,EAAE,cAAc,EAAE;AAGzB,qBAAa,gBAAiB,SAAQ,WAAW;IAC/C;;;;;;;;;;OAUG;IACH,QAAQ,CAAC,uBAAuB,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,qBAAqB,CAAC;IAItG;;;;;;;;;;OAUG;IACH,MAAM,CACJ,uBAAuB,EAAE,MAAM,EAC/B,IAAI,EAAE,2BAA2B,EACjC,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,qBAAqB,CAAC;IAOpC;;;;;;;;;;;;OAYG;IACH,IAAI,CACF,KAAK,EAAE,yBAAyB,EAChC,OAAO,CAAC,EAAE,cAAc,GACvB,WAAW,CAAC,0BAA0B,EAAE,qBAAqB,CAAC;CAMlE;AAED,MAAM,MAAM,0BAA0B,GAAG,IAAI,CAAC,qBAAqB,CAAC,CAAC;AAErE,MAAM,WAAW,qBAAqB;IACpC;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;OAEG;IACH,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;IAE7B;;;OAGG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,UAAU,EAAE,qBAAqB,CAAC,UAAU,CAAC;IAE7C;;OAEG;IACH,MAAM,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAC,CAAC;IAEvC;;;OAGG;IACH,IAAI,EAAE,yBAAyB,CAAC;IAEhC,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;CACtB;AAED,yBAAiB,qBAAqB,CAAC;IACrC;;OAEG;IACH,UAAiB,UAAU;QACzB;;WAEG;QACH,OAAO,EAAE,UAAU,CAAC,OAAO,CAAC;QAE5B;;WAEG;QACH,aAAa,EAAE,MAAM,CAAC;QAEtB;;WAEG;QACH,cAAc,EAAE,UAAU,CAAC,cAAc,CAAC;QAE1C;;WAEG;QACH,IAAI,EAAE,MAAM,CAAC;KACd;IAED,UAAiB,UAAU,CAAC;QAC1B;;WAEG;QACH,UAAiB,OAAO;YACtB;;eAEG;YACH,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;YAEpB;;eAEG;YACH,OAAO,EAAE,MAAM,CAAC;YAEhB;;eAEG;YACH,KAAK,EAAE,MAAM,CAAC;YAEd;;eAEG;YACH,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;YAErB;;;eAGG;YACH,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;YAErB;;eAEG;YACH,GAAG,EAAE,MAAM,GAAG,IAAI,CAAC;SACpB;QAED;;WAEG;QACH,UAAiB,cAAc;YAC7B;;;;;;;;;eASG;YACH,MAAM,EACF,wBAAwB,GACxB,2CAA2C,GAC3C,UAAU,GACV,iBAAiB,GACjB,OAAO,CAAC;YAEZ;;;eAGG;YACH,YAAY,EAAE,MAAM,CAAC;YAErB,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;SACtB;KACF;CACF;AAED,MAAM,WAAW,2BAA2B;IAC1C;;;OAGG;IACH,OAAO,CAAC,EAAE,2BAA2B,CAAC,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"beneficial-owners.d.mts","sourceRoot":"","sources":["../src/resources/beneficial-owners.ts"],"names":[],"mappings":"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"}
|
|
@@ -155,6 +155,17 @@ export interface BeneficialOwnerUpdateParams {
|
|
|
155
155
|
* PMB's are disallowed.
|
|
156
156
|
*/
|
|
157
157
|
address?: BeneficialOwnerUpdateParams.Address;
|
|
158
|
+
/**
|
|
159
|
+
* The identification method for an individual can only be a passport, driver's
|
|
160
|
+
* license, or other document if you've confirmed the individual does not have a US
|
|
161
|
+
* tax id (either a Social Security Number or Individual Taxpayer Identification
|
|
162
|
+
* Number).
|
|
163
|
+
*/
|
|
164
|
+
confirmed_no_us_tax_id?: boolean;
|
|
165
|
+
/**
|
|
166
|
+
* A means of verifying the person's identity.
|
|
167
|
+
*/
|
|
168
|
+
identification?: BeneficialOwnerUpdateParams.Identification;
|
|
158
169
|
}
|
|
159
170
|
export declare namespace BeneficialOwnerUpdateParams {
|
|
160
171
|
/**
|
|
@@ -188,6 +199,114 @@ export declare namespace BeneficialOwnerUpdateParams {
|
|
|
188
199
|
*/
|
|
189
200
|
zip?: string;
|
|
190
201
|
}
|
|
202
|
+
/**
|
|
203
|
+
* A means of verifying the person's identity.
|
|
204
|
+
*/
|
|
205
|
+
interface Identification {
|
|
206
|
+
/**
|
|
207
|
+
* A method that can be used to verify the individual's identity.
|
|
208
|
+
*
|
|
209
|
+
* - `social_security_number` - A social security number.
|
|
210
|
+
* - `individual_taxpayer_identification_number` - An individual taxpayer
|
|
211
|
+
* identification number (ITIN).
|
|
212
|
+
* - `passport` - A passport number.
|
|
213
|
+
* - `drivers_license` - A driver's license number.
|
|
214
|
+
* - `other` - Another identifying document.
|
|
215
|
+
*/
|
|
216
|
+
method: 'social_security_number' | 'individual_taxpayer_identification_number' | 'passport' | 'drivers_license' | 'other';
|
|
217
|
+
/**
|
|
218
|
+
* An identification number that can be used to verify the individual's identity,
|
|
219
|
+
* such as a social security number.
|
|
220
|
+
*/
|
|
221
|
+
number: string;
|
|
222
|
+
/**
|
|
223
|
+
* Information about the United States driver's license used for identification.
|
|
224
|
+
* Required if `method` is equal to `drivers_license`.
|
|
225
|
+
*/
|
|
226
|
+
drivers_license?: Identification.DriversLicense;
|
|
227
|
+
/**
|
|
228
|
+
* Information about the identification document provided. Required if `method` is
|
|
229
|
+
* equal to `other`.
|
|
230
|
+
*/
|
|
231
|
+
other?: Identification.Other;
|
|
232
|
+
/**
|
|
233
|
+
* Information about the passport used for identification. Required if `method` is
|
|
234
|
+
* equal to `passport`.
|
|
235
|
+
*/
|
|
236
|
+
passport?: Identification.Passport;
|
|
237
|
+
[k: string]: unknown;
|
|
238
|
+
}
|
|
239
|
+
namespace Identification {
|
|
240
|
+
/**
|
|
241
|
+
* Information about the United States driver's license used for identification.
|
|
242
|
+
* Required if `method` is equal to `drivers_license`.
|
|
243
|
+
*/
|
|
244
|
+
interface DriversLicense {
|
|
245
|
+
/**
|
|
246
|
+
* The driver's license's expiration date in YYYY-MM-DD format.
|
|
247
|
+
*/
|
|
248
|
+
expiration_date: string;
|
|
249
|
+
/**
|
|
250
|
+
* The identifier of the File containing the front of the driver's license.
|
|
251
|
+
*/
|
|
252
|
+
file_id: string;
|
|
253
|
+
/**
|
|
254
|
+
* The state that issued the provided driver's license.
|
|
255
|
+
*/
|
|
256
|
+
state: string;
|
|
257
|
+
/**
|
|
258
|
+
* The identifier of the File containing the back of the driver's license.
|
|
259
|
+
*/
|
|
260
|
+
back_file_id?: string;
|
|
261
|
+
}
|
|
262
|
+
/**
|
|
263
|
+
* Information about the identification document provided. Required if `method` is
|
|
264
|
+
* equal to `other`.
|
|
265
|
+
*/
|
|
266
|
+
interface Other {
|
|
267
|
+
/**
|
|
268
|
+
* The two-character ISO 3166-1 code representing the country that issued the
|
|
269
|
+
* document (e.g., `US`).
|
|
270
|
+
*/
|
|
271
|
+
country: string;
|
|
272
|
+
/**
|
|
273
|
+
* A description of the document submitted.
|
|
274
|
+
*/
|
|
275
|
+
description: string;
|
|
276
|
+
/**
|
|
277
|
+
* The identifier of the File containing the front of the document.
|
|
278
|
+
*/
|
|
279
|
+
file_id: string;
|
|
280
|
+
/**
|
|
281
|
+
* The identifier of the File containing the back of the document. Not every
|
|
282
|
+
* document has a reverse side.
|
|
283
|
+
*/
|
|
284
|
+
back_file_id?: string;
|
|
285
|
+
/**
|
|
286
|
+
* The document's expiration date in YYYY-MM-DD format.
|
|
287
|
+
*/
|
|
288
|
+
expiration_date?: string;
|
|
289
|
+
}
|
|
290
|
+
/**
|
|
291
|
+
* Information about the passport used for identification. Required if `method` is
|
|
292
|
+
* equal to `passport`.
|
|
293
|
+
*/
|
|
294
|
+
interface Passport {
|
|
295
|
+
/**
|
|
296
|
+
* The two-character ISO 3166-1 code representing the country that issued the
|
|
297
|
+
* document (e.g., `US`).
|
|
298
|
+
*/
|
|
299
|
+
country: string;
|
|
300
|
+
/**
|
|
301
|
+
* The passport's expiration date in YYYY-MM-DD format.
|
|
302
|
+
*/
|
|
303
|
+
expiration_date: string;
|
|
304
|
+
/**
|
|
305
|
+
* The identifier of the File containing the passport.
|
|
306
|
+
*/
|
|
307
|
+
file_id: string;
|
|
308
|
+
}
|
|
309
|
+
}
|
|
191
310
|
}
|
|
192
311
|
export interface BeneficialOwnerListParams extends PageParams {
|
|
193
312
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"beneficial-owners.d.ts","sourceRoot":"","sources":["../src/resources/beneficial-owners.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;OACf,EAAE,UAAU,EAAE;OACd,EAAE,IAAI,EAAE,KAAK,UAAU,EAAE,WAAW,EAAE;OACtC,EAAE,cAAc,EAAE;AAGzB,qBAAa,gBAAiB,SAAQ,WAAW;IAC/C;;;;;;;;;;OAUG;IACH,QAAQ,CAAC,uBAAuB,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,qBAAqB,CAAC;IAItG;;;;;;;;;;OAUG;IACH,MAAM,CACJ,uBAAuB,EAAE,MAAM,EAC/B,IAAI,EAAE,2BAA2B,EACjC,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,qBAAqB,CAAC;IAOpC;;;;;;;;;;;;OAYG;IACH,IAAI,CACF,KAAK,EAAE,yBAAyB,EAChC,OAAO,CAAC,EAAE,cAAc,GACvB,WAAW,CAAC,0BAA0B,EAAE,qBAAqB,CAAC;CAMlE;AAED,MAAM,MAAM,0BAA0B,GAAG,IAAI,CAAC,qBAAqB,CAAC,CAAC;AAErE,MAAM,WAAW,qBAAqB;IACpC;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;OAEG;IACH,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;IAE7B;;;OAGG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,UAAU,EAAE,qBAAqB,CAAC,UAAU,CAAC;IAE7C;;OAEG;IACH,MAAM,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAC,CAAC;IAEvC;;;OAGG;IACH,IAAI,EAAE,yBAAyB,CAAC;IAEhC,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;CACtB;AAED,yBAAiB,qBAAqB,CAAC;IACrC;;OAEG;IACH,UAAiB,UAAU;QACzB;;WAEG;QACH,OAAO,EAAE,UAAU,CAAC,OAAO,CAAC;QAE5B;;WAEG;QACH,aAAa,EAAE,MAAM,CAAC;QAEtB;;WAEG;QACH,cAAc,EAAE,UAAU,CAAC,cAAc,CAAC;QAE1C;;WAEG;QACH,IAAI,EAAE,MAAM,CAAC;KACd;IAED,UAAiB,UAAU,CAAC;QAC1B;;WAEG;QACH,UAAiB,OAAO;YACtB;;eAEG;YACH,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;YAEpB;;eAEG;YACH,OAAO,EAAE,MAAM,CAAC;YAEhB;;eAEG;YACH,KAAK,EAAE,MAAM,CAAC;YAEd;;eAEG;YACH,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;YAErB;;;eAGG;YACH,KAAK,EAAE,MAAM,GAAG,IAAI,CAAC;YAErB;;eAEG;YACH,GAAG,EAAE,MAAM,GAAG,IAAI,CAAC;SACpB;QAED;;WAEG;QACH,UAAiB,cAAc;YAC7B;;;;;;;;;eASG;YACH,MAAM,EACF,wBAAwB,GACxB,2CAA2C,GAC3C,UAAU,GACV,iBAAiB,GACjB,OAAO,CAAC;YAEZ;;;eAGG;YACH,YAAY,EAAE,MAAM,CAAC;YAErB,CAAC,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC;SACtB;KACF;CACF;AAED,MAAM,WAAW,2BAA2B;IAC1C;;;OAGG;IACH,OAAO,CAAC,EAAE,2BAA2B,CAAC,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"beneficial-owners.d.ts","sourceRoot":"","sources":["../src/resources/beneficial-owners.ts"],"names":[],"mappings":"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"}
|
|
@@ -207,6 +207,19 @@ export interface BeneficialOwnerUpdateParams {
|
|
|
207
207
|
* PMB's are disallowed.
|
|
208
208
|
*/
|
|
209
209
|
address?: BeneficialOwnerUpdateParams.Address;
|
|
210
|
+
|
|
211
|
+
/**
|
|
212
|
+
* The identification method for an individual can only be a passport, driver's
|
|
213
|
+
* license, or other document if you've confirmed the individual does not have a US
|
|
214
|
+
* tax id (either a Social Security Number or Individual Taxpayer Identification
|
|
215
|
+
* Number).
|
|
216
|
+
*/
|
|
217
|
+
confirmed_no_us_tax_id?: boolean;
|
|
218
|
+
|
|
219
|
+
/**
|
|
220
|
+
* A means of verifying the person's identity.
|
|
221
|
+
*/
|
|
222
|
+
identification?: BeneficialOwnerUpdateParams.Identification;
|
|
210
223
|
}
|
|
211
224
|
|
|
212
225
|
export namespace BeneficialOwnerUpdateParams {
|
|
@@ -246,6 +259,137 @@ export namespace BeneficialOwnerUpdateParams {
|
|
|
246
259
|
*/
|
|
247
260
|
zip?: string;
|
|
248
261
|
}
|
|
262
|
+
|
|
263
|
+
/**
|
|
264
|
+
* A means of verifying the person's identity.
|
|
265
|
+
*/
|
|
266
|
+
export interface Identification {
|
|
267
|
+
/**
|
|
268
|
+
* A method that can be used to verify the individual's identity.
|
|
269
|
+
*
|
|
270
|
+
* - `social_security_number` - A social security number.
|
|
271
|
+
* - `individual_taxpayer_identification_number` - An individual taxpayer
|
|
272
|
+
* identification number (ITIN).
|
|
273
|
+
* - `passport` - A passport number.
|
|
274
|
+
* - `drivers_license` - A driver's license number.
|
|
275
|
+
* - `other` - Another identifying document.
|
|
276
|
+
*/
|
|
277
|
+
method:
|
|
278
|
+
| 'social_security_number'
|
|
279
|
+
| 'individual_taxpayer_identification_number'
|
|
280
|
+
| 'passport'
|
|
281
|
+
| 'drivers_license'
|
|
282
|
+
| 'other';
|
|
283
|
+
|
|
284
|
+
/**
|
|
285
|
+
* An identification number that can be used to verify the individual's identity,
|
|
286
|
+
* such as a social security number.
|
|
287
|
+
*/
|
|
288
|
+
number: string;
|
|
289
|
+
|
|
290
|
+
/**
|
|
291
|
+
* Information about the United States driver's license used for identification.
|
|
292
|
+
* Required if `method` is equal to `drivers_license`.
|
|
293
|
+
*/
|
|
294
|
+
drivers_license?: Identification.DriversLicense;
|
|
295
|
+
|
|
296
|
+
/**
|
|
297
|
+
* Information about the identification document provided. Required if `method` is
|
|
298
|
+
* equal to `other`.
|
|
299
|
+
*/
|
|
300
|
+
other?: Identification.Other;
|
|
301
|
+
|
|
302
|
+
/**
|
|
303
|
+
* Information about the passport used for identification. Required if `method` is
|
|
304
|
+
* equal to `passport`.
|
|
305
|
+
*/
|
|
306
|
+
passport?: Identification.Passport;
|
|
307
|
+
|
|
308
|
+
[k: string]: unknown;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
export namespace Identification {
|
|
312
|
+
/**
|
|
313
|
+
* Information about the United States driver's license used for identification.
|
|
314
|
+
* Required if `method` is equal to `drivers_license`.
|
|
315
|
+
*/
|
|
316
|
+
export interface DriversLicense {
|
|
317
|
+
/**
|
|
318
|
+
* The driver's license's expiration date in YYYY-MM-DD format.
|
|
319
|
+
*/
|
|
320
|
+
expiration_date: string;
|
|
321
|
+
|
|
322
|
+
/**
|
|
323
|
+
* The identifier of the File containing the front of the driver's license.
|
|
324
|
+
*/
|
|
325
|
+
file_id: string;
|
|
326
|
+
|
|
327
|
+
/**
|
|
328
|
+
* The state that issued the provided driver's license.
|
|
329
|
+
*/
|
|
330
|
+
state: string;
|
|
331
|
+
|
|
332
|
+
/**
|
|
333
|
+
* The identifier of the File containing the back of the driver's license.
|
|
334
|
+
*/
|
|
335
|
+
back_file_id?: string;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
/**
|
|
339
|
+
* Information about the identification document provided. Required if `method` is
|
|
340
|
+
* equal to `other`.
|
|
341
|
+
*/
|
|
342
|
+
export interface Other {
|
|
343
|
+
/**
|
|
344
|
+
* The two-character ISO 3166-1 code representing the country that issued the
|
|
345
|
+
* document (e.g., `US`).
|
|
346
|
+
*/
|
|
347
|
+
country: string;
|
|
348
|
+
|
|
349
|
+
/**
|
|
350
|
+
* A description of the document submitted.
|
|
351
|
+
*/
|
|
352
|
+
description: string;
|
|
353
|
+
|
|
354
|
+
/**
|
|
355
|
+
* The identifier of the File containing the front of the document.
|
|
356
|
+
*/
|
|
357
|
+
file_id: string;
|
|
358
|
+
|
|
359
|
+
/**
|
|
360
|
+
* The identifier of the File containing the back of the document. Not every
|
|
361
|
+
* document has a reverse side.
|
|
362
|
+
*/
|
|
363
|
+
back_file_id?: string;
|
|
364
|
+
|
|
365
|
+
/**
|
|
366
|
+
* The document's expiration date in YYYY-MM-DD format.
|
|
367
|
+
*/
|
|
368
|
+
expiration_date?: string;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
/**
|
|
372
|
+
* Information about the passport used for identification. Required if `method` is
|
|
373
|
+
* equal to `passport`.
|
|
374
|
+
*/
|
|
375
|
+
export interface Passport {
|
|
376
|
+
/**
|
|
377
|
+
* The two-character ISO 3166-1 code representing the country that issued the
|
|
378
|
+
* document (e.g., `US`).
|
|
379
|
+
*/
|
|
380
|
+
country: string;
|
|
381
|
+
|
|
382
|
+
/**
|
|
383
|
+
* The passport's expiration date in YYYY-MM-DD format.
|
|
384
|
+
*/
|
|
385
|
+
expiration_date: string;
|
|
386
|
+
|
|
387
|
+
/**
|
|
388
|
+
* The identifier of the File containing the passport.
|
|
389
|
+
*/
|
|
390
|
+
file_id: string;
|
|
391
|
+
}
|
|
392
|
+
}
|
|
249
393
|
}
|
|
250
394
|
|
|
251
395
|
export interface BeneficialOwnerListParams extends PageParams {
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.473.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.473.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.473.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.473.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|