zklighter-perps 1.0.141 → 1.0.142

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.
@@ -238,6 +238,7 @@ export type CandlesticksResolutionEnum = typeof CandlesticksResolutionEnum[keyof
238
238
  * @export
239
239
  */
240
240
  export const FundingsResolutionEnum = {
241
- _1h: '1h'
241
+ _1h: '1h',
242
+ _1d: '1d'
242
243
  } as const;
243
244
  export type FundingsResolutionEnum = typeof FundingsResolutionEnum[keyof typeof FundingsResolutionEnum];
@@ -56,7 +56,8 @@ export interface ReqGetFundings {
56
56
  * @export
57
57
  */
58
58
  export const ReqGetFundingsResolutionEnum = {
59
- _1h: '1h'
59
+ _1h: '1h',
60
+ _1d: '1d'
60
61
  } as const;
61
62
  export type ReqGetFundingsResolutionEnum = typeof ReqGetFundingsResolutionEnum[keyof typeof ReqGetFundingsResolutionEnum];
62
63
 
package/openapi.json CHANGED
@@ -1365,7 +1365,8 @@
1365
1365
  "required": true,
1366
1366
  "type": "string",
1367
1367
  "enum": [
1368
- "1h"
1368
+ "1h",
1369
+ "1d"
1369
1370
  ]
1370
1371
  },
1371
1372
  {
@@ -6639,7 +6640,8 @@
6639
6640
  "resolution": {
6640
6641
  "type": "string",
6641
6642
  "enum": [
6642
- "1h"
6643
+ "1h",
6644
+ "1d"
6643
6645
  ]
6644
6646
  },
6645
6647
  "start_timestamp": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zklighter-perps",
3
- "version": "1.0.141",
3
+ "version": "1.0.142",
4
4
  "description": "zkLighter Perps SDK",
5
5
  "main": "index.ts",
6
6
  "directories": {