@nightlylabs/dex-sdk 1.0.12 → 1.0.13

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/dist/index.d.cts CHANGED
@@ -527,6 +527,7 @@ interface HistoricalPerpOrder {
527
527
  postOnly: boolean;
528
528
  orderType: OrderType;
529
529
  orderStatus: OrderStatus;
530
+ avgFillPrice?: string;
530
531
  }
531
532
  interface GetPerpUserOrdersResponse {
532
533
  orders: HistoricalPerpOrder[];
@@ -662,6 +663,7 @@ interface HistoricalSpotOrder {
662
663
  postOnly: boolean;
663
664
  orderType: OrderType;
664
665
  orderStatus: OrderStatus;
666
+ avgFillPrice?: string;
665
667
  }
666
668
  interface GetSpotUserOrdersResponse {
667
669
  orders: HistoricalSpotOrder[];
@@ -1457,6 +1459,7 @@ interface PerpOrder {
1457
1459
  reduceOnly: boolean;
1458
1460
  timestamp: string;
1459
1461
  orderType: OrderType;
1462
+ filledQuote?: string;
1460
1463
  }
1461
1464
  interface WsFill {
1462
1465
  id: string;
@@ -1624,6 +1627,7 @@ interface SpotOrder {
1624
1627
  postOnly: boolean;
1625
1628
  timestamp: string;
1626
1629
  orderType: OrderType;
1630
+ filledQuote?: string;
1627
1631
  }
1628
1632
  interface SpotOrderFills {
1629
1633
  market: string;
package/dist/index.d.ts CHANGED
@@ -527,6 +527,7 @@ interface HistoricalPerpOrder {
527
527
  postOnly: boolean;
528
528
  orderType: OrderType;
529
529
  orderStatus: OrderStatus;
530
+ avgFillPrice?: string;
530
531
  }
531
532
  interface GetPerpUserOrdersResponse {
532
533
  orders: HistoricalPerpOrder[];
@@ -662,6 +663,7 @@ interface HistoricalSpotOrder {
662
663
  postOnly: boolean;
663
664
  orderType: OrderType;
664
665
  orderStatus: OrderStatus;
666
+ avgFillPrice?: string;
665
667
  }
666
668
  interface GetSpotUserOrdersResponse {
667
669
  orders: HistoricalSpotOrder[];
@@ -1457,6 +1459,7 @@ interface PerpOrder {
1457
1459
  reduceOnly: boolean;
1458
1460
  timestamp: string;
1459
1461
  orderType: OrderType;
1462
+ filledQuote?: string;
1460
1463
  }
1461
1464
  interface WsFill {
1462
1465
  id: string;
@@ -1624,6 +1627,7 @@ interface SpotOrder {
1624
1627
  postOnly: boolean;
1625
1628
  timestamp: string;
1626
1629
  orderType: OrderType;
1630
+ filledQuote?: string;
1627
1631
  }
1628
1632
  interface SpotOrderFills {
1629
1633
  market: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nightlylabs/dex-sdk",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {