squarefi-bff-api-module 1.32.12 → 1.32.14
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.
|
@@ -2232,10 +2232,6 @@ export interface components {
|
|
|
2232
2232
|
data: components["schemas"]["ExchangeRateDto"][];
|
|
2233
2233
|
};
|
|
2234
2234
|
InitInquiryResponseDto: {
|
|
2235
|
-
/** @example 6633328a-1713-4a4d-97e6-088f96cdf12e */
|
|
2236
|
-
referenceId: string;
|
|
2237
|
-
/** @example itmpl_rmUunz2XZk5xm4KQyJawGQSpappS */
|
|
2238
|
-
templateId: string;
|
|
2239
2235
|
/** @example inq_E6U4KitBucNKpfrDMb997AaTkQTt */
|
|
2240
2236
|
inquiryId: string | null;
|
|
2241
2237
|
};
|
|
@@ -2107,7 +2107,10 @@ export declare namespace API {
|
|
|
2107
2107
|
created_at: string;
|
|
2108
2108
|
}
|
|
2109
2109
|
type Request = operations['WalletsController_all']['parameters']['query'];
|
|
2110
|
-
type Response =
|
|
2110
|
+
type Response = {
|
|
2111
|
+
total: number;
|
|
2112
|
+
data: WalletsListItem[];
|
|
2113
|
+
};
|
|
2111
2114
|
}
|
|
2112
2115
|
namespace WalletTransactions {
|
|
2113
2116
|
interface WalletTransactionMeta {
|
package/dist/api/wallets.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { API } from './types/types';
|
|
|
2
2
|
import { WalletTypeValues } from '../constants';
|
|
3
3
|
export declare const wallets: {
|
|
4
4
|
create: (type: WalletTypeValues) => Promise<void>;
|
|
5
|
-
getAll: (params
|
|
5
|
+
getAll: (params?: API.Wallets.WalletsList.Request) => Promise<API.Wallets.WalletsList.Response>;
|
|
6
6
|
getByUuid: (uuid: string) => Promise<API.Wallets.Wallet>;
|
|
7
7
|
addresses: {
|
|
8
8
|
create: (data: API.Wallets.WalletChain.Create.Request) => Promise<API.Wallets.WalletChain.Create.Response>;
|
package/dist/constants.d.ts
CHANGED
|
@@ -123,6 +123,7 @@ export declare enum OrderType {
|
|
|
123
123
|
export declare enum WalletTransactionRecordType {
|
|
124
124
|
CARD_PROVIDER_DEPOSIT = "CARD_PROVIDER_DEPOSIT",
|
|
125
125
|
CARD_PROVIDER_REFUND = "CARD_PROVIDER_REFUND",
|
|
126
|
+
CARD_PROVIDER_WITHDRAWAL = "CARD_PROVIDER_WITHDRAWAL",
|
|
126
127
|
DEPOSIT = "DEPOSIT",
|
|
127
128
|
DEPOSIT_CRYPTO_EXTERNAL = "DEPOSIT_CRYPTO_EXTERNAL",
|
|
128
129
|
DEPOSIT_CRYPTO_INTERNAL = "DEPOSIT_CRYPTO_INTERNAL",
|
package/dist/constants.js
CHANGED
|
@@ -125,6 +125,7 @@ export var WalletTransactionRecordType;
|
|
|
125
125
|
(function (WalletTransactionRecordType) {
|
|
126
126
|
WalletTransactionRecordType["CARD_PROVIDER_DEPOSIT"] = "CARD_PROVIDER_DEPOSIT";
|
|
127
127
|
WalletTransactionRecordType["CARD_PROVIDER_REFUND"] = "CARD_PROVIDER_REFUND";
|
|
128
|
+
WalletTransactionRecordType["CARD_PROVIDER_WITHDRAWAL"] = "CARD_PROVIDER_WITHDRAWAL";
|
|
128
129
|
WalletTransactionRecordType["DEPOSIT"] = "DEPOSIT";
|
|
129
130
|
WalletTransactionRecordType["DEPOSIT_CRYPTO_EXTERNAL"] = "DEPOSIT_CRYPTO_EXTERNAL";
|
|
130
131
|
WalletTransactionRecordType["DEPOSIT_CRYPTO_INTERNAL"] = "DEPOSIT_CRYPTO_INTERNAL";
|