increase 0.432.0 → 0.434.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 (72) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/client.js.map +1 -1
  3. package/client.mjs.map +1 -1
  4. package/package.json +1 -1
  5. package/resources/account-statements.d.mts +1 -1
  6. package/resources/account-statements.d.ts +1 -1
  7. package/resources/ach-transfers.d.mts +2 -2
  8. package/resources/ach-transfers.d.ts +2 -2
  9. package/resources/bookkeeping-accounts.d.mts +1 -1
  10. package/resources/bookkeeping-accounts.d.ts +1 -1
  11. package/resources/bookkeeping-entries.d.mts +1 -1
  12. package/resources/bookkeeping-entries.d.ts +1 -1
  13. package/resources/card-payments.d.mts +10 -10
  14. package/resources/card-payments.d.ts +10 -10
  15. package/resources/card-push-transfers.d.mts +1 -1
  16. package/resources/card-push-transfers.d.ts +1 -1
  17. package/resources/digital-card-profiles.d.mts +1 -1
  18. package/resources/digital-card-profiles.d.ts +1 -1
  19. package/resources/exports.d.mts +38 -2
  20. package/resources/exports.d.mts.map +1 -1
  21. package/resources/exports.d.ts +38 -2
  22. package/resources/exports.d.ts.map +1 -1
  23. package/resources/file-links.d.mts +1 -1
  24. package/resources/file-links.d.ts +1 -1
  25. package/resources/inbound-ach-transfers.d.mts +1 -1
  26. package/resources/inbound-ach-transfers.d.ts +1 -1
  27. package/resources/inbound-mail-items.d.mts +1 -1
  28. package/resources/inbound-mail-items.d.ts +1 -1
  29. package/resources/inbound-mail-items.js +1 -1
  30. package/resources/inbound-mail-items.mjs +1 -1
  31. package/resources/inbound-wire-drawdown-requests.d.mts +1 -1
  32. package/resources/inbound-wire-drawdown-requests.d.ts +1 -1
  33. package/resources/pending-transactions.d.mts +2 -2
  34. package/resources/pending-transactions.d.ts +2 -2
  35. package/resources/physical-card-profiles.d.mts +1 -1
  36. package/resources/physical-card-profiles.d.ts +1 -1
  37. package/resources/simulations/ach-transfers.d.mts +2 -2
  38. package/resources/simulations/ach-transfers.d.ts +2 -2
  39. package/resources/simulations/ach-transfers.js +2 -2
  40. package/resources/simulations/ach-transfers.mjs +2 -2
  41. package/resources/simulations/card-increments.d.mts +1 -1
  42. package/resources/simulations/card-increments.d.ts +1 -1
  43. package/resources/simulations/digital-wallet-token-requests.d.mts +1 -1
  44. package/resources/simulations/digital-wallet-token-requests.d.ts +1 -1
  45. package/resources/simulations/digital-wallet-token-requests.js +1 -1
  46. package/resources/simulations/digital-wallet-token-requests.mjs +1 -1
  47. package/resources/transactions.d.mts +8 -8
  48. package/resources/transactions.d.ts +8 -8
  49. package/src/client.ts +1 -1
  50. package/src/resources/account-statements.ts +1 -1
  51. package/src/resources/ach-transfers.ts +2 -2
  52. package/src/resources/bookkeeping-accounts.ts +1 -1
  53. package/src/resources/bookkeeping-entries.ts +1 -1
  54. package/src/resources/card-payments.ts +10 -10
  55. package/src/resources/card-push-transfers.ts +1 -1
  56. package/src/resources/digital-card-profiles.ts +1 -1
  57. package/src/resources/exports.ts +42 -0
  58. package/src/resources/file-links.ts +1 -1
  59. package/src/resources/inbound-ach-transfers.ts +1 -1
  60. package/src/resources/inbound-mail-items.ts +1 -1
  61. package/src/resources/inbound-wire-drawdown-requests.ts +1 -1
  62. package/src/resources/pending-transactions.ts +2 -2
  63. package/src/resources/physical-card-profiles.ts +1 -1
  64. package/src/resources/simulations/ach-transfers.ts +2 -2
  65. package/src/resources/simulations/card-increments.ts +1 -1
  66. package/src/resources/simulations/digital-wallet-token-requests.ts +1 -1
  67. package/src/resources/transactions.ts +8 -8
  68. package/src/version.ts +1 -1
  69. package/version.d.mts +1 -1
  70. package/version.d.ts +1 -1
  71. package/version.js +1 -1
  72. package/version.mjs +1 -1
@@ -98,9 +98,11 @@ export interface Export {
98
98
  * - `funding_instructions` - A PDF of funding instructions.
99
99
  * - `form_1099_int` - A PDF of an Internal Revenue Service Form 1099-INT.
100
100
  * - `form_1099_misc` - A PDF of an Internal Revenue Service Form 1099-MISC.
101
+ * - `fee_csv` - Export a CSV of fees. The time range must not include any fees
102
+ * that are part of an open fee statement.
101
103
  * - `voided_check` - A PDF of a voided check.
102
104
  */
103
- category: 'account_statement_ofx' | 'account_statement_bai2' | 'transaction_csv' | 'balance_csv' | 'bookkeeping_account_balance_csv' | 'entity_csv' | 'vendor_csv' | 'dashboard_table_csv' | 'account_verification_letter' | 'funding_instructions' | 'form_1099_int' | 'form_1099_misc' | 'voided_check';
105
+ category: 'account_statement_ofx' | 'account_statement_bai2' | 'transaction_csv' | 'balance_csv' | 'bookkeeping_account_balance_csv' | 'entity_csv' | 'vendor_csv' | 'dashboard_table_csv' | 'account_verification_letter' | 'funding_instructions' | 'form_1099_int' | 'form_1099_misc' | 'fee_csv' | 'voided_check';
104
106
  /**
105
107
  * The time the Export was created.
106
108
  */
@@ -115,6 +117,11 @@ export interface Export {
115
117
  * is equal to `entity_csv`.
116
118
  */
117
119
  entity_csv: Export.EntityCsv | null;
120
+ /**
121
+ * Details of the fee CSV export. This field will be present when the `category` is
122
+ * equal to `fee_csv`.
123
+ */
124
+ fee_csv: Export.FeeCsv | null;
118
125
  /**
119
126
  * Details of the Form 1099-INT export. This field will be present when the
120
127
  * `category` is equal to `form_1099_int`.
@@ -304,6 +311,33 @@ export declare namespace Export {
304
311
  */
305
312
  interface EntityCsv {
306
313
  }
314
+ /**
315
+ * Details of the fee CSV export. This field will be present when the `category` is
316
+ * equal to `fee_csv`.
317
+ */
318
+ interface FeeCsv {
319
+ /**
320
+ * Filter fees by their created date. The time range must not include any fees that
321
+ * are part of an open fee statement.
322
+ */
323
+ created_at: FeeCsv.CreatedAt | null;
324
+ }
325
+ namespace FeeCsv {
326
+ /**
327
+ * Filter fees by their created date. The time range must not include any fees that
328
+ * are part of an open fee statement.
329
+ */
330
+ interface CreatedAt {
331
+ /**
332
+ * Filter fees created after this time.
333
+ */
334
+ after: string | null;
335
+ /**
336
+ * Filter fees created before this time.
337
+ */
338
+ before: string | null;
339
+ }
340
+ }
307
341
  /**
308
342
  * Details of the Form 1099-INT export. This field will be present when the
309
343
  * `category` is equal to `form_1099_int`.
@@ -761,9 +795,11 @@ export interface ExportListParams extends PageParams {
761
795
  * - `funding_instructions` - A PDF of funding instructions.
762
796
  * - `form_1099_int` - A PDF of an Internal Revenue Service Form 1099-INT.
763
797
  * - `form_1099_misc` - A PDF of an Internal Revenue Service Form 1099-MISC.
798
+ * - `fee_csv` - Export a CSV of fees. The time range must not include any fees
799
+ * that are part of an open fee statement.
764
800
  * - `voided_check` - A PDF of a voided check.
765
801
  */
766
- category?: 'account_statement_ofx' | 'account_statement_bai2' | 'transaction_csv' | 'balance_csv' | 'bookkeeping_account_balance_csv' | 'entity_csv' | 'vendor_csv' | 'dashboard_table_csv' | 'account_verification_letter' | 'funding_instructions' | 'form_1099_int' | 'form_1099_misc' | 'voided_check';
802
+ category?: 'account_statement_ofx' | 'account_statement_bai2' | 'transaction_csv' | 'balance_csv' | 'bookkeeping_account_balance_csv' | 'entity_csv' | 'vendor_csv' | 'dashboard_table_csv' | 'account_verification_letter' | 'funding_instructions' | 'form_1099_int' | 'form_1099_misc' | 'fee_csv' | 'voided_check';
767
803
  created_at?: ExportListParams.CreatedAt;
768
804
  form_1099_int?: ExportListParams.Form1099Int;
769
805
  form_1099_misc?: ExportListParams.Form1099Misc;
@@ -1 +1 @@
1
- {"version":3,"file":"exports.d.mts","sourceRoot":"","sources":["../src/resources/exports.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"exports.d.mts","sourceRoot":"","sources":["../src/resources/exports.ts"],"names":[],"mappings":"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"}
@@ -98,9 +98,11 @@ export interface Export {
98
98
  * - `funding_instructions` - A PDF of funding instructions.
99
99
  * - `form_1099_int` - A PDF of an Internal Revenue Service Form 1099-INT.
100
100
  * - `form_1099_misc` - A PDF of an Internal Revenue Service Form 1099-MISC.
101
+ * - `fee_csv` - Export a CSV of fees. The time range must not include any fees
102
+ * that are part of an open fee statement.
101
103
  * - `voided_check` - A PDF of a voided check.
102
104
  */
103
- category: 'account_statement_ofx' | 'account_statement_bai2' | 'transaction_csv' | 'balance_csv' | 'bookkeeping_account_balance_csv' | 'entity_csv' | 'vendor_csv' | 'dashboard_table_csv' | 'account_verification_letter' | 'funding_instructions' | 'form_1099_int' | 'form_1099_misc' | 'voided_check';
105
+ category: 'account_statement_ofx' | 'account_statement_bai2' | 'transaction_csv' | 'balance_csv' | 'bookkeeping_account_balance_csv' | 'entity_csv' | 'vendor_csv' | 'dashboard_table_csv' | 'account_verification_letter' | 'funding_instructions' | 'form_1099_int' | 'form_1099_misc' | 'fee_csv' | 'voided_check';
104
106
  /**
105
107
  * The time the Export was created.
106
108
  */
@@ -115,6 +117,11 @@ export interface Export {
115
117
  * is equal to `entity_csv`.
116
118
  */
117
119
  entity_csv: Export.EntityCsv | null;
120
+ /**
121
+ * Details of the fee CSV export. This field will be present when the `category` is
122
+ * equal to `fee_csv`.
123
+ */
124
+ fee_csv: Export.FeeCsv | null;
118
125
  /**
119
126
  * Details of the Form 1099-INT export. This field will be present when the
120
127
  * `category` is equal to `form_1099_int`.
@@ -304,6 +311,33 @@ export declare namespace Export {
304
311
  */
305
312
  interface EntityCsv {
306
313
  }
314
+ /**
315
+ * Details of the fee CSV export. This field will be present when the `category` is
316
+ * equal to `fee_csv`.
317
+ */
318
+ interface FeeCsv {
319
+ /**
320
+ * Filter fees by their created date. The time range must not include any fees that
321
+ * are part of an open fee statement.
322
+ */
323
+ created_at: FeeCsv.CreatedAt | null;
324
+ }
325
+ namespace FeeCsv {
326
+ /**
327
+ * Filter fees by their created date. The time range must not include any fees that
328
+ * are part of an open fee statement.
329
+ */
330
+ interface CreatedAt {
331
+ /**
332
+ * Filter fees created after this time.
333
+ */
334
+ after: string | null;
335
+ /**
336
+ * Filter fees created before this time.
337
+ */
338
+ before: string | null;
339
+ }
340
+ }
307
341
  /**
308
342
  * Details of the Form 1099-INT export. This field will be present when the
309
343
  * `category` is equal to `form_1099_int`.
@@ -761,9 +795,11 @@ export interface ExportListParams extends PageParams {
761
795
  * - `funding_instructions` - A PDF of funding instructions.
762
796
  * - `form_1099_int` - A PDF of an Internal Revenue Service Form 1099-INT.
763
797
  * - `form_1099_misc` - A PDF of an Internal Revenue Service Form 1099-MISC.
798
+ * - `fee_csv` - Export a CSV of fees. The time range must not include any fees
799
+ * that are part of an open fee statement.
764
800
  * - `voided_check` - A PDF of a voided check.
765
801
  */
766
- category?: 'account_statement_ofx' | 'account_statement_bai2' | 'transaction_csv' | 'balance_csv' | 'bookkeeping_account_balance_csv' | 'entity_csv' | 'vendor_csv' | 'dashboard_table_csv' | 'account_verification_letter' | 'funding_instructions' | 'form_1099_int' | 'form_1099_misc' | 'voided_check';
802
+ category?: 'account_statement_ofx' | 'account_statement_bai2' | 'transaction_csv' | 'balance_csv' | 'bookkeeping_account_balance_csv' | 'entity_csv' | 'vendor_csv' | 'dashboard_table_csv' | 'account_verification_letter' | 'funding_instructions' | 'form_1099_int' | 'form_1099_misc' | 'fee_csv' | 'voided_check';
767
803
  created_at?: ExportListParams.CreatedAt;
768
804
  form_1099_int?: ExportListParams.Form1099Int;
769
805
  form_1099_misc?: ExportListParams.Form1099Misc;
@@ -1 +1 @@
1
- {"version":3,"file":"exports.d.ts","sourceRoot":"","sources":["../src/resources/exports.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"exports.d.ts","sourceRoot":"","sources":["../src/resources/exports.ts"],"names":[],"mappings":"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"}
@@ -61,7 +61,7 @@ export interface FileLinkCreateParams {
61
61
  file_id: string;
62
62
  /**
63
63
  * The time at which the File Link will expire. The default is 1 hour from the time
64
- * of the request. The maxiumum is 1 day from the time of the request.
64
+ * of the request. The maximum is 1 day from the time of the request.
65
65
  */
66
66
  expires_at?: string;
67
67
  [k: string]: unknown;
@@ -61,7 +61,7 @@ export interface FileLinkCreateParams {
61
61
  file_id: string;
62
62
  /**
63
63
  * The time at which the File Link will expire. The default is 1 hour from the time
64
- * of the request. The maxiumum is 1 day from the time of the request.
64
+ * of the request. The maximum is 1 day from the time of the request.
65
65
  */
66
66
  expires_at?: string;
67
67
  [k: string]: unknown;
@@ -524,7 +524,7 @@ export declare namespace InboundACHTransfer {
524
524
  */
525
525
  updated_account_number: string | null;
526
526
  /**
527
- * The new account number provided in the notification of change.
527
+ * The new routing number provided in the notification of change.
528
528
  */
529
529
  updated_routing_number: string | null;
530
530
  }
@@ -524,7 +524,7 @@ export declare namespace InboundACHTransfer {
524
524
  */
525
525
  updated_account_number: string | null;
526
526
  /**
527
- * The new account number provided in the notification of change.
527
+ * The new routing number provided in the notification of change.
528
528
  */
529
529
  updated_routing_number: string | null;
530
530
  }
@@ -28,7 +28,7 @@ export declare class InboundMailItems extends APIResource {
28
28
  */
29
29
  list(query?: InboundMailItemListParams | null | undefined, options?: RequestOptions): PagePromise<InboundMailItemsPage, InboundMailItem>;
30
30
  /**
31
- * Action a Inbound Mail Item
31
+ * Action an Inbound Mail Item
32
32
  *
33
33
  * @example
34
34
  * ```ts
@@ -28,7 +28,7 @@ export declare class InboundMailItems extends APIResource {
28
28
  */
29
29
  list(query?: InboundMailItemListParams | null | undefined, options?: RequestOptions): PagePromise<InboundMailItemsPage, InboundMailItem>;
30
30
  /**
31
- * Action a Inbound Mail Item
31
+ * Action an Inbound Mail Item
32
32
  *
33
33
  * @example
34
34
  * ```ts
@@ -35,7 +35,7 @@ class InboundMailItems extends resource_1.APIResource {
35
35
  return this._client.getAPIList('/inbound_mail_items', (pagination_1.Page), { query, ...options });
36
36
  }
37
37
  /**
38
- * Action a Inbound Mail Item
38
+ * Action an Inbound Mail Item
39
39
  *
40
40
  * @example
41
41
  * ```ts
@@ -32,7 +32,7 @@ export class InboundMailItems extends APIResource {
32
32
  return this._client.getAPIList('/inbound_mail_items', (Page), { query, ...options });
33
33
  }
34
34
  /**
35
- * Action a Inbound Mail Item
35
+ * Action an Inbound Mail Item
36
36
  *
37
37
  * @example
38
38
  * ```ts
@@ -45,7 +45,7 @@ export interface InboundWireDrawdownRequest {
45
45
  amount: number;
46
46
  /**
47
47
  * The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
48
- * the inbound wire drawdown requested was created.
48
+ * the inbound wire drawdown request was created.
49
49
  */
50
50
  created_at: string;
51
51
  /**
@@ -45,7 +45,7 @@ export interface InboundWireDrawdownRequest {
45
45
  amount: number;
46
46
  /**
47
47
  * The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
48
- * the inbound wire drawdown requested was created.
48
+ * the inbound wire drawdown request was created.
49
49
  */
50
50
  created_at: string;
51
51
  /**
@@ -220,7 +220,7 @@ export declare namespace PendingTransaction {
220
220
  /**
221
221
  * A Card Authorization object. This field will be present in the JSON response if
222
222
  * and only if `category` is equal to `card_authorization`. Card Authorizations are
223
- * temporary holds placed on a customers funds with the intent to later clear a
223
+ * temporary holds placed on a customer's funds with the intent to later clear a
224
224
  * transaction.
225
225
  */
226
226
  card_authorization?: Source.CardAuthorization | null;
@@ -367,7 +367,7 @@ export declare namespace PendingTransaction {
367
367
  /**
368
368
  * A Card Authorization object. This field will be present in the JSON response if
369
369
  * and only if `category` is equal to `card_authorization`. Card Authorizations are
370
- * temporary holds placed on a customers funds with the intent to later clear a
370
+ * temporary holds placed on a customer's funds with the intent to later clear a
371
371
  * transaction.
372
372
  */
373
373
  interface CardAuthorization {
@@ -220,7 +220,7 @@ export declare namespace PendingTransaction {
220
220
  /**
221
221
  * A Card Authorization object. This field will be present in the JSON response if
222
222
  * and only if `category` is equal to `card_authorization`. Card Authorizations are
223
- * temporary holds placed on a customers funds with the intent to later clear a
223
+ * temporary holds placed on a customer's funds with the intent to later clear a
224
224
  * transaction.
225
225
  */
226
226
  card_authorization?: Source.CardAuthorization | null;
@@ -367,7 +367,7 @@ export declare namespace PendingTransaction {
367
367
  /**
368
368
  * A Card Authorization object. This field will be present in the JSON response if
369
369
  * and only if `category` is equal to `card_authorization`. Card Authorizations are
370
- * temporary holds placed on a customers funds with the intent to later clear a
370
+ * temporary holds placed on a customer's funds with the intent to later clear a
371
371
  * transaction.
372
372
  */
373
373
  interface CardAuthorization {
@@ -95,7 +95,7 @@ export interface PhysicalCardProfile {
95
95
  contact_phone: string | null;
96
96
  /**
97
97
  * The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
98
- * the Card Dispute was created.
98
+ * the Physical Card Profile was created.
99
99
  */
100
100
  created_at: string;
101
101
  /**
@@ -95,7 +95,7 @@ export interface PhysicalCardProfile {
95
95
  contact_phone: string | null;
96
96
  /**
97
97
  * The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) date and time at which
98
- * the Card Dispute was created.
98
+ * the Physical Card Profile was created.
99
99
  */
100
100
  created_at: string;
101
101
  /**
@@ -5,10 +5,10 @@ import { RequestOptions } from "../../internal/request-options.mjs";
5
5
  export declare class ACHTransfers extends APIResource {
6
6
  /**
7
7
  * Simulates the acknowledgement of an [ACH Transfer](#ach-transfers) by the
8
- * Federal Reserve. This transfer must first have a `status` of `submitted` . In
8
+ * Federal Reserve. This transfer must first have a `status` of `submitted`. In
9
9
  * production, the Federal Reserve generally acknowledges submitted ACH files
10
10
  * within 30 minutes. Since sandbox ACH Transfers are not submitted to the Federal
11
- * Reserve, this endpoint allows you to skip that delay and add the acknowledgment
11
+ * Reserve, this endpoint allows you to skip that delay and add the acknowledgement
12
12
  * subresource to the ACH Transfer.
13
13
  *
14
14
  * @example
@@ -5,10 +5,10 @@ import { RequestOptions } from "../../internal/request-options.js";
5
5
  export declare class ACHTransfers extends APIResource {
6
6
  /**
7
7
  * Simulates the acknowledgement of an [ACH Transfer](#ach-transfers) by the
8
- * Federal Reserve. This transfer must first have a `status` of `submitted` . In
8
+ * Federal Reserve. This transfer must first have a `status` of `submitted`. In
9
9
  * production, the Federal Reserve generally acknowledges submitted ACH files
10
10
  * within 30 minutes. Since sandbox ACH Transfers are not submitted to the Federal
11
- * Reserve, this endpoint allows you to skip that delay and add the acknowledgment
11
+ * Reserve, this endpoint allows you to skip that delay and add the acknowledgement
12
12
  * subresource to the ACH Transfer.
13
13
  *
14
14
  * @example
@@ -7,10 +7,10 @@ const path_1 = require("../../internal/utils/path.js");
7
7
  class ACHTransfers extends resource_1.APIResource {
8
8
  /**
9
9
  * Simulates the acknowledgement of an [ACH Transfer](#ach-transfers) by the
10
- * Federal Reserve. This transfer must first have a `status` of `submitted` . In
10
+ * Federal Reserve. This transfer must first have a `status` of `submitted`. In
11
11
  * production, the Federal Reserve generally acknowledges submitted ACH files
12
12
  * within 30 minutes. Since sandbox ACH Transfers are not submitted to the Federal
13
- * Reserve, this endpoint allows you to skip that delay and add the acknowledgment
13
+ * Reserve, this endpoint allows you to skip that delay and add the acknowledgement
14
14
  * subresource to the ACH Transfer.
15
15
  *
16
16
  * @example
@@ -4,10 +4,10 @@ import { path } from "../../internal/utils/path.mjs";
4
4
  export class ACHTransfers extends APIResource {
5
5
  /**
6
6
  * Simulates the acknowledgement of an [ACH Transfer](#ach-transfers) by the
7
- * Federal Reserve. This transfer must first have a `status` of `submitted` . In
7
+ * Federal Reserve. This transfer must first have a `status` of `submitted`. In
8
8
  * production, the Federal Reserve generally acknowledges submitted ACH files
9
9
  * within 30 minutes. Since sandbox ACH Transfers are not submitted to the Federal
10
- * Reserve, this endpoint allows you to skip that delay and add the acknowledgment
10
+ * Reserve, this endpoint allows you to skip that delay and add the acknowledgement
11
11
  * subresource to the ACH Transfer.
12
12
  *
13
13
  * @example
@@ -24,7 +24,7 @@ export interface CardIncrementCreateParams {
24
24
  */
25
25
  amount: number;
26
26
  /**
27
- * The identifier of the Card Payment to create a increment on.
27
+ * The identifier of the Card Payment to create an increment on.
28
28
  */
29
29
  card_payment_id: string;
30
30
  /**
@@ -24,7 +24,7 @@ export interface CardIncrementCreateParams {
24
24
  */
25
25
  amount: number;
26
26
  /**
27
- * The identifier of the Card Payment to create a increment on.
27
+ * The identifier of the Card Payment to create an increment on.
28
28
  */
29
29
  card_payment_id: string;
30
30
  /**
@@ -3,7 +3,7 @@ import { APIPromise } from "../../core/api-promise.mjs";
3
3
  import { RequestOptions } from "../../internal/request-options.mjs";
4
4
  export declare class DigitalWalletTokenRequests extends APIResource {
5
5
  /**
6
- * Simulates a user attempting add a [Card](#cards) to a digital wallet such as
6
+ * Simulates a user attempting to add a [Card](#cards) to a digital wallet such as
7
7
  * Apple Pay.
8
8
  *
9
9
  * @example
@@ -3,7 +3,7 @@ import { APIPromise } from "../../core/api-promise.js";
3
3
  import { RequestOptions } from "../../internal/request-options.js";
4
4
  export declare class DigitalWalletTokenRequests extends APIResource {
5
5
  /**
6
- * Simulates a user attempting add a [Card](#cards) to a digital wallet such as
6
+ * Simulates a user attempting to add a [Card](#cards) to a digital wallet such as
7
7
  * Apple Pay.
8
8
  *
9
9
  * @example
@@ -5,7 +5,7 @@ exports.DigitalWalletTokenRequests = void 0;
5
5
  const resource_1 = require("../../core/resource.js");
6
6
  class DigitalWalletTokenRequests extends resource_1.APIResource {
7
7
  /**
8
- * Simulates a user attempting add a [Card](#cards) to a digital wallet such as
8
+ * Simulates a user attempting to add a [Card](#cards) to a digital wallet such as
9
9
  * Apple Pay.
10
10
  *
11
11
  * @example
@@ -2,7 +2,7 @@
2
2
  import { APIResource } from "../../core/resource.mjs";
3
3
  export class DigitalWalletTokenRequests extends APIResource {
4
4
  /**
5
- * Simulates a user attempting add a [Card](#cards) to a digital wallet such as
5
+ * Simulates a user attempting to add a [Card](#cards) to a digital wallet such as
6
6
  * Apple Pay.
7
7
  *
8
8
  * @example
@@ -256,7 +256,7 @@ export declare namespace Transaction {
256
256
  /**
257
257
  * A Card Financial object. This field will be present in the JSON response if and
258
258
  * only if `category` is equal to `card_financial`. Card Financials are temporary
259
- * holds placed on a customers funds with the intent to later clear a transaction.
259
+ * holds placed on a customer's funds with the intent to later clear a transaction.
260
260
  */
261
261
  card_financial?: Source.CardFinancial | null;
262
262
  /**
@@ -269,7 +269,7 @@ export declare namespace Transaction {
269
269
  /**
270
270
  * A Card Refund object. This field will be present in the JSON response if and
271
271
  * only if `category` is equal to `card_refund`. Card Refunds move money back to
272
- * the cardholder. While they are usually connected to a Card Settlement an
272
+ * the cardholder. While they are usually connected to a Card Settlement, an
273
273
  * acquirer can also refund money directly to a card without relation to a
274
274
  * transaction.
275
275
  */
@@ -876,7 +876,7 @@ export declare namespace Transaction {
876
876
  /**
877
877
  * A Card Financial object. This field will be present in the JSON response if and
878
878
  * only if `category` is equal to `card_financial`. Card Financials are temporary
879
- * holds placed on a customers funds with the intent to later clear a transaction.
879
+ * holds placed on a customer's funds with the intent to later clear a transaction.
880
880
  */
881
881
  interface CardFinancial {
882
882
  /**
@@ -1497,7 +1497,7 @@ export declare namespace Transaction {
1497
1497
  /**
1498
1498
  * A Card Refund object. This field will be present in the JSON response if and
1499
1499
  * only if `category` is equal to `card_refund`. Card Refunds move money back to
1500
- * the cardholder. While they are usually connected to a Card Settlement an
1500
+ * the cardholder. While they are usually connected to a Card Settlement, an
1501
1501
  * acquirer can also refund money directly to a card without relation to a
1502
1502
  * transaction.
1503
1503
  */
@@ -1528,7 +1528,7 @@ export declare namespace Transaction {
1528
1528
  */
1529
1529
  currency: 'USD';
1530
1530
  /**
1531
- * Interchange assessed as a part of this transaciton.
1531
+ * Interchange assessed as a part of this transaction.
1532
1532
  */
1533
1533
  interchange: CardRefund.Interchange | null;
1534
1534
  /**
@@ -1609,7 +1609,7 @@ export declare namespace Transaction {
1609
1609
  currency: 'USD';
1610
1610
  }
1611
1611
  /**
1612
- * Interchange assessed as a part of this transaciton.
1612
+ * Interchange assessed as a part of this transaction.
1613
1613
  */
1614
1614
  interface Interchange {
1615
1615
  /**
@@ -2192,7 +2192,7 @@ export declare namespace Transaction {
2192
2192
  purchase_details: CardSettlement.PurchaseDetails | null;
2193
2193
  /**
2194
2194
  * Surcharge amount details, if applicable. The amount is positive if the surcharge
2195
- * is added to to the overall transaction amount (surcharge), and negative if the
2195
+ * is added to the overall transaction amount (surcharge), and negative if the
2196
2196
  * surcharge is deducted from the overall transaction amount (discount).
2197
2197
  */
2198
2198
  surcharge: CardSettlement.Surcharge | null;
@@ -2677,7 +2677,7 @@ export declare namespace Transaction {
2677
2677
  }
2678
2678
  /**
2679
2679
  * Surcharge amount details, if applicable. The amount is positive if the surcharge
2680
- * is added to to the overall transaction amount (surcharge), and negative if the
2680
+ * is added to the overall transaction amount (surcharge), and negative if the
2681
2681
  * surcharge is deducted from the overall transaction amount (discount).
2682
2682
  */
2683
2683
  interface Surcharge {