@griddo/cx 10.5.4 → 10.6.1
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/build-complete.js +20 -20
- package/build/index.js +27 -27
- package/build/reset-render.js +20 -20
- package/build/run-start-render.js +27 -27
- package/build/start-render.js +27 -27
- package/build/types/global.d.ts +8 -2
- package/build/upload-search-content.js +23 -23
- package/build/utils/core-utils.d.ts +2 -2
- package/build/utils/searches.d.ts +2 -1
- package/cx.config.d.ts +2 -0
- package/cx.config.js +4 -0
- package/exporter/services/distributors.ts +3 -3
- package/exporter/types/global.ts +11 -1
- package/exporter/upload-search-content.ts +20 -15
- package/exporter/utils/core-utils.ts +9 -5
- package/exporter/utils/searches.ts +19 -5
- package/package.json +3 -3
package/build/types/global.d.ts
CHANGED
|
@@ -62,7 +62,7 @@ interface RenderInfo {
|
|
|
62
62
|
sitesToPublish: Array<Site>;
|
|
63
63
|
}
|
|
64
64
|
type LifeCyclesNames = "Prepare" | "Restore" | "Data" | "SSG" | "Relocation" | "Meta" | "Archive" | "Clean" | "HealthCheck" | "__DEBUG__";
|
|
65
|
-
type CXDir = "__exports" | "__caches" | "__cx" | "__ssg" | "__components" | "__root";
|
|
65
|
+
type CXDir = "__exports" | "__caches" | "__cx" | "__ssg" | "__components" | "__root" | "__exports_dist" | "__cx_dist";
|
|
66
66
|
interface CXConfig {
|
|
67
67
|
proDomain: string;
|
|
68
68
|
griddoVersion: string;
|
|
@@ -73,7 +73,13 @@ interface CXConfig {
|
|
|
73
73
|
SSG: "__ssg";
|
|
74
74
|
COMPONENTS: "__components";
|
|
75
75
|
ROOT: "__root";
|
|
76
|
+
EXPORTS_DIST: "__exports_dist";
|
|
77
|
+
CX_DIST: "__cx_dist";
|
|
76
78
|
};
|
|
77
79
|
paths: (domain?: string) => Record<CXDir, string>;
|
|
78
80
|
}
|
|
79
|
-
|
|
81
|
+
interface AIEmbeddingsResponse {
|
|
82
|
+
code: number;
|
|
83
|
+
message: string;
|
|
84
|
+
}
|
|
85
|
+
export { BuildProcessData, CXConfig, CXDir, Domains, FetchDataProps, LifeCyclesNames, Petition, PostSearchInfoProps, RenderInfo, Robot, Robots, Settings, type AIEmbeddingsResponse, };
|