Merge pull request #362 from tiagosiebler/v3.10.13
v3.10.13: feat() add updated withdraw request params
This commit is contained in:
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "bybit-api",
|
"name": "bybit-api",
|
||||||
"version": "3.10.12",
|
"version": "3.10.13",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "bybit-api",
|
"name": "bybit-api",
|
||||||
"version": "3.10.12",
|
"version": "3.10.13",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"axios": "^1.6.6",
|
"axios": "^1.6.6",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "bybit-api",
|
"name": "bybit-api",
|
||||||
"version": "3.10.12",
|
"version": "3.10.13",
|
||||||
"description": "Complete & robust Node.js SDK for Bybit's REST APIs and WebSockets, with TypeScript & strong end to end tests.",
|
"description": "Complete & robust Node.js SDK for Bybit's REST APIs and WebSockets, with TypeScript & strong end to end tests.",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"types": "lib/index.d.ts",
|
"types": "lib/index.d.ts",
|
||||||
|
|||||||
@@ -123,6 +123,12 @@ export interface WithdrawParamsV5 {
|
|||||||
timestamp: number;
|
timestamp: number;
|
||||||
forceChain?: number;
|
forceChain?: number;
|
||||||
accountType?: 'SPOT' | 'FUND';
|
accountType?: 'SPOT' | 'FUND';
|
||||||
|
feeType?: 0 | 1;
|
||||||
|
requestId?: string;
|
||||||
|
beneficiary?: {
|
||||||
|
vaspEntityId: string;
|
||||||
|
beneficiaryName?: string;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface ConvertCoinsParamsV5 {
|
export interface ConvertCoinsParamsV5 {
|
||||||
@@ -143,7 +149,12 @@ export interface RequestConvertQuoteParamsV5 {
|
|||||||
toCoinType?: string;
|
toCoinType?: string;
|
||||||
requestCoin: string;
|
requestCoin: string;
|
||||||
requestAmount: string;
|
requestAmount: string;
|
||||||
accountType: 'eb_convert_funding' | 'eb_convert_uta' | 'eb_convert_spot' | 'eb_convert_contract' | 'eb_convert_inverse';
|
accountType:
|
||||||
|
| 'eb_convert_funding'
|
||||||
|
| 'eb_convert_uta'
|
||||||
|
| 'eb_convert_spot'
|
||||||
|
| 'eb_convert_contract'
|
||||||
|
| 'eb_convert_inverse';
|
||||||
requestId?: string;
|
requestId?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user