squarefi-bff-api-module 1.29.2 → 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 +17 -2
- package/package.json +1 -1
- package/src/api/types/types.ts +19 -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;
|
|
@@ -1698,6 +1698,7 @@ export declare namespace API {
|
|
|
1698
1698
|
account_routing_number?: string;
|
|
1699
1699
|
swift_bic?: string;
|
|
1700
1700
|
iban?: string;
|
|
1701
|
+
sort_code?: string;
|
|
1701
1702
|
}
|
|
1702
1703
|
interface ACH extends Common {
|
|
1703
1704
|
instruction_type: 'ACH';
|
|
@@ -1722,7 +1723,21 @@ export declare namespace API {
|
|
|
1722
1723
|
institution_address: Address;
|
|
1723
1724
|
account_holder_address: Address;
|
|
1724
1725
|
}
|
|
1725
|
-
|
|
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;
|
|
1726
1741
|
}
|
|
1727
1742
|
interface OrderType {
|
|
1728
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;
|
|
@@ -2186,6 +2186,7 @@ export namespace API {
|
|
|
2186
2186
|
account_routing_number?: string;
|
|
2187
2187
|
swift_bic?: string;
|
|
2188
2188
|
iban?: string;
|
|
2189
|
+
sort_code?: string;
|
|
2189
2190
|
}
|
|
2190
2191
|
export interface ACH extends Common {
|
|
2191
2192
|
instruction_type: 'ACH';
|
|
@@ -2212,7 +2213,23 @@ export namespace API {
|
|
|
2212
2213
|
account_holder_address: Address;
|
|
2213
2214
|
}
|
|
2214
2215
|
|
|
2215
|
-
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;
|
|
2216
2233
|
}
|
|
2217
2234
|
|
|
2218
2235
|
export interface OrderType {
|