@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 CHANGED
@@ -1 +1 @@
1
- 2.114.0-beta.0
1
+ 2.114.0-beta.1
@@ -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: {
@@ -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;
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drift-labs/sdk-browser",
3
- "version": "2.114.0-beta.0",
3
+ "version": "2.114.0-beta.1",
4
4
  "main": "lib/node/index.js",
5
5
  "types": "lib/node/index.d.ts",
6
6
  "browser": "./lib/browser/index.js",
package/src/types.ts CHANGED
@@ -242,6 +242,9 @@ export class OrderActionExplanation {
242
242
  static readonly DERISK_LP = {
243
243
  deriskLp: {},
244
244
  };
245
+ static readonly TRANSFER_PERP_POSITION = {
246
+ transferPerpPosition: {},
247
+ };
245
248
  }
246
249
 
247
250
  export class OrderTriggerCondition {