bybit-api 3.10.26 → 3.10.27

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.
@@ -126,9 +126,7 @@ export declare class RestClientV5 extends BaseRestClient {
126
126
  * Covers: USDC futures / Inverse futures / Option
127
127
  */
128
128
  getDeliveryPrice(params: GetDeliveryPriceParamsV5): Promise<APIResponseV3WithTime<CategoryCursorListV5<DeliveryPriceV5[]>>>;
129
- getLongShortRatio(params: GetLongShortRatioParamsV5): Promise<APIResponseV3WithTime<{
130
- list: LongShortRatioV5[];
131
- }>>;
129
+ getLongShortRatio(params: GetLongShortRatioParamsV5): Promise<APIResponseV3WithTime<CursorListV5<LongShortRatioV5[]>>>;
132
130
  /**
133
131
  *
134
132
  ****** Trade APIs
@@ -107,5 +107,8 @@ export interface GetLongShortRatioParamsV5 {
107
107
  category: 'linear' | 'inverse';
108
108
  symbol: string;
109
109
  period: OpenInterestIntervalV5;
110
+ startTime?: string;
111
+ endTime?: string;
110
112
  limit?: number;
113
+ cursor?: string;
111
114
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bybit-api",
3
- "version": "3.10.26",
3
+ "version": "3.10.27",
4
4
  "description": "Complete & robust Node.js SDK for Bybit's REST APIs and WebSockets, with TypeScript & strong end to end tests.",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",