@jetshop/template-trend 5.14.3 → 5.14.5

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jetshop/template-trend",
3
- "version": "5.14.3",
3
+ "version": "5.14.5",
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.3",
48
+ "@jetshop/core": "^5.14.5",
49
49
  "@jetshop/flight-shortcodes": "^2.0.10",
50
- "@jetshop/intl": "^5.14.3",
51
- "@jetshop/react-scripts": "^5.14.3",
52
- "@jetshop/ui": "^5.14.3",
50
+ "@jetshop/intl": "^5.14.5",
51
+ "@jetshop/react-scripts": "^5.14.5",
52
+ "@jetshop/ui": "^5.14.5",
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 {
@@ -17,6 +17,7 @@ fragment CategoryPage on Category {
17
17
  content
18
18
  breadcrumbText
19
19
  isDynamic
20
+ allowWebIndexing
20
21
  images {
21
22
  width
22
23
  url
@@ -6,6 +6,7 @@ fragment ContentPage on Page {
6
6
  name
7
7
  id
8
8
  content
9
+ allowWebIndexing
9
10
  images {
10
11
  url
11
12
  }