increase 0.135.0 → 0.136.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 (47) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/README.md +2 -2
  3. package/package.json +2 -2
  4. package/resources/simulations/card-authorization-expirations.d.ts +1 -1
  5. package/resources/simulations/card-authorization-expirations.js +1 -1
  6. package/resources/simulations/card-authorization-expirations.mjs +1 -1
  7. package/resources/simulations/inbound-funds-holds.d.ts +1 -1
  8. package/resources/simulations/inbound-funds-holds.js +1 -1
  9. package/resources/simulations/inbound-funds-holds.mjs +1 -1
  10. package/resources/simulations/inbound-real-time-payments-transfers.d.ts +3 -2
  11. package/resources/simulations/inbound-real-time-payments-transfers.d.ts.map +1 -1
  12. package/resources/simulations/inbound-real-time-payments-transfers.js +3 -2
  13. package/resources/simulations/inbound-real-time-payments-transfers.js.map +1 -1
  14. package/resources/simulations/inbound-real-time-payments-transfers.mjs +3 -2
  15. package/resources/simulations/inbound-real-time-payments-transfers.mjs.map +1 -1
  16. package/resources/simulations/inbound-wire-transfers.d.ts +1 -1
  17. package/resources/simulations/inbound-wire-transfers.js +1 -1
  18. package/resources/simulations/inbound-wire-transfers.mjs +1 -1
  19. package/resources/simulations/programs.d.ts +4 -3
  20. package/resources/simulations/programs.d.ts.map +1 -1
  21. package/resources/simulations/programs.js +4 -3
  22. package/resources/simulations/programs.js.map +1 -1
  23. package/resources/simulations/programs.mjs +4 -3
  24. package/resources/simulations/programs.mjs.map +1 -1
  25. package/resources/simulations/real-time-payments-transfers.d.ts +4 -3
  26. package/resources/simulations/real-time-payments-transfers.d.ts.map +1 -1
  27. package/resources/simulations/real-time-payments-transfers.js +4 -3
  28. package/resources/simulations/real-time-payments-transfers.js.map +1 -1
  29. package/resources/simulations/real-time-payments-transfers.mjs +4 -3
  30. package/resources/simulations/real-time-payments-transfers.mjs.map +1 -1
  31. package/resources/simulations/simulations.d.ts +48 -48
  32. package/resources/simulations/simulations.d.ts.map +1 -1
  33. package/resources/simulations/simulations.js +34 -34
  34. package/resources/simulations/simulations.js.map +1 -1
  35. package/resources/simulations/simulations.mjs +34 -34
  36. package/resources/simulations/simulations.mjs.map +1 -1
  37. package/src/resources/simulations/card-authorization-expirations.ts +1 -1
  38. package/src/resources/simulations/inbound-funds-holds.ts +1 -1
  39. package/src/resources/simulations/inbound-real-time-payments-transfers.ts +3 -2
  40. package/src/resources/simulations/inbound-wire-transfers.ts +1 -1
  41. package/src/resources/simulations/programs.ts +4 -3
  42. package/src/resources/simulations/real-time-payments-transfers.ts +4 -3
  43. package/src/resources/simulations/simulations.ts +57 -57
  44. package/src/version.ts +1 -1
  45. package/version.d.ts +1 -1
  46. package/version.js +1 -1
  47. package/version.mjs +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.136.0 (2024-10-31)
4
+
5
+ Full Changelog: [v0.135.0...v0.136.0](https://github.com/Increase/increase-node/compare/v0.135.0...v0.136.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** api update ([#714](https://github.com/Increase/increase-node/issues/714)) ([f17c21a](https://github.com/Increase/increase-node/commit/f17c21a0f541c5f98244f62e1f5d140a29e0c126))
10
+
3
11
  ## 0.135.0 (2024-10-22)
4
12
 
5
13
  Full Changelog: [v0.134.0...v0.135.0](https://github.com/Increase/increase-node/compare/v0.134.0...v0.135.0)
package/README.md CHANGED
@@ -182,7 +182,7 @@ Note that requests which time out will be [retried twice by default](#retries).
182
182
  ## Auto-pagination
183
183
 
184
184
  List methods in the Increase API are paginated.
185
- You can use `for await … of` syntax to iterate through items across all pages:
185
+ You can use the `for await … of` syntax to iterate through items across all pages:
186
186
 
187
187
  ```ts
188
188
  async function fetchAllAccounts(params) {
@@ -195,7 +195,7 @@ async function fetchAllAccounts(params) {
195
195
  }
196
196
  ```
197
197
 
198
- Alternatively, you can make request a single page at a time:
198
+ Alternatively, you can request a single page at a time:
199
199
 
200
200
  ```ts
201
201
  let page = await client.accounts.list();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "increase",
3
- "version": "0.135.0",
3
+ "version": "0.136.0",
4
4
  "description": "The official TypeScript library for the Increase API",
5
5
  "author": "Increase <dev-feedback@increase.com>",
6
6
  "types": "./index.d.ts",
@@ -10,7 +10,7 @@
10
10
  "license": "Apache-2.0",
11
11
  "packageManager": "yarn@1.22.22",
12
12
  "files": [
13
- "*"
13
+ "**/*"
14
14
  ],
15
15
  "private": false,
16
16
  "scripts": {
@@ -4,7 +4,7 @@ import * as CardAuthorizationExpirationsAPI from "./card-authorization-expiratio
4
4
  import * as CardPaymentsAPI from "../card-payments.js";
5
5
  export declare class CardAuthorizationExpirations extends APIResource {
6
6
  /**
7
- * Simulates expiring a card authorization immediately.
7
+ * Simulates expiring a Card Authorization immediately.
8
8
  */
9
9
  create(body: CardAuthorizationExpirationCreateParams, options?: Core.RequestOptions): Core.APIPromise<CardPaymentsAPI.CardPayment>;
10
10
  }
@@ -5,7 +5,7 @@ exports.CardAuthorizationExpirations = void 0;
5
5
  const resource_1 = require("../../resource.js");
6
6
  class CardAuthorizationExpirations extends resource_1.APIResource {
7
7
  /**
8
- * Simulates expiring a card authorization immediately.
8
+ * Simulates expiring a Card Authorization immediately.
9
9
  */
10
10
  create(body, options) {
11
11
  return this._client.post('/simulations/card_authorization_expirations', { body, ...options });
@@ -2,7 +2,7 @@
2
2
  import { APIResource } from "../../resource.mjs";
3
3
  export class CardAuthorizationExpirations extends APIResource {
4
4
  /**
5
- * Simulates expiring a card authorization immediately.
5
+ * Simulates expiring a Card Authorization immediately.
6
6
  */
7
7
  create(body, options) {
8
8
  return this._client.post('/simulations/card_authorization_expirations', { body, ...options });
@@ -3,7 +3,7 @@ import * as Core from "../../core.js";
3
3
  import * as InboundFundsHoldsAPI from "./inbound-funds-holds.js";
4
4
  export declare class InboundFundsHolds extends APIResource {
5
5
  /**
6
- * This endpoint simulates immediately releasing an inbound funds hold, which might
6
+ * This endpoint simulates immediately releasing an Inbound Funds Hold, which might
7
7
  * be created as a result of e.g., an ACH debit.
8
8
  */
9
9
  release(inboundFundsHoldId: string, options?: Core.RequestOptions): Core.APIPromise<InboundFundsHoldReleaseResponse>;
@@ -5,7 +5,7 @@ exports.InboundFundsHolds = void 0;
5
5
  const resource_1 = require("../../resource.js");
6
6
  class InboundFundsHolds extends resource_1.APIResource {
7
7
  /**
8
- * This endpoint simulates immediately releasing an inbound funds hold, which might
8
+ * This endpoint simulates immediately releasing an Inbound Funds Hold, which might
9
9
  * be created as a result of e.g., an ACH debit.
10
10
  */
11
11
  release(inboundFundsHoldId, options) {
@@ -2,7 +2,7 @@
2
2
  import { APIResource } from "../../resource.mjs";
3
3
  export class InboundFundsHolds extends APIResource {
4
4
  /**
5
- * This endpoint simulates immediately releasing an inbound funds hold, which might
5
+ * This endpoint simulates immediately releasing an Inbound Funds Hold, which might
6
6
  * be created as a result of e.g., an ACH debit.
7
7
  */
8
8
  release(inboundFundsHoldId, options) {
@@ -4,8 +4,9 @@ import * as SimulationsInboundRealTimePaymentsTransfersAPI from "./inbound-real-
4
4
  import * as InboundRealTimePaymentsTransfersAPI from "../inbound-real-time-payments-transfers.js";
5
5
  export declare class InboundRealTimePaymentsTransfers extends APIResource {
6
6
  /**
7
- * Simulates an inbound Real-Time Payments transfer to your account. Real-Time
8
- * Payments are a beta feature.
7
+ * Simulates an
8
+ * [Inbound Real-Time Payments Transfer](#inbound-real-time-payments-transfers) to
9
+ * your account. Real-Time Payments are a beta feature.
9
10
  */
10
11
  create(body: InboundRealTimePaymentsTransferCreateParams, options?: Core.RequestOptions): Core.APIPromise<InboundRealTimePaymentsTransfersAPI.InboundRealTimePaymentsTransfer>;
11
12
  }
@@ -1 +1 @@
1
- {"version":3,"file":"inbound-real-time-payments-transfers.d.ts","sourceRoot":"","sources":["../../src/resources/simulations/inbound-real-time-payments-transfers.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,KAAK,IAAI,MAAM,YAAY,CAAC;AACnC,OAAO,KAAK,8CAA8C,MAAM,wCAAwC,CAAC;AACzG,OAAO,KAAK,mCAAmC,MAAM,yCAAyC,CAAC;AAE/F,qBAAa,gCAAiC,SAAQ,WAAW;IAC/D;;;OAGG;IACH,MAAM,CACJ,IAAI,EAAE,2CAA2C,EACjD,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAC5B,IAAI,CAAC,UAAU,CAAC,mCAAmC,CAAC,+BAA+B,CAAC;CAGxF;AAED,MAAM,WAAW,2CAA2C;IAC1D;;;OAGG;IACH,iBAAiB,EAAE,MAAM,CAAC;IAE1B;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAE/B;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;OAEG;IACH,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAE/B;;OAEG;IACH,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAEhC;;OAEG;IACH,sBAAsB,CAAC,EAAE,MAAM,CAAC;CACjC;AAED,yBAAiB,gCAAgC,CAAC;IAChD,MAAM,QAAQ,2CAA2C,GAAG,8CAA8C,CAAC,2CAA2C,CAAC;CACxJ"}
1
+ {"version":3,"file":"inbound-real-time-payments-transfers.d.ts","sourceRoot":"","sources":["../../src/resources/simulations/inbound-real-time-payments-transfers.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,KAAK,IAAI,MAAM,YAAY,CAAC;AACnC,OAAO,KAAK,8CAA8C,MAAM,wCAAwC,CAAC;AACzG,OAAO,KAAK,mCAAmC,MAAM,yCAAyC,CAAC;AAE/F,qBAAa,gCAAiC,SAAQ,WAAW;IAC/D;;;;OAIG;IACH,MAAM,CACJ,IAAI,EAAE,2CAA2C,EACjD,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAC5B,IAAI,CAAC,UAAU,CAAC,mCAAmC,CAAC,+BAA+B,CAAC;CAGxF;AAED,MAAM,WAAW,2CAA2C;IAC1D;;;OAGG;IACH,iBAAiB,EAAE,MAAM,CAAC;IAE1B;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAE/B;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB;;OAEG;IACH,qBAAqB,CAAC,EAAE,MAAM,CAAC;IAE/B;;OAEG;IACH,sBAAsB,CAAC,EAAE,MAAM,CAAC;IAEhC;;OAEG;IACH,sBAAsB,CAAC,EAAE,MAAM,CAAC;CACjC;AAED,yBAAiB,gCAAgC,CAAC;IAChD,MAAM,QAAQ,2CAA2C,GAAG,8CAA8C,CAAC,2CAA2C,CAAC;CACxJ"}
@@ -5,8 +5,9 @@ exports.InboundRealTimePaymentsTransfers = void 0;
5
5
  const resource_1 = require("../../resource.js");
6
6
  class InboundRealTimePaymentsTransfers extends resource_1.APIResource {
7
7
  /**
8
- * Simulates an inbound Real-Time Payments transfer to your account. Real-Time
9
- * Payments are a beta feature.
8
+ * Simulates an
9
+ * [Inbound Real-Time Payments Transfer](#inbound-real-time-payments-transfers) to
10
+ * your account. Real-Time Payments are a beta feature.
10
11
  */
11
12
  create(body, options) {
12
13
  return this._client.post('/simulations/inbound_real_time_payments_transfers', { body, ...options });
@@ -1 +1 @@
1
- {"version":3,"file":"inbound-real-time-payments-transfers.js","sourceRoot":"","sources":["../../src/resources/simulations/inbound-real-time-payments-transfers.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,gDAA6C;AAK7C,MAAa,gCAAiC,SAAQ,sBAAW;IAC/D;;;OAGG;IACH,MAAM,CACJ,IAAiD,EACjD,OAA6B;QAE7B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,mDAAmD,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACtG,CAAC;CACF;AAXD,4EAWC;AAwCD,WAAiB,gCAAgC;AAEjD,CAAC,EAFgB,gCAAgC,GAAhC,wCAAgC,KAAhC,wCAAgC,QAEhD"}
1
+ {"version":3,"file":"inbound-real-time-payments-transfers.js","sourceRoot":"","sources":["../../src/resources/simulations/inbound-real-time-payments-transfers.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,gDAA6C;AAK7C,MAAa,gCAAiC,SAAQ,sBAAW;IAC/D;;;;OAIG;IACH,MAAM,CACJ,IAAiD,EACjD,OAA6B;QAE7B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,mDAAmD,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACtG,CAAC;CACF;AAZD,4EAYC;AAwCD,WAAiB,gCAAgC;AAEjD,CAAC,EAFgB,gCAAgC,GAAhC,wCAAgC,KAAhC,wCAAgC,QAEhD"}
@@ -2,8 +2,9 @@
2
2
  import { APIResource } from "../../resource.mjs";
3
3
  export class InboundRealTimePaymentsTransfers extends APIResource {
4
4
  /**
5
- * Simulates an inbound Real-Time Payments transfer to your account. Real-Time
6
- * Payments are a beta feature.
5
+ * Simulates an
6
+ * [Inbound Real-Time Payments Transfer](#inbound-real-time-payments-transfers) to
7
+ * your account. Real-Time Payments are a beta feature.
7
8
  */
8
9
  create(body, options) {
9
10
  return this._client.post('/simulations/inbound_real_time_payments_transfers', { body, ...options });
@@ -1 +1 @@
1
- {"version":3,"file":"inbound-real-time-payments-transfers.mjs","sourceRoot":"","sources":["../../src/resources/simulations/inbound-real-time-payments-transfers.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;AAKtB,MAAM,OAAO,gCAAiC,SAAQ,WAAW;IAC/D;;;OAGG;IACH,MAAM,CACJ,IAAiD,EACjD,OAA6B;QAE7B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,mDAAmD,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACtG,CAAC;CACF;AAwCD,WAAiB,gCAAgC;AAEjD,CAAC,EAFgB,gCAAgC,KAAhC,gCAAgC,QAEhD"}
1
+ {"version":3,"file":"inbound-real-time-payments-transfers.mjs","sourceRoot":"","sources":["../../src/resources/simulations/inbound-real-time-payments-transfers.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;AAKtB,MAAM,OAAO,gCAAiC,SAAQ,WAAW;IAC/D;;;;OAIG;IACH,MAAM,CACJ,IAAiD,EACjD,OAA6B;QAE7B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,mDAAmD,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACtG,CAAC;CACF;AAwCD,WAAiB,gCAAgC;AAEjD,CAAC,EAFgB,gCAAgC,KAAhC,gCAAgC,QAEhD"}
@@ -4,7 +4,7 @@ import * as SimulationsInboundWireTransfersAPI from "./inbound-wire-transfers.js
4
4
  import * as InboundWireTransfersAPI from "../inbound-wire-transfers.js";
5
5
  export declare class InboundWireTransfers extends APIResource {
6
6
  /**
7
- * Simulates an inbound Wire Transfer to your account.
7
+ * Simulates an [Inbound Wire Transfer](#inbound-wire-transfers) to your account.
8
8
  */
9
9
  create(body: InboundWireTransferCreateParams, options?: Core.RequestOptions): Core.APIPromise<InboundWireTransfersAPI.InboundWireTransfer>;
10
10
  }
@@ -5,7 +5,7 @@ exports.InboundWireTransfers = void 0;
5
5
  const resource_1 = require("../../resource.js");
6
6
  class InboundWireTransfers extends resource_1.APIResource {
7
7
  /**
8
- * Simulates an inbound Wire Transfer to your account.
8
+ * Simulates an [Inbound Wire Transfer](#inbound-wire-transfers) to your account.
9
9
  */
10
10
  create(body, options) {
11
11
  return this._client.post('/simulations/inbound_wire_transfers', { body, ...options });
@@ -2,7 +2,7 @@
2
2
  import { APIResource } from "../../resource.mjs";
3
3
  export class InboundWireTransfers extends APIResource {
4
4
  /**
5
- * Simulates an inbound Wire Transfer to your account.
5
+ * Simulates an [Inbound Wire Transfer](#inbound-wire-transfers) to your account.
6
6
  */
7
7
  create(body, options) {
8
8
  return this._client.post('/simulations/inbound_wire_transfers', { body, ...options });
@@ -4,9 +4,10 @@ import * as SimulationsProgramsAPI from "./programs.js";
4
4
  import * as ProgramsAPI from "../programs.js";
5
5
  export declare class Programs extends APIResource {
6
6
  /**
7
- * Simulates a program being created in your group. By default, your group has one
8
- * program called Commercial Banking. Note that when your group operates more than
9
- * one program, `program_id` is a required field when creating accounts.
7
+ * Simulates a [Program](#programs) being created in your group. By default, your
8
+ * group has one program called Commercial Banking. Note that when your group
9
+ * operates more than one program, `program_id` is a required field when creating
10
+ * accounts.
10
11
  */
11
12
  create(body: ProgramCreateParams, options?: Core.RequestOptions): Core.APIPromise<ProgramsAPI.Program>;
12
13
  }
@@ -1 +1 @@
1
- {"version":3,"file":"programs.d.ts","sourceRoot":"","sources":["../../src/resources/simulations/programs.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,KAAK,IAAI,MAAM,YAAY,CAAC;AACnC,OAAO,KAAK,sBAAsB,MAAM,YAAY,CAAC;AACrD,OAAO,KAAK,WAAW,MAAM,aAAa,CAAC;AAE3C,qBAAa,QAAS,SAAQ,WAAW;IACvC;;;;OAIG;IACH,MAAM,CAAC,IAAI,EAAE,mBAAmB,EAAE,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,UAAU,CAAC,WAAW,CAAC,OAAO,CAAC;CAGvG;AAED,MAAM,WAAW,mBAAmB;IAClC;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;CACd;AAED,yBAAiB,QAAQ,CAAC;IACxB,MAAM,QAAQ,mBAAmB,GAAG,sBAAsB,CAAC,mBAAmB,CAAC;CAChF"}
1
+ {"version":3,"file":"programs.d.ts","sourceRoot":"","sources":["../../src/resources/simulations/programs.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,KAAK,IAAI,MAAM,YAAY,CAAC;AACnC,OAAO,KAAK,sBAAsB,MAAM,YAAY,CAAC;AACrD,OAAO,KAAK,WAAW,MAAM,aAAa,CAAC;AAE3C,qBAAa,QAAS,SAAQ,WAAW;IACvC;;;;;OAKG;IACH,MAAM,CAAC,IAAI,EAAE,mBAAmB,EAAE,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,UAAU,CAAC,WAAW,CAAC,OAAO,CAAC;CAGvG;AAED,MAAM,WAAW,mBAAmB;IAClC;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;CACd;AAED,yBAAiB,QAAQ,CAAC;IACxB,MAAM,QAAQ,mBAAmB,GAAG,sBAAsB,CAAC,mBAAmB,CAAC;CAChF"}
@@ -5,9 +5,10 @@ exports.Programs = void 0;
5
5
  const resource_1 = require("../../resource.js");
6
6
  class Programs extends resource_1.APIResource {
7
7
  /**
8
- * Simulates a program being created in your group. By default, your group has one
9
- * program called Commercial Banking. Note that when your group operates more than
10
- * one program, `program_id` is a required field when creating accounts.
8
+ * Simulates a [Program](#programs) being created in your group. By default, your
9
+ * group has one program called Commercial Banking. Note that when your group
10
+ * operates more than one program, `program_id` is a required field when creating
11
+ * accounts.
11
12
  */
12
13
  create(body, options) {
13
14
  return this._client.post('/simulations/programs', { body, ...options });
@@ -1 +1 @@
1
- {"version":3,"file":"programs.js","sourceRoot":"","sources":["../../src/resources/simulations/programs.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,gDAA6C;AAK7C,MAAa,QAAS,SAAQ,sBAAW;IACvC;;;;OAIG;IACH,MAAM,CAAC,IAAyB,EAAE,OAA6B;QAC7D,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,uBAAuB,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC1E,CAAC;CACF;AATD,4BASC;AASD,WAAiB,QAAQ;AAEzB,CAAC,EAFgB,QAAQ,GAAR,gBAAQ,KAAR,gBAAQ,QAExB"}
1
+ {"version":3,"file":"programs.js","sourceRoot":"","sources":["../../src/resources/simulations/programs.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,gDAA6C;AAK7C,MAAa,QAAS,SAAQ,sBAAW;IACvC;;;;;OAKG;IACH,MAAM,CAAC,IAAyB,EAAE,OAA6B;QAC7D,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,uBAAuB,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC1E,CAAC;CACF;AAVD,4BAUC;AASD,WAAiB,QAAQ;AAEzB,CAAC,EAFgB,QAAQ,GAAR,gBAAQ,KAAR,gBAAQ,QAExB"}
@@ -2,9 +2,10 @@
2
2
  import { APIResource } from "../../resource.mjs";
3
3
  export class Programs extends APIResource {
4
4
  /**
5
- * Simulates a program being created in your group. By default, your group has one
6
- * program called Commercial Banking. Note that when your group operates more than
7
- * one program, `program_id` is a required field when creating accounts.
5
+ * Simulates a [Program](#programs) being created in your group. By default, your
6
+ * group has one program called Commercial Banking. Note that when your group
7
+ * operates more than one program, `program_id` is a required field when creating
8
+ * accounts.
8
9
  */
9
10
  create(body, options) {
10
11
  return this._client.post('/simulations/programs', { body, ...options });
@@ -1 +1 @@
1
- {"version":3,"file":"programs.mjs","sourceRoot":"","sources":["../../src/resources/simulations/programs.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;AAKtB,MAAM,OAAO,QAAS,SAAQ,WAAW;IACvC;;;;OAIG;IACH,MAAM,CAAC,IAAyB,EAAE,OAA6B;QAC7D,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,uBAAuB,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC1E,CAAC;CACF;AASD,WAAiB,QAAQ;AAEzB,CAAC,EAFgB,QAAQ,KAAR,QAAQ,QAExB"}
1
+ {"version":3,"file":"programs.mjs","sourceRoot":"","sources":["../../src/resources/simulations/programs.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;AAKtB,MAAM,OAAO,QAAS,SAAQ,WAAW;IACvC;;;;;OAKG;IACH,MAAM,CAAC,IAAyB,EAAE,OAA6B;QAC7D,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,uBAAuB,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IAC1E,CAAC;CACF;AASD,WAAiB,QAAQ;AAEzB,CAAC,EAFgB,QAAQ,KAAR,QAAQ,QAExB"}
@@ -4,9 +4,10 @@ import * as SimulationsRealTimePaymentsTransfersAPI from "./real-time-payments-t
4
4
  import * as RealTimePaymentsTransfersAPI from "../real-time-payments-transfers.js";
5
5
  export declare class RealTimePaymentsTransfers extends APIResource {
6
6
  /**
7
- * Simulates submission of a Real-Time Payments transfer and handling the response
8
- * from the destination financial institution. This transfer must first have a
9
- * `status` of `pending_submission`.
7
+ * Simulates submission of a
8
+ * [Real-Time Payments Transfer](#real-time-payments-transfers) and handling the
9
+ * response from the destination financial institution. This transfer must first
10
+ * have a `status` of `pending_submission`.
10
11
  */
11
12
  complete(realTimePaymentsTransferId: string, body: RealTimePaymentsTransferCompleteParams, options?: Core.RequestOptions): Core.APIPromise<RealTimePaymentsTransfersAPI.RealTimePaymentsTransfer>;
12
13
  }
@@ -1 +1 @@
1
- {"version":3,"file":"real-time-payments-transfers.d.ts","sourceRoot":"","sources":["../../src/resources/simulations/real-time-payments-transfers.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,KAAK,IAAI,MAAM,YAAY,CAAC;AACnC,OAAO,KAAK,uCAAuC,MAAM,gCAAgC,CAAC;AAC1F,OAAO,KAAK,4BAA4B,MAAM,iCAAiC,CAAC;AAEhF,qBAAa,yBAA0B,SAAQ,WAAW;IACxD;;;;OAIG;IACH,QAAQ,CACN,0BAA0B,EAAE,MAAM,EAClC,IAAI,EAAE,sCAAsC,EAC5C,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAC5B,IAAI,CAAC,UAAU,CAAC,4BAA4B,CAAC,wBAAwB,CAAC;CAM1E;AAED,MAAM,WAAW,sCAAsC;IACrD;;OAEG;IACH,SAAS,CAAC,EAAE,sCAAsC,CAAC,SAAS,CAAC;CAC9D;AAED,yBAAiB,sCAAsC,CAAC;IACtD;;OAEG;IACH,UAAiB,SAAS;QACxB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAmDG;QACH,kBAAkB,EACd,gBAAgB,GAChB,iBAAiB,GACjB,+BAA+B,GAC/B,iCAAiC,GACjC,mDAAmD,GACnD,uBAAuB,GACvB,WAAW,GACX,uBAAuB,GACvB,gCAAgC,GAChC,mBAAmB,GACnB,4BAA4B,GAC5B,0BAA0B,GAC1B,sBAAsB,GACtB,wBAAwB,GACxB,SAAS,GACT,mCAAmC,GACnC,oCAAoC,GACpC,8BAA8B,GAC9B,6BAA6B,GAC7B,kBAAkB,GAClB,OAAO,CAAC;KACb;CACF;AAED,yBAAiB,yBAAyB,CAAC;IACzC,MAAM,QAAQ,sCAAsC,GAAG,uCAAuC,CAAC,sCAAsC,CAAC;CACvI"}
1
+ {"version":3,"file":"real-time-payments-transfers.d.ts","sourceRoot":"","sources":["../../src/resources/simulations/real-time-payments-transfers.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,KAAK,IAAI,MAAM,YAAY,CAAC;AACnC,OAAO,KAAK,uCAAuC,MAAM,gCAAgC,CAAC;AAC1F,OAAO,KAAK,4BAA4B,MAAM,iCAAiC,CAAC;AAEhF,qBAAa,yBAA0B,SAAQ,WAAW;IACxD;;;;;OAKG;IACH,QAAQ,CACN,0BAA0B,EAAE,MAAM,EAClC,IAAI,EAAE,sCAAsC,EAC5C,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAC5B,IAAI,CAAC,UAAU,CAAC,4BAA4B,CAAC,wBAAwB,CAAC;CAM1E;AAED,MAAM,WAAW,sCAAsC;IACrD;;OAEG;IACH,SAAS,CAAC,EAAE,sCAAsC,CAAC,SAAS,CAAC;CAC9D;AAED,yBAAiB,sCAAsC,CAAC;IACtD;;OAEG;IACH,UAAiB,SAAS;QACxB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAmDG;QACH,kBAAkB,EACd,gBAAgB,GAChB,iBAAiB,GACjB,+BAA+B,GAC/B,iCAAiC,GACjC,mDAAmD,GACnD,uBAAuB,GACvB,WAAW,GACX,uBAAuB,GACvB,gCAAgC,GAChC,mBAAmB,GACnB,4BAA4B,GAC5B,0BAA0B,GAC1B,sBAAsB,GACtB,wBAAwB,GACxB,SAAS,GACT,mCAAmC,GACnC,oCAAoC,GACpC,8BAA8B,GAC9B,6BAA6B,GAC7B,kBAAkB,GAClB,OAAO,CAAC;KACb;CACF;AAED,yBAAiB,yBAAyB,CAAC;IACzC,MAAM,QAAQ,sCAAsC,GAAG,uCAAuC,CAAC,sCAAsC,CAAC;CACvI"}
@@ -5,9 +5,10 @@ exports.RealTimePaymentsTransfers = void 0;
5
5
  const resource_1 = require("../../resource.js");
6
6
  class RealTimePaymentsTransfers extends resource_1.APIResource {
7
7
  /**
8
- * Simulates submission of a Real-Time Payments transfer and handling the response
9
- * from the destination financial institution. This transfer must first have a
10
- * `status` of `pending_submission`.
8
+ * Simulates submission of a
9
+ * [Real-Time Payments Transfer](#real-time-payments-transfers) and handling the
10
+ * response from the destination financial institution. This transfer must first
11
+ * have a `status` of `pending_submission`.
11
12
  */
12
13
  complete(realTimePaymentsTransferId, body, options) {
13
14
  return this._client.post(`/simulations/real_time_payments_transfers/${realTimePaymentsTransferId}/complete`, { body, ...options });
@@ -1 +1 @@
1
- {"version":3,"file":"real-time-payments-transfers.js","sourceRoot":"","sources":["../../src/resources/simulations/real-time-payments-transfers.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,gDAA6C;AAK7C,MAAa,yBAA0B,SAAQ,sBAAW;IACxD;;;;OAIG;IACH,QAAQ,CACN,0BAAkC,EAClC,IAA4C,EAC5C,OAA6B;QAE7B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CACtB,6CAA6C,0BAA0B,WAAW,EAClF,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CACrB,CAAC;IACJ,CAAC;CACF;AAhBD,8DAgBC;AA2FD,WAAiB,yBAAyB;AAE1C,CAAC,EAFgB,yBAAyB,GAAzB,iCAAyB,KAAzB,iCAAyB,QAEzC"}
1
+ {"version":3,"file":"real-time-payments-transfers.js","sourceRoot":"","sources":["../../src/resources/simulations/real-time-payments-transfers.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,gDAA6C;AAK7C,MAAa,yBAA0B,SAAQ,sBAAW;IACxD;;;;;OAKG;IACH,QAAQ,CACN,0BAAkC,EAClC,IAA4C,EAC5C,OAA6B;QAE7B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CACtB,6CAA6C,0BAA0B,WAAW,EAClF,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CACrB,CAAC;IACJ,CAAC;CACF;AAjBD,8DAiBC;AA2FD,WAAiB,yBAAyB;AAE1C,CAAC,EAFgB,yBAAyB,GAAzB,iCAAyB,KAAzB,iCAAyB,QAEzC"}
@@ -2,9 +2,10 @@
2
2
  import { APIResource } from "../../resource.mjs";
3
3
  export class RealTimePaymentsTransfers extends APIResource {
4
4
  /**
5
- * Simulates submission of a Real-Time Payments transfer and handling the response
6
- * from the destination financial institution. This transfer must first have a
7
- * `status` of `pending_submission`.
5
+ * Simulates submission of a
6
+ * [Real-Time Payments Transfer](#real-time-payments-transfers) and handling the
7
+ * response from the destination financial institution. This transfer must first
8
+ * have a `status` of `pending_submission`.
8
9
  */
9
10
  complete(realTimePaymentsTransferId, body, options) {
10
11
  return this._client.post(`/simulations/real_time_payments_transfers/${realTimePaymentsTransferId}/complete`, { body, ...options });
@@ -1 +1 @@
1
- {"version":3,"file":"real-time-payments-transfers.mjs","sourceRoot":"","sources":["../../src/resources/simulations/real-time-payments-transfers.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;AAKtB,MAAM,OAAO,yBAA0B,SAAQ,WAAW;IACxD;;;;OAIG;IACH,QAAQ,CACN,0BAAkC,EAClC,IAA4C,EAC5C,OAA6B;QAE7B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CACtB,6CAA6C,0BAA0B,WAAW,EAClF,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CACrB,CAAC;IACJ,CAAC;CACF;AA2FD,WAAiB,yBAAyB;AAE1C,CAAC,EAFgB,yBAAyB,KAAzB,yBAAyB,QAEzC"}
1
+ {"version":3,"file":"real-time-payments-transfers.mjs","sourceRoot":"","sources":["../../src/resources/simulations/real-time-payments-transfers.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;AAKtB,MAAM,OAAO,yBAA0B,SAAQ,WAAW;IACxD;;;;;OAKG;IACH,QAAQ,CACN,0BAAkC,EAClC,IAA4C,EAC5C,OAA6B;QAE7B,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CACtB,6CAA6C,0BAA0B,WAAW,EAClF,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CACrB,CAAC;IACJ,CAAC;CACF;AA2FD,WAAiB,yBAAyB;AAE1C,CAAC,EAFgB,yBAAyB,KAAzB,yBAAyB,QAEzC"}
@@ -27,87 +27,87 @@ import * as ProgramsAPI from "./programs.js";
27
27
  import * as RealTimePaymentsTransfersAPI from "./real-time-payments-transfers.js";
28
28
  import * as WireTransfersAPI from "./wire-transfers.js";
29
29
  export declare class Simulations extends APIResource {
30
- accountTransfers: AccountTransfersAPI.AccountTransfers;
31
- inboundACHTransfers: InboundACHTransfersAPI.InboundACHTransfers;
32
- achTransfers: ACHTransfersAPI.ACHTransfers;
33
- checkTransfers: CheckTransfersAPI.CheckTransfers;
34
- inboundCheckDeposits: InboundCheckDepositsAPI.InboundCheckDeposits;
35
- checkDeposits: CheckDepositsAPI.CheckDeposits;
36
- inboundWireTransfers: InboundWireTransfersAPI.InboundWireTransfers;
37
- wireTransfers: WireTransfersAPI.WireTransfers;
38
- inboundWireDrawdownRequests: InboundWireDrawdownRequestsAPI.InboundWireDrawdownRequests;
39
- inboundRealTimePaymentsTransfers: InboundRealTimePaymentsTransfersAPI.InboundRealTimePaymentsTransfers;
40
- inboundFundsHolds: InboundFundsHoldsAPI.InboundFundsHolds;
41
- realTimePaymentsTransfers: RealTimePaymentsTransfersAPI.RealTimePaymentsTransfers;
30
+ interestPayments: InterestPaymentsAPI.InterestPayments;
42
31
  cardAuthorizations: CardAuthorizationsAPI.CardAuthorizations;
32
+ cardAuthorizationExpirations: CardAuthorizationExpirationsAPI.CardAuthorizationExpirations;
43
33
  cardSettlements: CardSettlementsAPI.CardSettlements;
44
34
  cardReversals: CardReversalsAPI.CardReversals;
45
35
  cardIncrements: CardIncrementsAPI.CardIncrements;
46
- cardAuthorizationExpirations: CardAuthorizationExpirationsAPI.CardAuthorizationExpirations;
47
36
  cardFuelConfirmations: CardFuelConfirmationsAPI.CardFuelConfirmations;
48
37
  cardRefunds: CardRefundsAPI.CardRefunds;
49
38
  cardDisputes: CardDisputesAPI.CardDisputes;
50
- digitalWalletTokenRequests: DigitalWalletTokenRequestsAPI.DigitalWalletTokenRequests;
51
39
  physicalCards: PhysicalCardsAPI.PhysicalCards;
52
- interestPayments: InterestPaymentsAPI.InterestPayments;
53
- accountStatements: AccountStatementsAPI.AccountStatements;
54
- documents: DocumentsAPI.Documents;
40
+ digitalWalletTokenRequests: DigitalWalletTokenRequestsAPI.DigitalWalletTokenRequests;
41
+ inboundFundsHolds: InboundFundsHoldsAPI.InboundFundsHolds;
42
+ accountTransfers: AccountTransfersAPI.AccountTransfers;
43
+ achTransfers: ACHTransfersAPI.ACHTransfers;
44
+ inboundACHTransfers: InboundACHTransfersAPI.InboundACHTransfers;
45
+ wireTransfers: WireTransfersAPI.WireTransfers;
46
+ inboundWireTransfers: InboundWireTransfersAPI.InboundWireTransfers;
47
+ inboundWireDrawdownRequests: InboundWireDrawdownRequestsAPI.InboundWireDrawdownRequests;
48
+ checkTransfers: CheckTransfersAPI.CheckTransfers;
49
+ inboundCheckDeposits: InboundCheckDepositsAPI.InboundCheckDeposits;
50
+ realTimePaymentsTransfers: RealTimePaymentsTransfersAPI.RealTimePaymentsTransfers;
51
+ inboundRealTimePaymentsTransfers: InboundRealTimePaymentsTransfersAPI.InboundRealTimePaymentsTransfers;
52
+ checkDeposits: CheckDepositsAPI.CheckDeposits;
55
53
  inboundMailItems: InboundMailItemsAPI.InboundMailItems;
56
54
  programs: ProgramsAPI.Programs;
55
+ accountStatements: AccountStatementsAPI.AccountStatements;
56
+ documents: DocumentsAPI.Documents;
57
57
  }
58
58
  export declare namespace Simulations {
59
- export import AccountTransfers = AccountTransfersAPI.AccountTransfers;
60
- export import InboundACHTransfers = InboundACHTransfersAPI.InboundACHTransfers;
61
- export import InboundACHTransferCreateParams = InboundACHTransfersAPI.InboundACHTransferCreateParams;
62
- export import ACHTransfers = ACHTransfersAPI.ACHTransfers;
63
- export import ACHTransferCreateNotificationOfChangeParams = ACHTransfersAPI.ACHTransferCreateNotificationOfChangeParams;
64
- export import ACHTransferReturnParams = ACHTransfersAPI.ACHTransferReturnParams;
65
- export import CheckTransfers = CheckTransfersAPI.CheckTransfers;
66
- export import InboundCheckDeposits = InboundCheckDepositsAPI.InboundCheckDeposits;
67
- export import InboundCheckDepositCreateParams = InboundCheckDepositsAPI.InboundCheckDepositCreateParams;
68
- export import CheckDeposits = CheckDepositsAPI.CheckDeposits;
69
- export import InboundWireTransfers = InboundWireTransfersAPI.InboundWireTransfers;
70
- export import InboundWireTransferCreateParams = InboundWireTransfersAPI.InboundWireTransferCreateParams;
71
- export import WireTransfers = WireTransfersAPI.WireTransfers;
72
- export import InboundWireDrawdownRequests = InboundWireDrawdownRequestsAPI.InboundWireDrawdownRequests;
73
- export import InboundWireDrawdownRequestCreateParams = InboundWireDrawdownRequestsAPI.InboundWireDrawdownRequestCreateParams;
74
- export import InboundRealTimePaymentsTransfers = InboundRealTimePaymentsTransfersAPI.InboundRealTimePaymentsTransfers;
75
- export import InboundRealTimePaymentsTransferCreateParams = InboundRealTimePaymentsTransfersAPI.InboundRealTimePaymentsTransferCreateParams;
76
- export import InboundFundsHolds = InboundFundsHoldsAPI.InboundFundsHolds;
77
- export import InboundFundsHoldReleaseResponse = InboundFundsHoldsAPI.InboundFundsHoldReleaseResponse;
78
- export import RealTimePaymentsTransfers = RealTimePaymentsTransfersAPI.RealTimePaymentsTransfers;
79
- export import RealTimePaymentsTransferCompleteParams = RealTimePaymentsTransfersAPI.RealTimePaymentsTransferCompleteParams;
59
+ export import InterestPayments = InterestPaymentsAPI.InterestPayments;
60
+ export import InterestPaymentCreateParams = InterestPaymentsAPI.InterestPaymentCreateParams;
80
61
  export import CardAuthorizations = CardAuthorizationsAPI.CardAuthorizations;
81
62
  export import CardAuthorizationCreateResponse = CardAuthorizationsAPI.CardAuthorizationCreateResponse;
82
63
  export import CardAuthorizationCreateParams = CardAuthorizationsAPI.CardAuthorizationCreateParams;
64
+ export import CardAuthorizationExpirations = CardAuthorizationExpirationsAPI.CardAuthorizationExpirations;
65
+ export import CardAuthorizationExpirationCreateParams = CardAuthorizationExpirationsAPI.CardAuthorizationExpirationCreateParams;
83
66
  export import CardSettlements = CardSettlementsAPI.CardSettlements;
84
67
  export import CardSettlementCreateParams = CardSettlementsAPI.CardSettlementCreateParams;
85
68
  export import CardReversals = CardReversalsAPI.CardReversals;
86
69
  export import CardReversalCreateParams = CardReversalsAPI.CardReversalCreateParams;
87
70
  export import CardIncrements = CardIncrementsAPI.CardIncrements;
88
71
  export import CardIncrementCreateParams = CardIncrementsAPI.CardIncrementCreateParams;
89
- export import CardAuthorizationExpirations = CardAuthorizationExpirationsAPI.CardAuthorizationExpirations;
90
- export import CardAuthorizationExpirationCreateParams = CardAuthorizationExpirationsAPI.CardAuthorizationExpirationCreateParams;
91
72
  export import CardFuelConfirmations = CardFuelConfirmationsAPI.CardFuelConfirmations;
92
73
  export import CardFuelConfirmationCreateParams = CardFuelConfirmationsAPI.CardFuelConfirmationCreateParams;
93
74
  export import CardRefunds = CardRefundsAPI.CardRefunds;
94
75
  export import CardRefundCreateParams = CardRefundsAPI.CardRefundCreateParams;
95
76
  export import CardDisputes = CardDisputesAPI.CardDisputes;
96
77
  export import CardDisputeActionParams = CardDisputesAPI.CardDisputeActionParams;
78
+ export import PhysicalCards = PhysicalCardsAPI.PhysicalCards;
79
+ export import PhysicalCardAdvanceShipmentParams = PhysicalCardsAPI.PhysicalCardAdvanceShipmentParams;
97
80
  export import DigitalWalletTokenRequests = DigitalWalletTokenRequestsAPI.DigitalWalletTokenRequests;
98
81
  export import DigitalWalletTokenRequestCreateResponse = DigitalWalletTokenRequestsAPI.DigitalWalletTokenRequestCreateResponse;
99
82
  export import DigitalWalletTokenRequestCreateParams = DigitalWalletTokenRequestsAPI.DigitalWalletTokenRequestCreateParams;
100
- export import PhysicalCards = PhysicalCardsAPI.PhysicalCards;
101
- export import PhysicalCardAdvanceShipmentParams = PhysicalCardsAPI.PhysicalCardAdvanceShipmentParams;
102
- export import InterestPayments = InterestPaymentsAPI.InterestPayments;
103
- export import InterestPaymentCreateParams = InterestPaymentsAPI.InterestPaymentCreateParams;
104
- export import AccountStatements = AccountStatementsAPI.AccountStatements;
105
- export import AccountStatementCreateParams = AccountStatementsAPI.AccountStatementCreateParams;
106
- export import Documents = DocumentsAPI.Documents;
107
- export import DocumentCreateParams = DocumentsAPI.DocumentCreateParams;
83
+ export import InboundFundsHolds = InboundFundsHoldsAPI.InboundFundsHolds;
84
+ export import InboundFundsHoldReleaseResponse = InboundFundsHoldsAPI.InboundFundsHoldReleaseResponse;
85
+ export import AccountTransfers = AccountTransfersAPI.AccountTransfers;
86
+ export import ACHTransfers = ACHTransfersAPI.ACHTransfers;
87
+ export import ACHTransferCreateNotificationOfChangeParams = ACHTransfersAPI.ACHTransferCreateNotificationOfChangeParams;
88
+ export import ACHTransferReturnParams = ACHTransfersAPI.ACHTransferReturnParams;
89
+ export import InboundACHTransfers = InboundACHTransfersAPI.InboundACHTransfers;
90
+ export import InboundACHTransferCreateParams = InboundACHTransfersAPI.InboundACHTransferCreateParams;
91
+ export import WireTransfers = WireTransfersAPI.WireTransfers;
92
+ export import InboundWireTransfers = InboundWireTransfersAPI.InboundWireTransfers;
93
+ export import InboundWireTransferCreateParams = InboundWireTransfersAPI.InboundWireTransferCreateParams;
94
+ export import InboundWireDrawdownRequests = InboundWireDrawdownRequestsAPI.InboundWireDrawdownRequests;
95
+ export import InboundWireDrawdownRequestCreateParams = InboundWireDrawdownRequestsAPI.InboundWireDrawdownRequestCreateParams;
96
+ export import CheckTransfers = CheckTransfersAPI.CheckTransfers;
97
+ export import InboundCheckDeposits = InboundCheckDepositsAPI.InboundCheckDeposits;
98
+ export import InboundCheckDepositCreateParams = InboundCheckDepositsAPI.InboundCheckDepositCreateParams;
99
+ export import RealTimePaymentsTransfers = RealTimePaymentsTransfersAPI.RealTimePaymentsTransfers;
100
+ export import RealTimePaymentsTransferCompleteParams = RealTimePaymentsTransfersAPI.RealTimePaymentsTransferCompleteParams;
101
+ export import InboundRealTimePaymentsTransfers = InboundRealTimePaymentsTransfersAPI.InboundRealTimePaymentsTransfers;
102
+ export import InboundRealTimePaymentsTransferCreateParams = InboundRealTimePaymentsTransfersAPI.InboundRealTimePaymentsTransferCreateParams;
103
+ export import CheckDeposits = CheckDepositsAPI.CheckDeposits;
108
104
  export import InboundMailItems = InboundMailItemsAPI.InboundMailItems;
109
105
  export import InboundMailItemCreateParams = InboundMailItemsAPI.InboundMailItemCreateParams;
110
106
  export import Programs = ProgramsAPI.Programs;
111
107
  export import ProgramCreateParams = ProgramsAPI.ProgramCreateParams;
108
+ export import AccountStatements = AccountStatementsAPI.AccountStatements;
109
+ export import AccountStatementCreateParams = AccountStatementsAPI.AccountStatementCreateParams;
110
+ export import Documents = DocumentsAPI.Documents;
111
+ export import DocumentCreateParams = DocumentsAPI.DocumentCreateParams;
112
112
  }
113
113
  //# sourceMappingURL=simulations.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"simulations.d.ts","sourceRoot":"","sources":["../../src/resources/simulations/simulations.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"simulations.d.ts","sourceRoot":"","sources":["../../src/resources/simulations/simulations.ts"],"names":[],"mappings":"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"}
@@ -56,63 +56,63 @@ const WireTransfersAPI = __importStar(require("./wire-transfers.js"));
56
56
  class Simulations extends resource_1.APIResource {
57
57
  constructor() {
58
58
  super(...arguments);
59
- this.accountTransfers = new AccountTransfersAPI.AccountTransfers(this._client);
60
- this.inboundACHTransfers = new InboundACHTransfersAPI.InboundACHTransfers(this._client);
61
- this.achTransfers = new ACHTransfersAPI.ACHTransfers(this._client);
62
- this.checkTransfers = new CheckTransfersAPI.CheckTransfers(this._client);
63
- this.inboundCheckDeposits = new InboundCheckDepositsAPI.InboundCheckDeposits(this._client);
64
- this.checkDeposits = new CheckDepositsAPI.CheckDeposits(this._client);
65
- this.inboundWireTransfers = new InboundWireTransfersAPI.InboundWireTransfers(this._client);
66
- this.wireTransfers = new WireTransfersAPI.WireTransfers(this._client);
67
- this.inboundWireDrawdownRequests = new InboundWireDrawdownRequestsAPI.InboundWireDrawdownRequests(this._client);
68
- this.inboundRealTimePaymentsTransfers = new InboundRealTimePaymentsTransfersAPI.InboundRealTimePaymentsTransfers(this._client);
69
- this.inboundFundsHolds = new InboundFundsHoldsAPI.InboundFundsHolds(this._client);
70
- this.realTimePaymentsTransfers = new RealTimePaymentsTransfersAPI.RealTimePaymentsTransfers(this._client);
59
+ this.interestPayments = new InterestPaymentsAPI.InterestPayments(this._client);
71
60
  this.cardAuthorizations = new CardAuthorizationsAPI.CardAuthorizations(this._client);
61
+ this.cardAuthorizationExpirations = new CardAuthorizationExpirationsAPI.CardAuthorizationExpirations(this._client);
72
62
  this.cardSettlements = new CardSettlementsAPI.CardSettlements(this._client);
73
63
  this.cardReversals = new CardReversalsAPI.CardReversals(this._client);
74
64
  this.cardIncrements = new CardIncrementsAPI.CardIncrements(this._client);
75
- this.cardAuthorizationExpirations = new CardAuthorizationExpirationsAPI.CardAuthorizationExpirations(this._client);
76
65
  this.cardFuelConfirmations = new CardFuelConfirmationsAPI.CardFuelConfirmations(this._client);
77
66
  this.cardRefunds = new CardRefundsAPI.CardRefunds(this._client);
78
67
  this.cardDisputes = new CardDisputesAPI.CardDisputes(this._client);
79
- this.digitalWalletTokenRequests = new DigitalWalletTokenRequestsAPI.DigitalWalletTokenRequests(this._client);
80
68
  this.physicalCards = new PhysicalCardsAPI.PhysicalCards(this._client);
81
- this.interestPayments = new InterestPaymentsAPI.InterestPayments(this._client);
82
- this.accountStatements = new AccountStatementsAPI.AccountStatements(this._client);
83
- this.documents = new DocumentsAPI.Documents(this._client);
69
+ this.digitalWalletTokenRequests = new DigitalWalletTokenRequestsAPI.DigitalWalletTokenRequests(this._client);
70
+ this.inboundFundsHolds = new InboundFundsHoldsAPI.InboundFundsHolds(this._client);
71
+ this.accountTransfers = new AccountTransfersAPI.AccountTransfers(this._client);
72
+ this.achTransfers = new ACHTransfersAPI.ACHTransfers(this._client);
73
+ this.inboundACHTransfers = new InboundACHTransfersAPI.InboundACHTransfers(this._client);
74
+ this.wireTransfers = new WireTransfersAPI.WireTransfers(this._client);
75
+ this.inboundWireTransfers = new InboundWireTransfersAPI.InboundWireTransfers(this._client);
76
+ this.inboundWireDrawdownRequests = new InboundWireDrawdownRequestsAPI.InboundWireDrawdownRequests(this._client);
77
+ this.checkTransfers = new CheckTransfersAPI.CheckTransfers(this._client);
78
+ this.inboundCheckDeposits = new InboundCheckDepositsAPI.InboundCheckDeposits(this._client);
79
+ this.realTimePaymentsTransfers = new RealTimePaymentsTransfersAPI.RealTimePaymentsTransfers(this._client);
80
+ this.inboundRealTimePaymentsTransfers = new InboundRealTimePaymentsTransfersAPI.InboundRealTimePaymentsTransfers(this._client);
81
+ this.checkDeposits = new CheckDepositsAPI.CheckDeposits(this._client);
84
82
  this.inboundMailItems = new InboundMailItemsAPI.InboundMailItems(this._client);
85
83
  this.programs = new ProgramsAPI.Programs(this._client);
84
+ this.accountStatements = new AccountStatementsAPI.AccountStatements(this._client);
85
+ this.documents = new DocumentsAPI.Documents(this._client);
86
86
  }
87
87
  }
88
88
  exports.Simulations = Simulations;
89
89
  (function (Simulations) {
90
- Simulations.AccountTransfers = AccountTransfersAPI.AccountTransfers;
91
- Simulations.InboundACHTransfers = InboundACHTransfersAPI.InboundACHTransfers;
92
- Simulations.ACHTransfers = ACHTransfersAPI.ACHTransfers;
93
- Simulations.CheckTransfers = CheckTransfersAPI.CheckTransfers;
94
- Simulations.InboundCheckDeposits = InboundCheckDepositsAPI.InboundCheckDeposits;
95
- Simulations.CheckDeposits = CheckDepositsAPI.CheckDeposits;
96
- Simulations.InboundWireTransfers = InboundWireTransfersAPI.InboundWireTransfers;
97
- Simulations.WireTransfers = WireTransfersAPI.WireTransfers;
98
- Simulations.InboundWireDrawdownRequests = InboundWireDrawdownRequestsAPI.InboundWireDrawdownRequests;
99
- Simulations.InboundRealTimePaymentsTransfers = InboundRealTimePaymentsTransfersAPI.InboundRealTimePaymentsTransfers;
100
- Simulations.InboundFundsHolds = InboundFundsHoldsAPI.InboundFundsHolds;
101
- Simulations.RealTimePaymentsTransfers = RealTimePaymentsTransfersAPI.RealTimePaymentsTransfers;
90
+ Simulations.InterestPayments = InterestPaymentsAPI.InterestPayments;
102
91
  Simulations.CardAuthorizations = CardAuthorizationsAPI.CardAuthorizations;
92
+ Simulations.CardAuthorizationExpirations = CardAuthorizationExpirationsAPI.CardAuthorizationExpirations;
103
93
  Simulations.CardSettlements = CardSettlementsAPI.CardSettlements;
104
94
  Simulations.CardReversals = CardReversalsAPI.CardReversals;
105
95
  Simulations.CardIncrements = CardIncrementsAPI.CardIncrements;
106
- Simulations.CardAuthorizationExpirations = CardAuthorizationExpirationsAPI.CardAuthorizationExpirations;
107
96
  Simulations.CardFuelConfirmations = CardFuelConfirmationsAPI.CardFuelConfirmations;
108
97
  Simulations.CardRefunds = CardRefundsAPI.CardRefunds;
109
98
  Simulations.CardDisputes = CardDisputesAPI.CardDisputes;
110
- Simulations.DigitalWalletTokenRequests = DigitalWalletTokenRequestsAPI.DigitalWalletTokenRequests;
111
99
  Simulations.PhysicalCards = PhysicalCardsAPI.PhysicalCards;
112
- Simulations.InterestPayments = InterestPaymentsAPI.InterestPayments;
113
- Simulations.AccountStatements = AccountStatementsAPI.AccountStatements;
114
- Simulations.Documents = DocumentsAPI.Documents;
100
+ Simulations.DigitalWalletTokenRequests = DigitalWalletTokenRequestsAPI.DigitalWalletTokenRequests;
101
+ Simulations.InboundFundsHolds = InboundFundsHoldsAPI.InboundFundsHolds;
102
+ Simulations.AccountTransfers = AccountTransfersAPI.AccountTransfers;
103
+ Simulations.ACHTransfers = ACHTransfersAPI.ACHTransfers;
104
+ Simulations.InboundACHTransfers = InboundACHTransfersAPI.InboundACHTransfers;
105
+ Simulations.WireTransfers = WireTransfersAPI.WireTransfers;
106
+ Simulations.InboundWireTransfers = InboundWireTransfersAPI.InboundWireTransfers;
107
+ Simulations.InboundWireDrawdownRequests = InboundWireDrawdownRequestsAPI.InboundWireDrawdownRequests;
108
+ Simulations.CheckTransfers = CheckTransfersAPI.CheckTransfers;
109
+ Simulations.InboundCheckDeposits = InboundCheckDepositsAPI.InboundCheckDeposits;
110
+ Simulations.RealTimePaymentsTransfers = RealTimePaymentsTransfersAPI.RealTimePaymentsTransfers;
111
+ Simulations.InboundRealTimePaymentsTransfers = InboundRealTimePaymentsTransfersAPI.InboundRealTimePaymentsTransfers;
112
+ Simulations.CheckDeposits = CheckDepositsAPI.CheckDeposits;
115
113
  Simulations.InboundMailItems = InboundMailItemsAPI.InboundMailItems;
116
114
  Simulations.Programs = ProgramsAPI.Programs;
115
+ Simulations.AccountStatements = AccountStatementsAPI.AccountStatements;
116
+ Simulations.Documents = DocumentsAPI.Documents;
117
117
  })(Simulations = exports.Simulations || (exports.Simulations = {}));
118
118
  //# sourceMappingURL=simulations.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"simulations.js","sourceRoot":"","sources":["../../src/resources/simulations/simulations.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"simulations.js","sourceRoot":"","sources":["../../src/resources/simulations/simulations.ts"],"names":[],"mappings":"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"}
@@ -30,62 +30,62 @@ import * as WireTransfersAPI from "./wire-transfers.mjs";
30
30
  export class Simulations extends APIResource {
31
31
  constructor() {
32
32
  super(...arguments);
33
- this.accountTransfers = new AccountTransfersAPI.AccountTransfers(this._client);
34
- this.inboundACHTransfers = new InboundACHTransfersAPI.InboundACHTransfers(this._client);
35
- this.achTransfers = new ACHTransfersAPI.ACHTransfers(this._client);
36
- this.checkTransfers = new CheckTransfersAPI.CheckTransfers(this._client);
37
- this.inboundCheckDeposits = new InboundCheckDepositsAPI.InboundCheckDeposits(this._client);
38
- this.checkDeposits = new CheckDepositsAPI.CheckDeposits(this._client);
39
- this.inboundWireTransfers = new InboundWireTransfersAPI.InboundWireTransfers(this._client);
40
- this.wireTransfers = new WireTransfersAPI.WireTransfers(this._client);
41
- this.inboundWireDrawdownRequests = new InboundWireDrawdownRequestsAPI.InboundWireDrawdownRequests(this._client);
42
- this.inboundRealTimePaymentsTransfers = new InboundRealTimePaymentsTransfersAPI.InboundRealTimePaymentsTransfers(this._client);
43
- this.inboundFundsHolds = new InboundFundsHoldsAPI.InboundFundsHolds(this._client);
44
- this.realTimePaymentsTransfers = new RealTimePaymentsTransfersAPI.RealTimePaymentsTransfers(this._client);
33
+ this.interestPayments = new InterestPaymentsAPI.InterestPayments(this._client);
45
34
  this.cardAuthorizations = new CardAuthorizationsAPI.CardAuthorizations(this._client);
35
+ this.cardAuthorizationExpirations = new CardAuthorizationExpirationsAPI.CardAuthorizationExpirations(this._client);
46
36
  this.cardSettlements = new CardSettlementsAPI.CardSettlements(this._client);
47
37
  this.cardReversals = new CardReversalsAPI.CardReversals(this._client);
48
38
  this.cardIncrements = new CardIncrementsAPI.CardIncrements(this._client);
49
- this.cardAuthorizationExpirations = new CardAuthorizationExpirationsAPI.CardAuthorizationExpirations(this._client);
50
39
  this.cardFuelConfirmations = new CardFuelConfirmationsAPI.CardFuelConfirmations(this._client);
51
40
  this.cardRefunds = new CardRefundsAPI.CardRefunds(this._client);
52
41
  this.cardDisputes = new CardDisputesAPI.CardDisputes(this._client);
53
- this.digitalWalletTokenRequests = new DigitalWalletTokenRequestsAPI.DigitalWalletTokenRequests(this._client);
54
42
  this.physicalCards = new PhysicalCardsAPI.PhysicalCards(this._client);
55
- this.interestPayments = new InterestPaymentsAPI.InterestPayments(this._client);
56
- this.accountStatements = new AccountStatementsAPI.AccountStatements(this._client);
57
- this.documents = new DocumentsAPI.Documents(this._client);
43
+ this.digitalWalletTokenRequests = new DigitalWalletTokenRequestsAPI.DigitalWalletTokenRequests(this._client);
44
+ this.inboundFundsHolds = new InboundFundsHoldsAPI.InboundFundsHolds(this._client);
45
+ this.accountTransfers = new AccountTransfersAPI.AccountTransfers(this._client);
46
+ this.achTransfers = new ACHTransfersAPI.ACHTransfers(this._client);
47
+ this.inboundACHTransfers = new InboundACHTransfersAPI.InboundACHTransfers(this._client);
48
+ this.wireTransfers = new WireTransfersAPI.WireTransfers(this._client);
49
+ this.inboundWireTransfers = new InboundWireTransfersAPI.InboundWireTransfers(this._client);
50
+ this.inboundWireDrawdownRequests = new InboundWireDrawdownRequestsAPI.InboundWireDrawdownRequests(this._client);
51
+ this.checkTransfers = new CheckTransfersAPI.CheckTransfers(this._client);
52
+ this.inboundCheckDeposits = new InboundCheckDepositsAPI.InboundCheckDeposits(this._client);
53
+ this.realTimePaymentsTransfers = new RealTimePaymentsTransfersAPI.RealTimePaymentsTransfers(this._client);
54
+ this.inboundRealTimePaymentsTransfers = new InboundRealTimePaymentsTransfersAPI.InboundRealTimePaymentsTransfers(this._client);
55
+ this.checkDeposits = new CheckDepositsAPI.CheckDeposits(this._client);
58
56
  this.inboundMailItems = new InboundMailItemsAPI.InboundMailItems(this._client);
59
57
  this.programs = new ProgramsAPI.Programs(this._client);
58
+ this.accountStatements = new AccountStatementsAPI.AccountStatements(this._client);
59
+ this.documents = new DocumentsAPI.Documents(this._client);
60
60
  }
61
61
  }
62
62
  (function (Simulations) {
63
- Simulations.AccountTransfers = AccountTransfersAPI.AccountTransfers;
64
- Simulations.InboundACHTransfers = InboundACHTransfersAPI.InboundACHTransfers;
65
- Simulations.ACHTransfers = ACHTransfersAPI.ACHTransfers;
66
- Simulations.CheckTransfers = CheckTransfersAPI.CheckTransfers;
67
- Simulations.InboundCheckDeposits = InboundCheckDepositsAPI.InboundCheckDeposits;
68
- Simulations.CheckDeposits = CheckDepositsAPI.CheckDeposits;
69
- Simulations.InboundWireTransfers = InboundWireTransfersAPI.InboundWireTransfers;
70
- Simulations.WireTransfers = WireTransfersAPI.WireTransfers;
71
- Simulations.InboundWireDrawdownRequests = InboundWireDrawdownRequestsAPI.InboundWireDrawdownRequests;
72
- Simulations.InboundRealTimePaymentsTransfers = InboundRealTimePaymentsTransfersAPI.InboundRealTimePaymentsTransfers;
73
- Simulations.InboundFundsHolds = InboundFundsHoldsAPI.InboundFundsHolds;
74
- Simulations.RealTimePaymentsTransfers = RealTimePaymentsTransfersAPI.RealTimePaymentsTransfers;
63
+ Simulations.InterestPayments = InterestPaymentsAPI.InterestPayments;
75
64
  Simulations.CardAuthorizations = CardAuthorizationsAPI.CardAuthorizations;
65
+ Simulations.CardAuthorizationExpirations = CardAuthorizationExpirationsAPI.CardAuthorizationExpirations;
76
66
  Simulations.CardSettlements = CardSettlementsAPI.CardSettlements;
77
67
  Simulations.CardReversals = CardReversalsAPI.CardReversals;
78
68
  Simulations.CardIncrements = CardIncrementsAPI.CardIncrements;
79
- Simulations.CardAuthorizationExpirations = CardAuthorizationExpirationsAPI.CardAuthorizationExpirations;
80
69
  Simulations.CardFuelConfirmations = CardFuelConfirmationsAPI.CardFuelConfirmations;
81
70
  Simulations.CardRefunds = CardRefundsAPI.CardRefunds;
82
71
  Simulations.CardDisputes = CardDisputesAPI.CardDisputes;
83
- Simulations.DigitalWalletTokenRequests = DigitalWalletTokenRequestsAPI.DigitalWalletTokenRequests;
84
72
  Simulations.PhysicalCards = PhysicalCardsAPI.PhysicalCards;
85
- Simulations.InterestPayments = InterestPaymentsAPI.InterestPayments;
86
- Simulations.AccountStatements = AccountStatementsAPI.AccountStatements;
87
- Simulations.Documents = DocumentsAPI.Documents;
73
+ Simulations.DigitalWalletTokenRequests = DigitalWalletTokenRequestsAPI.DigitalWalletTokenRequests;
74
+ Simulations.InboundFundsHolds = InboundFundsHoldsAPI.InboundFundsHolds;
75
+ Simulations.AccountTransfers = AccountTransfersAPI.AccountTransfers;
76
+ Simulations.ACHTransfers = ACHTransfersAPI.ACHTransfers;
77
+ Simulations.InboundACHTransfers = InboundACHTransfersAPI.InboundACHTransfers;
78
+ Simulations.WireTransfers = WireTransfersAPI.WireTransfers;
79
+ Simulations.InboundWireTransfers = InboundWireTransfersAPI.InboundWireTransfers;
80
+ Simulations.InboundWireDrawdownRequests = InboundWireDrawdownRequestsAPI.InboundWireDrawdownRequests;
81
+ Simulations.CheckTransfers = CheckTransfersAPI.CheckTransfers;
82
+ Simulations.InboundCheckDeposits = InboundCheckDepositsAPI.InboundCheckDeposits;
83
+ Simulations.RealTimePaymentsTransfers = RealTimePaymentsTransfersAPI.RealTimePaymentsTransfers;
84
+ Simulations.InboundRealTimePaymentsTransfers = InboundRealTimePaymentsTransfersAPI.InboundRealTimePaymentsTransfers;
85
+ Simulations.CheckDeposits = CheckDepositsAPI.CheckDeposits;
88
86
  Simulations.InboundMailItems = InboundMailItemsAPI.InboundMailItems;
89
87
  Simulations.Programs = ProgramsAPI.Programs;
88
+ Simulations.AccountStatements = AccountStatementsAPI.AccountStatements;
89
+ Simulations.Documents = DocumentsAPI.Documents;
90
90
  })(Simulations || (Simulations = {}));
91
91
  //# sourceMappingURL=simulations.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"simulations.mjs","sourceRoot":"","sources":["../../src/resources/simulations/simulations.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"simulations.mjs","sourceRoot":"","sources":["../../src/resources/simulations/simulations.ts"],"names":[],"mappings":"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"}
@@ -7,7 +7,7 @@ import * as CardPaymentsAPI from '../card-payments';
7
7
 
8
8
  export class CardAuthorizationExpirations extends APIResource {
9
9
  /**
10
- * Simulates expiring a card authorization immediately.
10
+ * Simulates expiring a Card Authorization immediately.
11
11
  */
12
12
  create(
13
13
  body: CardAuthorizationExpirationCreateParams,
@@ -6,7 +6,7 @@ import * as InboundFundsHoldsAPI from './inbound-funds-holds';
6
6
 
7
7
  export class InboundFundsHolds extends APIResource {
8
8
  /**
9
- * This endpoint simulates immediately releasing an inbound funds hold, which might
9
+ * This endpoint simulates immediately releasing an Inbound Funds Hold, which might
10
10
  * be created as a result of e.g., an ACH debit.
11
11
  */
12
12
  release(
@@ -7,8 +7,9 @@ import * as InboundRealTimePaymentsTransfersAPI from '../inbound-real-time-payme
7
7
 
8
8
  export class InboundRealTimePaymentsTransfers extends APIResource {
9
9
  /**
10
- * Simulates an inbound Real-Time Payments transfer to your account. Real-Time
11
- * Payments are a beta feature.
10
+ * Simulates an
11
+ * [Inbound Real-Time Payments Transfer](#inbound-real-time-payments-transfers) to
12
+ * your account. Real-Time Payments are a beta feature.
12
13
  */
13
14
  create(
14
15
  body: InboundRealTimePaymentsTransferCreateParams,
@@ -7,7 +7,7 @@ import * as InboundWireTransfersAPI from '../inbound-wire-transfers';
7
7
 
8
8
  export class InboundWireTransfers extends APIResource {
9
9
  /**
10
- * Simulates an inbound Wire Transfer to your account.
10
+ * Simulates an [Inbound Wire Transfer](#inbound-wire-transfers) to your account.
11
11
  */
12
12
  create(
13
13
  body: InboundWireTransferCreateParams,
@@ -7,9 +7,10 @@ import * as ProgramsAPI from '../programs';
7
7
 
8
8
  export class Programs extends APIResource {
9
9
  /**
10
- * Simulates a program being created in your group. By default, your group has one
11
- * program called Commercial Banking. Note that when your group operates more than
12
- * one program, `program_id` is a required field when creating accounts.
10
+ * Simulates a [Program](#programs) being created in your group. By default, your
11
+ * group has one program called Commercial Banking. Note that when your group
12
+ * operates more than one program, `program_id` is a required field when creating
13
+ * accounts.
13
14
  */
14
15
  create(body: ProgramCreateParams, options?: Core.RequestOptions): Core.APIPromise<ProgramsAPI.Program> {
15
16
  return this._client.post('/simulations/programs', { body, ...options });
@@ -7,9 +7,10 @@ import * as RealTimePaymentsTransfersAPI from '../real-time-payments-transfers';
7
7
 
8
8
  export class RealTimePaymentsTransfers extends APIResource {
9
9
  /**
10
- * Simulates submission of a Real-Time Payments transfer and handling the response
11
- * from the destination financial institution. This transfer must first have a
12
- * `status` of `pending_submission`.
10
+ * Simulates submission of a
11
+ * [Real-Time Payments Transfer](#real-time-payments-transfers) and handling the
12
+ * response from the destination financial institution. This transfer must first
13
+ * have a `status` of `pending_submission`.
13
14
  */
14
15
  complete(
15
16
  realTimePaymentsTransferId: string,
@@ -30,108 +30,108 @@ import * as RealTimePaymentsTransfersAPI from './real-time-payments-transfers';
30
30
  import * as WireTransfersAPI from './wire-transfers';
31
31
 
32
32
  export class Simulations extends APIResource {
33
- accountTransfers: AccountTransfersAPI.AccountTransfers = new AccountTransfersAPI.AccountTransfers(
34
- this._client,
35
- );
36
- inboundACHTransfers: InboundACHTransfersAPI.InboundACHTransfers =
37
- new InboundACHTransfersAPI.InboundACHTransfers(this._client);
38
- achTransfers: ACHTransfersAPI.ACHTransfers = new ACHTransfersAPI.ACHTransfers(this._client);
39
- checkTransfers: CheckTransfersAPI.CheckTransfers = new CheckTransfersAPI.CheckTransfers(this._client);
40
- inboundCheckDeposits: InboundCheckDepositsAPI.InboundCheckDeposits =
41
- new InboundCheckDepositsAPI.InboundCheckDeposits(this._client);
42
- checkDeposits: CheckDepositsAPI.CheckDeposits = new CheckDepositsAPI.CheckDeposits(this._client);
43
- inboundWireTransfers: InboundWireTransfersAPI.InboundWireTransfers =
44
- new InboundWireTransfersAPI.InboundWireTransfers(this._client);
45
- wireTransfers: WireTransfersAPI.WireTransfers = new WireTransfersAPI.WireTransfers(this._client);
46
- inboundWireDrawdownRequests: InboundWireDrawdownRequestsAPI.InboundWireDrawdownRequests =
47
- new InboundWireDrawdownRequestsAPI.InboundWireDrawdownRequests(this._client);
48
- inboundRealTimePaymentsTransfers: InboundRealTimePaymentsTransfersAPI.InboundRealTimePaymentsTransfers =
49
- new InboundRealTimePaymentsTransfersAPI.InboundRealTimePaymentsTransfers(this._client);
50
- inboundFundsHolds: InboundFundsHoldsAPI.InboundFundsHolds = new InboundFundsHoldsAPI.InboundFundsHolds(
33
+ interestPayments: InterestPaymentsAPI.InterestPayments = new InterestPaymentsAPI.InterestPayments(
51
34
  this._client,
52
35
  );
53
- realTimePaymentsTransfers: RealTimePaymentsTransfersAPI.RealTimePaymentsTransfers =
54
- new RealTimePaymentsTransfersAPI.RealTimePaymentsTransfers(this._client);
55
36
  cardAuthorizations: CardAuthorizationsAPI.CardAuthorizations = new CardAuthorizationsAPI.CardAuthorizations(
56
37
  this._client,
57
38
  );
39
+ cardAuthorizationExpirations: CardAuthorizationExpirationsAPI.CardAuthorizationExpirations =
40
+ new CardAuthorizationExpirationsAPI.CardAuthorizationExpirations(this._client);
58
41
  cardSettlements: CardSettlementsAPI.CardSettlements = new CardSettlementsAPI.CardSettlements(this._client);
59
42
  cardReversals: CardReversalsAPI.CardReversals = new CardReversalsAPI.CardReversals(this._client);
60
43
  cardIncrements: CardIncrementsAPI.CardIncrements = new CardIncrementsAPI.CardIncrements(this._client);
61
- cardAuthorizationExpirations: CardAuthorizationExpirationsAPI.CardAuthorizationExpirations =
62
- new CardAuthorizationExpirationsAPI.CardAuthorizationExpirations(this._client);
63
44
  cardFuelConfirmations: CardFuelConfirmationsAPI.CardFuelConfirmations =
64
45
  new CardFuelConfirmationsAPI.CardFuelConfirmations(this._client);
65
46
  cardRefunds: CardRefundsAPI.CardRefunds = new CardRefundsAPI.CardRefunds(this._client);
66
47
  cardDisputes: CardDisputesAPI.CardDisputes = new CardDisputesAPI.CardDisputes(this._client);
48
+ physicalCards: PhysicalCardsAPI.PhysicalCards = new PhysicalCardsAPI.PhysicalCards(this._client);
67
49
  digitalWalletTokenRequests: DigitalWalletTokenRequestsAPI.DigitalWalletTokenRequests =
68
50
  new DigitalWalletTokenRequestsAPI.DigitalWalletTokenRequests(this._client);
69
- physicalCards: PhysicalCardsAPI.PhysicalCards = new PhysicalCardsAPI.PhysicalCards(this._client);
70
- interestPayments: InterestPaymentsAPI.InterestPayments = new InterestPaymentsAPI.InterestPayments(
51
+ inboundFundsHolds: InboundFundsHoldsAPI.InboundFundsHolds = new InboundFundsHoldsAPI.InboundFundsHolds(
71
52
  this._client,
72
53
  );
73
- accountStatements: AccountStatementsAPI.AccountStatements = new AccountStatementsAPI.AccountStatements(
54
+ accountTransfers: AccountTransfersAPI.AccountTransfers = new AccountTransfersAPI.AccountTransfers(
74
55
  this._client,
75
56
  );
76
- documents: DocumentsAPI.Documents = new DocumentsAPI.Documents(this._client);
57
+ achTransfers: ACHTransfersAPI.ACHTransfers = new ACHTransfersAPI.ACHTransfers(this._client);
58
+ inboundACHTransfers: InboundACHTransfersAPI.InboundACHTransfers =
59
+ new InboundACHTransfersAPI.InboundACHTransfers(this._client);
60
+ wireTransfers: WireTransfersAPI.WireTransfers = new WireTransfersAPI.WireTransfers(this._client);
61
+ inboundWireTransfers: InboundWireTransfersAPI.InboundWireTransfers =
62
+ new InboundWireTransfersAPI.InboundWireTransfers(this._client);
63
+ inboundWireDrawdownRequests: InboundWireDrawdownRequestsAPI.InboundWireDrawdownRequests =
64
+ new InboundWireDrawdownRequestsAPI.InboundWireDrawdownRequests(this._client);
65
+ checkTransfers: CheckTransfersAPI.CheckTransfers = new CheckTransfersAPI.CheckTransfers(this._client);
66
+ inboundCheckDeposits: InboundCheckDepositsAPI.InboundCheckDeposits =
67
+ new InboundCheckDepositsAPI.InboundCheckDeposits(this._client);
68
+ realTimePaymentsTransfers: RealTimePaymentsTransfersAPI.RealTimePaymentsTransfers =
69
+ new RealTimePaymentsTransfersAPI.RealTimePaymentsTransfers(this._client);
70
+ inboundRealTimePaymentsTransfers: InboundRealTimePaymentsTransfersAPI.InboundRealTimePaymentsTransfers =
71
+ new InboundRealTimePaymentsTransfersAPI.InboundRealTimePaymentsTransfers(this._client);
72
+ checkDeposits: CheckDepositsAPI.CheckDeposits = new CheckDepositsAPI.CheckDeposits(this._client);
77
73
  inboundMailItems: InboundMailItemsAPI.InboundMailItems = new InboundMailItemsAPI.InboundMailItems(
78
74
  this._client,
79
75
  );
80
76
  programs: ProgramsAPI.Programs = new ProgramsAPI.Programs(this._client);
77
+ accountStatements: AccountStatementsAPI.AccountStatements = new AccountStatementsAPI.AccountStatements(
78
+ this._client,
79
+ );
80
+ documents: DocumentsAPI.Documents = new DocumentsAPI.Documents(this._client);
81
81
  }
82
82
 
83
83
  export namespace Simulations {
84
- export import AccountTransfers = AccountTransfersAPI.AccountTransfers;
85
- export import InboundACHTransfers = InboundACHTransfersAPI.InboundACHTransfers;
86
- export import InboundACHTransferCreateParams = InboundACHTransfersAPI.InboundACHTransferCreateParams;
87
- export import ACHTransfers = ACHTransfersAPI.ACHTransfers;
88
- export import ACHTransferCreateNotificationOfChangeParams = ACHTransfersAPI.ACHTransferCreateNotificationOfChangeParams;
89
- export import ACHTransferReturnParams = ACHTransfersAPI.ACHTransferReturnParams;
90
- export import CheckTransfers = CheckTransfersAPI.CheckTransfers;
91
- export import InboundCheckDeposits = InboundCheckDepositsAPI.InboundCheckDeposits;
92
- export import InboundCheckDepositCreateParams = InboundCheckDepositsAPI.InboundCheckDepositCreateParams;
93
- export import CheckDeposits = CheckDepositsAPI.CheckDeposits;
94
- export import InboundWireTransfers = InboundWireTransfersAPI.InboundWireTransfers;
95
- export import InboundWireTransferCreateParams = InboundWireTransfersAPI.InboundWireTransferCreateParams;
96
- export import WireTransfers = WireTransfersAPI.WireTransfers;
97
- export import InboundWireDrawdownRequests = InboundWireDrawdownRequestsAPI.InboundWireDrawdownRequests;
98
- export import InboundWireDrawdownRequestCreateParams = InboundWireDrawdownRequestsAPI.InboundWireDrawdownRequestCreateParams;
99
- export import InboundRealTimePaymentsTransfers = InboundRealTimePaymentsTransfersAPI.InboundRealTimePaymentsTransfers;
100
- export import InboundRealTimePaymentsTransferCreateParams = InboundRealTimePaymentsTransfersAPI.InboundRealTimePaymentsTransferCreateParams;
101
- export import InboundFundsHolds = InboundFundsHoldsAPI.InboundFundsHolds;
102
- export import InboundFundsHoldReleaseResponse = InboundFundsHoldsAPI.InboundFundsHoldReleaseResponse;
103
- export import RealTimePaymentsTransfers = RealTimePaymentsTransfersAPI.RealTimePaymentsTransfers;
104
- export import RealTimePaymentsTransferCompleteParams = RealTimePaymentsTransfersAPI.RealTimePaymentsTransferCompleteParams;
84
+ export import InterestPayments = InterestPaymentsAPI.InterestPayments;
85
+ export import InterestPaymentCreateParams = InterestPaymentsAPI.InterestPaymentCreateParams;
105
86
  export import CardAuthorizations = CardAuthorizationsAPI.CardAuthorizations;
106
87
  export import CardAuthorizationCreateResponse = CardAuthorizationsAPI.CardAuthorizationCreateResponse;
107
88
  export import CardAuthorizationCreateParams = CardAuthorizationsAPI.CardAuthorizationCreateParams;
89
+ export import CardAuthorizationExpirations = CardAuthorizationExpirationsAPI.CardAuthorizationExpirations;
90
+ export import CardAuthorizationExpirationCreateParams = CardAuthorizationExpirationsAPI.CardAuthorizationExpirationCreateParams;
108
91
  export import CardSettlements = CardSettlementsAPI.CardSettlements;
109
92
  export import CardSettlementCreateParams = CardSettlementsAPI.CardSettlementCreateParams;
110
93
  export import CardReversals = CardReversalsAPI.CardReversals;
111
94
  export import CardReversalCreateParams = CardReversalsAPI.CardReversalCreateParams;
112
95
  export import CardIncrements = CardIncrementsAPI.CardIncrements;
113
96
  export import CardIncrementCreateParams = CardIncrementsAPI.CardIncrementCreateParams;
114
- export import CardAuthorizationExpirations = CardAuthorizationExpirationsAPI.CardAuthorizationExpirations;
115
- export import CardAuthorizationExpirationCreateParams = CardAuthorizationExpirationsAPI.CardAuthorizationExpirationCreateParams;
116
97
  export import CardFuelConfirmations = CardFuelConfirmationsAPI.CardFuelConfirmations;
117
98
  export import CardFuelConfirmationCreateParams = CardFuelConfirmationsAPI.CardFuelConfirmationCreateParams;
118
99
  export import CardRefunds = CardRefundsAPI.CardRefunds;
119
100
  export import CardRefundCreateParams = CardRefundsAPI.CardRefundCreateParams;
120
101
  export import CardDisputes = CardDisputesAPI.CardDisputes;
121
102
  export import CardDisputeActionParams = CardDisputesAPI.CardDisputeActionParams;
103
+ export import PhysicalCards = PhysicalCardsAPI.PhysicalCards;
104
+ export import PhysicalCardAdvanceShipmentParams = PhysicalCardsAPI.PhysicalCardAdvanceShipmentParams;
122
105
  export import DigitalWalletTokenRequests = DigitalWalletTokenRequestsAPI.DigitalWalletTokenRequests;
123
106
  export import DigitalWalletTokenRequestCreateResponse = DigitalWalletTokenRequestsAPI.DigitalWalletTokenRequestCreateResponse;
124
107
  export import DigitalWalletTokenRequestCreateParams = DigitalWalletTokenRequestsAPI.DigitalWalletTokenRequestCreateParams;
125
- export import PhysicalCards = PhysicalCardsAPI.PhysicalCards;
126
- export import PhysicalCardAdvanceShipmentParams = PhysicalCardsAPI.PhysicalCardAdvanceShipmentParams;
127
- export import InterestPayments = InterestPaymentsAPI.InterestPayments;
128
- export import InterestPaymentCreateParams = InterestPaymentsAPI.InterestPaymentCreateParams;
129
- export import AccountStatements = AccountStatementsAPI.AccountStatements;
130
- export import AccountStatementCreateParams = AccountStatementsAPI.AccountStatementCreateParams;
131
- export import Documents = DocumentsAPI.Documents;
132
- export import DocumentCreateParams = DocumentsAPI.DocumentCreateParams;
108
+ export import InboundFundsHolds = InboundFundsHoldsAPI.InboundFundsHolds;
109
+ export import InboundFundsHoldReleaseResponse = InboundFundsHoldsAPI.InboundFundsHoldReleaseResponse;
110
+ export import AccountTransfers = AccountTransfersAPI.AccountTransfers;
111
+ export import ACHTransfers = ACHTransfersAPI.ACHTransfers;
112
+ export import ACHTransferCreateNotificationOfChangeParams = ACHTransfersAPI.ACHTransferCreateNotificationOfChangeParams;
113
+ export import ACHTransferReturnParams = ACHTransfersAPI.ACHTransferReturnParams;
114
+ export import InboundACHTransfers = InboundACHTransfersAPI.InboundACHTransfers;
115
+ export import InboundACHTransferCreateParams = InboundACHTransfersAPI.InboundACHTransferCreateParams;
116
+ export import WireTransfers = WireTransfersAPI.WireTransfers;
117
+ export import InboundWireTransfers = InboundWireTransfersAPI.InboundWireTransfers;
118
+ export import InboundWireTransferCreateParams = InboundWireTransfersAPI.InboundWireTransferCreateParams;
119
+ export import InboundWireDrawdownRequests = InboundWireDrawdownRequestsAPI.InboundWireDrawdownRequests;
120
+ export import InboundWireDrawdownRequestCreateParams = InboundWireDrawdownRequestsAPI.InboundWireDrawdownRequestCreateParams;
121
+ export import CheckTransfers = CheckTransfersAPI.CheckTransfers;
122
+ export import InboundCheckDeposits = InboundCheckDepositsAPI.InboundCheckDeposits;
123
+ export import InboundCheckDepositCreateParams = InboundCheckDepositsAPI.InboundCheckDepositCreateParams;
124
+ export import RealTimePaymentsTransfers = RealTimePaymentsTransfersAPI.RealTimePaymentsTransfers;
125
+ export import RealTimePaymentsTransferCompleteParams = RealTimePaymentsTransfersAPI.RealTimePaymentsTransferCompleteParams;
126
+ export import InboundRealTimePaymentsTransfers = InboundRealTimePaymentsTransfersAPI.InboundRealTimePaymentsTransfers;
127
+ export import InboundRealTimePaymentsTransferCreateParams = InboundRealTimePaymentsTransfersAPI.InboundRealTimePaymentsTransferCreateParams;
128
+ export import CheckDeposits = CheckDepositsAPI.CheckDeposits;
133
129
  export import InboundMailItems = InboundMailItemsAPI.InboundMailItems;
134
130
  export import InboundMailItemCreateParams = InboundMailItemsAPI.InboundMailItemCreateParams;
135
131
  export import Programs = ProgramsAPI.Programs;
136
132
  export import ProgramCreateParams = ProgramsAPI.ProgramCreateParams;
133
+ export import AccountStatements = AccountStatementsAPI.AccountStatements;
134
+ export import AccountStatementCreateParams = AccountStatementsAPI.AccountStatementCreateParams;
135
+ export import Documents = DocumentsAPI.Documents;
136
+ export import DocumentCreateParams = DocumentsAPI.DocumentCreateParams;
137
137
  }
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const VERSION = '0.135.0'; // x-release-please-version
1
+ export const VERSION = '0.136.0'; // x-release-please-version
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "0.135.0";
1
+ export declare const VERSION = "0.136.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.135.0'; // x-release-please-version
4
+ exports.VERSION = '0.136.0'; // x-release-please-version
5
5
  //# sourceMappingURL=version.js.map
package/version.mjs CHANGED
@@ -1,2 +1,2 @@
1
- export const VERSION = '0.135.0'; // x-release-please-version
1
+ export const VERSION = '0.136.0'; // x-release-please-version
2
2
  //# sourceMappingURL=version.mjs.map