@griddo/cx 11.10.13-rc.2 → 11.10.14

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.
@@ -23,7 +23,8 @@ function getBody(data: Fields.Reference<unknown>, page: Core.Page) {
23
23
  allLanguages = false,
24
24
  preferenceLanguage = false,
25
25
  referenceId,
26
- fields,
26
+ // TODO: Restore fields when we fixed the issue in API
27
+ // fields,
27
28
  } = data;
28
29
 
29
30
  if (mode === "auto") {
@@ -35,12 +36,19 @@ function getBody(data: Fields.Reference<unknown>, page: Core.Page) {
35
36
  fullRelations,
36
37
  allLanguages,
37
38
  preferenceLanguage,
38
- fields,
39
+ // TODO: Restore fields when we fixed the issue in API
40
+ // fields,
39
41
  };
40
42
  }
41
43
 
42
44
  if (mode === "manual") {
43
- return { mode, fixed, fullRelations, fields };
45
+ return {
46
+ mode,
47
+ fixed,
48
+ fullRelations,
49
+ // TODO: Restore fields when we fixed the issue in API
50
+ // fields
51
+ };
44
52
  }
45
53
 
46
54
  if (mode === "navigation") {
@@ -50,7 +58,8 @@ function getBody(data: Fields.Reference<unknown>, page: Core.Page) {
50
58
  quantity,
51
59
  fullRelations,
52
60
  referenceId: referenceId || page?.structuredDataContent?.id,
53
- fields,
61
+ // TODO: Restore fields when we fixed the issue in API
62
+ // fields,
54
63
  };
55
64
  }
56
65
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@griddo/cx",
3
3
  "description": "Griddo SSG based on Gatsby",
4
- "version": "11.10.13-rc.2",
4
+ "version": "11.10.14",
5
5
  "authors": [
6
6
  "Hisco <francis.vega@griddo.io>"
7
7
  ],
@@ -94,5 +94,5 @@
94
94
  "publishConfig": {
95
95
  "access": "public"
96
96
  },
97
- "gitHead": "2d1b2caa2060e8c7af74ea9dcf481960cad3a501"
97
+ "gitHead": "ae45e364544d784f76299b04463a19c1ac701ff8"
98
98
  }