increase 0.26.0 → 0.27.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 (101) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/core.d.ts +5 -0
  3. package/core.d.ts.map +1 -1
  4. package/core.js +10 -1
  5. package/core.js.map +1 -1
  6. package/core.mjs +8 -0
  7. package/core.mjs.map +1 -1
  8. package/index.d.mts +2 -0
  9. package/index.d.ts +2 -0
  10. package/index.d.ts.map +1 -1
  11. package/index.js +1 -0
  12. package/index.js.map +1 -1
  13. package/index.mjs +1 -0
  14. package/index.mjs.map +1 -1
  15. package/package.json +1 -1
  16. package/resources/account-numbers.d.ts +14 -0
  17. package/resources/account-numbers.d.ts.map +1 -1
  18. package/resources/account-numbers.js.map +1 -1
  19. package/resources/account-numbers.mjs.map +1 -1
  20. package/resources/event-subscriptions.d.ts +10 -2
  21. package/resources/event-subscriptions.d.ts.map +1 -1
  22. package/resources/event-subscriptions.js.map +1 -1
  23. package/resources/event-subscriptions.mjs.map +1 -1
  24. package/resources/events.d.ts +6 -2
  25. package/resources/events.d.ts.map +1 -1
  26. package/resources/events.js.map +1 -1
  27. package/resources/events.mjs.map +1 -1
  28. package/resources/inbound-ach-transfers.d.ts +4 -0
  29. package/resources/inbound-ach-transfers.d.ts.map +1 -1
  30. package/resources/inbound-ach-transfers.js.map +1 -1
  31. package/resources/inbound-ach-transfers.mjs.map +1 -1
  32. package/resources/inbound-wire-transfers.d.ts +69 -0
  33. package/resources/inbound-wire-transfers.d.ts.map +1 -1
  34. package/resources/inbound-wire-transfers.js +40 -1
  35. package/resources/inbound-wire-transfers.js.map +1 -1
  36. package/resources/inbound-wire-transfers.mjs +15 -0
  37. package/resources/inbound-wire-transfers.mjs.map +1 -1
  38. package/resources/index.d.ts +1 -1
  39. package/resources/index.d.ts.map +1 -1
  40. package/resources/index.js +2 -1
  41. package/resources/index.js.map +1 -1
  42. package/resources/index.mjs +1 -1
  43. package/resources/index.mjs.map +1 -1
  44. package/resources/oauth-tokens.d.ts +2 -1
  45. package/resources/oauth-tokens.d.ts.map +1 -1
  46. package/resources/oauth-tokens.js.map +1 -1
  47. package/resources/oauth-tokens.mjs.map +1 -1
  48. package/resources/real-time-decisions.d.ts +3 -1
  49. package/resources/real-time-decisions.d.ts.map +1 -1
  50. package/resources/real-time-decisions.js.map +1 -1
  51. package/resources/real-time-decisions.mjs.map +1 -1
  52. package/resources/simulations/ach-transfers.d.ts +2 -3849
  53. package/resources/simulations/ach-transfers.d.ts.map +1 -1
  54. package/resources/simulations/ach-transfers.js.map +1 -1
  55. package/resources/simulations/ach-transfers.mjs.map +1 -1
  56. package/resources/simulations/index.d.ts +2 -2
  57. package/resources/simulations/index.d.ts.map +1 -1
  58. package/resources/simulations/index.js.map +1 -1
  59. package/resources/simulations/index.mjs +1 -1
  60. package/resources/simulations/index.mjs.map +1 -1
  61. package/resources/simulations/interest-payments.d.ts +3 -1
  62. package/resources/simulations/interest-payments.d.ts.map +1 -1
  63. package/resources/simulations/interest-payments.js.map +1 -1
  64. package/resources/simulations/interest-payments.mjs.map +1 -1
  65. package/resources/simulations/real-time-payments-transfers.d.ts +3 -1
  66. package/resources/simulations/real-time-payments-transfers.d.ts.map +1 -1
  67. package/resources/simulations/real-time-payments-transfers.js.map +1 -1
  68. package/resources/simulations/real-time-payments-transfers.mjs.map +1 -1
  69. package/resources/simulations/simulations.d.ts +0 -2
  70. package/resources/simulations/simulations.d.ts.map +1 -1
  71. package/resources/simulations/simulations.js.map +1 -1
  72. package/resources/simulations/simulations.mjs.map +1 -1
  73. package/resources/simulations/wire-transfers.d.ts +2 -2745
  74. package/resources/simulations/wire-transfers.d.ts.map +1 -1
  75. package/resources/simulations/wire-transfers.js.map +1 -1
  76. package/resources/simulations/wire-transfers.mjs.map +1 -1
  77. package/resources/transactions.d.ts +4 -2
  78. package/resources/transactions.d.ts.map +1 -1
  79. package/resources/transactions.js.map +1 -1
  80. package/resources/transactions.mjs.map +1 -1
  81. package/src/core.ts +11 -0
  82. package/src/index.ts +2 -0
  83. package/src/resources/account-numbers.ts +17 -0
  84. package/src/resources/event-subscriptions.ts +12 -0
  85. package/src/resources/events.ts +8 -0
  86. package/src/resources/inbound-ach-transfers.ts +5 -0
  87. package/src/resources/inbound-wire-transfers.ts +96 -0
  88. package/src/resources/index.ts +6 -1
  89. package/src/resources/oauth-tokens.ts +2 -1
  90. package/src/resources/real-time-decisions.ts +3 -1
  91. package/src/resources/simulations/ach-transfers.ts +2 -4849
  92. package/src/resources/simulations/index.ts +2 -7
  93. package/src/resources/simulations/interest-payments.ts +3 -0
  94. package/src/resources/simulations/real-time-payments-transfers.ts +3 -0
  95. package/src/resources/simulations/simulations.ts +0 -2
  96. package/src/resources/simulations/wire-transfers.ts +2 -3452
  97. package/src/resources/transactions.ts +4 -0
  98. package/src/version.ts +1 -1
  99. package/version.d.ts +1 -1
  100. package/version.js +1 -1
  101. package/version.mjs +1 -1
@@ -1,11 +1,6 @@
1
1
  // File generated from our OpenAPI spec by Stainless.
2
2
 
3
- export {
4
- ACHTransferSimulation,
5
- ACHTransferCreateInboundParams,
6
- ACHTransferReturnParams,
7
- ACHTransfers,
8
- } from './ach-transfers';
3
+ export { ACHTransferCreateInboundParams, ACHTransferReturnParams, ACHTransfers } from './ach-transfers';
9
4
  export { AccountStatementCreateParams, AccountStatements } from './account-statements';
10
5
  export { AccountTransfers } from './account-transfers';
11
6
  export { CardAuthorizationSimulation, CardAuthorizeParams, CardSettlementParams, Cards } from './cards';
@@ -39,4 +34,4 @@ export {
39
34
  export { PhysicalCardShipmentAdvanceParams, PhysicalCards } from './physical-cards';
40
35
  export { ProgramCreateParams, Programs } from './programs';
41
36
  export { Simulations } from './simulations';
42
- export { WireTransferSimulation, WireTransferCreateInboundParams, WireTransfers } from './wire-transfers';
37
+ export { WireTransferCreateInboundParams, WireTransfers } from './wire-transfers';
@@ -219,6 +219,8 @@ export namespace InterestPaymentSimulationResult {
219
219
  * `inbound_wire_reversal` object.
220
220
  * - `inbound_wire_transfer` - Inbound Wire Transfer Intention: details will be
221
221
  * under the `inbound_wire_transfer` object.
222
+ * - `inbound_wire_transfer_reversal` - Inbound Wire Transfer Reversal Intention:
223
+ * details will be under the `inbound_wire_transfer_reversal` object.
222
224
  * - `interest_payment` - Interest Payment: details will be under the
223
225
  * `interest_payment` object.
224
226
  * - `internal_source` - Internal Source: details will be under the
@@ -258,6 +260,7 @@ export namespace InterestPaymentSimulationResult {
258
260
  | 'inbound_wire_drawdown_payment'
259
261
  | 'inbound_wire_reversal'
260
262
  | 'inbound_wire_transfer'
263
+ | 'inbound_wire_transfer_reversal'
261
264
  | 'interest_payment'
262
265
  | 'internal_source'
263
266
  | 'real_time_payments_transfer_acknowledgement'
@@ -1333,6 +1333,8 @@ export namespace InboundRealTimePaymentsTransferSimulationResult {
1333
1333
  * `inbound_wire_reversal` object.
1334
1334
  * - `inbound_wire_transfer` - Inbound Wire Transfer Intention: details will be
1335
1335
  * under the `inbound_wire_transfer` object.
1336
+ * - `inbound_wire_transfer_reversal` - Inbound Wire Transfer Reversal Intention:
1337
+ * details will be under the `inbound_wire_transfer_reversal` object.
1336
1338
  * - `interest_payment` - Interest Payment: details will be under the
1337
1339
  * `interest_payment` object.
1338
1340
  * - `internal_source` - Internal Source: details will be under the
@@ -1372,6 +1374,7 @@ export namespace InboundRealTimePaymentsTransferSimulationResult {
1372
1374
  | 'inbound_wire_drawdown_payment'
1373
1375
  | 'inbound_wire_reversal'
1374
1376
  | 'inbound_wire_transfer'
1377
+ | 'inbound_wire_transfer_reversal'
1375
1378
  | 'interest_payment'
1376
1379
  | 'internal_source'
1377
1380
  | 'real_time_payments_transfer_acknowledgement'
@@ -57,7 +57,6 @@ export namespace Simulations {
57
57
  export import AccountStatements = AccountStatementsAPI.AccountStatements;
58
58
  export import AccountStatementCreateParams = AccountStatementsAPI.AccountStatementCreateParams;
59
59
  export import ACHTransfers = ACHTransfersAPI.ACHTransfers;
60
- export import ACHTransferSimulation = ACHTransfersAPI.ACHTransferSimulation;
61
60
  export import ACHTransferCreateInboundParams = ACHTransfersAPI.ACHTransferCreateInboundParams;
62
61
  export import ACHTransferReturnParams = ACHTransfersAPI.ACHTransferReturnParams;
63
62
  export import CardDisputes = CardDisputesAPI.CardDisputes;
@@ -82,7 +81,6 @@ export namespace Simulations {
82
81
  export import InterestPaymentSimulationResult = InterestPaymentsAPI.InterestPaymentSimulationResult;
83
82
  export import InterestPaymentCreateParams = InterestPaymentsAPI.InterestPaymentCreateParams;
84
83
  export import WireTransfers = WireTransfersAPI.WireTransfers;
85
- export import WireTransferSimulation = WireTransfersAPI.WireTransferSimulation;
86
84
  export import WireTransferCreateInboundParams = WireTransfersAPI.WireTransferCreateInboundParams;
87
85
  export import Cards = CardsAPI.Cards;
88
86
  export import CardAuthorizationSimulation = CardsAPI.CardAuthorizationSimulation;