@zauru-sdk/graphql 1.0.61 → 1.0.62

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.
@@ -237,7 +237,7 @@ query getPurchaseOrdersBetweenDates(
237
237
  : ""}
238
238
  ${config.consolidateIdFilter ? "consolidate_id: {_is_null: true}," : ""}
239
239
  ${config.betweenIssueDate
240
- ? "issue_date: {_gte: $startDate, _lte: $endDate}"
240
+ ? "issue_date: {_gte: $startDate::date, _lte: $endDate::date}"
241
241
  : "created_at: {_gte: $startDate, _lte: $endDate}"}
242
242
  }
243
243
  ) {
@@ -237,7 +237,7 @@ query getPurchaseOrdersBetweenDates(
237
237
  : ""}
238
238
  ${config.consolidateIdFilter ? "consolidate_id: {_is_null: true}," : ""}
239
239
  ${config.betweenIssueDate
240
- ? "issue_date: {_gte: $startDate, _lte: $endDate}"
240
+ ? "issue_date: {_gte: $startDate::date, _lte: $endDate::date}"
241
241
  : "created_at: {_gte: $startDate, _lte: $endDate}"}
242
242
  }
243
243
  ) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zauru-sdk/graphql",
3
- "version": "1.0.61",
3
+ "version": "1.0.62",
4
4
  "description": "Queries de uso común para las aplicación de Zauru.",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/esm/index.js",
@@ -22,5 +22,5 @@
22
22
  "devDependencies": {
23
23
  "typescript": "^5.1.6"
24
24
  },
25
- "gitHead": "7fbd690c421a9732af2bf179b8066306b2b19c0e"
25
+ "gitHead": "afaa820e0f482c6e2f57ae673aa420d362fd2561"
26
26
  }