@dhedge/backend-flatcoin-core 0.2.58 → 0.2.59

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.
@@ -495,6 +495,7 @@ exports.getOpenPositionsQueryPaginated = (0, graphql_request_1.gql) `
495
495
  query GetOpenPositions($skip: Int, $first: Int) {
496
496
  positions(where: { status: 0 }, skip: $skip, first: $first) {
497
497
  tokenId
498
+ account
498
499
  }
499
500
  }
500
501
  `;
@@ -502,6 +503,7 @@ exports.getClosedPositionsQueryPaginated = (0, graphql_request_1.gql) `
502
503
  query GetClosedPositions($skip: Int, $first: Int) {
503
504
  positions(where: { status_in: [1, 2, 3] }, skip: $skip, first: $first) {
504
505
  tokenId
506
+ account
505
507
  }
506
508
  }
507
509
  `;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dhedge/backend-flatcoin-core",
3
- "version": "0.2.58",
3
+ "version": "0.2.59",
4
4
  "description": "Backend Flatcoin Core",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",