increase 0.475.0 → 0.477.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 +17 -0
- package/client.d.mts +2 -2
- package/client.d.mts.map +1 -1
- package/client.d.ts +2 -2
- package/client.d.ts.map +1 -1
- package/client.js.map +1 -1
- package/client.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/beneficial-owners.d.mts +7 -0
- package/resources/beneficial-owners.d.mts.map +1 -1
- package/resources/beneficial-owners.d.ts +7 -0
- package/resources/beneficial-owners.d.ts.map +1 -1
- package/resources/check-transfers.d.mts +35 -6
- package/resources/check-transfers.d.mts.map +1 -1
- package/resources/check-transfers.d.ts +35 -6
- package/resources/check-transfers.d.ts.map +1 -1
- package/resources/entities.d.mts +1 -89
- package/resources/entities.d.mts.map +1 -1
- package/resources/entities.d.ts +1 -89
- package/resources/entities.d.ts.map +1 -1
- package/resources/entities.js +0 -43
- package/resources/entities.js.map +1 -1
- package/resources/entities.mjs +0 -43
- package/resources/entities.mjs.map +1 -1
- package/resources/files.d.mts +7 -3
- package/resources/files.d.mts.map +1 -1
- package/resources/files.d.ts +7 -3
- package/resources/files.d.ts.map +1 -1
- package/resources/index.d.mts +1 -1
- package/resources/index.d.mts.map +1 -1
- package/resources/index.d.ts +1 -1
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js.map +1 -1
- package/resources/index.mjs.map +1 -1
- package/src/client.ts +0 -4
- package/src/resources/beneficial-owners.ts +7 -0
- package/src/resources/check-transfers.ts +39 -6
- package/src/resources/entities.ts +0 -116
- package/src/resources/files.ts +7 -0
- package/src/resources/index.ts +0 -2
- 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
|
@@ -83,28 +83,6 @@ export class Entities extends APIResource {
|
|
|
83
83
|
return this._client.post(path`/entities/${entityID}/archive`, options);
|
|
84
84
|
}
|
|
85
85
|
|
|
86
|
-
/**
|
|
87
|
-
* Archive a beneficial owner for a corporate Entity
|
|
88
|
-
*
|
|
89
|
-
* @example
|
|
90
|
-
* ```ts
|
|
91
|
-
* const entity = await client.entities.archiveBeneficialOwner(
|
|
92
|
-
* 'entity_n8y8tnk2p9339ti393yi',
|
|
93
|
-
* {
|
|
94
|
-
* beneficial_owner_id:
|
|
95
|
-
* 'entity_setup_beneficial_owner_submission_vgkyk7dj5eb4sfhdbkx7',
|
|
96
|
-
* },
|
|
97
|
-
* );
|
|
98
|
-
* ```
|
|
99
|
-
*/
|
|
100
|
-
archiveBeneficialOwner(
|
|
101
|
-
entityID: string,
|
|
102
|
-
body: EntityArchiveBeneficialOwnerParams,
|
|
103
|
-
options?: RequestOptions,
|
|
104
|
-
): APIPromise<Entity> {
|
|
105
|
-
return this._client.post(path`/entities/${entityID}/archive_beneficial_owner`, { body, ...options });
|
|
106
|
-
}
|
|
107
|
-
|
|
108
86
|
/**
|
|
109
87
|
* Create a beneficial owner for a corporate Entity
|
|
110
88
|
*
|
|
@@ -140,37 +118,6 @@ export class Entities extends APIResource {
|
|
|
140
118
|
): APIPromise<Entity> {
|
|
141
119
|
return this._client.post(path`/entities/${entityID}/create_beneficial_owner`, { body, ...options });
|
|
142
120
|
}
|
|
143
|
-
|
|
144
|
-
/**
|
|
145
|
-
* Update the address for a beneficial owner belonging to a corporate Entity
|
|
146
|
-
*
|
|
147
|
-
* @example
|
|
148
|
-
* ```ts
|
|
149
|
-
* const entity =
|
|
150
|
-
* await client.entities.updateBeneficialOwnerAddress(
|
|
151
|
-
* 'entity_n8y8tnk2p9339ti393yi',
|
|
152
|
-
* {
|
|
153
|
-
* address: {
|
|
154
|
-
* city: 'New York',
|
|
155
|
-
* country: 'US',
|
|
156
|
-
* line1: '33 Liberty Street',
|
|
157
|
-
* },
|
|
158
|
-
* beneficial_owner_id:
|
|
159
|
-
* 'entity_setup_beneficial_owner_submission_vgkyk7dj5eb4sfhdbkx7',
|
|
160
|
-
* },
|
|
161
|
-
* );
|
|
162
|
-
* ```
|
|
163
|
-
*/
|
|
164
|
-
updateBeneficialOwnerAddress(
|
|
165
|
-
entityID: string,
|
|
166
|
-
body: EntityUpdateBeneficialOwnerAddressParams,
|
|
167
|
-
options?: RequestOptions,
|
|
168
|
-
): APIPromise<Entity> {
|
|
169
|
-
return this._client.post(path`/entities/${entityID}/update_beneficial_owner_address`, {
|
|
170
|
-
body,
|
|
171
|
-
...options,
|
|
172
|
-
});
|
|
173
|
-
}
|
|
174
121
|
}
|
|
175
122
|
|
|
176
123
|
export type EntitiesPage = Page<Entity>;
|
|
@@ -2842,14 +2789,6 @@ export namespace EntityListParams {
|
|
|
2842
2789
|
}
|
|
2843
2790
|
}
|
|
2844
2791
|
|
|
2845
|
-
export interface EntityArchiveBeneficialOwnerParams {
|
|
2846
|
-
/**
|
|
2847
|
-
* The identifying details of anyone controlling or owning 25% or more of the
|
|
2848
|
-
* corporation.
|
|
2849
|
-
*/
|
|
2850
|
-
beneficial_owner_id: string;
|
|
2851
|
-
}
|
|
2852
|
-
|
|
2853
2792
|
export interface EntityCreateBeneficialOwnerParams {
|
|
2854
2793
|
/**
|
|
2855
2794
|
* The identifying details of anyone controlling or owning 25% or more of the
|
|
@@ -3091,59 +3030,6 @@ export namespace EntityCreateBeneficialOwnerParams {
|
|
|
3091
3030
|
}
|
|
3092
3031
|
}
|
|
3093
3032
|
|
|
3094
|
-
export interface EntityUpdateBeneficialOwnerAddressParams {
|
|
3095
|
-
/**
|
|
3096
|
-
* The individual's physical address. Mail receiving locations like PO Boxes and
|
|
3097
|
-
* PMB's are disallowed.
|
|
3098
|
-
*/
|
|
3099
|
-
address: EntityUpdateBeneficialOwnerAddressParams.Address;
|
|
3100
|
-
|
|
3101
|
-
/**
|
|
3102
|
-
* The identifying details of anyone controlling or owning 25% or more of the
|
|
3103
|
-
* corporation.
|
|
3104
|
-
*/
|
|
3105
|
-
beneficial_owner_id: string;
|
|
3106
|
-
}
|
|
3107
|
-
|
|
3108
|
-
export namespace EntityUpdateBeneficialOwnerAddressParams {
|
|
3109
|
-
/**
|
|
3110
|
-
* The individual's physical address. Mail receiving locations like PO Boxes and
|
|
3111
|
-
* PMB's are disallowed.
|
|
3112
|
-
*/
|
|
3113
|
-
export interface Address {
|
|
3114
|
-
/**
|
|
3115
|
-
* The city, district, town, or village of the address.
|
|
3116
|
-
*/
|
|
3117
|
-
city: string;
|
|
3118
|
-
|
|
3119
|
-
/**
|
|
3120
|
-
* The two-letter ISO 3166-1 alpha-2 code for the country of the address.
|
|
3121
|
-
*/
|
|
3122
|
-
country: string;
|
|
3123
|
-
|
|
3124
|
-
/**
|
|
3125
|
-
* The first line of the address. This is usually the street number and street.
|
|
3126
|
-
*/
|
|
3127
|
-
line1: string;
|
|
3128
|
-
|
|
3129
|
-
/**
|
|
3130
|
-
* The second line of the address. This might be the floor or room number.
|
|
3131
|
-
*/
|
|
3132
|
-
line2?: string;
|
|
3133
|
-
|
|
3134
|
-
/**
|
|
3135
|
-
* The two-letter United States Postal Service (USPS) abbreviation for the US
|
|
3136
|
-
* state, province, or region of the address. Required in certain countries.
|
|
3137
|
-
*/
|
|
3138
|
-
state?: string;
|
|
3139
|
-
|
|
3140
|
-
/**
|
|
3141
|
-
* The ZIP or postal code of the address. Required in certain countries.
|
|
3142
|
-
*/
|
|
3143
|
-
zip?: string;
|
|
3144
|
-
}
|
|
3145
|
-
}
|
|
3146
|
-
|
|
3147
3033
|
export declare namespace Entities {
|
|
3148
3034
|
export {
|
|
3149
3035
|
type Entity as Entity,
|
|
@@ -3151,8 +3037,6 @@ export declare namespace Entities {
|
|
|
3151
3037
|
type EntityCreateParams as EntityCreateParams,
|
|
3152
3038
|
type EntityUpdateParams as EntityUpdateParams,
|
|
3153
3039
|
type EntityListParams as EntityListParams,
|
|
3154
|
-
type EntityArchiveBeneficialOwnerParams as EntityArchiveBeneficialOwnerParams,
|
|
3155
3040
|
type EntityCreateBeneficialOwnerParams as EntityCreateBeneficialOwnerParams,
|
|
3156
|
-
type EntityUpdateBeneficialOwnerAddressParams as EntityUpdateBeneficialOwnerAddressParams,
|
|
3157
3041
|
};
|
|
3158
3042
|
}
|
package/src/resources/files.ts
CHANGED
|
@@ -128,6 +128,8 @@ export interface File {
|
|
|
128
128
|
* - `check_voucher_image` - An image to be used as the check voucher image, which
|
|
129
129
|
* is printed in the middle of the trifold area of a check. This must be a
|
|
130
130
|
* 2550x1100 pixel PNG.
|
|
131
|
+
* - `check_signature` - A signature image to be printed on a check. This must be a
|
|
132
|
+
* 1320x120 pixel PNG.
|
|
131
133
|
* - `inbound_mail_item` - A scanned mail item sent to Increase.
|
|
132
134
|
* - `form_1099_int` - IRS Form 1099-INT.
|
|
133
135
|
* - `form_1099_misc` - IRS Form 1099-MISC.
|
|
@@ -172,6 +174,7 @@ export interface File {
|
|
|
172
174
|
| 'mailed_check_image'
|
|
173
175
|
| 'check_attachment'
|
|
174
176
|
| 'check_voucher_image'
|
|
177
|
+
| 'check_signature'
|
|
175
178
|
| 'inbound_mail_item'
|
|
176
179
|
| 'form_1099_int'
|
|
177
180
|
| 'form_1099_misc'
|
|
@@ -228,6 +231,8 @@ export interface FileCreateParams {
|
|
|
228
231
|
* - `check_voucher_image` - An image to be used as the check voucher image, which
|
|
229
232
|
* is printed in the middle of the trifold area of a check. This must be a
|
|
230
233
|
* 2550x1100 pixel PNG.
|
|
234
|
+
* - `check_signature` - A signature image to be printed on a check. This must be a
|
|
235
|
+
* 1320x120 pixel PNG.
|
|
231
236
|
* - `form_ss_4` - IRS Form SS-4.
|
|
232
237
|
* - `identity_document` - An image of a government-issued ID.
|
|
233
238
|
* - `loan_application_supplemental_document` - A supplemental document for a Loan
|
|
@@ -258,6 +263,7 @@ export interface FileCreateParams {
|
|
|
258
263
|
| 'mailed_check_image'
|
|
259
264
|
| 'check_attachment'
|
|
260
265
|
| 'check_voucher_image'
|
|
266
|
+
| 'check_signature'
|
|
261
267
|
| 'form_ss_4'
|
|
262
268
|
| 'identity_document'
|
|
263
269
|
| 'loan_application_supplemental_document'
|
|
@@ -335,6 +341,7 @@ export namespace FileListParams {
|
|
|
335
341
|
| 'mailed_check_image'
|
|
336
342
|
| 'check_attachment'
|
|
337
343
|
| 'check_voucher_image'
|
|
344
|
+
| 'check_signature'
|
|
338
345
|
| 'inbound_mail_item'
|
|
339
346
|
| 'form_1099_int'
|
|
340
347
|
| 'form_1099_misc'
|
package/src/resources/index.ts
CHANGED
|
@@ -170,9 +170,7 @@ export {
|
|
|
170
170
|
type EntityCreateParams,
|
|
171
171
|
type EntityUpdateParams,
|
|
172
172
|
type EntityListParams,
|
|
173
|
-
type EntityArchiveBeneficialOwnerParams,
|
|
174
173
|
type EntityCreateBeneficialOwnerParams,
|
|
175
|
-
type EntityUpdateBeneficialOwnerAddressParams,
|
|
176
174
|
type EntitiesPage,
|
|
177
175
|
} from './entities';
|
|
178
176
|
export {
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.477.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.477.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.477.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.477.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|