@triadxyz/triad-protocol 1.7.4-beta → 1.7.5-beta

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.
@@ -52,7 +52,6 @@ export type Order = {
52
52
  orderDirection: OrderDirection;
53
53
  orderSide: OrderSide;
54
54
  userNonce: string;
55
- authority: string;
56
55
  linkedOrderId: string;
57
56
  account: string;
58
57
  createdAt: string;
@@ -100,9 +100,8 @@ const formatOrder = (order) => {
100
100
  orderDirection: order.orderDirection,
101
101
  orderSide: order.orderSide,
102
102
  userNonce: order.userNonce.toString(),
103
- authority: order.authority.toString(),
104
103
  linkedOrderId: order.linkedOrderId,
105
- filledShares: order.filledShares.toString(),
104
+ filledShares: order.filledShares ? order.filledShares.toString() : '',
106
105
  account: order.account,
107
106
  createdAt: order.createdAt ? order.createdAt.toString() : ''
108
107
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@triadxyz/triad-protocol",
3
- "version": "1.7.4-beta",
3
+ "version": "1.7.5-beta",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",