@things-factory/product-ui 4.0.13 → 4.0.18

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.
@@ -267,7 +267,7 @@ class ProductCombinationSelectionPopup extends localize(i18next)(LitElement) {
267
267
 
268
268
  const response = await client.query({
269
269
  query: gql`
270
- query productCombinations($filters: [Filter], $pagination: Pagination, $sortings: [Sorting]) {
270
+ query productCombinations($filters: [Filter!], $pagination: Pagination, $sortings: [Sorting!]) {
271
271
  productCombinations(filters: $filters, pagination: $pagination, sortings: $sortings) {
272
272
  items {
273
273
  id
@@ -320,7 +320,7 @@ class ProductCombinationSelectionPopup extends localize(i18next)(LitElement) {
320
320
 
321
321
  const response = await client.query({
322
322
  query: gql`
323
- query productCombinationSets($filters: [Filter], $pagination: Pagination, $sortings: [Sorting]) {
323
+ query productCombinationSets($filters: [Filter!], $pagination: Pagination, $sortings: [Sorting!]) {
324
324
  productCombinationSets(filters: $filters, pagination: $pagination, sortings: $sortings) {
325
325
  items {
326
326
  id
@@ -369,7 +369,7 @@ class ProductCombinationSelectionPopup extends localize(i18next)(LitElement) {
369
369
 
370
370
  const response = await client.query({
371
371
  query: gql`
372
- query productDetails($filters: [Filter], $pagination: Pagination, $sortings: [Sorting]) {
372
+ query productDetails($filters: [Filter!], $pagination: Pagination, $sortings: [Sorting!]) {
373
373
  productDetails(filters: $filters, pagination: $pagination, sortings: $sortings) {
374
374
  items {
375
375
  id
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@things-factory/product-ui",
3
- "version": "4.0.13",
3
+ "version": "4.0.18",
4
4
  "main": "dist-server/index.js",
5
5
  "browser": "client/index.js",
6
6
  "things-factory": true,
@@ -24,13 +24,13 @@
24
24
  "migration:create": "node ../../node_modules/typeorm/cli.js migration:create -d ./server/migrations"
25
25
  },
26
26
  "dependencies": {
27
- "@things-factory/form-ui": "^4.0.13",
28
- "@things-factory/grist-ui": "^4.0.13",
29
- "@things-factory/i18n-base": "^4.0.13",
30
- "@things-factory/import-ui": "^4.0.13",
31
- "@things-factory/layout-base": "^4.0.13",
32
- "@things-factory/product-base": "^4.0.13",
33
- "@things-factory/shell": "^4.0.13"
27
+ "@things-factory/form-ui": "^4.0.18",
28
+ "@things-factory/grist-ui": "^4.0.18",
29
+ "@things-factory/i18n-base": "^4.0.18",
30
+ "@things-factory/import-ui": "^4.0.18",
31
+ "@things-factory/layout-base": "^4.0.18",
32
+ "@things-factory/product-base": "^4.0.18",
33
+ "@things-factory/shell": "^4.0.18"
34
34
  },
35
- "gitHead": "a542fdd4e7c447c3b571fe91c92f5919561bdc2c"
35
+ "gitHead": "6fc54f287739a57d1926d84dc50baf36156880ba"
36
36
  }