chore(): Bumped version

This commit is contained in:
Jerko J
2024-07-25 16:55:44 +02:00
parent 0ed98f478d
commit 351300ddca
2 changed files with 5 additions and 8 deletions

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "bybit-api",
"version": "3.10.11",
"version": "3.10.12",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "bybit-api",
"version": "3.10.11",
"version": "3.10.12",
"license": "MIT",
"dependencies": {
"axios": "^1.6.6",

View File

@@ -582,14 +582,11 @@ export class RestClientV5 extends BaseRestClient {
*
* Only for institutional clients!
*/
setDisconnectCancelAllWindowV2(
setDisconnectCancelAllWindowV2(params: {
product: 'OPTION' | 'SPOT' | 'DERIVATIVES',
timeWindow: number,
): Promise<APIResponseV3<undefined>> {
return this.postPrivate('/v5/order/disconnected-cancel-all', {
product,
timeWindow,
});
}): Promise<APIResponseV3<undefined>> {
return this.postPrivate('/v5/order/disconnected-cancel-all', params);
}
/**