squarefi-bff-api-module 1.17.6 → 1.17.7
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.d.ts +1 -1
- package/package.json +1 -1
- package/src/api/types.ts +1 -1
package/dist/api/types.d.ts
CHANGED
|
@@ -1218,7 +1218,7 @@ export declare namespace API {
|
|
|
1218
1218
|
signal?: AbortSignal;
|
|
1219
1219
|
}
|
|
1220
1220
|
export interface WithdrawCryptoRequest extends CommonRequestParams {
|
|
1221
|
-
order_type: OrderType.WITHDRAWAL_CRYPTO;
|
|
1221
|
+
order_type: OrderType.WITHDRAWAL_CRYPTO | OrderType.INTERNAL_TRANSFER;
|
|
1222
1222
|
to_address?: string;
|
|
1223
1223
|
}
|
|
1224
1224
|
export interface NonWithdrawCryptoRequest extends CommonRequestParams {
|
package/package.json
CHANGED
package/src/api/types.ts
CHANGED
|
@@ -1398,7 +1398,7 @@ export namespace API {
|
|
|
1398
1398
|
}
|
|
1399
1399
|
|
|
1400
1400
|
export interface WithdrawCryptoRequest extends CommonRequestParams {
|
|
1401
|
-
order_type: OrderType.WITHDRAWAL_CRYPTO;
|
|
1401
|
+
order_type: OrderType.WITHDRAWAL_CRYPTO | OrderType.INTERNAL_TRANSFER;
|
|
1402
1402
|
to_address?: string;
|
|
1403
1403
|
}
|
|
1404
1404
|
|