increase 0.315.0 → 0.317.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.
- package/CHANGELOG.md +16 -0
- package/package.json +1 -1
- package/resources/account-transfers.d.ts +31 -23
- package/resources/account-transfers.d.ts.map +1 -1
- package/resources/account-transfers.js +2 -2
- package/resources/account-transfers.js.map +1 -1
- package/resources/account-transfers.mjs +2 -2
- package/resources/account-transfers.mjs.map +1 -1
- package/resources/card-payments.d.ts +108 -36
- package/resources/card-payments.d.ts.map +1 -1
- package/resources/card-payments.js.map +1 -1
- package/resources/card-payments.mjs.map +1 -1
- package/resources/declined-transactions.d.ts +27 -9
- package/resources/declined-transactions.d.ts.map +1 -1
- package/resources/declined-transactions.js.map +1 -1
- package/resources/declined-transactions.mjs.map +1 -1
- package/resources/pending-transactions.d.ts +27 -9
- package/resources/pending-transactions.d.ts.map +1 -1
- package/resources/pending-transactions.js.map +1 -1
- package/resources/pending-transactions.mjs.map +1 -1
- package/resources/real-time-decisions.d.ts +27 -9
- package/resources/real-time-decisions.d.ts.map +1 -1
- package/src/resources/account-transfers.ts +31 -24
- package/src/resources/card-payments.ts +108 -36
- package/src/resources/declined-transactions.ts +27 -9
- package/src/resources/pending-transactions.ts +27 -9
- package/src/resources/real-time-decisions.ts +27 -9
- package/src/version.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.317.0 (2025-09-24)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.316.0...v0.317.0](https://github.com/Increase/increase-node/compare/v0.316.0...v0.317.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([2026a63](https://github.com/Increase/increase-node/commit/2026a637cb268b6278368a04a25e5148b2914e32))
|
|
10
|
+
|
|
11
|
+
## 0.316.0 (2025-09-23)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v0.315.0...v0.316.0](https://github.com/Increase/increase-node/compare/v0.315.0...v0.316.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **api:** api update ([0c6a221](https://github.com/Increase/increase-node/commit/0c6a22144fd50e6012bfd2cef9a34696e0f7d3a8))
|
|
18
|
+
|
|
3
19
|
## 0.315.0 (2025-09-23)
|
|
4
20
|
|
|
5
21
|
Full Changelog: [v0.314.0...v0.315.0](https://github.com/Increase/increase-node/compare/v0.314.0...v0.315.0)
|
package/package.json
CHANGED
|
@@ -43,7 +43,7 @@ export declare class AccountTransfers extends APIResource {
|
|
|
43
43
|
list(query?: AccountTransferListParams, options?: Core.RequestOptions): Core.PagePromise<AccountTransfersPage, AccountTransfer>;
|
|
44
44
|
list(options?: Core.RequestOptions): Core.PagePromise<AccountTransfersPage, AccountTransfer>;
|
|
45
45
|
/**
|
|
46
|
-
*
|
|
46
|
+
* Approves an Account Transfer in status `pending_approval`.
|
|
47
47
|
*
|
|
48
48
|
* @example
|
|
49
49
|
* ```ts
|
|
@@ -55,7 +55,7 @@ export declare class AccountTransfers extends APIResource {
|
|
|
55
55
|
*/
|
|
56
56
|
approve(accountTransferId: string, options?: Core.RequestOptions): Core.APIPromise<AccountTransfer>;
|
|
57
57
|
/**
|
|
58
|
-
*
|
|
58
|
+
* Cancels an Account Transfer in status `pending_approval`.
|
|
59
59
|
*
|
|
60
60
|
* @example
|
|
61
61
|
* ```ts
|
|
@@ -70,20 +70,25 @@ export declare class AccountTransfers extends APIResource {
|
|
|
70
70
|
export declare class AccountTransfersPage extends Page<AccountTransfer> {
|
|
71
71
|
}
|
|
72
72
|
/**
|
|
73
|
-
* Account transfers move funds between your own accounts at Increase
|
|
73
|
+
* Account transfers move funds between your own accounts at Increase (accounting
|
|
74
|
+
* systems often refer to these as Book Transfers). Account Transfers are free and
|
|
75
|
+
* synchronous. Upon creation they create two Transactions, one negative on the
|
|
76
|
+
* originating account and one positive on the destination account (unless the
|
|
77
|
+
* transfer requires approval, in which case the Transactions will be created when
|
|
78
|
+
* the transfer is approved).
|
|
74
79
|
*/
|
|
75
80
|
export interface AccountTransfer {
|
|
76
81
|
/**
|
|
77
|
-
* The
|
|
82
|
+
* The Account Transfer's identifier.
|
|
78
83
|
*/
|
|
79
84
|
id: string;
|
|
80
85
|
/**
|
|
81
|
-
* The Account
|
|
86
|
+
* The Account from which the transfer originated.
|
|
82
87
|
*/
|
|
83
88
|
account_id: string;
|
|
84
89
|
/**
|
|
85
|
-
* The transfer amount in
|
|
86
|
-
*
|
|
90
|
+
* The transfer amount in cents. This will always be positive and indicates the
|
|
91
|
+
* amount of money leaving the originating account.
|
|
87
92
|
*/
|
|
88
93
|
amount: number;
|
|
89
94
|
/**
|
|
@@ -106,8 +111,8 @@ export interface AccountTransfer {
|
|
|
106
111
|
*/
|
|
107
112
|
created_by: AccountTransfer.CreatedBy | null;
|
|
108
113
|
/**
|
|
109
|
-
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the
|
|
110
|
-
*
|
|
114
|
+
* The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the transfer's
|
|
115
|
+
* currency.
|
|
111
116
|
*
|
|
112
117
|
* - `CAD` - Canadian Dollar (CAD)
|
|
113
118
|
* - `CHF` - Swiss Franc (CHF)
|
|
@@ -118,15 +123,17 @@ export interface AccountTransfer {
|
|
|
118
123
|
*/
|
|
119
124
|
currency: 'CAD' | 'CHF' | 'EUR' | 'GBP' | 'JPY' | 'USD';
|
|
120
125
|
/**
|
|
121
|
-
*
|
|
126
|
+
* An internal-facing description for the transfer for display in the API and
|
|
127
|
+
* dashboard. This will also show in the description of the created Transactions.
|
|
122
128
|
*/
|
|
123
129
|
description: string;
|
|
124
130
|
/**
|
|
125
|
-
* The destination
|
|
131
|
+
* The destination Account's identifier.
|
|
126
132
|
*/
|
|
127
133
|
destination_account_id: string;
|
|
128
134
|
/**
|
|
129
|
-
* The
|
|
135
|
+
* The identifier of the Transaction on the destination Account representing the
|
|
136
|
+
* received funds.
|
|
130
137
|
*/
|
|
131
138
|
destination_transaction_id: string | null;
|
|
132
139
|
/**
|
|
@@ -135,10 +142,6 @@ export interface AccountTransfer {
|
|
|
135
142
|
* about [idempotency](https://increase.com/documentation/idempotency-keys).
|
|
136
143
|
*/
|
|
137
144
|
idempotency_key: string | null;
|
|
138
|
-
/**
|
|
139
|
-
* The transfer's network.
|
|
140
|
-
*/
|
|
141
|
-
network: 'account';
|
|
142
145
|
/**
|
|
143
146
|
* The ID for the pending transaction representing the transfer. A pending
|
|
144
147
|
* transaction is created when the transfer
|
|
@@ -149,13 +152,15 @@ export interface AccountTransfer {
|
|
|
149
152
|
/**
|
|
150
153
|
* The lifecycle status of the transfer.
|
|
151
154
|
*
|
|
152
|
-
* - `pending_approval` - The transfer is pending approval.
|
|
153
|
-
* - `canceled` - The transfer has been
|
|
155
|
+
* - `pending_approval` - The transfer is pending approval from your team.
|
|
156
|
+
* - `canceled` - The transfer was pending approval from your team and has been
|
|
157
|
+
* canceled.
|
|
154
158
|
* - `complete` - The transfer has been completed.
|
|
155
159
|
*/
|
|
156
160
|
status: 'pending_approval' | 'canceled' | 'complete';
|
|
157
161
|
/**
|
|
158
|
-
* The
|
|
162
|
+
* The identifier of the Transaction on the originating account representing the
|
|
163
|
+
* transferred funds.
|
|
159
164
|
*/
|
|
160
165
|
transaction_id: string | null;
|
|
161
166
|
/**
|
|
@@ -256,7 +261,7 @@ export declare namespace AccountTransfer {
|
|
|
256
261
|
}
|
|
257
262
|
export interface AccountTransferCreateParams {
|
|
258
263
|
/**
|
|
259
|
-
* The identifier for the
|
|
264
|
+
* The identifier for the originating Account that will send the transfer.
|
|
260
265
|
*/
|
|
261
266
|
account_id: string;
|
|
262
267
|
/**
|
|
@@ -265,15 +270,18 @@ export interface AccountTransferCreateParams {
|
|
|
265
270
|
*/
|
|
266
271
|
amount: number;
|
|
267
272
|
/**
|
|
268
|
-
*
|
|
273
|
+
* An internal-facing description for the transfer for display in the API and
|
|
274
|
+
* dashboard. This will also show in the description of the created Transactions.
|
|
269
275
|
*/
|
|
270
276
|
description: string;
|
|
271
277
|
/**
|
|
272
|
-
* The identifier for the
|
|
278
|
+
* The identifier for the destination Account that will receive the transfer.
|
|
273
279
|
*/
|
|
274
280
|
destination_account_id: string;
|
|
275
281
|
/**
|
|
276
|
-
* Whether the transfer
|
|
282
|
+
* Whether the transfer should require explicit approval via the dashboard or API.
|
|
283
|
+
* For more information, see
|
|
284
|
+
* [Transfer Approvals](/documentation/transfer-approvals).
|
|
277
285
|
*/
|
|
278
286
|
require_approval?: boolean;
|
|
279
287
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"account-transfers.d.ts","sourceRoot":"","sources":["../src/resources/account-transfers.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAE1C,OAAO,KAAK,IAAI,MAAM,SAAS,CAAC;AAChC,OAAO,EAAE,IAAI,EAAE,KAAK,UAAU,EAAE,MAAM,eAAe,CAAC;AAEtD,qBAAa,gBAAiB,SAAQ,WAAW;IAC/C;;;;;;;;;;;;;OAaG;IACH,MAAM,CAAC,IAAI,EAAE,2BAA2B,EAAE,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,UAAU,CAAC,eAAe,CAAC;IAI1G;;;;;;;;;;OAUG;IACH,QAAQ,CAAC,iBAAiB,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,UAAU,CAAC,eAAe,CAAC;IAIpG;;;;;;;;;;OAUG;IACH,IAAI,CACF,KAAK,CAAC,EAAE,yBAAyB,EACjC,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAC5B,IAAI,CAAC,WAAW,CAAC,oBAAoB,EAAE,eAAe,CAAC;IAC1D,IAAI,CAAC,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,WAAW,CAAC,oBAAoB,EAAE,eAAe,CAAC;IAW5F;;;;;;;;;;OAUG;IACH,OAAO,CAAC,iBAAiB,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,UAAU,CAAC,eAAe,CAAC;IAInG;;;;;;;;;;OAUG;IACH,MAAM,CAAC,iBAAiB,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,UAAU,CAAC,eAAe,CAAC;CAGnG;AAED,qBAAa,oBAAqB,SAAQ,IAAI,CAAC,eAAe,CAAC;CAAG;AAElE
|
|
1
|
+
{"version":3,"file":"account-transfers.d.ts","sourceRoot":"","sources":["../src/resources/account-transfers.ts"],"names":[],"mappings":"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"}
|
|
@@ -44,7 +44,7 @@ class AccountTransfers extends resource_1.APIResource {
|
|
|
44
44
|
return this._client.getAPIList('/account_transfers', AccountTransfersPage, { query, ...options });
|
|
45
45
|
}
|
|
46
46
|
/**
|
|
47
|
-
*
|
|
47
|
+
* Approves an Account Transfer in status `pending_approval`.
|
|
48
48
|
*
|
|
49
49
|
* @example
|
|
50
50
|
* ```ts
|
|
@@ -58,7 +58,7 @@ class AccountTransfers extends resource_1.APIResource {
|
|
|
58
58
|
return this._client.post(`/account_transfers/${accountTransferId}/approve`, options);
|
|
59
59
|
}
|
|
60
60
|
/**
|
|
61
|
-
*
|
|
61
|
+
* Cancels an Account Transfer in status `pending_approval`.
|
|
62
62
|
*
|
|
63
63
|
* @example
|
|
64
64
|
* ```ts
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"account-transfers.js","sourceRoot":"","sources":["../src/resources/account-transfers.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,6CAA0C;AAC1C,qCAA2C;AAE3C,iDAAsD;AAEtD,MAAa,gBAAiB,SAAQ,sBAAW;IAC/C;;;;;;;;;;;;;OAaG;IACH,MAAM,CAAC,IAAiC,EAAE,OAA6B;QACrE,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,oBAAoB,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACvE,CAAC;IAED;;;;;;;;;;OAUG;IACH,QAAQ,CAAC,iBAAyB,EAAE,OAA6B;QAC/D,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,sBAAsB,iBAAiB,EAAE,EAAE,OAAO,CAAC,CAAC;IAC9E,CAAC;IAkBD,IAAI,CACF,QAAyD,EAAE,EAC3D,OAA6B;QAE7B,IAAI,IAAA,uBAAgB,EAAC,KAAK,CAAC,EAAE;YAC3B,OAAO,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE,KAAK,CAAC,CAAC;SAC7B;QACD,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,oBAAoB,EAAE,oBAAoB,EAAE,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACpG,CAAC;IAED;;;;;;;;;;OAUG;IACH,OAAO,CAAC,iBAAyB,EAAE,OAA6B;QAC9D,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,sBAAsB,iBAAiB,UAAU,EAAE,OAAO,CAAC,CAAC;IACvF,CAAC;IAED;;;;;;;;;;OAUG;IACH,MAAM,CAAC,iBAAyB,EAAE,OAA6B;QAC7D,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,sBAAsB,iBAAiB,SAAS,EAAE,OAAO,CAAC,CAAC;IACtF,CAAC;CACF;AAzFD,4CAyFC;AAED,MAAa,oBAAqB,SAAQ,iBAAqB;CAAG;AAAlE,oDAAkE;
|
|
1
|
+
{"version":3,"file":"account-transfers.js","sourceRoot":"","sources":["../src/resources/account-transfers.ts"],"names":[],"mappings":";AAAA,sFAAsF;;;AAEtF,6CAA0C;AAC1C,qCAA2C;AAE3C,iDAAsD;AAEtD,MAAa,gBAAiB,SAAQ,sBAAW;IAC/C;;;;;;;;;;;;;OAaG;IACH,MAAM,CAAC,IAAiC,EAAE,OAA6B;QACrE,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,oBAAoB,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACvE,CAAC;IAED;;;;;;;;;;OAUG;IACH,QAAQ,CAAC,iBAAyB,EAAE,OAA6B;QAC/D,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,sBAAsB,iBAAiB,EAAE,EAAE,OAAO,CAAC,CAAC;IAC9E,CAAC;IAkBD,IAAI,CACF,QAAyD,EAAE,EAC3D,OAA6B;QAE7B,IAAI,IAAA,uBAAgB,EAAC,KAAK,CAAC,EAAE;YAC3B,OAAO,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE,KAAK,CAAC,CAAC;SAC7B;QACD,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,oBAAoB,EAAE,oBAAoB,EAAE,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACpG,CAAC;IAED;;;;;;;;;;OAUG;IACH,OAAO,CAAC,iBAAyB,EAAE,OAA6B;QAC9D,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,sBAAsB,iBAAiB,UAAU,EAAE,OAAO,CAAC,CAAC;IACvF,CAAC;IAED;;;;;;;;;;OAUG;IACH,MAAM,CAAC,iBAAyB,EAAE,OAA6B;QAC7D,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,sBAAsB,iBAAiB,SAAS,EAAE,OAAO,CAAC,CAAC;IACtF,CAAC;CACF;AAzFD,4CAyFC;AAED,MAAa,oBAAqB,SAAQ,iBAAqB;CAAG;AAAlE,oDAAkE;AAuSlE,gBAAgB,CAAC,oBAAoB,GAAG,oBAAoB,CAAC"}
|
|
@@ -41,7 +41,7 @@ export class AccountTransfers extends APIResource {
|
|
|
41
41
|
return this._client.getAPIList('/account_transfers', AccountTransfersPage, { query, ...options });
|
|
42
42
|
}
|
|
43
43
|
/**
|
|
44
|
-
*
|
|
44
|
+
* Approves an Account Transfer in status `pending_approval`.
|
|
45
45
|
*
|
|
46
46
|
* @example
|
|
47
47
|
* ```ts
|
|
@@ -55,7 +55,7 @@ export class AccountTransfers extends APIResource {
|
|
|
55
55
|
return this._client.post(`/account_transfers/${accountTransferId}/approve`, options);
|
|
56
56
|
}
|
|
57
57
|
/**
|
|
58
|
-
*
|
|
58
|
+
* Cancels an Account Transfer in status `pending_approval`.
|
|
59
59
|
*
|
|
60
60
|
* @example
|
|
61
61
|
* ```ts
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"account-transfers.mjs","sourceRoot":"","sources":["../src/resources/account-transfers.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;OACf,EAAE,gBAAgB,EAAE;OAEpB,EAAE,IAAI,EAAmB;AAEhC,MAAM,OAAO,gBAAiB,SAAQ,WAAW;IAC/C;;;;;;;;;;;;;OAaG;IACH,MAAM,CAAC,IAAiC,EAAE,OAA6B;QACrE,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,oBAAoB,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACvE,CAAC;IAED;;;;;;;;;;OAUG;IACH,QAAQ,CAAC,iBAAyB,EAAE,OAA6B;QAC/D,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,sBAAsB,iBAAiB,EAAE,EAAE,OAAO,CAAC,CAAC;IAC9E,CAAC;IAkBD,IAAI,CACF,QAAyD,EAAE,EAC3D,OAA6B;QAE7B,IAAI,gBAAgB,CAAC,KAAK,CAAC,EAAE;YAC3B,OAAO,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE,KAAK,CAAC,CAAC;SAC7B;QACD,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,oBAAoB,EAAE,oBAAoB,EAAE,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACpG,CAAC;IAED;;;;;;;;;;OAUG;IACH,OAAO,CAAC,iBAAyB,EAAE,OAA6B;QAC9D,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,sBAAsB,iBAAiB,UAAU,EAAE,OAAO,CAAC,CAAC;IACvF,CAAC;IAED;;;;;;;;;;OAUG;IACH,MAAM,CAAC,iBAAyB,EAAE,OAA6B;QAC7D,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,sBAAsB,iBAAiB,SAAS,EAAE,OAAO,CAAC,CAAC;IACtF,CAAC;CACF;AAED,MAAM,OAAO,oBAAqB,SAAQ,IAAqB;CAAG;
|
|
1
|
+
{"version":3,"file":"account-transfers.mjs","sourceRoot":"","sources":["../src/resources/account-transfers.ts"],"names":[],"mappings":"AAAA,sFAAsF;OAE/E,EAAE,WAAW,EAAE;OACf,EAAE,gBAAgB,EAAE;OAEpB,EAAE,IAAI,EAAmB;AAEhC,MAAM,OAAO,gBAAiB,SAAQ,WAAW;IAC/C;;;;;;;;;;;;;OAaG;IACH,MAAM,CAAC,IAAiC,EAAE,OAA6B;QACrE,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,oBAAoB,EAAE,EAAE,IAAI,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACvE,CAAC;IAED;;;;;;;;;;OAUG;IACH,QAAQ,CAAC,iBAAyB,EAAE,OAA6B;QAC/D,OAAO,IAAI,CAAC,OAAO,CAAC,GAAG,CAAC,sBAAsB,iBAAiB,EAAE,EAAE,OAAO,CAAC,CAAC;IAC9E,CAAC;IAkBD,IAAI,CACF,QAAyD,EAAE,EAC3D,OAA6B;QAE7B,IAAI,gBAAgB,CAAC,KAAK,CAAC,EAAE;YAC3B,OAAO,IAAI,CAAC,IAAI,CAAC,EAAE,EAAE,KAAK,CAAC,CAAC;SAC7B;QACD,OAAO,IAAI,CAAC,OAAO,CAAC,UAAU,CAAC,oBAAoB,EAAE,oBAAoB,EAAE,EAAE,KAAK,EAAE,GAAG,OAAO,EAAE,CAAC,CAAC;IACpG,CAAC;IAED;;;;;;;;;;OAUG;IACH,OAAO,CAAC,iBAAyB,EAAE,OAA6B;QAC9D,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,sBAAsB,iBAAiB,UAAU,EAAE,OAAO,CAAC,CAAC;IACvF,CAAC;IAED;;;;;;;;;;OAUG;IACH,MAAM,CAAC,iBAAyB,EAAE,OAA6B;QAC7D,OAAO,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,sBAAsB,iBAAiB,SAAS,EAAE,OAAO,CAAC,CAAC;IACtF,CAAC;CACF;AAED,MAAM,OAAO,oBAAqB,SAAQ,IAAqB;CAAG;AAuSlE,gBAAgB,CAAC,oBAAoB,GAAG,oBAAoB,CAAC"}
|
|
@@ -563,7 +563,9 @@ export declare namespace CardPayment {
|
|
|
563
563
|
*/
|
|
564
564
|
interface Clinic {
|
|
565
565
|
/**
|
|
566
|
-
* The amount in minor units of the `currency` field.
|
|
566
|
+
* The amount in minor units of the `currency` field. The amount is positive if it
|
|
567
|
+
* is added to the amount (such as an ATM surcharge fee) and negative if it is
|
|
568
|
+
* subtracted from the amount (such as a discount).
|
|
567
569
|
*/
|
|
568
570
|
amount: number;
|
|
569
571
|
/**
|
|
@@ -577,7 +579,9 @@ export declare namespace CardPayment {
|
|
|
577
579
|
*/
|
|
578
580
|
interface Dental {
|
|
579
581
|
/**
|
|
580
|
-
* The amount in minor units of the `currency` field.
|
|
582
|
+
* The amount in minor units of the `currency` field. The amount is positive if it
|
|
583
|
+
* is added to the amount (such as an ATM surcharge fee) and negative if it is
|
|
584
|
+
* subtracted from the amount (such as a discount).
|
|
581
585
|
*/
|
|
582
586
|
amount: number;
|
|
583
587
|
/**
|
|
@@ -591,7 +595,9 @@ export declare namespace CardPayment {
|
|
|
591
595
|
*/
|
|
592
596
|
interface Prescription {
|
|
593
597
|
/**
|
|
594
|
-
* The amount in minor units of the `currency` field.
|
|
598
|
+
* The amount in minor units of the `currency` field. The amount is positive if it
|
|
599
|
+
* is added to the amount (such as an ATM surcharge fee) and negative if it is
|
|
600
|
+
* subtracted from the amount (such as a discount).
|
|
595
601
|
*/
|
|
596
602
|
amount: number;
|
|
597
603
|
/**
|
|
@@ -605,7 +611,9 @@ export declare namespace CardPayment {
|
|
|
605
611
|
*/
|
|
606
612
|
interface Surcharge {
|
|
607
613
|
/**
|
|
608
|
-
* The amount in minor units of the `currency` field.
|
|
614
|
+
* The amount in minor units of the `currency` field. The amount is positive if it
|
|
615
|
+
* is added to the amount (such as an ATM surcharge fee) and negative if it is
|
|
616
|
+
* subtracted from the amount (such as a discount).
|
|
609
617
|
*/
|
|
610
618
|
amount: number;
|
|
611
619
|
/**
|
|
@@ -619,7 +627,9 @@ export declare namespace CardPayment {
|
|
|
619
627
|
*/
|
|
620
628
|
interface TotalCumulative {
|
|
621
629
|
/**
|
|
622
|
-
* The amount in minor units of the `currency` field.
|
|
630
|
+
* The amount in minor units of the `currency` field. The amount is positive if it
|
|
631
|
+
* is added to the amount (such as an ATM surcharge fee) and negative if it is
|
|
632
|
+
* subtracted from the amount (such as a discount).
|
|
623
633
|
*/
|
|
624
634
|
amount: number;
|
|
625
635
|
/**
|
|
@@ -633,7 +643,9 @@ export declare namespace CardPayment {
|
|
|
633
643
|
*/
|
|
634
644
|
interface TotalHealthcare {
|
|
635
645
|
/**
|
|
636
|
-
* The amount in minor units of the `currency` field.
|
|
646
|
+
* The amount in minor units of the `currency` field. The amount is positive if it
|
|
647
|
+
* is added to the amount (such as an ATM surcharge fee) and negative if it is
|
|
648
|
+
* subtracted from the amount (such as a discount).
|
|
637
649
|
*/
|
|
638
650
|
amount: number;
|
|
639
651
|
/**
|
|
@@ -647,7 +659,9 @@ export declare namespace CardPayment {
|
|
|
647
659
|
*/
|
|
648
660
|
interface Transit {
|
|
649
661
|
/**
|
|
650
|
-
* The amount in minor units of the `currency` field.
|
|
662
|
+
* The amount in minor units of the `currency` field. The amount is positive if it
|
|
663
|
+
* is added to the amount (such as an ATM surcharge fee) and negative if it is
|
|
664
|
+
* subtracted from the amount (such as a discount).
|
|
651
665
|
*/
|
|
652
666
|
amount: number;
|
|
653
667
|
/**
|
|
@@ -661,7 +675,9 @@ export declare namespace CardPayment {
|
|
|
661
675
|
*/
|
|
662
676
|
interface Unknown {
|
|
663
677
|
/**
|
|
664
|
-
* The amount in minor units of the `currency` field.
|
|
678
|
+
* The amount in minor units of the `currency` field. The amount is positive if it
|
|
679
|
+
* is added to the amount (such as an ATM surcharge fee) and negative if it is
|
|
680
|
+
* subtracted from the amount (such as a discount).
|
|
665
681
|
*/
|
|
666
682
|
amount: number;
|
|
667
683
|
/**
|
|
@@ -675,7 +691,9 @@ export declare namespace CardPayment {
|
|
|
675
691
|
*/
|
|
676
692
|
interface Vision {
|
|
677
693
|
/**
|
|
678
|
-
* The amount in minor units of the `currency` field.
|
|
694
|
+
* The amount in minor units of the `currency` field. The amount is positive if it
|
|
695
|
+
* is added to the amount (such as an ATM surcharge fee) and negative if it is
|
|
696
|
+
* subtracted from the amount (such as a discount).
|
|
679
697
|
*/
|
|
680
698
|
amount: number;
|
|
681
699
|
/**
|
|
@@ -1189,7 +1207,9 @@ export declare namespace CardPayment {
|
|
|
1189
1207
|
*/
|
|
1190
1208
|
interface Clinic {
|
|
1191
1209
|
/**
|
|
1192
|
-
* The amount in minor units of the `currency` field.
|
|
1210
|
+
* The amount in minor units of the `currency` field. The amount is positive if it
|
|
1211
|
+
* is added to the amount (such as an ATM surcharge fee) and negative if it is
|
|
1212
|
+
* subtracted from the amount (such as a discount).
|
|
1193
1213
|
*/
|
|
1194
1214
|
amount: number;
|
|
1195
1215
|
/**
|
|
@@ -1203,7 +1223,9 @@ export declare namespace CardPayment {
|
|
|
1203
1223
|
*/
|
|
1204
1224
|
interface Dental {
|
|
1205
1225
|
/**
|
|
1206
|
-
* The amount in minor units of the `currency` field.
|
|
1226
|
+
* The amount in minor units of the `currency` field. The amount is positive if it
|
|
1227
|
+
* is added to the amount (such as an ATM surcharge fee) and negative if it is
|
|
1228
|
+
* subtracted from the amount (such as a discount).
|
|
1207
1229
|
*/
|
|
1208
1230
|
amount: number;
|
|
1209
1231
|
/**
|
|
@@ -1217,7 +1239,9 @@ export declare namespace CardPayment {
|
|
|
1217
1239
|
*/
|
|
1218
1240
|
interface Prescription {
|
|
1219
1241
|
/**
|
|
1220
|
-
* The amount in minor units of the `currency` field.
|
|
1242
|
+
* The amount in minor units of the `currency` field. The amount is positive if it
|
|
1243
|
+
* is added to the amount (such as an ATM surcharge fee) and negative if it is
|
|
1244
|
+
* subtracted from the amount (such as a discount).
|
|
1221
1245
|
*/
|
|
1222
1246
|
amount: number;
|
|
1223
1247
|
/**
|
|
@@ -1231,7 +1255,9 @@ export declare namespace CardPayment {
|
|
|
1231
1255
|
*/
|
|
1232
1256
|
interface Surcharge {
|
|
1233
1257
|
/**
|
|
1234
|
-
* The amount in minor units of the `currency` field.
|
|
1258
|
+
* The amount in minor units of the `currency` field. The amount is positive if it
|
|
1259
|
+
* is added to the amount (such as an ATM surcharge fee) and negative if it is
|
|
1260
|
+
* subtracted from the amount (such as a discount).
|
|
1235
1261
|
*/
|
|
1236
1262
|
amount: number;
|
|
1237
1263
|
/**
|
|
@@ -1245,7 +1271,9 @@ export declare namespace CardPayment {
|
|
|
1245
1271
|
*/
|
|
1246
1272
|
interface TotalCumulative {
|
|
1247
1273
|
/**
|
|
1248
|
-
* The amount in minor units of the `currency` field.
|
|
1274
|
+
* The amount in minor units of the `currency` field. The amount is positive if it
|
|
1275
|
+
* is added to the amount (such as an ATM surcharge fee) and negative if it is
|
|
1276
|
+
* subtracted from the amount (such as a discount).
|
|
1249
1277
|
*/
|
|
1250
1278
|
amount: number;
|
|
1251
1279
|
/**
|
|
@@ -1259,7 +1287,9 @@ export declare namespace CardPayment {
|
|
|
1259
1287
|
*/
|
|
1260
1288
|
interface TotalHealthcare {
|
|
1261
1289
|
/**
|
|
1262
|
-
* The amount in minor units of the `currency` field.
|
|
1290
|
+
* The amount in minor units of the `currency` field. The amount is positive if it
|
|
1291
|
+
* is added to the amount (such as an ATM surcharge fee) and negative if it is
|
|
1292
|
+
* subtracted from the amount (such as a discount).
|
|
1263
1293
|
*/
|
|
1264
1294
|
amount: number;
|
|
1265
1295
|
/**
|
|
@@ -1273,7 +1303,9 @@ export declare namespace CardPayment {
|
|
|
1273
1303
|
*/
|
|
1274
1304
|
interface Transit {
|
|
1275
1305
|
/**
|
|
1276
|
-
* The amount in minor units of the `currency` field.
|
|
1306
|
+
* The amount in minor units of the `currency` field. The amount is positive if it
|
|
1307
|
+
* is added to the amount (such as an ATM surcharge fee) and negative if it is
|
|
1308
|
+
* subtracted from the amount (such as a discount).
|
|
1277
1309
|
*/
|
|
1278
1310
|
amount: number;
|
|
1279
1311
|
/**
|
|
@@ -1287,7 +1319,9 @@ export declare namespace CardPayment {
|
|
|
1287
1319
|
*/
|
|
1288
1320
|
interface Unknown {
|
|
1289
1321
|
/**
|
|
1290
|
-
* The amount in minor units of the `currency` field.
|
|
1322
|
+
* The amount in minor units of the `currency` field. The amount is positive if it
|
|
1323
|
+
* is added to the amount (such as an ATM surcharge fee) and negative if it is
|
|
1324
|
+
* subtracted from the amount (such as a discount).
|
|
1291
1325
|
*/
|
|
1292
1326
|
amount: number;
|
|
1293
1327
|
/**
|
|
@@ -1301,7 +1335,9 @@ export declare namespace CardPayment {
|
|
|
1301
1335
|
*/
|
|
1302
1336
|
interface Vision {
|
|
1303
1337
|
/**
|
|
1304
|
-
* The amount in minor units of the `currency` field.
|
|
1338
|
+
* The amount in minor units of the `currency` field. The amount is positive if it
|
|
1339
|
+
* is added to the amount (such as an ATM surcharge fee) and negative if it is
|
|
1340
|
+
* subtracted from the amount (such as a discount).
|
|
1305
1341
|
*/
|
|
1306
1342
|
amount: number;
|
|
1307
1343
|
/**
|
|
@@ -1721,7 +1757,9 @@ export declare namespace CardPayment {
|
|
|
1721
1757
|
*/
|
|
1722
1758
|
interface Clinic {
|
|
1723
1759
|
/**
|
|
1724
|
-
* The amount in minor units of the `currency` field.
|
|
1760
|
+
* The amount in minor units of the `currency` field. The amount is positive if it
|
|
1761
|
+
* is added to the amount (such as an ATM surcharge fee) and negative if it is
|
|
1762
|
+
* subtracted from the amount (such as a discount).
|
|
1725
1763
|
*/
|
|
1726
1764
|
amount: number;
|
|
1727
1765
|
/**
|
|
@@ -1735,7 +1773,9 @@ export declare namespace CardPayment {
|
|
|
1735
1773
|
*/
|
|
1736
1774
|
interface Dental {
|
|
1737
1775
|
/**
|
|
1738
|
-
* The amount in minor units of the `currency` field.
|
|
1776
|
+
* The amount in minor units of the `currency` field. The amount is positive if it
|
|
1777
|
+
* is added to the amount (such as an ATM surcharge fee) and negative if it is
|
|
1778
|
+
* subtracted from the amount (such as a discount).
|
|
1739
1779
|
*/
|
|
1740
1780
|
amount: number;
|
|
1741
1781
|
/**
|
|
@@ -1749,7 +1789,9 @@ export declare namespace CardPayment {
|
|
|
1749
1789
|
*/
|
|
1750
1790
|
interface Prescription {
|
|
1751
1791
|
/**
|
|
1752
|
-
* The amount in minor units of the `currency` field.
|
|
1792
|
+
* The amount in minor units of the `currency` field. The amount is positive if it
|
|
1793
|
+
* is added to the amount (such as an ATM surcharge fee) and negative if it is
|
|
1794
|
+
* subtracted from the amount (such as a discount).
|
|
1753
1795
|
*/
|
|
1754
1796
|
amount: number;
|
|
1755
1797
|
/**
|
|
@@ -1763,7 +1805,9 @@ export declare namespace CardPayment {
|
|
|
1763
1805
|
*/
|
|
1764
1806
|
interface Surcharge {
|
|
1765
1807
|
/**
|
|
1766
|
-
* The amount in minor units of the `currency` field.
|
|
1808
|
+
* The amount in minor units of the `currency` field. The amount is positive if it
|
|
1809
|
+
* is added to the amount (such as an ATM surcharge fee) and negative if it is
|
|
1810
|
+
* subtracted from the amount (such as a discount).
|
|
1767
1811
|
*/
|
|
1768
1812
|
amount: number;
|
|
1769
1813
|
/**
|
|
@@ -1777,7 +1821,9 @@ export declare namespace CardPayment {
|
|
|
1777
1821
|
*/
|
|
1778
1822
|
interface TotalCumulative {
|
|
1779
1823
|
/**
|
|
1780
|
-
* The amount in minor units of the `currency` field.
|
|
1824
|
+
* The amount in minor units of the `currency` field. The amount is positive if it
|
|
1825
|
+
* is added to the amount (such as an ATM surcharge fee) and negative if it is
|
|
1826
|
+
* subtracted from the amount (such as a discount).
|
|
1781
1827
|
*/
|
|
1782
1828
|
amount: number;
|
|
1783
1829
|
/**
|
|
@@ -1791,7 +1837,9 @@ export declare namespace CardPayment {
|
|
|
1791
1837
|
*/
|
|
1792
1838
|
interface TotalHealthcare {
|
|
1793
1839
|
/**
|
|
1794
|
-
* The amount in minor units of the `currency` field.
|
|
1840
|
+
* The amount in minor units of the `currency` field. The amount is positive if it
|
|
1841
|
+
* is added to the amount (such as an ATM surcharge fee) and negative if it is
|
|
1842
|
+
* subtracted from the amount (such as a discount).
|
|
1795
1843
|
*/
|
|
1796
1844
|
amount: number;
|
|
1797
1845
|
/**
|
|
@@ -1805,7 +1853,9 @@ export declare namespace CardPayment {
|
|
|
1805
1853
|
*/
|
|
1806
1854
|
interface Transit {
|
|
1807
1855
|
/**
|
|
1808
|
-
* The amount in minor units of the `currency` field.
|
|
1856
|
+
* The amount in minor units of the `currency` field. The amount is positive if it
|
|
1857
|
+
* is added to the amount (such as an ATM surcharge fee) and negative if it is
|
|
1858
|
+
* subtracted from the amount (such as a discount).
|
|
1809
1859
|
*/
|
|
1810
1860
|
amount: number;
|
|
1811
1861
|
/**
|
|
@@ -1819,7 +1869,9 @@ export declare namespace CardPayment {
|
|
|
1819
1869
|
*/
|
|
1820
1870
|
interface Unknown {
|
|
1821
1871
|
/**
|
|
1822
|
-
* The amount in minor units of the `currency` field.
|
|
1872
|
+
* The amount in minor units of the `currency` field. The amount is positive if it
|
|
1873
|
+
* is added to the amount (such as an ATM surcharge fee) and negative if it is
|
|
1874
|
+
* subtracted from the amount (such as a discount).
|
|
1823
1875
|
*/
|
|
1824
1876
|
amount: number;
|
|
1825
1877
|
/**
|
|
@@ -1833,7 +1885,9 @@ export declare namespace CardPayment {
|
|
|
1833
1885
|
*/
|
|
1834
1886
|
interface Vision {
|
|
1835
1887
|
/**
|
|
1836
|
-
* The amount in minor units of the `currency` field.
|
|
1888
|
+
* The amount in minor units of the `currency` field. The amount is positive if it
|
|
1889
|
+
* is added to the amount (such as an ATM surcharge fee) and negative if it is
|
|
1890
|
+
* subtracted from the amount (such as a discount).
|
|
1837
1891
|
*/
|
|
1838
1892
|
amount: number;
|
|
1839
1893
|
/**
|
|
@@ -3357,7 +3411,9 @@ export declare namespace CardPayment {
|
|
|
3357
3411
|
*/
|
|
3358
3412
|
interface Clinic {
|
|
3359
3413
|
/**
|
|
3360
|
-
* The amount in minor units of the `currency` field.
|
|
3414
|
+
* The amount in minor units of the `currency` field. The amount is positive if it
|
|
3415
|
+
* is added to the amount (such as an ATM surcharge fee) and negative if it is
|
|
3416
|
+
* subtracted from the amount (such as a discount).
|
|
3361
3417
|
*/
|
|
3362
3418
|
amount: number;
|
|
3363
3419
|
/**
|
|
@@ -3371,7 +3427,9 @@ export declare namespace CardPayment {
|
|
|
3371
3427
|
*/
|
|
3372
3428
|
interface Dental {
|
|
3373
3429
|
/**
|
|
3374
|
-
* The amount in minor units of the `currency` field.
|
|
3430
|
+
* The amount in minor units of the `currency` field. The amount is positive if it
|
|
3431
|
+
* is added to the amount (such as an ATM surcharge fee) and negative if it is
|
|
3432
|
+
* subtracted from the amount (such as a discount).
|
|
3375
3433
|
*/
|
|
3376
3434
|
amount: number;
|
|
3377
3435
|
/**
|
|
@@ -3385,7 +3443,9 @@ export declare namespace CardPayment {
|
|
|
3385
3443
|
*/
|
|
3386
3444
|
interface Prescription {
|
|
3387
3445
|
/**
|
|
3388
|
-
* The amount in minor units of the `currency` field.
|
|
3446
|
+
* The amount in minor units of the `currency` field. The amount is positive if it
|
|
3447
|
+
* is added to the amount (such as an ATM surcharge fee) and negative if it is
|
|
3448
|
+
* subtracted from the amount (such as a discount).
|
|
3389
3449
|
*/
|
|
3390
3450
|
amount: number;
|
|
3391
3451
|
/**
|
|
@@ -3399,7 +3459,9 @@ export declare namespace CardPayment {
|
|
|
3399
3459
|
*/
|
|
3400
3460
|
interface Surcharge {
|
|
3401
3461
|
/**
|
|
3402
|
-
* The amount in minor units of the `currency` field.
|
|
3462
|
+
* The amount in minor units of the `currency` field. The amount is positive if it
|
|
3463
|
+
* is added to the amount (such as an ATM surcharge fee) and negative if it is
|
|
3464
|
+
* subtracted from the amount (such as a discount).
|
|
3403
3465
|
*/
|
|
3404
3466
|
amount: number;
|
|
3405
3467
|
/**
|
|
@@ -3413,7 +3475,9 @@ export declare namespace CardPayment {
|
|
|
3413
3475
|
*/
|
|
3414
3476
|
interface TotalCumulative {
|
|
3415
3477
|
/**
|
|
3416
|
-
* The amount in minor units of the `currency` field.
|
|
3478
|
+
* The amount in minor units of the `currency` field. The amount is positive if it
|
|
3479
|
+
* is added to the amount (such as an ATM surcharge fee) and negative if it is
|
|
3480
|
+
* subtracted from the amount (such as a discount).
|
|
3417
3481
|
*/
|
|
3418
3482
|
amount: number;
|
|
3419
3483
|
/**
|
|
@@ -3427,7 +3491,9 @@ export declare namespace CardPayment {
|
|
|
3427
3491
|
*/
|
|
3428
3492
|
interface TotalHealthcare {
|
|
3429
3493
|
/**
|
|
3430
|
-
* The amount in minor units of the `currency` field.
|
|
3494
|
+
* The amount in minor units of the `currency` field. The amount is positive if it
|
|
3495
|
+
* is added to the amount (such as an ATM surcharge fee) and negative if it is
|
|
3496
|
+
* subtracted from the amount (such as a discount).
|
|
3431
3497
|
*/
|
|
3432
3498
|
amount: number;
|
|
3433
3499
|
/**
|
|
@@ -3441,7 +3507,9 @@ export declare namespace CardPayment {
|
|
|
3441
3507
|
*/
|
|
3442
3508
|
interface Transit {
|
|
3443
3509
|
/**
|
|
3444
|
-
* The amount in minor units of the `currency` field.
|
|
3510
|
+
* The amount in minor units of the `currency` field. The amount is positive if it
|
|
3511
|
+
* is added to the amount (such as an ATM surcharge fee) and negative if it is
|
|
3512
|
+
* subtracted from the amount (such as a discount).
|
|
3445
3513
|
*/
|
|
3446
3514
|
amount: number;
|
|
3447
3515
|
/**
|
|
@@ -3455,7 +3523,9 @@ export declare namespace CardPayment {
|
|
|
3455
3523
|
*/
|
|
3456
3524
|
interface Unknown {
|
|
3457
3525
|
/**
|
|
3458
|
-
* The amount in minor units of the `currency` field.
|
|
3526
|
+
* The amount in minor units of the `currency` field. The amount is positive if it
|
|
3527
|
+
* is added to the amount (such as an ATM surcharge fee) and negative if it is
|
|
3528
|
+
* subtracted from the amount (such as a discount).
|
|
3459
3529
|
*/
|
|
3460
3530
|
amount: number;
|
|
3461
3531
|
/**
|
|
@@ -3469,7 +3539,9 @@ export declare namespace CardPayment {
|
|
|
3469
3539
|
*/
|
|
3470
3540
|
interface Vision {
|
|
3471
3541
|
/**
|
|
3472
|
-
* The amount in minor units of the `currency` field.
|
|
3542
|
+
* The amount in minor units of the `currency` field. The amount is positive if it
|
|
3543
|
+
* is added to the amount (such as an ATM surcharge fee) and negative if it is
|
|
3544
|
+
* subtracted from the amount (such as a discount).
|
|
3473
3545
|
*/
|
|
3474
3546
|
amount: number;
|
|
3475
3547
|
/**
|