zklighter-perps 1.0.214 → 1.0.215

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.
@@ -44,6 +44,12 @@ export interface RespGetLeaseOptions {
44
44
  * @memberof RespGetLeaseOptions
45
45
  */
46
46
  options: Array<LeaseOptionEntry>;
47
+ /**
48
+ *
49
+ * @type {number}
50
+ * @memberof RespGetLeaseOptions
51
+ */
52
+ lit_incentives_account_index: number;
47
53
  }
48
54
 
49
55
  /**
@@ -52,6 +58,7 @@ export interface RespGetLeaseOptions {
52
58
  export function instanceOfRespGetLeaseOptions(value: object): value is RespGetLeaseOptions {
53
59
  if (!('code' in value) || value['code'] === undefined) return false;
54
60
  if (!('options' in value) || value['options'] === undefined) return false;
61
+ if (!('lit_incentives_account_index' in value) || value['lit_incentives_account_index'] === undefined) return false;
55
62
  return true;
56
63
  }
57
64
 
@@ -68,6 +75,7 @@ export function RespGetLeaseOptionsFromJSONTyped(json: any, ignoreDiscriminator:
68
75
  'code': json['code'],
69
76
  'message': json['message'] == null ? undefined : json['message'],
70
77
  'options': ((json['options'] as Array<any>).map(LeaseOptionEntryFromJSON)),
78
+ 'lit_incentives_account_index': json['lit_incentives_account_index'],
71
79
  };
72
80
  }
73
81
 
@@ -80,6 +88,7 @@ export function RespGetLeaseOptionsToJSON(value?: RespGetLeaseOptions | null): a
80
88
  'code': value['code'],
81
89
  'message': value['message'],
82
90
  'options': ((value['options'] as Array<any>).map(LeaseOptionEntryToJSON)),
91
+ 'lit_incentives_account_index': value['lit_incentives_account_index'],
83
92
  };
84
93
  }
85
94
 
package/openapi.json CHANGED
@@ -10232,12 +10232,17 @@
10232
10232
  "items": {
10233
10233
  "$ref": "#/definitions/LeaseOptionEntry"
10234
10234
  }
10235
+ },
10236
+ "lit_incentives_account_index": {
10237
+ "type": "integer",
10238
+ "format": "int64"
10235
10239
  }
10236
10240
  },
10237
10241
  "title": "RespGetLeaseOptions",
10238
10242
  "required": [
10239
10243
  "code",
10240
- "options"
10244
+ "options",
10245
+ "lit_incentives_account_index"
10241
10246
  ]
10242
10247
  },
10243
10248
  "RespGetLeases": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zklighter-perps",
3
- "version": "1.0.214",
3
+ "version": "1.0.215",
4
4
  "description": "zkLighter Perps SDK",
5
5
  "main": "index.ts",
6
6
  "directories": {