squarefi-bff-api-module 1.32.28 → 1.32.29
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.
|
@@ -2092,6 +2092,8 @@ export declare namespace API {
|
|
|
2092
2092
|
}
|
|
2093
2093
|
}
|
|
2094
2094
|
namespace Wallet {
|
|
2095
|
+
type WalletKYCInfo = components['schemas']['WalletKycInfoDto'];
|
|
2096
|
+
type WalletRole = components['schemas']['WalletDto']['role'];
|
|
2095
2097
|
interface Wallet {
|
|
2096
2098
|
uuid: string;
|
|
2097
2099
|
created_at: string;
|
|
@@ -2099,6 +2101,8 @@ export declare namespace API {
|
|
|
2099
2101
|
crypto_total: number;
|
|
2100
2102
|
total_amount: number;
|
|
2101
2103
|
balance: WalletBalance;
|
|
2104
|
+
kyc_info: WalletKYCInfo;
|
|
2105
|
+
role: WalletRole;
|
|
2102
2106
|
}
|
|
2103
2107
|
namespace Create {
|
|
2104
2108
|
type Request = operations['WalletsController_create']['requestBody']['content']['application/json'];
|
|
@@ -2113,8 +2117,8 @@ export declare namespace API {
|
|
|
2113
2117
|
interface WalletsListItem {
|
|
2114
2118
|
uuid: string;
|
|
2115
2119
|
created_at: string;
|
|
2116
|
-
role:
|
|
2117
|
-
kyc_info:
|
|
2120
|
+
role: API.Wallets.Wallet.WalletRole;
|
|
2121
|
+
kyc_info: API.Wallets.Wallet.WalletKYCInfo;
|
|
2118
2122
|
}
|
|
2119
2123
|
type Request = operations['WalletsController_all']['parameters']['query'];
|
|
2120
2124
|
type Response = {
|