squarefi-bff-api-module 1.32.7 → 1.32.8
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 +10 -3
- package/dist/constants.d.ts +11 -0
- package/dist/constants.js +11 -0
- package/package.json +1 -1
|
@@ -1850,7 +1850,7 @@ export declare namespace API {
|
|
|
1850
1850
|
walletAddress: string;
|
|
1851
1851
|
}
|
|
1852
1852
|
namespace DepositInstruction {
|
|
1853
|
-
type InstructionType = 'ACH' | 'FEDWIRE' | 'SWIFT' | 'SEPA_CT' | 'CHAPS' | 'FPS';
|
|
1853
|
+
type InstructionType = 'ACH' | 'FEDWIRE' | 'SWIFT' | 'SEPA_CT' | 'CHAPS' | 'FPS' | 'SEPA';
|
|
1854
1854
|
interface Address {
|
|
1855
1855
|
city: string;
|
|
1856
1856
|
state: string;
|
|
@@ -1889,13 +1889,20 @@ export declare namespace API {
|
|
|
1889
1889
|
institution_address: Address;
|
|
1890
1890
|
account_holder_address: Address;
|
|
1891
1891
|
}
|
|
1892
|
-
interface
|
|
1892
|
+
interface SEPA_CT extends Common {
|
|
1893
1893
|
instruction_type: 'SEPA_CT';
|
|
1894
1894
|
iban: string;
|
|
1895
1895
|
swift_bic: string;
|
|
1896
1896
|
institution_address: Address;
|
|
1897
1897
|
account_holder_address: Address;
|
|
1898
1898
|
}
|
|
1899
|
+
interface SEPA extends Common {
|
|
1900
|
+
instruction_type: 'SEPA';
|
|
1901
|
+
iban: string;
|
|
1902
|
+
swift_bic: string;
|
|
1903
|
+
institution_address: Address;
|
|
1904
|
+
account_holder_address: Address;
|
|
1905
|
+
}
|
|
1899
1906
|
interface CHAPS extends Common {
|
|
1900
1907
|
instruction_type: 'CHAPS';
|
|
1901
1908
|
account_holder_name: string;
|
|
@@ -1910,7 +1917,7 @@ export declare namespace API {
|
|
|
1910
1917
|
account_holder_address: Address;
|
|
1911
1918
|
institution_address: Address;
|
|
1912
1919
|
}
|
|
1913
|
-
type DepositInstruction = ACH | FEDWIRE | SWIFT | SEPA | CHAPS | FPS | Common;
|
|
1920
|
+
type DepositInstruction = ACH | FEDWIRE | SWIFT | SEPA | CHAPS | FPS | SEPA_CT | Common;
|
|
1914
1921
|
}
|
|
1915
1922
|
interface OrderType {
|
|
1916
1923
|
order_type_id: string;
|
package/dist/constants.d.ts
CHANGED
|
@@ -306,6 +306,17 @@ export declare const counterpartyBankingAndCryptoDestinationTypeCheck: IsEnumEqu
|
|
|
306
306
|
export type CounterpartyBankingAndCryptoDestinationTypeMismatch = EnumUnionMismatch<API.Counterparties.Destination.CounterpartyDestinationType, API.Counterparties.Destination.DestinationType>;
|
|
307
307
|
export declare const counterpartyDestinationTypeCheck: IsEnumEqualToUnion<CounterpartyDestinationType, API.Counterparties.Destination.CounterpartyDestinationType>;
|
|
308
308
|
export type CounterpartyDestinationTypeMismatch = EnumUnionMismatch<CounterpartyDestinationType, API.Counterparties.Destination.CounterpartyDestinationType>;
|
|
309
|
+
export declare enum VirtualAccountsInstructionType {
|
|
310
|
+
ACH = "ACH",
|
|
311
|
+
FEDWIRE = "FEDWIRE",
|
|
312
|
+
SWIFT = "SWIFT",
|
|
313
|
+
SEPA = "SEPA",
|
|
314
|
+
SEPA_CT = "SEPA_CT",
|
|
315
|
+
CHAPS = "CHAPS",
|
|
316
|
+
FPS = "FPS"
|
|
317
|
+
}
|
|
318
|
+
export declare const virtualAccountsInstructionTypeCheck: IsEnumEqualToUnion<VirtualAccountsInstructionType, API.VirtualAccounts.VirtualAccount.DepositInstruction.InstructionType>;
|
|
319
|
+
export type VirtualAccountsInstructionTypeMismatch = EnumUnionMismatch<VirtualAccountsInstructionType, API.VirtualAccounts.VirtualAccount.DepositInstruction.InstructionType>;
|
|
309
320
|
export declare enum CardTransactionStatus {
|
|
310
321
|
APPROVED = "APPROVED",
|
|
311
322
|
CLEARED = "CLEARED",
|
package/dist/constants.js
CHANGED
|
@@ -339,6 +339,17 @@ export const counterpartyCryptoDestinationTypesValues = Object.keys(counterparty
|
|
|
339
339
|
export const counterpartyBankingDestinationTypesValues = Object.keys(counterpartyBankingDestinationTypes).map((key) => key);
|
|
340
340
|
export const counterpartyBankingAndCryptoDestinationTypeCheck = true;
|
|
341
341
|
export const counterpartyDestinationTypeCheck = true;
|
|
342
|
+
export var VirtualAccountsInstructionType;
|
|
343
|
+
(function (VirtualAccountsInstructionType) {
|
|
344
|
+
VirtualAccountsInstructionType["ACH"] = "ACH";
|
|
345
|
+
VirtualAccountsInstructionType["FEDWIRE"] = "FEDWIRE";
|
|
346
|
+
VirtualAccountsInstructionType["SWIFT"] = "SWIFT";
|
|
347
|
+
VirtualAccountsInstructionType["SEPA"] = "SEPA";
|
|
348
|
+
VirtualAccountsInstructionType["SEPA_CT"] = "SEPA_CT";
|
|
349
|
+
VirtualAccountsInstructionType["CHAPS"] = "CHAPS";
|
|
350
|
+
VirtualAccountsInstructionType["FPS"] = "FPS";
|
|
351
|
+
})(VirtualAccountsInstructionType || (VirtualAccountsInstructionType = {}));
|
|
352
|
+
export const virtualAccountsInstructionTypeCheck = true;
|
|
342
353
|
export var CardTransactionStatus;
|
|
343
354
|
(function (CardTransactionStatus) {
|
|
344
355
|
CardTransactionStatus["APPROVED"] = "APPROVED";
|