squarefi-bff-api-module 1.18.10 → 1.18.12
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.
|
@@ -1215,11 +1215,10 @@ export declare namespace API {
|
|
|
1215
1215
|
namespace OMNIBUS_CRYPTO_WITHDRAWAL {
|
|
1216
1216
|
interface Request {
|
|
1217
1217
|
idempotency_key: string;
|
|
1218
|
+
counterparty_account_id: string;
|
|
1218
1219
|
amount: number;
|
|
1219
1220
|
wallet_uuid: string;
|
|
1220
1221
|
currency_id: string;
|
|
1221
|
-
to_address: string;
|
|
1222
|
-
counterparty_id: string;
|
|
1223
1222
|
memo?: string;
|
|
1224
1223
|
note?: string;
|
|
1225
1224
|
}
|
|
@@ -1332,7 +1331,7 @@ export declare namespace API {
|
|
|
1332
1331
|
signal?: AbortSignal;
|
|
1333
1332
|
}
|
|
1334
1333
|
export interface WithdrawCryptoRequest extends CommonRequestParams {
|
|
1335
|
-
order_type: OrderType.WITHDRAWAL_CRYPTO | OrderType.INTERNAL_TRANSFER;
|
|
1334
|
+
order_type: OrderType.WITHDRAWAL_CRYPTO | OrderType.INTERNAL_TRANSFER | OrderType.OMNIBUS_CRYPTO_WITHDRAWAL;
|
|
1336
1335
|
to_address?: string;
|
|
1337
1336
|
}
|
|
1338
1337
|
export interface NonWithdrawCryptoRequest extends CommonRequestParams {
|
package/package.json
CHANGED
package/src/api/types/types.ts
CHANGED
|
@@ -1413,11 +1413,10 @@ export namespace API {
|
|
|
1413
1413
|
export namespace OMNIBUS_CRYPTO_WITHDRAWAL {
|
|
1414
1414
|
export interface Request {
|
|
1415
1415
|
idempotency_key: string;
|
|
1416
|
+
counterparty_account_id: string;
|
|
1416
1417
|
amount: number;
|
|
1417
1418
|
wallet_uuid: string;
|
|
1418
1419
|
currency_id: string;
|
|
1419
|
-
to_address: string;
|
|
1420
|
-
counterparty_id: string;
|
|
1421
1420
|
memo?: string;
|
|
1422
1421
|
note?: string;
|
|
1423
1422
|
}
|
|
@@ -1538,7 +1537,7 @@ export namespace API {
|
|
|
1538
1537
|
}
|
|
1539
1538
|
|
|
1540
1539
|
export interface WithdrawCryptoRequest extends CommonRequestParams {
|
|
1541
|
-
order_type: OrderType.WITHDRAWAL_CRYPTO | OrderType.INTERNAL_TRANSFER;
|
|
1540
|
+
order_type: OrderType.WITHDRAWAL_CRYPTO | OrderType.INTERNAL_TRANSFER | OrderType.OMNIBUS_CRYPTO_WITHDRAWAL;
|
|
1542
1541
|
to_address?: string;
|
|
1543
1542
|
}
|
|
1544
1543
|
|