@xoxno/types 1.0.367 → 1.0.368
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.
|
@@ -117,6 +117,8 @@ export declare enum PerpOrderDetailedType {
|
|
|
117
117
|
}
|
|
118
118
|
export declare enum PerpOrderDirection {
|
|
119
119
|
OPEN_LONG = "Open Long",
|
|
120
|
+
CLOSE_LONG = "Close Long",
|
|
121
|
+
OPEN_SHORT = "Open Short",
|
|
120
122
|
CLOSE_SHORT = "Close Short",
|
|
121
123
|
BUY = "Buy",
|
|
122
124
|
SELL = "Sell"
|
package/dist/enums/perp.enum.js
CHANGED
|
@@ -143,6 +143,8 @@ var PerpOrderDetailedType;
|
|
|
143
143
|
var PerpOrderDirection;
|
|
144
144
|
(function (PerpOrderDirection) {
|
|
145
145
|
PerpOrderDirection["OPEN_LONG"] = "Open Long";
|
|
146
|
+
PerpOrderDirection["CLOSE_LONG"] = "Close Long";
|
|
147
|
+
PerpOrderDirection["OPEN_SHORT"] = "Open Short";
|
|
146
148
|
PerpOrderDirection["CLOSE_SHORT"] = "Close Short";
|
|
147
149
|
PerpOrderDirection["BUY"] = "Buy";
|
|
148
150
|
PerpOrderDirection["SELL"] = "Sell";
|