squarefi-bff-api-module 1.29.1 → 1.29.3
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/dist/api/types/types.d.ts +18 -2
- package/package.json +1 -1
- package/src/api/types/types.ts +20 -2
|
@@ -1677,7 +1677,7 @@ export declare namespace API {
|
|
|
1677
1677
|
walletAddress: string;
|
|
1678
1678
|
}
|
|
1679
1679
|
namespace DepositInstruction {
|
|
1680
|
-
type InstructionType = 'ACH' | 'FEDWIRE' | 'SWIFT' | 'SEPA_CT';
|
|
1680
|
+
type InstructionType = 'ACH' | 'FEDWIRE' | 'SWIFT' | 'SEPA_CT' | 'CHAPS' | 'FPS';
|
|
1681
1681
|
interface Address {
|
|
1682
1682
|
city: string;
|
|
1683
1683
|
state: string;
|
|
@@ -1697,6 +1697,8 @@ export declare namespace API {
|
|
|
1697
1697
|
account_holder_name?: string;
|
|
1698
1698
|
account_routing_number?: string;
|
|
1699
1699
|
swift_bic?: string;
|
|
1700
|
+
iban?: string;
|
|
1701
|
+
sort_code?: string;
|
|
1700
1702
|
}
|
|
1701
1703
|
interface ACH extends Common {
|
|
1702
1704
|
instruction_type: 'ACH';
|
|
@@ -1721,7 +1723,21 @@ export declare namespace API {
|
|
|
1721
1723
|
institution_address: Address;
|
|
1722
1724
|
account_holder_address: Address;
|
|
1723
1725
|
}
|
|
1724
|
-
|
|
1726
|
+
interface CHAPS extends Common {
|
|
1727
|
+
instruction_type: 'CHAPS';
|
|
1728
|
+
account_holder_name: string;
|
|
1729
|
+
sort_code: string;
|
|
1730
|
+
account_holder_address: Address;
|
|
1731
|
+
institution_address: Address;
|
|
1732
|
+
}
|
|
1733
|
+
interface FPS extends Common {
|
|
1734
|
+
instruction_type: 'FPS';
|
|
1735
|
+
account_holder_name: string;
|
|
1736
|
+
sort_code: string;
|
|
1737
|
+
account_holder_address: Address;
|
|
1738
|
+
institution_address: Address;
|
|
1739
|
+
}
|
|
1740
|
+
type DepositInstruction = ACH | FEDWIRE | SWIFT | SEPA | CHAPS | FPS | Common;
|
|
1725
1741
|
}
|
|
1726
1742
|
interface OrderType {
|
|
1727
1743
|
order_type_id: string;
|
package/package.json
CHANGED
package/src/api/types/types.ts
CHANGED
|
@@ -2163,7 +2163,7 @@ export namespace API {
|
|
|
2163
2163
|
}
|
|
2164
2164
|
|
|
2165
2165
|
export namespace DepositInstruction {
|
|
2166
|
-
export type InstructionType = 'ACH' | 'FEDWIRE' | 'SWIFT' | 'SEPA_CT';
|
|
2166
|
+
export type InstructionType = 'ACH' | 'FEDWIRE' | 'SWIFT' | 'SEPA_CT' | 'CHAPS' | 'FPS';
|
|
2167
2167
|
|
|
2168
2168
|
export interface Address {
|
|
2169
2169
|
city: string;
|
|
@@ -2185,6 +2185,8 @@ export namespace API {
|
|
|
2185
2185
|
account_holder_name?: string;
|
|
2186
2186
|
account_routing_number?: string;
|
|
2187
2187
|
swift_bic?: string;
|
|
2188
|
+
iban?: string;
|
|
2189
|
+
sort_code?: string;
|
|
2188
2190
|
}
|
|
2189
2191
|
export interface ACH extends Common {
|
|
2190
2192
|
instruction_type: 'ACH';
|
|
@@ -2211,7 +2213,23 @@ export namespace API {
|
|
|
2211
2213
|
account_holder_address: Address;
|
|
2212
2214
|
}
|
|
2213
2215
|
|
|
2214
|
-
export
|
|
2216
|
+
export interface CHAPS extends Common {
|
|
2217
|
+
instruction_type: 'CHAPS';
|
|
2218
|
+
account_holder_name: string;
|
|
2219
|
+
sort_code: string;
|
|
2220
|
+
account_holder_address: Address;
|
|
2221
|
+
institution_address: Address;
|
|
2222
|
+
}
|
|
2223
|
+
|
|
2224
|
+
export interface FPS extends Common {
|
|
2225
|
+
instruction_type: 'FPS';
|
|
2226
|
+
account_holder_name: string;
|
|
2227
|
+
sort_code: string;
|
|
2228
|
+
account_holder_address: Address;
|
|
2229
|
+
institution_address: Address;
|
|
2230
|
+
}
|
|
2231
|
+
|
|
2232
|
+
export type DepositInstruction = ACH | FEDWIRE | SWIFT | SEPA | CHAPS | FPS | Common;
|
|
2215
2233
|
}
|
|
2216
2234
|
|
|
2217
2235
|
export interface OrderType {
|