zklighter-perps 1.0.120 → 1.0.122
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 +10 -0
- package/apis/AccountApi.ts +231 -8
- package/apis/BridgeApi.ts +12 -16
- package/apis/NotificationApi.ts +6 -8
- package/apis/OrderApi.ts +17 -16
- package/apis/ReferralApi.ts +18 -24
- package/apis/TransactionApi.ts +17 -16
- package/models/AccountMetadata.ts +11 -11
- package/models/AccountMetadatas.ts +9 -9
- package/models/DetailedAccount.ts +11 -11
- package/models/L1Metadata.ts +79 -0
- package/models/LiqTrade.ts +88 -0
- package/models/Liquidation.ts +56 -23
- package/models/LiquidationInfo.ts +107 -0
- package/models/LiquidationInfos.ts +93 -0
- package/models/PublicPool.ts +11 -11
- package/models/ReqGetAccountActiveOrders.ts +3 -4
- package/models/ReqGetAccountInactiveOrders.ts +3 -4
- package/models/ReqGetAccountLimits.ts +3 -4
- package/models/ReqGetDepositHistory.ts +3 -4
- package/models/ReqGetFastWithdrawInfo.ts +3 -4
- package/models/ReqGetL1Metadata.ts +69 -0
- package/models/ReqGetLiquidationInfos.ts +94 -0
- package/models/ReqGetReferralCode.ts +3 -4
- package/models/ReqGetReferralPoints.ts +3 -4
- package/models/ReqGetWithdrawHistory.ts +3 -4
- package/models/RiskInfo.ts +97 -0
- package/models/index.ts +10 -0
- package/openapi.json +616 -57
- package/package.json +1 -1
package/models/index.ts
CHANGED
|
@@ -5,6 +5,7 @@ export * from './AccountApiKeys';
|
|
|
5
5
|
export * from './AccountLimits';
|
|
6
6
|
export * from './AccountMarketStats';
|
|
7
7
|
export * from './AccountMetadata';
|
|
8
|
+
export * from './AccountMetadatas';
|
|
8
9
|
export * from './AccountPnL';
|
|
9
10
|
export * from './AccountPosition';
|
|
10
11
|
export * from './AccountStats';
|
|
@@ -36,10 +37,15 @@ export * from './FundingRate';
|
|
|
36
37
|
export * from './FundingRates';
|
|
37
38
|
export * from './Fundings';
|
|
38
39
|
export * from './IsWhitelisted';
|
|
40
|
+
export * from './L1Metadata';
|
|
39
41
|
export * from './L1ProviderInfo';
|
|
40
42
|
export * from './Layer1BasicInfo';
|
|
41
43
|
export * from './Leaderboard';
|
|
42
44
|
export * from './LeaderboardEntry';
|
|
45
|
+
export * from './LiqTrade';
|
|
46
|
+
export * from './Liquidation';
|
|
47
|
+
export * from './LiquidationInfo';
|
|
48
|
+
export * from './LiquidationInfos';
|
|
43
49
|
export * from './MarketInfo';
|
|
44
50
|
export * from './NextNonce';
|
|
45
51
|
export * from './Order';
|
|
@@ -69,6 +75,7 @@ export * from './ReqGetAccountApiKeys';
|
|
|
69
75
|
export * from './ReqGetAccountByL1Address';
|
|
70
76
|
export * from './ReqGetAccountInactiveOrders';
|
|
71
77
|
export * from './ReqGetAccountLimits';
|
|
78
|
+
export * from './ReqGetAccountMetadata';
|
|
72
79
|
export * from './ReqGetAccountPendingTxs';
|
|
73
80
|
export * from './ReqGetAccountPnL';
|
|
74
81
|
export * from './ReqGetAccountTxs';
|
|
@@ -79,9 +86,11 @@ export * from './ReqGetCandlesticks';
|
|
|
79
86
|
export * from './ReqGetDepositHistory';
|
|
80
87
|
export * from './ReqGetFastWithdrawInfo';
|
|
81
88
|
export * from './ReqGetFundings';
|
|
89
|
+
export * from './ReqGetL1Metadata';
|
|
82
90
|
export * from './ReqGetL1Tx';
|
|
83
91
|
export * from './ReqGetLatestDeposit';
|
|
84
92
|
export * from './ReqGetLeaderboard';
|
|
93
|
+
export * from './ReqGetLiquidationInfos';
|
|
85
94
|
export * from './ReqGetNextNonce';
|
|
86
95
|
export * from './ReqGetOrderBookDetails';
|
|
87
96
|
export * from './ReqGetOrderBookOrders';
|
|
@@ -101,6 +110,7 @@ export * from './ReqIsWhitelisted';
|
|
|
101
110
|
export * from './RespGetFastBridgeInfo';
|
|
102
111
|
export * from './RespGetFastwithdrawalInfo';
|
|
103
112
|
export * from './ResultCode';
|
|
113
|
+
export * from './RiskInfo';
|
|
104
114
|
export * from './SimpleOrder';
|
|
105
115
|
export * from './Status';
|
|
106
116
|
export * from './SubAccounts';
|