zklighter-perps 1.0.88 → 1.0.89
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/.openapi-generator/FILES +0 -1
- package/models/WithdrawHistory.ts +4 -10
- package/models/index.ts +0 -1
- package/openapi.json +1 -19
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -19,12 +19,6 @@ import {
|
|
|
19
19
|
WithdrawHistoryItemFromJSONTyped,
|
|
20
20
|
WithdrawHistoryItemToJSON,
|
|
21
21
|
} from './WithdrawHistoryItem';
|
|
22
|
-
import type { WithdrawHistoryCursor } from './WithdrawHistoryCursor';
|
|
23
|
-
import {
|
|
24
|
-
WithdrawHistoryCursorFromJSON,
|
|
25
|
-
WithdrawHistoryCursorFromJSONTyped,
|
|
26
|
-
WithdrawHistoryCursorToJSON,
|
|
27
|
-
} from './WithdrawHistoryCursor';
|
|
28
22
|
|
|
29
23
|
/**
|
|
30
24
|
*
|
|
@@ -52,10 +46,10 @@ export interface WithdrawHistory {
|
|
|
52
46
|
withdraws: Array<WithdrawHistoryItem>;
|
|
53
47
|
/**
|
|
54
48
|
*
|
|
55
|
-
* @type {
|
|
49
|
+
* @type {string}
|
|
56
50
|
* @memberof WithdrawHistory
|
|
57
51
|
*/
|
|
58
|
-
cursor:
|
|
52
|
+
cursor: string;
|
|
59
53
|
}
|
|
60
54
|
|
|
61
55
|
/**
|
|
@@ -81,7 +75,7 @@ export function WithdrawHistoryFromJSONTyped(json: any, ignoreDiscriminator: boo
|
|
|
81
75
|
'code': json['code'],
|
|
82
76
|
'message': json['message'] == null ? undefined : json['message'],
|
|
83
77
|
'withdraws': ((json['withdraws'] as Array<any>).map(WithdrawHistoryItemFromJSON)),
|
|
84
|
-
'cursor':
|
|
78
|
+
'cursor': json['cursor'],
|
|
85
79
|
};
|
|
86
80
|
}
|
|
87
81
|
|
|
@@ -94,7 +88,7 @@ export function WithdrawHistoryToJSON(value?: WithdrawHistory | null): any {
|
|
|
94
88
|
'code': value['code'],
|
|
95
89
|
'message': value['message'],
|
|
96
90
|
'withdraws': ((value['withdraws'] as Array<any>).map(WithdrawHistoryItemToJSON)),
|
|
97
|
-
'cursor':
|
|
91
|
+
'cursor': value['cursor'],
|
|
98
92
|
};
|
|
99
93
|
}
|
|
100
94
|
|
package/models/index.ts
CHANGED
package/openapi.json
CHANGED
|
@@ -6040,7 +6040,7 @@
|
|
|
6040
6040
|
}
|
|
6041
6041
|
},
|
|
6042
6042
|
"cursor": {
|
|
6043
|
-
"
|
|
6043
|
+
"type": "string"
|
|
6044
6044
|
}
|
|
6045
6045
|
},
|
|
6046
6046
|
"title": "WithdrawHistory",
|
|
@@ -6050,24 +6050,6 @@
|
|
|
6050
6050
|
"cursor"
|
|
6051
6051
|
]
|
|
6052
6052
|
},
|
|
6053
|
-
"WithdrawHistoryCursor": {
|
|
6054
|
-
"type": "object",
|
|
6055
|
-
"properties": {
|
|
6056
|
-
"secure_id": {
|
|
6057
|
-
"type": "string",
|
|
6058
|
-
"example": "1"
|
|
6059
|
-
},
|
|
6060
|
-
"fast_id": {
|
|
6061
|
-
"type": "string",
|
|
6062
|
-
"example": "1"
|
|
6063
|
-
}
|
|
6064
|
-
},
|
|
6065
|
-
"title": "WithdrawHistoryCursor",
|
|
6066
|
-
"required": [
|
|
6067
|
-
"secure_id",
|
|
6068
|
-
"fast_id"
|
|
6069
|
-
]
|
|
6070
|
-
},
|
|
6071
6053
|
"WithdrawHistoryItem": {
|
|
6072
6054
|
"type": "object",
|
|
6073
6055
|
"properties": {
|