zklighter-perps 1.0.198 → 1.0.199
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/PendingUnlock.ts +12 -12
- package/openapi.json +6 -6
- package/package.json +1 -1
package/models/PendingUnlock.ts
CHANGED
|
@@ -24,28 +24,28 @@ export interface PendingUnlock {
|
|
|
24
24
|
* @type {number}
|
|
25
25
|
* @memberof PendingUnlock
|
|
26
26
|
*/
|
|
27
|
-
|
|
27
|
+
pu_ut: number;
|
|
28
28
|
/**
|
|
29
29
|
*
|
|
30
30
|
* @type {number}
|
|
31
31
|
* @memberof PendingUnlock
|
|
32
32
|
*/
|
|
33
|
-
|
|
33
|
+
pu_asi: number;
|
|
34
34
|
/**
|
|
35
35
|
*
|
|
36
36
|
* @type {string}
|
|
37
37
|
* @memberof PendingUnlock
|
|
38
38
|
*/
|
|
39
|
-
|
|
39
|
+
pu_amt: string;
|
|
40
40
|
}
|
|
41
41
|
|
|
42
42
|
/**
|
|
43
43
|
* Check if a given object implements the PendingUnlock interface.
|
|
44
44
|
*/
|
|
45
45
|
export function instanceOfPendingUnlock(value: object): value is PendingUnlock {
|
|
46
|
-
if (!('
|
|
47
|
-
if (!('
|
|
48
|
-
if (!('
|
|
46
|
+
if (!('pu_ut' in value) || value['pu_ut'] === undefined) return false;
|
|
47
|
+
if (!('pu_asi' in value) || value['pu_asi'] === undefined) return false;
|
|
48
|
+
if (!('pu_amt' in value) || value['pu_amt'] === undefined) return false;
|
|
49
49
|
return true;
|
|
50
50
|
}
|
|
51
51
|
|
|
@@ -59,9 +59,9 @@ export function PendingUnlockFromJSONTyped(json: any, ignoreDiscriminator: boole
|
|
|
59
59
|
}
|
|
60
60
|
return {
|
|
61
61
|
|
|
62
|
-
'
|
|
63
|
-
'
|
|
64
|
-
'
|
|
62
|
+
'pu_ut': json['pu_ut'],
|
|
63
|
+
'pu_asi': json['pu_asi'],
|
|
64
|
+
'pu_amt': json['pu_amt'],
|
|
65
65
|
};
|
|
66
66
|
}
|
|
67
67
|
|
|
@@ -71,9 +71,9 @@ export function PendingUnlockToJSON(value?: PendingUnlock | null): any {
|
|
|
71
71
|
}
|
|
72
72
|
return {
|
|
73
73
|
|
|
74
|
-
'
|
|
75
|
-
'
|
|
76
|
-
'
|
|
74
|
+
'pu_ut': value['pu_ut'],
|
|
75
|
+
'pu_asi': value['pu_asi'],
|
|
76
|
+
'pu_amt': value['pu_amt'],
|
|
77
77
|
};
|
|
78
78
|
}
|
|
79
79
|
|
package/openapi.json
CHANGED
|
@@ -7062,26 +7062,26 @@
|
|
|
7062
7062
|
"PendingUnlock": {
|
|
7063
7063
|
"type": "object",
|
|
7064
7064
|
"properties": {
|
|
7065
|
-
"
|
|
7065
|
+
"pu_ut": {
|
|
7066
7066
|
"type": "integer",
|
|
7067
7067
|
"format": "int64",
|
|
7068
7068
|
"example": "1"
|
|
7069
7069
|
},
|
|
7070
|
-
"
|
|
7070
|
+
"pu_asi": {
|
|
7071
7071
|
"type": "integer",
|
|
7072
7072
|
"format": "int16",
|
|
7073
7073
|
"example": "1"
|
|
7074
7074
|
},
|
|
7075
|
-
"
|
|
7075
|
+
"pu_amt": {
|
|
7076
7076
|
"type": "string",
|
|
7077
7077
|
"example": "1"
|
|
7078
7078
|
}
|
|
7079
7079
|
},
|
|
7080
7080
|
"title": "PendingUnlock",
|
|
7081
7081
|
"required": [
|
|
7082
|
-
"
|
|
7083
|
-
"
|
|
7084
|
-
"
|
|
7082
|
+
"pu_ut",
|
|
7083
|
+
"pu_asi",
|
|
7084
|
+
"pu_amt"
|
|
7085
7085
|
]
|
|
7086
7086
|
},
|
|
7087
7087
|
"PerpsMarketStats": {
|