@xoxno/types 1.0.333 → 1.0.334
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.
|
@@ -149,3 +149,7 @@ export declare enum PerpOrderDetailedStatus {
|
|
|
149
149
|
ORACLE_REJECTED = "oracleRejected",// Price too far from oracle
|
|
150
150
|
PERP_MAX_POSITION_REJECTED = "perpMaxPositionRejected"
|
|
151
151
|
}
|
|
152
|
+
export declare enum PerpTransferType {
|
|
153
|
+
SPOT = "Spot",
|
|
154
|
+
PERP = "Perps"
|
|
155
|
+
}
|
package/dist/enums/perp.enum.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.PerpOrderDetailedStatus = exports.PerpOrderDirection = exports.PerpOrderDetailedType = exports.PerpOrderStatus = exports.PerpOrderType = exports.PerpOrderTpsl = exports.PerpOrderTimeInForce = exports.PerpOrderGrouping = exports.PerpDepositAsset = exports.SpotDepositAsset = exports.PerpPositionLeverageDirection = exports.PerpPositionLeverageType = exports.PerpAssetExchange = exports.PerpAssetSession = exports.PerpAssetType = exports.PerpAssetTimezone = exports.PerpAssetIntervals = exports.PerpCoinTypes = exports.PerpTradesSide = exports.PerpEnum = void 0;
|
|
3
|
+
exports.PerpTransferType = exports.PerpOrderDetailedStatus = exports.PerpOrderDirection = exports.PerpOrderDetailedType = exports.PerpOrderStatus = exports.PerpOrderType = exports.PerpOrderTpsl = exports.PerpOrderTimeInForce = exports.PerpOrderGrouping = exports.PerpDepositAsset = exports.SpotDepositAsset = exports.PerpPositionLeverageDirection = exports.PerpPositionLeverageType = exports.PerpAssetExchange = exports.PerpAssetSession = exports.PerpAssetType = exports.PerpAssetTimezone = exports.PerpAssetIntervals = exports.PerpCoinTypes = exports.PerpTradesSide = exports.PerpEnum = void 0;
|
|
4
4
|
var PerpEnum;
|
|
5
5
|
(function (PerpEnum) {
|
|
6
6
|
PerpEnum["L2BOOK"] = "l2Book";
|
|
@@ -177,3 +177,8 @@ var PerpOrderDetailedStatus;
|
|
|
177
177
|
PerpOrderDetailedStatus["ORACLE_REJECTED"] = "oracleRejected";
|
|
178
178
|
PerpOrderDetailedStatus["PERP_MAX_POSITION_REJECTED"] = "perpMaxPositionRejected";
|
|
179
179
|
})(PerpOrderDetailedStatus || (exports.PerpOrderDetailedStatus = PerpOrderDetailedStatus = {}));
|
|
180
|
+
var PerpTransferType;
|
|
181
|
+
(function (PerpTransferType) {
|
|
182
|
+
PerpTransferType["SPOT"] = "Spot";
|
|
183
|
+
PerpTransferType["PERP"] = "Perps";
|
|
184
|
+
})(PerpTransferType || (exports.PerpTransferType = PerpTransferType = {}));
|