increase 0.27.0 → 0.28.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/account-transfers.d.ts +5 -5
- package/resources/ach-transfers.d.ts +5 -5
- package/resources/check-transfers.d.ts +2 -2
- package/resources/real-time-payments-transfers.d.ts +2 -2
- package/resources/wire-transfers.d.ts +2 -2
- package/src/resources/account-transfers.ts +5 -5
- package/src/resources/ach-transfers.ts +5 -5
- package/src/resources/check-transfers.ts +2 -2
- package/src/resources/real-time-payments-transfers.ts +2 -2
- package/src/resources/wire-transfers.ts +2 -2
- package/src/version.ts +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.28.0 (2024-01-26)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.27.0...v0.28.0](https://github.com/increase/increase-node/compare/v0.27.0...v0.28.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** update descriptions ([#293](https://github.com/increase/increase-node/issues/293)) ([32aee0a](https://github.com/increase/increase-node/commit/32aee0ab2cfa44bfb603fed86b7340acb50f5d5e))
|
|
10
|
+
|
|
3
11
|
## 0.27.0 (2024-01-24)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.26.0...v0.27.0](https://github.com/increase/increase-node/compare/v0.26.0...v0.27.0)
|
package/package.json
CHANGED
|
@@ -112,7 +112,7 @@ export interface AccountTransfer {
|
|
|
112
112
|
*/
|
|
113
113
|
type: 'account_transfer';
|
|
114
114
|
/**
|
|
115
|
-
* The unique identifier you chose for this
|
|
115
|
+
* The unique identifier you chose for this object.
|
|
116
116
|
*/
|
|
117
117
|
unique_identifier: string | null;
|
|
118
118
|
}
|
|
@@ -173,9 +173,9 @@ export interface AccountTransferCreateParams {
|
|
|
173
173
|
*/
|
|
174
174
|
require_approval?: boolean;
|
|
175
175
|
/**
|
|
176
|
-
* A unique identifier you choose for the
|
|
177
|
-
* another
|
|
178
|
-
*
|
|
176
|
+
* A unique identifier you choose for the object. Reusing this identifier for
|
|
177
|
+
* another object will result in an error. You can query for the object associated
|
|
178
|
+
* with this identifier using the List endpoint.
|
|
179
179
|
*/
|
|
180
180
|
unique_identifier?: string;
|
|
181
181
|
}
|
|
@@ -186,7 +186,7 @@ export interface AccountTransferListParams extends PageParams {
|
|
|
186
186
|
account_id?: string;
|
|
187
187
|
created_at?: AccountTransferListParams.CreatedAt;
|
|
188
188
|
/**
|
|
189
|
-
* Filter
|
|
189
|
+
* Filter records to the one with the specified `unique_identifier`.
|
|
190
190
|
*/
|
|
191
191
|
unique_identifier?: string;
|
|
192
192
|
}
|
|
@@ -197,7 +197,7 @@ export interface ACHTransfer {
|
|
|
197
197
|
*/
|
|
198
198
|
type: 'ach_transfer';
|
|
199
199
|
/**
|
|
200
|
-
* The unique identifier you chose for this
|
|
200
|
+
* The unique identifier you chose for this object.
|
|
201
201
|
*/
|
|
202
202
|
unique_identifier: string | null;
|
|
203
203
|
}
|
|
@@ -605,9 +605,9 @@ export interface ACHTransferCreateParams {
|
|
|
605
605
|
*/
|
|
606
606
|
standard_entry_class_code?: 'corporate_credit_or_debit' | 'prearranged_payments_and_deposit' | 'internet_initiated';
|
|
607
607
|
/**
|
|
608
|
-
* A unique identifier you choose for the
|
|
609
|
-
* another
|
|
610
|
-
*
|
|
608
|
+
* A unique identifier you choose for the object. Reusing this identifier for
|
|
609
|
+
* another object will result in an error. You can query for the object associated
|
|
610
|
+
* with this identifier using the List endpoint.
|
|
611
611
|
*/
|
|
612
612
|
unique_identifier?: string;
|
|
613
613
|
}
|
|
@@ -622,7 +622,7 @@ export interface ACHTransferListParams extends PageParams {
|
|
|
622
622
|
*/
|
|
623
623
|
external_account_id?: string;
|
|
624
624
|
/**
|
|
625
|
-
* Filter
|
|
625
|
+
* Filter records to the one with the specified `unique_identifier`.
|
|
626
626
|
*/
|
|
627
627
|
unique_identifier?: string;
|
|
628
628
|
}
|
|
@@ -154,7 +154,7 @@ export interface CheckTransfer {
|
|
|
154
154
|
*/
|
|
155
155
|
type: 'check_transfer';
|
|
156
156
|
/**
|
|
157
|
-
* The unique identifier you chose for this
|
|
157
|
+
* The unique identifier you chose for this object.
|
|
158
158
|
*/
|
|
159
159
|
unique_identifier: string | null;
|
|
160
160
|
}
|
|
@@ -509,7 +509,7 @@ export interface CheckTransferListParams extends PageParams {
|
|
|
509
509
|
account_id?: string;
|
|
510
510
|
created_at?: CheckTransferListParams.CreatedAt;
|
|
511
511
|
/**
|
|
512
|
-
* Filter
|
|
512
|
+
* Filter records to the one with the specified `unique_identifier`.
|
|
513
513
|
*/
|
|
514
514
|
unique_identifier?: string;
|
|
515
515
|
}
|
|
@@ -143,7 +143,7 @@ export interface RealTimePaymentsTransfer {
|
|
|
143
143
|
*/
|
|
144
144
|
ultimate_debtor_name: string | null;
|
|
145
145
|
/**
|
|
146
|
-
* The unique identifier you chose for this
|
|
146
|
+
* The unique identifier you chose for this object.
|
|
147
147
|
*/
|
|
148
148
|
unique_identifier: string | null;
|
|
149
149
|
}
|
|
@@ -335,7 +335,7 @@ export interface RealTimePaymentsTransferListParams extends PageParams {
|
|
|
335
335
|
*/
|
|
336
336
|
external_account_id?: string;
|
|
337
337
|
/**
|
|
338
|
-
* Filter
|
|
338
|
+
* Filter records to the one with the specified `unique_identifier`.
|
|
339
339
|
*/
|
|
340
340
|
unique_identifier?: string;
|
|
341
341
|
}
|
|
@@ -175,7 +175,7 @@ export interface WireTransfer {
|
|
|
175
175
|
*/
|
|
176
176
|
type: 'wire_transfer';
|
|
177
177
|
/**
|
|
178
|
-
* The unique identifier you chose for this
|
|
178
|
+
* The unique identifier you chose for this object.
|
|
179
179
|
*/
|
|
180
180
|
unique_identifier: string | null;
|
|
181
181
|
}
|
|
@@ -386,7 +386,7 @@ export interface WireTransferListParams extends PageParams {
|
|
|
386
386
|
*/
|
|
387
387
|
external_account_id?: string;
|
|
388
388
|
/**
|
|
389
|
-
* Filter
|
|
389
|
+
* Filter records to the one with the specified `unique_identifier`.
|
|
390
390
|
*/
|
|
391
391
|
unique_identifier?: string;
|
|
392
392
|
}
|
|
@@ -156,7 +156,7 @@ export interface AccountTransfer {
|
|
|
156
156
|
type: 'account_transfer';
|
|
157
157
|
|
|
158
158
|
/**
|
|
159
|
-
* The unique identifier you chose for this
|
|
159
|
+
* The unique identifier you chose for this object.
|
|
160
160
|
*/
|
|
161
161
|
unique_identifier: string | null;
|
|
162
162
|
}
|
|
@@ -227,9 +227,9 @@ export interface AccountTransferCreateParams {
|
|
|
227
227
|
require_approval?: boolean;
|
|
228
228
|
|
|
229
229
|
/**
|
|
230
|
-
* A unique identifier you choose for the
|
|
231
|
-
* another
|
|
232
|
-
*
|
|
230
|
+
* A unique identifier you choose for the object. Reusing this identifier for
|
|
231
|
+
* another object will result in an error. You can query for the object associated
|
|
232
|
+
* with this identifier using the List endpoint.
|
|
233
233
|
*/
|
|
234
234
|
unique_identifier?: string;
|
|
235
235
|
}
|
|
@@ -243,7 +243,7 @@ export interface AccountTransferListParams extends PageParams {
|
|
|
243
243
|
created_at?: AccountTransferListParams.CreatedAt;
|
|
244
244
|
|
|
245
245
|
/**
|
|
246
|
-
* Filter
|
|
246
|
+
* Filter records to the one with the specified `unique_identifier`.
|
|
247
247
|
*/
|
|
248
248
|
unique_identifier?: string;
|
|
249
249
|
}
|
|
@@ -267,7 +267,7 @@ export interface ACHTransfer {
|
|
|
267
267
|
type: 'ach_transfer';
|
|
268
268
|
|
|
269
269
|
/**
|
|
270
|
-
* The unique identifier you chose for this
|
|
270
|
+
* The unique identifier you chose for this object.
|
|
271
271
|
*/
|
|
272
272
|
unique_identifier: string | null;
|
|
273
273
|
}
|
|
@@ -802,9 +802,9 @@ export interface ACHTransferCreateParams {
|
|
|
802
802
|
| 'internet_initiated';
|
|
803
803
|
|
|
804
804
|
/**
|
|
805
|
-
* A unique identifier you choose for the
|
|
806
|
-
* another
|
|
807
|
-
*
|
|
805
|
+
* A unique identifier you choose for the object. Reusing this identifier for
|
|
806
|
+
* another object will result in an error. You can query for the object associated
|
|
807
|
+
* with this identifier using the List endpoint.
|
|
808
808
|
*/
|
|
809
809
|
unique_identifier?: string;
|
|
810
810
|
}
|
|
@@ -823,7 +823,7 @@ export interface ACHTransferListParams extends PageParams {
|
|
|
823
823
|
external_account_id?: string;
|
|
824
824
|
|
|
825
825
|
/**
|
|
826
|
-
* Filter
|
|
826
|
+
* Filter records to the one with the specified `unique_identifier`.
|
|
827
827
|
*/
|
|
828
828
|
unique_identifier?: string;
|
|
829
829
|
}
|
|
@@ -221,7 +221,7 @@ export interface CheckTransfer {
|
|
|
221
221
|
type: 'check_transfer';
|
|
222
222
|
|
|
223
223
|
/**
|
|
224
|
-
* The unique identifier you chose for this
|
|
224
|
+
* The unique identifier you chose for this object.
|
|
225
225
|
*/
|
|
226
226
|
unique_identifier: string | null;
|
|
227
227
|
}
|
|
@@ -638,7 +638,7 @@ export interface CheckTransferListParams extends PageParams {
|
|
|
638
638
|
created_at?: CheckTransferListParams.CreatedAt;
|
|
639
639
|
|
|
640
640
|
/**
|
|
641
|
-
* Filter
|
|
641
|
+
* Filter records to the one with the specified `unique_identifier`.
|
|
642
642
|
*/
|
|
643
643
|
unique_identifier?: string;
|
|
644
644
|
}
|
|
@@ -206,7 +206,7 @@ export interface RealTimePaymentsTransfer {
|
|
|
206
206
|
ultimate_debtor_name: string | null;
|
|
207
207
|
|
|
208
208
|
/**
|
|
209
|
-
* The unique identifier you chose for this
|
|
209
|
+
* The unique identifier you chose for this object.
|
|
210
210
|
*/
|
|
211
211
|
unique_identifier: string | null;
|
|
212
212
|
}
|
|
@@ -444,7 +444,7 @@ export interface RealTimePaymentsTransferListParams extends PageParams {
|
|
|
444
444
|
external_account_id?: string;
|
|
445
445
|
|
|
446
446
|
/**
|
|
447
|
-
* Filter
|
|
447
|
+
* Filter records to the one with the specified `unique_identifier`.
|
|
448
448
|
*/
|
|
449
449
|
unique_identifier?: string;
|
|
450
450
|
}
|
|
@@ -243,7 +243,7 @@ export interface WireTransfer {
|
|
|
243
243
|
type: 'wire_transfer';
|
|
244
244
|
|
|
245
245
|
/**
|
|
246
|
-
* The unique identifier you chose for this
|
|
246
|
+
* The unique identifier you chose for this object.
|
|
247
247
|
*/
|
|
248
248
|
unique_identifier: string | null;
|
|
249
249
|
}
|
|
@@ -496,7 +496,7 @@ export interface WireTransferListParams extends PageParams {
|
|
|
496
496
|
external_account_id?: string;
|
|
497
497
|
|
|
498
498
|
/**
|
|
499
|
-
* Filter
|
|
499
|
+
* Filter records to the one with the specified `unique_identifier`.
|
|
500
500
|
*/
|
|
501
501
|
unique_identifier?: string;
|
|
502
502
|
}
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.28.0'; // x-release-please-version
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.28.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.28.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|