Merge pull request #394 from fireflies1988/fix/add-mmDeduction-to-RiskLimitV5

fix(types): add missing 'mmDeduction' prop to RiskLimitV5
This commit is contained in:
Tiago
2024-11-18 10:07:07 +00:00
committed by GitHub
2 changed files with 2 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "bybit-api", "name": "bybit-api",
"version": "3.10.25", "version": "3.10.26",
"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",

View File

@@ -293,6 +293,7 @@ export interface RiskLimitV5 {
section: any; section: any;
isLowestRisk: 0 | 1; isLowestRisk: 0 | 1;
maxLeverage: string; maxLeverage: string;
mmDeduction: string;
} }
/** @deprecated use DeliveryPriceV5 instead */ /** @deprecated use DeliveryPriceV5 instead */