increase 0.43.0 → 0.44.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 +13 -0
- package/package.json +2 -2
- package/resources/entities/entities.d.ts +7 -1
- package/resources/entities/entities.d.ts.map +1 -1
- package/resources/entities/entities.js.map +1 -1
- package/resources/entities/entities.mjs.map +1 -1
- package/resources/event-subscriptions.d.ts +16 -2
- package/resources/event-subscriptions.d.ts.map +1 -1
- package/resources/event-subscriptions.js.map +1 -1
- package/resources/event-subscriptions.mjs.map +1 -1
- package/resources/events.d.ts +4 -2
- package/resources/events.d.ts.map +1 -1
- package/resources/events.js.map +1 -1
- package/resources/events.mjs.map +1 -1
- package/resources/files.d.ts +3 -4
- package/resources/files.d.ts.map +1 -1
- package/resources/files.js.map +1 -1
- package/resources/files.mjs.map +1 -1
- package/resources/simulations/real-time-payments-transfers.d.ts +1 -50
- package/resources/simulations/real-time-payments-transfers.d.ts.map +1 -1
- package/resources/simulations/real-time-payments-transfers.js.map +1 -1
- package/resources/simulations/real-time-payments-transfers.mjs.map +1 -1
- package/resources/transactions.d.ts +2 -51
- package/resources/transactions.d.ts.map +1 -1
- package/resources/transactions.js.map +1 -1
- package/resources/transactions.mjs.map +1 -1
- package/src/resources/entities/entities.ts +8 -1
- package/src/resources/event-subscriptions.ts +20 -0
- package/src/resources/events.ts +6 -0
- package/src/resources/files.ts +3 -4
- package/src/resources/simulations/real-time-payments-transfers.ts +0 -57
- package/src/resources/transactions.ts +0 -58
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -1337,8 +1337,6 @@ export namespace InboundRealTimePaymentsTransferSimulationResult {
|
|
|
1337
1337
|
* - `inbound_ach_transfer_return_intention` - Inbound ACH Transfer Return
|
|
1338
1338
|
* Intention: details will be under the `inbound_ach_transfer_return_intention`
|
|
1339
1339
|
* object.
|
|
1340
|
-
* - `inbound_check` - Inbound Check: details will be under the `inbound_check`
|
|
1341
|
-
* object.
|
|
1342
1340
|
* - `inbound_international_ach_transfer` - Inbound International ACH Transfer:
|
|
1343
1341
|
* details will be under the `inbound_international_ach_transfer` object.
|
|
1344
1342
|
* - `inbound_real_time_payments_transfer_confirmation` - Inbound Real-Time
|
|
@@ -1386,7 +1384,6 @@ export namespace InboundRealTimePaymentsTransferSimulationResult {
|
|
|
1386
1384
|
| 'fee_payment'
|
|
1387
1385
|
| 'inbound_ach_transfer'
|
|
1388
1386
|
| 'inbound_ach_transfer_return_intention'
|
|
1389
|
-
| 'inbound_check'
|
|
1390
1387
|
| 'inbound_international_ach_transfer'
|
|
1391
1388
|
| 'inbound_real_time_payments_transfer_confirmation'
|
|
1392
1389
|
| 'inbound_wire_drawdown_payment_reversal'
|
|
@@ -1439,12 +1436,6 @@ export namespace InboundRealTimePaymentsTransferSimulationResult {
|
|
|
1439
1436
|
*/
|
|
1440
1437
|
inbound_ach_transfer: Source.InboundACHTransfer | null;
|
|
1441
1438
|
|
|
1442
|
-
/**
|
|
1443
|
-
* An Inbound Check object. This field will be present in the JSON response if and
|
|
1444
|
-
* only if `category` is equal to `inbound_check`.
|
|
1445
|
-
*/
|
|
1446
|
-
inbound_check: Source.InboundCheck | null;
|
|
1447
|
-
|
|
1448
1439
|
/**
|
|
1449
1440
|
* An Inbound International ACH Transfer object. This field will be present in the
|
|
1450
1441
|
* JSON response if and only if `category` is equal to
|
|
@@ -3600,54 +3591,6 @@ export namespace InboundRealTimePaymentsTransferSimulationResult {
|
|
|
3600
3591
|
}
|
|
3601
3592
|
}
|
|
3602
3593
|
|
|
3603
|
-
/**
|
|
3604
|
-
* An Inbound Check object. This field will be present in the JSON response if and
|
|
3605
|
-
* only if `category` is equal to `inbound_check`.
|
|
3606
|
-
*/
|
|
3607
|
-
export interface InboundCheck {
|
|
3608
|
-
/**
|
|
3609
|
-
* The amount in the minor unit of the destination account currency. For dollars,
|
|
3610
|
-
* for example, this is cents.
|
|
3611
|
-
*/
|
|
3612
|
-
amount: number;
|
|
3613
|
-
|
|
3614
|
-
/**
|
|
3615
|
-
* The American Bankers' Association (ABA) Routing Transit Number (RTN) for the
|
|
3616
|
-
* bank depositing this check. In some rare cases, this is not transmitted via
|
|
3617
|
-
* Check21 and the value will be null.
|
|
3618
|
-
*/
|
|
3619
|
-
bank_of_first_deposit_routing_number: string | null;
|
|
3620
|
-
|
|
3621
|
-
/**
|
|
3622
|
-
* The front image of the check. This is a black and white TIFF image file.
|
|
3623
|
-
*/
|
|
3624
|
-
check_front_image_file_id: string | null;
|
|
3625
|
-
|
|
3626
|
-
/**
|
|
3627
|
-
* The number of the check. This field is set by the depositing bank and can be
|
|
3628
|
-
* unreliable.
|
|
3629
|
-
*/
|
|
3630
|
-
check_number: string | null;
|
|
3631
|
-
|
|
3632
|
-
/**
|
|
3633
|
-
* The rear image of the check. This is a black and white TIFF image file.
|
|
3634
|
-
*/
|
|
3635
|
-
check_rear_image_file_id: string | null;
|
|
3636
|
-
|
|
3637
|
-
/**
|
|
3638
|
-
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
|
|
3639
|
-
* transaction's currency.
|
|
3640
|
-
*
|
|
3641
|
-
* - `CAD` - Canadian Dollar (CAD)
|
|
3642
|
-
* - `CHF` - Swiss Franc (CHF)
|
|
3643
|
-
* - `EUR` - Euro (EUR)
|
|
3644
|
-
* - `GBP` - British Pound (GBP)
|
|
3645
|
-
* - `JPY` - Japanese Yen (JPY)
|
|
3646
|
-
* - `USD` - US Dollar (USD)
|
|
3647
|
-
*/
|
|
3648
|
-
currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
|
|
3649
|
-
}
|
|
3650
|
-
|
|
3651
3594
|
/**
|
|
3652
3595
|
* An Inbound International ACH Transfer object. This field will be present in the
|
|
3653
3596
|
* JSON response if and only if `category` is equal to
|
|
@@ -201,8 +201,6 @@ export namespace Transaction {
|
|
|
201
201
|
* - `inbound_ach_transfer_return_intention` - Inbound ACH Transfer Return
|
|
202
202
|
* Intention: details will be under the `inbound_ach_transfer_return_intention`
|
|
203
203
|
* object.
|
|
204
|
-
* - `inbound_check` - Inbound Check: details will be under the `inbound_check`
|
|
205
|
-
* object.
|
|
206
204
|
* - `inbound_international_ach_transfer` - Inbound International ACH Transfer:
|
|
207
205
|
* details will be under the `inbound_international_ach_transfer` object.
|
|
208
206
|
* - `inbound_real_time_payments_transfer_confirmation` - Inbound Real-Time
|
|
@@ -250,7 +248,6 @@ export namespace Transaction {
|
|
|
250
248
|
| 'fee_payment'
|
|
251
249
|
| 'inbound_ach_transfer'
|
|
252
250
|
| 'inbound_ach_transfer_return_intention'
|
|
253
|
-
| 'inbound_check'
|
|
254
251
|
| 'inbound_international_ach_transfer'
|
|
255
252
|
| 'inbound_real_time_payments_transfer_confirmation'
|
|
256
253
|
| 'inbound_wire_drawdown_payment_reversal'
|
|
@@ -303,12 +300,6 @@ export namespace Transaction {
|
|
|
303
300
|
*/
|
|
304
301
|
inbound_ach_transfer: Source.InboundACHTransfer | null;
|
|
305
302
|
|
|
306
|
-
/**
|
|
307
|
-
* An Inbound Check object. This field will be present in the JSON response if and
|
|
308
|
-
* only if `category` is equal to `inbound_check`.
|
|
309
|
-
*/
|
|
310
|
-
inbound_check: Source.InboundCheck | null;
|
|
311
|
-
|
|
312
303
|
/**
|
|
313
304
|
* An Inbound International ACH Transfer object. This field will be present in the
|
|
314
305
|
* JSON response if and only if `category` is equal to
|
|
@@ -2464,54 +2455,6 @@ export namespace Transaction {
|
|
|
2464
2455
|
}
|
|
2465
2456
|
}
|
|
2466
2457
|
|
|
2467
|
-
/**
|
|
2468
|
-
* An Inbound Check object. This field will be present in the JSON response if and
|
|
2469
|
-
* only if `category` is equal to `inbound_check`.
|
|
2470
|
-
*/
|
|
2471
|
-
export interface InboundCheck {
|
|
2472
|
-
/**
|
|
2473
|
-
* The amount in the minor unit of the destination account currency. For dollars,
|
|
2474
|
-
* for example, this is cents.
|
|
2475
|
-
*/
|
|
2476
|
-
amount: number;
|
|
2477
|
-
|
|
2478
|
-
/**
|
|
2479
|
-
* The American Bankers' Association (ABA) Routing Transit Number (RTN) for the
|
|
2480
|
-
* bank depositing this check. In some rare cases, this is not transmitted via
|
|
2481
|
-
* Check21 and the value will be null.
|
|
2482
|
-
*/
|
|
2483
|
-
bank_of_first_deposit_routing_number: string | null;
|
|
2484
|
-
|
|
2485
|
-
/**
|
|
2486
|
-
* The front image of the check. This is a black and white TIFF image file.
|
|
2487
|
-
*/
|
|
2488
|
-
check_front_image_file_id: string | null;
|
|
2489
|
-
|
|
2490
|
-
/**
|
|
2491
|
-
* The number of the check. This field is set by the depositing bank and can be
|
|
2492
|
-
* unreliable.
|
|
2493
|
-
*/
|
|
2494
|
-
check_number: string | null;
|
|
2495
|
-
|
|
2496
|
-
/**
|
|
2497
|
-
* The rear image of the check. This is a black and white TIFF image file.
|
|
2498
|
-
*/
|
|
2499
|
-
check_rear_image_file_id: string | null;
|
|
2500
|
-
|
|
2501
|
-
/**
|
|
2502
|
-
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
|
|
2503
|
-
* transaction's currency.
|
|
2504
|
-
*
|
|
2505
|
-
* - `CAD` - Canadian Dollar (CAD)
|
|
2506
|
-
* - `CHF` - Swiss Franc (CHF)
|
|
2507
|
-
* - `EUR` - Euro (EUR)
|
|
2508
|
-
* - `GBP` - British Pound (GBP)
|
|
2509
|
-
* - `JPY` - Japanese Yen (JPY)
|
|
2510
|
-
* - `USD` - US Dollar (USD)
|
|
2511
|
-
*/
|
|
2512
|
-
currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
|
|
2513
|
-
}
|
|
2514
|
-
|
|
2515
2458
|
/**
|
|
2516
2459
|
* An Inbound International ACH Transfer object. This field will be present in the
|
|
2517
2460
|
* JSON response if and only if `category` is equal to
|
|
@@ -3440,7 +3383,6 @@ export namespace TransactionListParams {
|
|
|
3440
3383
|
| 'fee_payment'
|
|
3441
3384
|
| 'inbound_ach_transfer'
|
|
3442
3385
|
| 'inbound_ach_transfer_return_intention'
|
|
3443
|
-
| 'inbound_check'
|
|
3444
3386
|
| 'inbound_international_ach_transfer'
|
|
3445
3387
|
| 'inbound_real_time_payments_transfer_confirmation'
|
|
3446
3388
|
| 'inbound_wire_drawdown_payment_reversal'
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.44.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.44.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.44.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|