increase 0.576.0 → 0.577.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 +11 -0
- package/package.json +1 -1
- package/resources/check-transfers.d.mts +2 -1
- package/resources/check-transfers.d.mts.map +1 -1
- package/resources/check-transfers.d.ts +2 -1
- package/resources/check-transfers.d.ts.map +1 -1
- package/resources/event-subscriptions.d.mts +10 -2
- package/resources/event-subscriptions.d.mts.map +1 -1
- package/resources/event-subscriptions.d.ts +10 -2
- package/resources/event-subscriptions.d.ts.map +1 -1
- package/resources/events.d.mts +11 -3
- package/resources/events.d.mts.map +1 -1
- package/resources/events.d.ts +11 -3
- package/resources/events.d.ts.map +1 -1
- package/resources/inbound-wire-transfers.d.mts +8 -0
- package/resources/inbound-wire-transfers.d.mts.map +1 -1
- package/resources/inbound-wire-transfers.d.ts +8 -0
- package/resources/inbound-wire-transfers.d.ts.map +1 -1
- package/resources/simulations/card-settlements.d.mts +7 -8
- package/resources/simulations/card-settlements.d.mts.map +1 -1
- package/resources/simulations/card-settlements.d.ts +7 -8
- package/resources/simulations/card-settlements.d.ts.map +1 -1
- package/resources/simulations/card-settlements.js +0 -2
- package/resources/simulations/card-settlements.js.map +1 -1
- package/resources/simulations/card-settlements.mjs +0 -2
- package/resources/simulations/card-settlements.mjs.map +1 -1
- package/resources/simulations/programs.d.mts +1 -2
- package/resources/simulations/programs.d.mts.map +1 -1
- package/resources/simulations/programs.d.ts +1 -2
- package/resources/simulations/programs.d.ts.map +1 -1
- package/resources/swift-transfers.d.mts +10 -0
- package/resources/swift-transfers.d.mts.map +1 -1
- package/resources/swift-transfers.d.ts +10 -0
- package/resources/swift-transfers.d.ts.map +1 -1
- package/src/resources/check-transfers.ts +2 -1
- package/src/resources/event-subscriptions.ts +12 -0
- package/src/resources/events.ts +14 -0
- package/src/resources/inbound-wire-transfers.ts +10 -0
- package/src/resources/simulations/card-settlements.ts +7 -8
- package/src/resources/simulations/programs.ts +1 -2
- package/src/resources/swift-transfers.ts +12 -0
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -18,8 +18,6 @@ export class CardSettlements extends APIResource {
|
|
|
18
18
|
* const transaction =
|
|
19
19
|
* await client.simulations.cardSettlements.create({
|
|
20
20
|
* card_id: 'card_oubs0hwk5rn6knuecxg2',
|
|
21
|
-
* pending_transaction_id:
|
|
22
|
-
* 'pending_transaction_k1sfetcau2qbvjbzgju4',
|
|
23
21
|
* });
|
|
24
22
|
* ```
|
|
25
23
|
*/
|
|
@@ -38,16 +36,17 @@ export interface CardSettlementCreateParams {
|
|
|
38
36
|
card_id: string;
|
|
39
37
|
|
|
40
38
|
/**
|
|
41
|
-
* The
|
|
42
|
-
*
|
|
39
|
+
* The amount to be settled. This defaults to the amount of the Pending Transaction
|
|
40
|
+
* being settled, or a random amount if `pending_transaction_id` is not provided.
|
|
43
41
|
*/
|
|
44
|
-
|
|
42
|
+
amount?: number;
|
|
45
43
|
|
|
46
44
|
/**
|
|
47
|
-
* The
|
|
48
|
-
*
|
|
45
|
+
* The identifier of the Pending Transaction for the Card Authorization you wish to
|
|
46
|
+
* settle. If not provided, the settlement will be force posted without a Card
|
|
47
|
+
* Authorization.
|
|
49
48
|
*/
|
|
50
|
-
|
|
49
|
+
pending_transaction_id?: string;
|
|
51
50
|
}
|
|
52
51
|
|
|
53
52
|
export declare namespace CardSettlements {
|
|
@@ -36,9 +36,8 @@ export interface ProgramCreateParams {
|
|
|
36
36
|
* - `core_bank` - Core Bank
|
|
37
37
|
* - `first_internet_bank` - First Internet Bank of Indiana
|
|
38
38
|
* - `grasshopper_bank` - Grasshopper Bank
|
|
39
|
-
* - `twin_city_bank` - Twin City Bank
|
|
40
39
|
*/
|
|
41
|
-
bank?: 'core_bank' | 'first_internet_bank' | 'grasshopper_bank'
|
|
40
|
+
bank?: 'core_bank' | 'first_internet_bank' | 'grasshopper_bank';
|
|
42
41
|
|
|
43
42
|
/**
|
|
44
43
|
* The maximum extendable credit of the program being added.
|
|
@@ -184,6 +184,12 @@ export interface SwiftTransfer {
|
|
|
184
184
|
*/
|
|
185
185
|
instructed_currency: 'USD';
|
|
186
186
|
|
|
187
|
+
/**
|
|
188
|
+
* The bank identification code (BIC) of the intermediary bank, if the transfer is
|
|
189
|
+
* routed through one.
|
|
190
|
+
*/
|
|
191
|
+
intermediary_bank_identification_code: string | null;
|
|
192
|
+
|
|
187
193
|
/**
|
|
188
194
|
* The ID for the pending transaction representing the transfer.
|
|
189
195
|
*/
|
|
@@ -448,6 +454,12 @@ export interface SwiftTransferCreateParams {
|
|
|
448
454
|
*/
|
|
449
455
|
unstructured_remittance_information: string;
|
|
450
456
|
|
|
457
|
+
/**
|
|
458
|
+
* The bank identification code (BIC) of the intermediary bank, if the transfer
|
|
459
|
+
* should be routed through one.
|
|
460
|
+
*/
|
|
461
|
+
intermediary_bank_identification_code?: string;
|
|
462
|
+
|
|
451
463
|
/**
|
|
452
464
|
* Whether the transfer requires explicit approval via the dashboard or API.
|
|
453
465
|
*/
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.577.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.577.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "0.
|
|
1
|
+
export declare const VERSION = "0.577.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '0.
|
|
1
|
+
export const VERSION = '0.577.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|