@jetshop/template-trend 5.14.3 → 5.14.4
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.
- package/package.json +5 -5
- package/schema.graphql +14 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jetshop/template-trend",
|
|
3
|
-
"version": "5.14.
|
|
3
|
+
"version": "5.14.4",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "react-scripts build",
|
|
@@ -45,11 +45,11 @@
|
|
|
45
45
|
]
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@jetshop/core": "^5.14.
|
|
48
|
+
"@jetshop/core": "^5.14.4",
|
|
49
49
|
"@jetshop/flight-shortcodes": "^2.0.10",
|
|
50
|
-
"@jetshop/intl": "^5.14.
|
|
51
|
-
"@jetshop/react-scripts": "^5.14.
|
|
52
|
-
"@jetshop/ui": "^5.14.
|
|
50
|
+
"@jetshop/intl": "^5.14.4",
|
|
51
|
+
"@jetshop/react-scripts": "^5.14.4",
|
|
52
|
+
"@jetshop/ui": "^5.14.4",
|
|
53
53
|
"@react-google-maps/api": "~1.7.0",
|
|
54
54
|
"prop-types": "^15.6.2",
|
|
55
55
|
"react": "^16.9.0",
|
package/schema.graphql
CHANGED
|
@@ -224,6 +224,13 @@ type Category implements Document {
|
|
|
224
224
|
asking for this will result in a separate API call in the backend.
|
|
225
225
|
"""
|
|
226
226
|
data: Content
|
|
227
|
+
|
|
228
|
+
"""
|
|
229
|
+
When set to false, the category will be excluded from sitemap. The frontend
|
|
230
|
+
implementation should use this value to set meta tags to exclude the category
|
|
231
|
+
from being indexed by crawlers. Defaults to true.
|
|
232
|
+
"""
|
|
233
|
+
allowWebIndexing: Boolean
|
|
227
234
|
}
|
|
228
235
|
|
|
229
236
|
type CategoryActiveDateSpan {
|
|
@@ -1386,6 +1393,13 @@ type Page implements Document {
|
|
|
1386
1393
|
returned if they are hidden. The `includeHidden` flag has no effect on this.
|
|
1387
1394
|
"""
|
|
1388
1395
|
subPages(includeHidden: Boolean = true): [Page!]
|
|
1396
|
+
|
|
1397
|
+
"""
|
|
1398
|
+
When set to false, the page will be excluded from sitemap. The frontend
|
|
1399
|
+
implementation should use this value to set meta tags to exclude the page from
|
|
1400
|
+
being indexed by crawlers. Defaults to true.
|
|
1401
|
+
"""
|
|
1402
|
+
allowWebIndexing: Boolean
|
|
1389
1403
|
}
|
|
1390
1404
|
|
|
1391
1405
|
type PagedResult {
|