squarefi-bff-api-module 1.32.10 → 1.32.11

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.
@@ -1850,7 +1850,7 @@ export declare namespace API {
1850
1850
  walletAddress: string;
1851
1851
  }
1852
1852
  namespace DepositInstruction {
1853
- type InstructionType = 'ACH' | 'FEDWIRE' | 'SWIFT' | 'CHAPS' | 'FPS' | 'SEPA' | 'CRYPTO_EXTERNAL' | 'CRYPTO_INTERNAL';
1853
+ type InstructionType = 'ACH' | 'FEDWIRE' | 'SWIFT' | 'CHAPS' | 'FPS' | 'SEPA' | 'CRYPTO_EXTERNAL' | 'CRYPTO_INTERNAL' | 'SEPA_CT';
1854
1854
  interface Address {
1855
1855
  city: string;
1856
1856
  state: string;
@@ -54,6 +54,7 @@ export declare enum WalletTransactionStatus {
54
54
  export declare enum OrderTypePaymentMethod {
55
55
  ACH = "ACH",
56
56
  SEPA = "SEPA",
57
+ SEPA_CT = "SEPA_CT",// DEPRECATED, use SEPA instead
57
58
  SWIFT = "SWIFT",
58
59
  FEDWIRE = "FEDWIRE",
59
60
  CRYPTO_EXTERNAL = "CRYPTO_EXTERNAL",
@@ -311,6 +312,7 @@ export declare enum VirtualAccountsInstructionType {
311
312
  FEDWIRE = "FEDWIRE",
312
313
  SWIFT = "SWIFT",
313
314
  SEPA = "SEPA",
315
+ SEPA_CT = "SEPA_CT",// DEPRECATED, use SEPA instead
314
316
  CHAPS = "CHAPS",
315
317
  FPS = "FPS",
316
318
  CRYPTO_EXTERNAL = "CRYPTO_EXTERNAL",
package/dist/constants.js CHANGED
@@ -53,6 +53,7 @@ export var OrderTypePaymentMethod;
53
53
  (function (OrderTypePaymentMethod) {
54
54
  OrderTypePaymentMethod["ACH"] = "ACH";
55
55
  OrderTypePaymentMethod["SEPA"] = "SEPA";
56
+ OrderTypePaymentMethod["SEPA_CT"] = "SEPA_CT";
56
57
  OrderTypePaymentMethod["SWIFT"] = "SWIFT";
57
58
  // DOMESTIC_WIRE = 'DOMESTIC_WIRE', // DEPRECATED, use FEDWIRE instead
58
59
  OrderTypePaymentMethod["FEDWIRE"] = "FEDWIRE";
@@ -346,7 +347,7 @@ export var VirtualAccountsInstructionType;
346
347
  VirtualAccountsInstructionType["FEDWIRE"] = "FEDWIRE";
347
348
  VirtualAccountsInstructionType["SWIFT"] = "SWIFT";
348
349
  VirtualAccountsInstructionType["SEPA"] = "SEPA";
349
- // SEPA_CT = 'SEPA_CT', // DEPRECATED, use SEPA instead
350
+ VirtualAccountsInstructionType["SEPA_CT"] = "SEPA_CT";
350
351
  VirtualAccountsInstructionType["CHAPS"] = "CHAPS";
351
352
  VirtualAccountsInstructionType["FPS"] = "FPS";
352
353
  VirtualAccountsInstructionType["CRYPTO_EXTERNAL"] = "CRYPTO_EXTERNAL";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squarefi-bff-api-module",
3
- "version": "1.32.10",
3
+ "version": "1.32.11",
4
4
  "description": "Squarefi BFF API client module",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",