increase 0.43.0 → 0.45.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.
Files changed (36) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/package.json +2 -2
  3. package/resources/entities/entities.d.ts +7 -1
  4. package/resources/entities/entities.d.ts.map +1 -1
  5. package/resources/entities/entities.js.map +1 -1
  6. package/resources/entities/entities.mjs.map +1 -1
  7. package/resources/event-subscriptions.d.ts +16 -2
  8. package/resources/event-subscriptions.d.ts.map +1 -1
  9. package/resources/event-subscriptions.js.map +1 -1
  10. package/resources/event-subscriptions.mjs.map +1 -1
  11. package/resources/events.d.ts +4 -2
  12. package/resources/events.d.ts.map +1 -1
  13. package/resources/events.js.map +1 -1
  14. package/resources/events.mjs.map +1 -1
  15. package/resources/files.d.ts +3 -4
  16. package/resources/files.d.ts.map +1 -1
  17. package/resources/files.js.map +1 -1
  18. package/resources/files.mjs.map +1 -1
  19. package/resources/simulations/real-time-payments-transfers.d.ts +3 -49
  20. package/resources/simulations/real-time-payments-transfers.d.ts.map +1 -1
  21. package/resources/simulations/real-time-payments-transfers.js.map +1 -1
  22. package/resources/simulations/real-time-payments-transfers.mjs.map +1 -1
  23. package/resources/transactions.d.ts +4 -50
  24. package/resources/transactions.d.ts.map +1 -1
  25. package/resources/transactions.js.map +1 -1
  26. package/resources/transactions.mjs.map +1 -1
  27. package/src/resources/entities/entities.ts +8 -1
  28. package/src/resources/event-subscriptions.ts +20 -0
  29. package/src/resources/events.ts +6 -0
  30. package/src/resources/files.ts +3 -4
  31. package/src/resources/simulations/real-time-payments-transfers.ts +3 -56
  32. package/src/resources/transactions.ts +4 -57
  33. package/src/version.ts +1 -1
  34. package/version.d.ts +1 -1
  35. package/version.js +1 -1
  36. package/version.mjs +1 -1
@@ -1337,7 +1337,8 @@ 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`
1340
+ * - `inbound_check_deposit_return_intention` - Inbound Check Deposit Return
1341
+ * Intention: details will be under the `inbound_check_deposit_return_intention`
1341
1342
  * object.
1342
1343
  * - `inbound_international_ach_transfer` - Inbound International ACH Transfer:
1343
1344
  * details will be under the `inbound_international_ach_transfer` object.
@@ -1386,7 +1387,7 @@ export namespace InboundRealTimePaymentsTransferSimulationResult {
1386
1387
  | 'fee_payment'
1387
1388
  | 'inbound_ach_transfer'
1388
1389
  | 'inbound_ach_transfer_return_intention'
1389
- | 'inbound_check'
1390
+ | 'inbound_check_deposit_return_intention'
1390
1391
  | 'inbound_international_ach_transfer'
1391
1392
  | 'inbound_real_time_payments_transfer_confirmation'
1392
1393
  | 'inbound_wire_drawdown_payment_reversal'
@@ -1439,12 +1440,6 @@ export namespace InboundRealTimePaymentsTransferSimulationResult {
1439
1440
  */
1440
1441
  inbound_ach_transfer: Source.InboundACHTransfer | null;
1441
1442
 
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
1443
  /**
1449
1444
  * An Inbound International ACH Transfer object. This field will be present in the
1450
1445
  * JSON response if and only if `category` is equal to
@@ -3600,54 +3595,6 @@ export namespace InboundRealTimePaymentsTransferSimulationResult {
3600
3595
  }
3601
3596
  }
3602
3597
 
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
3598
  /**
3652
3599
  * An Inbound International ACH Transfer object. This field will be present in the
3653
3600
  * JSON response if and only if `category` is equal to
@@ -201,7 +201,8 @@ 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`
204
+ * - `inbound_check_deposit_return_intention` - Inbound Check Deposit Return
205
+ * Intention: details will be under the `inbound_check_deposit_return_intention`
205
206
  * object.
206
207
  * - `inbound_international_ach_transfer` - Inbound International ACH Transfer:
207
208
  * details will be under the `inbound_international_ach_transfer` object.
@@ -250,7 +251,7 @@ export namespace Transaction {
250
251
  | 'fee_payment'
251
252
  | 'inbound_ach_transfer'
252
253
  | 'inbound_ach_transfer_return_intention'
253
- | 'inbound_check'
254
+ | 'inbound_check_deposit_return_intention'
254
255
  | 'inbound_international_ach_transfer'
255
256
  | 'inbound_real_time_payments_transfer_confirmation'
256
257
  | 'inbound_wire_drawdown_payment_reversal'
@@ -303,12 +304,6 @@ export namespace Transaction {
303
304
  */
304
305
  inbound_ach_transfer: Source.InboundACHTransfer | null;
305
306
 
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
307
  /**
313
308
  * An Inbound International ACH Transfer object. This field will be present in the
314
309
  * JSON response if and only if `category` is equal to
@@ -2464,54 +2459,6 @@ export namespace Transaction {
2464
2459
  }
2465
2460
  }
2466
2461
 
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
2462
  /**
2516
2463
  * An Inbound International ACH Transfer object. This field will be present in the
2517
2464
  * JSON response if and only if `category` is equal to
@@ -3440,7 +3387,7 @@ export namespace TransactionListParams {
3440
3387
  | 'fee_payment'
3441
3388
  | 'inbound_ach_transfer'
3442
3389
  | 'inbound_ach_transfer_return_intention'
3443
- | 'inbound_check'
3390
+ | 'inbound_check_deposit_return_intention'
3444
3391
  | 'inbound_international_ach_transfer'
3445
3392
  | 'inbound_real_time_payments_transfer_confirmation'
3446
3393
  | 'inbound_wire_drawdown_payment_reversal'
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '0.43.0'; // x-release-please-version
1
+ export const VERSION = '0.45.0'; // x-release-please-version
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.43.0";
1
+ export declare const VERSION = "0.45.0";
2
2
  //# sourceMappingURL=version.d.ts.map
package/version.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VERSION = void 0;
4
- exports.VERSION = '0.43.0'; // x-release-please-version
4
+ exports.VERSION = '0.45.0'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '0.43.0'; // x-release-please-version
1
+ export const VERSION = '0.45.0'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map