squarefi-bff-api-module 1.26.7 → 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 +2 -1
- package/package.json +1 -1
- package/src/api/types/types.ts +20 -18
|
@@ -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;
|
|
@@ -1889,7 +1890,7 @@ export declare namespace API {
|
|
|
1889
1890
|
message?: string;
|
|
1890
1891
|
details?: string;
|
|
1891
1892
|
validity?: number;
|
|
1892
|
-
|
|
1893
|
+
requests_made?: number;
|
|
1893
1894
|
max_requests?: number;
|
|
1894
1895
|
};
|
|
1895
1896
|
}
|
package/package.json
CHANGED
package/src/api/types/types.ts
CHANGED
|
@@ -110,7 +110,8 @@ export namespace API {
|
|
|
110
110
|
export namespace BankData {
|
|
111
111
|
export namespace GetBankDataByAccountNumber {
|
|
112
112
|
export type Request = operations['BankDataController_getBankDataByAccountNumber']['parameters']['query'];
|
|
113
|
-
export type Response =
|
|
113
|
+
export type Response =
|
|
114
|
+
operations['BankDataController_getBankDataByAccountNumber']['responses']['200']['content']['application/json'];
|
|
114
115
|
}
|
|
115
116
|
}
|
|
116
117
|
|
|
@@ -471,10 +472,10 @@ export namespace API {
|
|
|
471
472
|
|
|
472
473
|
export interface DestinationListItemWithExternalBankingData extends DestinationListItemCommonFields {
|
|
473
474
|
type:
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
475
|
+
| CounterpartyDestinationType.DOMESTIC_WIRE
|
|
476
|
+
| CounterpartyDestinationType.ACH
|
|
477
|
+
| CounterpartyDestinationType.SWIFT
|
|
478
|
+
| CounterpartyDestinationType.SEPA;
|
|
478
479
|
external_banking_data: DestinationListItemExternalBankingData;
|
|
479
480
|
external_crypto_data?: never;
|
|
480
481
|
}
|
|
@@ -530,10 +531,10 @@ export namespace API {
|
|
|
530
531
|
|
|
531
532
|
export interface DestinationDetailItemWithExternalBankingData extends DestinationDetailItemCommonFields {
|
|
532
533
|
type:
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
534
|
+
| CounterpartyDestinationType.DOMESTIC_WIRE
|
|
535
|
+
| CounterpartyDestinationType.ACH
|
|
536
|
+
| CounterpartyDestinationType.SWIFT
|
|
537
|
+
| CounterpartyDestinationType.SEPA;
|
|
537
538
|
external_banking_data: DestinationDetailItemExternalBankingData;
|
|
538
539
|
external_crypto_data?: never;
|
|
539
540
|
}
|
|
@@ -791,6 +792,7 @@ export namespace API {
|
|
|
791
792
|
role: APIKeyRole;
|
|
792
793
|
wallet_id: string;
|
|
793
794
|
created_at: string;
|
|
795
|
+
is_enabled: boolean;
|
|
794
796
|
}
|
|
795
797
|
|
|
796
798
|
export interface ExtendedKey extends Key {
|
|
@@ -1637,10 +1639,10 @@ export namespace API {
|
|
|
1637
1639
|
|
|
1638
1640
|
export interface WithdrawCryptoRequest extends CommonRequestParams {
|
|
1639
1641
|
order_type:
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1642
|
+
| OrderType.WITHDRAWAL_CRYPTO
|
|
1643
|
+
| OrderType.TRANSFER_INTERNAL
|
|
1644
|
+
| OrderType.OMNIBUS_CRYPTO_TRANSFER
|
|
1645
|
+
| OrderType.SEGREGATED_CRYPTO_TRANSFER;
|
|
1644
1646
|
to_address?: string;
|
|
1645
1647
|
}
|
|
1646
1648
|
|
|
@@ -1801,10 +1803,10 @@ export namespace API {
|
|
|
1801
1803
|
|
|
1802
1804
|
export interface WithdrawCryptoRequest extends CommonRequestParams {
|
|
1803
1805
|
order_type:
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1806
|
+
| OrderType.WITHDRAWAL_CRYPTO
|
|
1807
|
+
| OrderType.TRANSFER_INTERNAL
|
|
1808
|
+
| OrderType.OMNIBUS_CRYPTO_TRANSFER
|
|
1809
|
+
| OrderType.SEGREGATED_CRYPTO_TRANSFER;
|
|
1808
1810
|
to_address?: string;
|
|
1809
1811
|
}
|
|
1810
1812
|
|
|
@@ -2370,7 +2372,7 @@ export namespace API {
|
|
|
2370
2372
|
message?: string;
|
|
2371
2373
|
details?: string;
|
|
2372
2374
|
validity?: number;
|
|
2373
|
-
|
|
2375
|
+
requests_made?: number;
|
|
2374
2376
|
max_requests?: number;
|
|
2375
2377
|
};
|
|
2376
2378
|
}
|