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.
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "squarefi-bff-api-module",
3
- "version": "1.17.6",
3
+ "version": "1.17.7",
4
4
  "description": "Squarefi BFF API client module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
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