@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.
- package/build/commands/end-render.js +1 -1
- package/build/commands/end-render.js.map +2 -2
- package/build/commands/prepare-assets-directory.js +1 -1
- package/build/commands/prepare-assets-directory.js.map +2 -2
- package/build/commands/prepare-domains-render.js +4 -4
- package/build/commands/prepare-domains-render.js.map +2 -2
- package/build/commands/reset-render.js +1 -1
- package/build/commands/reset-render.js.map +2 -2
- package/build/commands/start-render.js +2 -2
- package/build/commands/start-render.js.map +3 -3
- package/build/commands/upload-search-content.js +11 -11
- package/build/commands/upload-search-content.js.map +2 -2
- package/build/index.js +2 -2
- package/exporter/services/reference-fields.ts +13 -4
- package/package.json +2 -2
|
@@ -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 {
|
|
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.
|
|
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": "
|
|
97
|
+
"gitHead": "ae45e364544d784f76299b04463a19c1ac701ff8"
|
|
98
98
|
}
|