@drift-labs/sdk 2.95.0-beta.0 → 2.95.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/types.d.ts +3 -0
- package/lib/types.js +3 -0
- package/package.json +1 -1
- package/src/types.ts +3 -0
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
2.95.0-beta.
|
|
1
|
+
2.95.0-beta.1
|
package/lib/types.d.ts
CHANGED
|
@@ -286,6 +286,9 @@ export declare class OrderActionExplanation {
|
|
|
286
286
|
static readonly ORDER_FILLED_WITH_SERUM: {
|
|
287
287
|
orderFillWithSerum: {};
|
|
288
288
|
};
|
|
289
|
+
static readonly ORDER_FILLED_WITH_OPENBOOK_V2: {
|
|
290
|
+
orderFilledWithOpenbookV2: {};
|
|
291
|
+
};
|
|
289
292
|
static readonly ORDER_FILLED_WITH_PHOENIX: {
|
|
290
293
|
orderFillWithPhoenix: {};
|
|
291
294
|
};
|
package/lib/types.js
CHANGED
|
@@ -188,6 +188,9 @@ OrderActionExplanation.RISK_INCREASING_ORDER = {
|
|
|
188
188
|
OrderActionExplanation.ORDER_FILLED_WITH_SERUM = {
|
|
189
189
|
orderFillWithSerum: {},
|
|
190
190
|
};
|
|
191
|
+
OrderActionExplanation.ORDER_FILLED_WITH_OPENBOOK_V2 = {
|
|
192
|
+
orderFilledWithOpenbookV2: {},
|
|
193
|
+
};
|
|
191
194
|
OrderActionExplanation.ORDER_FILLED_WITH_PHOENIX = {
|
|
192
195
|
orderFillWithPhoenix: {},
|
|
193
196
|
};
|
package/package.json
CHANGED
package/src/types.ts
CHANGED
|
@@ -192,6 +192,9 @@ export class OrderActionExplanation {
|
|
|
192
192
|
static readonly ORDER_FILLED_WITH_SERUM = {
|
|
193
193
|
orderFillWithSerum: {},
|
|
194
194
|
};
|
|
195
|
+
static readonly ORDER_FILLED_WITH_OPENBOOK_V2 = {
|
|
196
|
+
orderFilledWithOpenbookV2: {},
|
|
197
|
+
};
|
|
195
198
|
static readonly ORDER_FILLED_WITH_PHOENIX = {
|
|
196
199
|
orderFillWithPhoenix: {},
|
|
197
200
|
};
|