@drift-labs/sdk 2.0.4 → 2.0.6

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.
@@ -5949,6 +5949,9 @@
5949
5949
  {
5950
5950
  "name": "OrderFilledWithMatch"
5951
5951
  },
5952
+ {
5953
+ "name": "OrderFilledWithMatchJit"
5954
+ },
5952
5955
  {
5953
5956
  "name": "MarketExpired"
5954
5957
  },
package/lib/types.d.ts CHANGED
@@ -217,14 +217,17 @@ export declare class OrderActionExplanation {
217
217
  liquidation: {};
218
218
  };
219
219
  static readonly ORDER_FILLED_WITH_AMM: {
220
- orderFilledWithAMM: {};
220
+ orderFilledWithAmm: {};
221
221
  };
222
222
  static readonly ORDER_FILLED_WITH_AMM_JIT: {
223
- orderFilledWithAMMJit: {};
223
+ orderFilledWithAmmJit: {};
224
224
  };
225
225
  static readonly ORDER_FILLED_WITH_MATCH: {
226
226
  orderFilledWithMatch: {};
227
227
  };
228
+ static readonly ORDER_FILLED_WITH_MATCH_JIT: {
229
+ orderFilledWithMatchJit: {};
230
+ };
228
231
  static readonly MARKET_EXPIRED: {
229
232
  marketExpired: {};
230
233
  };
package/lib/types.js CHANGED
@@ -123,14 +123,17 @@ OrderActionExplanation.LIQUIDATION = {
123
123
  liquidation: {},
124
124
  };
125
125
  OrderActionExplanation.ORDER_FILLED_WITH_AMM = {
126
- orderFilledWithAMM: {},
126
+ orderFilledWithAmm: {},
127
127
  };
128
128
  OrderActionExplanation.ORDER_FILLED_WITH_AMM_JIT = {
129
- orderFilledWithAMMJit: {},
129
+ orderFilledWithAmmJit: {},
130
130
  };
131
131
  OrderActionExplanation.ORDER_FILLED_WITH_MATCH = {
132
132
  orderFilledWithMatch: {},
133
133
  };
134
+ OrderActionExplanation.ORDER_FILLED_WITH_MATCH_JIT = {
135
+ orderFilledWithMatchJit: {},
136
+ };
134
137
  OrderActionExplanation.MARKET_EXPIRED = {
135
138
  marketExpired: {},
136
139
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drift-labs/sdk",
3
- "version": "2.0.4",
3
+ "version": "2.0.6",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "author": "crispheaney",
@@ -5949,6 +5949,9 @@
5949
5949
  {
5950
5950
  "name": "OrderFilledWithMatch"
5951
5951
  },
5952
+ {
5953
+ "name": "OrderFilledWithMatchJit"
5954
+ },
5952
5955
  {
5953
5956
  "name": "MarketExpired"
5954
5957
  },
package/src/types.ts CHANGED
@@ -122,14 +122,17 @@ export class OrderActionExplanation {
122
122
  liquidation: {},
123
123
  };
124
124
  static readonly ORDER_FILLED_WITH_AMM = {
125
- orderFilledWithAMM: {},
125
+ orderFilledWithAmm: {},
126
126
  };
127
127
  static readonly ORDER_FILLED_WITH_AMM_JIT = {
128
- orderFilledWithAMMJit: {},
128
+ orderFilledWithAmmJit: {},
129
129
  };
130
130
  static readonly ORDER_FILLED_WITH_MATCH = {
131
131
  orderFilledWithMatch: {},
132
132
  };
133
+ static readonly ORDER_FILLED_WITH_MATCH_JIT = {
134
+ orderFilledWithMatchJit: {},
135
+ };
133
136
  static readonly MARKET_EXPIRED = {
134
137
  marketExpired: {},
135
138
  };