squarefi-bff-api-module 1.32.20 → 1.32.22
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 -12
- package/package.json +1 -1
|
@@ -2093,19 +2093,9 @@ export declare namespace API {
|
|
|
2093
2093
|
}
|
|
2094
2094
|
}
|
|
2095
2095
|
namespace Wallet {
|
|
2096
|
-
|
|
2097
|
-
uuid: string;
|
|
2098
|
-
type: WalletType | string;
|
|
2099
|
-
created_at: string;
|
|
2100
|
-
fiat_total: number;
|
|
2101
|
-
crypto_total: number;
|
|
2102
|
-
total_amount: number;
|
|
2103
|
-
balance: WalletBalance;
|
|
2104
|
-
}
|
|
2096
|
+
type Wallet = components['schemas']['WalletExtendedDto'];
|
|
2105
2097
|
namespace Create {
|
|
2106
|
-
|
|
2107
|
-
type: WalletType;
|
|
2108
|
-
}
|
|
2098
|
+
type Request = operations['WalletsController_create']['requestBody']['content']['application/json'];
|
|
2109
2099
|
type Response = operations['WalletsController_create']['responses']['200']['content']['application/json'];
|
|
2110
2100
|
}
|
|
2111
2101
|
namespace GetByUuid {
|