increase 0.11.3 → 0.11.5

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 (97) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/README.md +1 -1
  3. package/index.d.mts +12 -0
  4. package/index.d.ts +12 -0
  5. package/index.d.ts.map +1 -1
  6. package/index.js +6 -0
  7. package/index.js.map +1 -1
  8. package/index.mjs +6 -0
  9. package/index.mjs.map +1 -1
  10. package/package.json +1 -1
  11. package/resources/card-payments.d.ts +1797 -0
  12. package/resources/card-payments.d.ts.map +1 -0
  13. package/resources/card-payments.js +28 -0
  14. package/resources/card-payments.js.map +1 -0
  15. package/resources/card-payments.mjs +23 -0
  16. package/resources/card-payments.mjs.map +1 -0
  17. package/resources/cards.d.ts +7 -1
  18. package/resources/cards.d.ts.map +1 -1
  19. package/resources/cards.js.map +1 -1
  20. package/resources/cards.mjs.map +1 -1
  21. package/resources/entities/entities.d.ts +16 -6
  22. package/resources/entities/entities.d.ts.map +1 -1
  23. package/resources/entities/entities.js.map +1 -1
  24. package/resources/entities/entities.mjs.map +1 -1
  25. package/resources/event-subscriptions.d.ts +40 -2
  26. package/resources/event-subscriptions.d.ts.map +1 -1
  27. package/resources/event-subscriptions.js.map +1 -1
  28. package/resources/event-subscriptions.mjs.map +1 -1
  29. package/resources/events.d.ts +21 -2
  30. package/resources/events.d.ts.map +1 -1
  31. package/resources/events.js.map +1 -1
  32. package/resources/events.mjs.map +1 -1
  33. package/resources/files.d.ts +4 -0
  34. package/resources/files.d.ts.map +1 -1
  35. package/resources/files.js.map +1 -1
  36. package/resources/files.mjs.map +1 -1
  37. package/resources/index.d.ts +2 -0
  38. package/resources/index.d.ts.map +1 -1
  39. package/resources/index.js +8 -2
  40. package/resources/index.js.map +1 -1
  41. package/resources/index.mjs +2 -0
  42. package/resources/index.mjs.map +1 -1
  43. package/resources/physical-cards.d.ts +318 -0
  44. package/resources/physical-cards.d.ts.map +1 -0
  45. package/resources/physical-cards.js +40 -0
  46. package/resources/physical-cards.js.map +1 -0
  47. package/resources/physical-cards.mjs +35 -0
  48. package/resources/physical-cards.mjs.map +1 -0
  49. package/resources/simulations/ach-transfers.d.ts +5 -5
  50. package/resources/simulations/ach-transfers.d.ts.map +1 -1
  51. package/resources/simulations/index.d.ts +1 -0
  52. package/resources/simulations/index.d.ts.map +1 -1
  53. package/resources/simulations/index.js +3 -1
  54. package/resources/simulations/index.js.map +1 -1
  55. package/resources/simulations/index.mjs +1 -0
  56. package/resources/simulations/index.mjs.map +1 -1
  57. package/resources/simulations/interest-payments.d.ts +5 -5
  58. package/resources/simulations/interest-payments.d.ts.map +1 -1
  59. package/resources/simulations/physical-cards.d.ts +34 -0
  60. package/resources/simulations/physical-cards.d.ts.map +1 -0
  61. package/resources/simulations/physical-cards.js +19 -0
  62. package/resources/simulations/physical-cards.js.map +1 -0
  63. package/resources/simulations/physical-cards.mjs +15 -0
  64. package/resources/simulations/physical-cards.mjs.map +1 -0
  65. package/resources/simulations/real-time-payments-transfers.d.ts +5 -5
  66. package/resources/simulations/real-time-payments-transfers.d.ts.map +1 -1
  67. package/resources/simulations/simulations.d.ts +4 -0
  68. package/resources/simulations/simulations.d.ts.map +1 -1
  69. package/resources/simulations/simulations.js +3 -0
  70. package/resources/simulations/simulations.js.map +1 -1
  71. package/resources/simulations/simulations.mjs +3 -0
  72. package/resources/simulations/simulations.mjs.map +1 -1
  73. package/resources/simulations/wire-transfers.d.ts +5 -5
  74. package/resources/simulations/wire-transfers.d.ts.map +1 -1
  75. package/resources/transactions.d.ts +6 -6
  76. package/resources/transactions.d.ts.map +1 -1
  77. package/src/index.ts +14 -0
  78. package/src/resources/card-payments.ts +2284 -0
  79. package/src/resources/cards.ts +8 -1
  80. package/src/resources/entities/entities.ts +18 -6
  81. package/src/resources/event-subscriptions.ts +64 -0
  82. package/src/resources/events.ts +45 -0
  83. package/src/resources/files.ts +5 -0
  84. package/src/resources/index.ts +9 -0
  85. package/src/resources/physical-cards.ts +394 -0
  86. package/src/resources/simulations/ach-transfers.ts +6 -6
  87. package/src/resources/simulations/index.ts +1 -0
  88. package/src/resources/simulations/interest-payments.ts +6 -6
  89. package/src/resources/simulations/physical-cards.ts +51 -0
  90. package/src/resources/simulations/real-time-payments-transfers.ts +6 -6
  91. package/src/resources/simulations/simulations.ts +5 -0
  92. package/src/resources/simulations/wire-transfers.ts +6 -6
  93. package/src/resources/transactions.ts +8 -8
  94. package/src/version.ts +1 -1
  95. package/version.d.ts +1 -1
  96. package/version.js +1 -1
  97. package/version.mjs +1 -1
@@ -185,10 +185,10 @@ export namespace Transaction {
185
185
  * - `card_dispute_acceptance` - Card Dispute Acceptance: details will be under the
186
186
  * `card_dispute_acceptance` object.
187
187
  * - `card_refund` - Card Refund: details will be under the `card_refund` object.
188
- * - `card_revenue_payment` - Card Revenue Payment: details will be under the
189
- * `card_revenue_payment` object.
190
188
  * - `card_settlement` - Card Settlement: details will be under the
191
189
  * `card_settlement` object.
190
+ * - `card_revenue_payment` - Card Revenue Payment: details will be under the
191
+ * `card_revenue_payment` object.
192
192
  * - `check_deposit_acceptance` - Check Deposit Acceptance: details will be under
193
193
  * the `check_deposit_acceptance` object.
194
194
  * - `check_deposit_return` - Check Deposit Return: details will be under the
@@ -212,11 +212,11 @@ export namespace Transaction {
212
212
  * - `inbound_real_time_payments_transfer_confirmation` - Inbound Real-Time
213
213
  * Payments Transfer Confirmation: details will be under the
214
214
  * `inbound_real_time_payments_transfer_confirmation` object.
215
- * - `inbound_wire_drawdown_payment` - Inbound Wire Drawdown Payment: details will
216
- * be under the `inbound_wire_drawdown_payment` object.
217
215
  * - `inbound_wire_drawdown_payment_reversal` - Inbound Wire Drawdown Payment
218
216
  * Reversal: details will be under the `inbound_wire_drawdown_payment_reversal`
219
217
  * object.
218
+ * - `inbound_wire_drawdown_payment` - Inbound Wire Drawdown Payment: details will
219
+ * be under the `inbound_wire_drawdown_payment` object.
220
220
  * - `inbound_wire_reversal` - Inbound Wire Reversal: details will be under the
221
221
  * `inbound_wire_reversal` object.
222
222
  * - `inbound_wire_transfer` - Inbound Wire Transfer: details will be under the
@@ -243,8 +243,8 @@ export namespace Transaction {
243
243
  | 'ach_transfer_return'
244
244
  | 'card_dispute_acceptance'
245
245
  | 'card_refund'
246
- | 'card_revenue_payment'
247
246
  | 'card_settlement'
247
+ | 'card_revenue_payment'
248
248
  | 'check_deposit_acceptance'
249
249
  | 'check_deposit_return'
250
250
  | 'check_transfer_deposit'
@@ -256,8 +256,8 @@ export namespace Transaction {
256
256
  | 'inbound_check'
257
257
  | 'inbound_international_ach_transfer'
258
258
  | 'inbound_real_time_payments_transfer_confirmation'
259
- | 'inbound_wire_drawdown_payment'
260
259
  | 'inbound_wire_drawdown_payment_reversal'
260
+ | 'inbound_wire_drawdown_payment'
261
261
  | 'inbound_wire_reversal'
262
262
  | 'inbound_wire_transfer'
263
263
  | 'interest_payment'
@@ -3355,8 +3355,8 @@ export namespace TransactionListParams {
3355
3355
  | 'ach_transfer_return'
3356
3356
  | 'card_dispute_acceptance'
3357
3357
  | 'card_refund'
3358
- | 'card_revenue_payment'
3359
3358
  | 'card_settlement'
3359
+ | 'card_revenue_payment'
3360
3360
  | 'check_deposit_acceptance'
3361
3361
  | 'check_deposit_return'
3362
3362
  | 'check_transfer_deposit'
@@ -3368,8 +3368,8 @@ export namespace TransactionListParams {
3368
3368
  | 'inbound_check'
3369
3369
  | 'inbound_international_ach_transfer'
3370
3370
  | 'inbound_real_time_payments_transfer_confirmation'
3371
- | 'inbound_wire_drawdown_payment'
3372
3371
  | 'inbound_wire_drawdown_payment_reversal'
3372
+ | 'inbound_wire_drawdown_payment'
3373
3373
  | 'inbound_wire_reversal'
3374
3374
  | 'inbound_wire_transfer'
3375
3375
  | 'interest_payment'
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '0.11.3'; // x-release-please-version
1
+ export const VERSION = '0.11.5'; // x-release-please-version
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.11.3";
1
+ export declare const VERSION = "0.11.5";
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.11.3'; // x-release-please-version
4
+ exports.VERSION = '0.11.5'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '0.11.3'; // x-release-please-version
1
+ export const VERSION = '0.11.5'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map