@zauru-sdk/graphql 2.14.1 → 2.14.2

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.
@@ -728,7 +728,7 @@ exports.getItemCategoryByIdStringQuery = getItemCategoryByIdStringQuery;
728
728
  const getItemsByCategoryStringQuery = (id) => `
729
729
  query getItemsByCategory {
730
730
  item_categories (where: {id: {_eq: ${id} }}) {
731
- items (where: {active: {_eq: true }}) {
731
+ items (where: {active: {_eq: true }}, order_by: {reorder_point: asc}) {
732
732
  id
733
733
  name
734
734
  stocks_only_integer
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zauru-sdk/graphql",
3
- "version": "2.14.1",
3
+ "version": "2.14.2",
4
4
  "description": "Queries de uso común para las aplicación de Zauru.",
5
5
  "main": "./dist/esm/index.js",
6
6
  "module": "./dist/esm/index.js",
@@ -21,5 +21,5 @@
21
21
  "devDependencies": {
22
22
  "typescript": "^5.1.6"
23
23
  },
24
- "gitHead": "a2f6a13f6411df24c4fed8f8b434f2d7c7fb3143"
24
+ "gitHead": "1dea85f0e6cf3552334115097392b6e616f6d061"
25
25
  }