@things-factory/product-ui 4.0.16 → 4.0.21
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.
|
|
3
|
+
"version": "4.0.21",
|
|
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.
|
|
28
|
-
"@things-factory/grist-ui": "^4.0.
|
|
29
|
-
"@things-factory/i18n-base": "^4.0.
|
|
30
|
-
"@things-factory/import-ui": "^4.0.
|
|
31
|
-
"@things-factory/layout-base": "^4.0.
|
|
32
|
-
"@things-factory/product-base": "^4.0.
|
|
33
|
-
"@things-factory/shell": "^4.0.
|
|
27
|
+
"@things-factory/form-ui": "^4.0.21",
|
|
28
|
+
"@things-factory/grist-ui": "^4.0.21",
|
|
29
|
+
"@things-factory/i18n-base": "^4.0.21",
|
|
30
|
+
"@things-factory/import-ui": "^4.0.21",
|
|
31
|
+
"@things-factory/layout-base": "^4.0.21",
|
|
32
|
+
"@things-factory/product-base": "^4.0.21",
|
|
33
|
+
"@things-factory/shell": "^4.0.21"
|
|
34
34
|
},
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "ab5451f749a4e886ae3668bee82777b566538e17"
|
|
36
36
|
}
|