squarefi-bff-api-module 1.26.8 → 1.26.9

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.
@@ -643,6 +643,7 @@ export declare namespace API {
643
643
  role: APIKeyRole;
644
644
  wallet_id: string;
645
645
  created_at: string;
646
+ is_enabled: boolean;
646
647
  }
647
648
  interface ExtendedKey extends Key {
648
649
  key: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squarefi-bff-api-module",
3
- "version": "1.26.8",
3
+ "version": "1.26.9",
4
4
  "description": "Squarefi BFF API client module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -472,10 +472,10 @@ export namespace API {
472
472
 
473
473
  export interface DestinationListItemWithExternalBankingData extends DestinationListItemCommonFields {
474
474
  type:
475
- | CounterpartyDestinationType.DOMESTIC_WIRE
476
- | CounterpartyDestinationType.ACH
477
- | CounterpartyDestinationType.SWIFT
478
- | CounterpartyDestinationType.SEPA;
475
+ | CounterpartyDestinationType.DOMESTIC_WIRE
476
+ | CounterpartyDestinationType.ACH
477
+ | CounterpartyDestinationType.SWIFT
478
+ | CounterpartyDestinationType.SEPA;
479
479
  external_banking_data: DestinationListItemExternalBankingData;
480
480
  external_crypto_data?: never;
481
481
  }
@@ -531,10 +531,10 @@ export namespace API {
531
531
 
532
532
  export interface DestinationDetailItemWithExternalBankingData extends DestinationDetailItemCommonFields {
533
533
  type:
534
- | CounterpartyDestinationType.DOMESTIC_WIRE
535
- | CounterpartyDestinationType.ACH
536
- | CounterpartyDestinationType.SWIFT
537
- | CounterpartyDestinationType.SEPA;
534
+ | CounterpartyDestinationType.DOMESTIC_WIRE
535
+ | CounterpartyDestinationType.ACH
536
+ | CounterpartyDestinationType.SWIFT
537
+ | CounterpartyDestinationType.SEPA;
538
538
  external_banking_data: DestinationDetailItemExternalBankingData;
539
539
  external_crypto_data?: never;
540
540
  }
@@ -792,6 +792,7 @@ export namespace API {
792
792
  role: APIKeyRole;
793
793
  wallet_id: string;
794
794
  created_at: string;
795
+ is_enabled: boolean;
795
796
  }
796
797
 
797
798
  export interface ExtendedKey extends Key {
@@ -1638,10 +1639,10 @@ export namespace API {
1638
1639
 
1639
1640
  export interface WithdrawCryptoRequest extends CommonRequestParams {
1640
1641
  order_type:
1641
- | OrderType.WITHDRAWAL_CRYPTO
1642
- | OrderType.TRANSFER_INTERNAL
1643
- | OrderType.OMNIBUS_CRYPTO_TRANSFER
1644
- | OrderType.SEGREGATED_CRYPTO_TRANSFER;
1642
+ | OrderType.WITHDRAWAL_CRYPTO
1643
+ | OrderType.TRANSFER_INTERNAL
1644
+ | OrderType.OMNIBUS_CRYPTO_TRANSFER
1645
+ | OrderType.SEGREGATED_CRYPTO_TRANSFER;
1645
1646
  to_address?: string;
1646
1647
  }
1647
1648
 
@@ -1802,10 +1803,10 @@ export namespace API {
1802
1803
 
1803
1804
  export interface WithdrawCryptoRequest extends CommonRequestParams {
1804
1805
  order_type:
1805
- | OrderType.WITHDRAWAL_CRYPTO
1806
- | OrderType.TRANSFER_INTERNAL
1807
- | OrderType.OMNIBUS_CRYPTO_TRANSFER
1808
- | OrderType.SEGREGATED_CRYPTO_TRANSFER;
1806
+ | OrderType.WITHDRAWAL_CRYPTO
1807
+ | OrderType.TRANSFER_INTERNAL
1808
+ | OrderType.OMNIBUS_CRYPTO_TRANSFER
1809
+ | OrderType.SEGREGATED_CRYPTO_TRANSFER;
1809
1810
  to_address?: string;
1810
1811
  }
1811
1812