zklighter-perps 1.0.137 → 1.0.138
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.
- package/models/Deposit.ts +9 -0
- package/openapi.json +6 -1
- package/package.json +1 -1
package/models/Deposit.ts
CHANGED
|
@@ -109,6 +109,12 @@ export interface Deposit {
|
|
|
109
109
|
* @memberof Deposit
|
|
110
110
|
*/
|
|
111
111
|
is_external_deposit: boolean;
|
|
112
|
+
/**
|
|
113
|
+
*
|
|
114
|
+
* @type {boolean}
|
|
115
|
+
* @memberof Deposit
|
|
116
|
+
*/
|
|
117
|
+
is_next_bridge_fast: boolean;
|
|
112
118
|
}
|
|
113
119
|
|
|
114
120
|
/**
|
|
@@ -129,6 +135,7 @@ export function instanceOfDeposit(value: object): value is Deposit {
|
|
|
129
135
|
if (!('created_at' in value) || value['created_at'] === undefined) return false;
|
|
130
136
|
if (!('updated_at' in value) || value['updated_at'] === undefined) return false;
|
|
131
137
|
if (!('is_external_deposit' in value) || value['is_external_deposit'] === undefined) return false;
|
|
138
|
+
if (!('is_next_bridge_fast' in value) || value['is_next_bridge_fast'] === undefined) return false;
|
|
132
139
|
return true;
|
|
133
140
|
}
|
|
134
141
|
|
|
@@ -157,6 +164,7 @@ export function DepositFromJSONTyped(json: any, ignoreDiscriminator: boolean): D
|
|
|
157
164
|
'created_at': json['created_at'],
|
|
158
165
|
'updated_at': json['updated_at'],
|
|
159
166
|
'is_external_deposit': json['is_external_deposit'],
|
|
167
|
+
'is_next_bridge_fast': json['is_next_bridge_fast'],
|
|
160
168
|
};
|
|
161
169
|
}
|
|
162
170
|
|
|
@@ -181,6 +189,7 @@ export function DepositToJSON(value?: Deposit | null): any {
|
|
|
181
189
|
'created_at': value['created_at'],
|
|
182
190
|
'updated_at': value['updated_at'],
|
|
183
191
|
'is_external_deposit': value['is_external_deposit'],
|
|
192
|
+
'is_next_bridge_fast': value['is_next_bridge_fast'],
|
|
184
193
|
};
|
|
185
194
|
}
|
|
186
195
|
|
package/openapi.json
CHANGED
|
@@ -3892,6 +3892,10 @@
|
|
|
3892
3892
|
"is_external_deposit": {
|
|
3893
3893
|
"type": "boolean",
|
|
3894
3894
|
"format": "boolean"
|
|
3895
|
+
},
|
|
3896
|
+
"is_next_bridge_fast": {
|
|
3897
|
+
"type": "boolean",
|
|
3898
|
+
"format": "boolean"
|
|
3895
3899
|
}
|
|
3896
3900
|
},
|
|
3897
3901
|
"title": "Deposit",
|
|
@@ -3909,7 +3913,8 @@
|
|
|
3909
3913
|
"description",
|
|
3910
3914
|
"created_at",
|
|
3911
3915
|
"updated_at",
|
|
3912
|
-
"is_external_deposit"
|
|
3916
|
+
"is_external_deposit",
|
|
3917
|
+
"is_next_bridge_fast"
|
|
3913
3918
|
]
|
|
3914
3919
|
},
|
|
3915
3920
|
"DepositHistory": {
|