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.
- package/dist/api/types/types.d.ts +1 -0
- package/package.json +1 -1
- package/src/api/types/types.ts +17 -16
package/package.json
CHANGED
package/src/api/types/types.ts
CHANGED
|
@@ -472,10 +472,10 @@ export namespace API {
|
|
|
472
472
|
|
|
473
473
|
export interface DestinationListItemWithExternalBankingData extends DestinationListItemCommonFields {
|
|
474
474
|
type:
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
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
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
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
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
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
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
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
|
|