@jetshop/core 5.17.0-alpha.d3f57df3 → 5.17.0-alpha.d9d2edd2
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.
@@ -17,7 +17,7 @@ fragment MinimalProductListDetail on CustomerProductList {
|
|
17
17
|
}
|
18
18
|
}
|
19
19
|
|
20
|
-
fragment
|
20
|
+
fragment ProductListsVariantDetail on ProductVariant {
|
21
21
|
id
|
22
22
|
articleNumber
|
23
23
|
values
|
@@ -33,17 +33,17 @@ fragment VariantDetail on ProductVariant {
|
|
33
33
|
}
|
34
34
|
}
|
35
35
|
|
36
|
-
fragment
|
36
|
+
fragment ProductListsVariantsDetail on ProductVariants {
|
37
37
|
options {
|
38
38
|
name
|
39
39
|
values
|
40
40
|
}
|
41
41
|
values {
|
42
|
-
...
|
42
|
+
...ProductListsVariantDetail
|
43
43
|
}
|
44
44
|
}
|
45
45
|
|
46
|
-
fragment
|
46
|
+
fragment ProductListsProductDetail on Product {
|
47
47
|
id
|
48
48
|
articleNumber
|
49
49
|
name
|
@@ -72,11 +72,11 @@ fragment ProductDetail on Product {
|
|
72
72
|
url
|
73
73
|
}
|
74
74
|
variants {
|
75
|
-
...
|
75
|
+
...ProductListsVariantsDetail
|
76
76
|
}
|
77
77
|
}
|
78
78
|
|
79
|
-
fragment
|
79
|
+
fragment ProductListsListFragment on CustomerProductList {
|
80
80
|
id
|
81
81
|
description
|
82
82
|
name
|
@@ -85,10 +85,10 @@ fragment ProductListFragment on CustomerProductList {
|
|
85
85
|
quantity
|
86
86
|
description
|
87
87
|
product {
|
88
|
-
...
|
88
|
+
...ProductListsProductDetail
|
89
89
|
}
|
90
90
|
variant {
|
91
|
-
...
|
91
|
+
...ProductListsVariantDetail
|
92
92
|
}
|
93
93
|
}
|
94
94
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@jetshop/core",
|
3
|
-
"version": "5.17.0-alpha.
|
3
|
+
"version": "5.17.0-alpha.d9d2edd2",
|
4
4
|
"license": "MIT",
|
5
5
|
"files": [
|
6
6
|
"**/*.js",
|
@@ -43,11 +43,6 @@
|
|
43
43
|
"@sentry/core": "^6.15.0",
|
44
44
|
"@sentry/node": "^6.15.0",
|
45
45
|
"@tanem/react-nprogress": "^5.0.44",
|
46
|
-
"@types/accept-language-parser": "^1.5.1",
|
47
|
-
"@types/gtag.js": "^0.0.10",
|
48
|
-
"@types/loadable__component": "^5.10.0",
|
49
|
-
"@types/loadable__server": "^5.9.1",
|
50
|
-
"@types/react-router-dom": "^5.1.8",
|
51
46
|
"@xstate/react": "^0.8.1",
|
52
47
|
"accept-language-parser": "^1.5.0",
|
53
48
|
"apollo-server": "~2.6.9",
|
@@ -87,11 +82,15 @@
|
|
87
82
|
"devDependencies": {
|
88
83
|
"@graphql-codegen/typescript": "^1.21.0",
|
89
84
|
"@react-mock/localstorage": "^0.1.2",
|
85
|
+
"@types/accept-language-parser": "^1.5.1",
|
90
86
|
"@types/compression": "^0.0.36",
|
91
87
|
"@types/express": "^4.11.1",
|
92
88
|
"@types/fontfaceobserver": "^0.0.6",
|
93
89
|
"@types/graphql": "^14.2.2",
|
90
|
+
"@types/gtag.js": "^0.0.10",
|
94
91
|
"@types/jest": "^24.0.12",
|
92
|
+
"@types/loadable__component": "^5.10.0",
|
93
|
+
"@types/loadable__server": "^5.9.1",
|
95
94
|
"@types/lodash.isequal": "^4.5.3",
|
96
95
|
"@types/lodash.merge": "^4.6.4",
|
97
96
|
"@types/lodash.pick": "^4.4.4",
|