@drift-labs/sdk-browser 2.114.0-beta.0 → 2.114.0-beta.1
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/VERSION +1 -1
- package/lib/browser/types.d.ts +3 -0
- package/lib/browser/types.js +3 -0
- package/lib/node/types.d.ts +3 -0
- package/lib/node/types.js +3 -0
- package/package.json +1 -1
- package/src/types.ts +3 -0
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.114.0-beta.
|
|
1
|
+
2.114.0-beta.1
|
package/lib/browser/types.d.ts
CHANGED
|
@@ -346,6 +346,9 @@ export declare class OrderActionExplanation {
|
|
|
346
346
|
static readonly DERISK_LP: {
|
|
347
347
|
deriskLp: {};
|
|
348
348
|
};
|
|
349
|
+
static readonly TRANSFER_PERP_POSITION: {
|
|
350
|
+
transferPerpPosition: {};
|
|
351
|
+
};
|
|
349
352
|
}
|
|
350
353
|
export declare class OrderTriggerCondition {
|
|
351
354
|
static readonly ABOVE: {
|
package/lib/browser/types.js
CHANGED
|
@@ -232,6 +232,9 @@ OrderActionExplanation.REDUCE_ONLY_ORDER_INCREASED_POSITION = {
|
|
|
232
232
|
OrderActionExplanation.DERISK_LP = {
|
|
233
233
|
deriskLp: {},
|
|
234
234
|
};
|
|
235
|
+
OrderActionExplanation.TRANSFER_PERP_POSITION = {
|
|
236
|
+
transferPerpPosition: {},
|
|
237
|
+
};
|
|
235
238
|
class OrderTriggerCondition {
|
|
236
239
|
}
|
|
237
240
|
exports.OrderTriggerCondition = OrderTriggerCondition;
|
package/lib/node/types.d.ts
CHANGED
|
@@ -346,6 +346,9 @@ export declare class OrderActionExplanation {
|
|
|
346
346
|
static readonly DERISK_LP: {
|
|
347
347
|
deriskLp: {};
|
|
348
348
|
};
|
|
349
|
+
static readonly TRANSFER_PERP_POSITION: {
|
|
350
|
+
transferPerpPosition: {};
|
|
351
|
+
};
|
|
349
352
|
}
|
|
350
353
|
export declare class OrderTriggerCondition {
|
|
351
354
|
static readonly ABOVE: {
|
package/lib/node/types.js
CHANGED
|
@@ -232,6 +232,9 @@ OrderActionExplanation.REDUCE_ONLY_ORDER_INCREASED_POSITION = {
|
|
|
232
232
|
OrderActionExplanation.DERISK_LP = {
|
|
233
233
|
deriskLp: {},
|
|
234
234
|
};
|
|
235
|
+
OrderActionExplanation.TRANSFER_PERP_POSITION = {
|
|
236
|
+
transferPerpPosition: {},
|
|
237
|
+
};
|
|
235
238
|
class OrderTriggerCondition {
|
|
236
239
|
}
|
|
237
240
|
exports.OrderTriggerCondition = OrderTriggerCondition;
|
package/package.json
CHANGED
package/src/types.ts
CHANGED