@griddo/cx 11.0.22 → 11.0.23
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/adapters/gatsby/index.d.ts +4 -2
- package/build/artifacts/index.d.ts +4 -17
- package/build/end-render.js +21 -21
- package/build/end-render.js.map +2 -2
- package/build/index.js +36 -34
- package/build/index.js.map +4 -4
- package/build/react/GriddoIntegrations/utils.d.ts +1 -1
- package/build/reset-render.js +20 -20
- package/build/reset-render.js.map +2 -2
- package/build/run-start-render.js +40 -38
- package/build/run-start-render.js.map +4 -4
- package/build/start-render.js +40 -38
- package/build/start-render.js.map +4 -4
- package/build/upload-search-content.js +16 -16
- package/build/upload-search-content.js.map +2 -2
- package/build/utils/loggin.d.ts +4 -3
- package/build/utils/render.d.ts +5 -1
- package/build/utils/store.d.ts +7 -1
- package/cx.config.d.ts +1 -1
- package/exporter/adapters/gatsby/index.ts +110 -109
- package/exporter/adapters/gatsby/utils.ts +0 -3
- package/exporter/artifacts/index.ts +23 -31
- package/exporter/react/GriddoIntegrations/utils.ts +1 -2
- package/exporter/scripts/start-render.ts +9 -22
- package/exporter/services/store.ts +6 -0
- package/exporter/utils/loggin.ts +12 -5
- package/exporter/utils/render.ts +35 -3
- package/exporter/utils/store.ts +21 -0
- package/package.json +3 -3
- package/build/adapters/index.d.ts +0 -3
- package/build/artifacts/cx.d.ts +0 -6
- package/build/artifacts/gatsby.d.ts +0 -6
- package/exporter/adapters/index.ts +0 -4
- package/exporter/artifacts/cx.ts +0 -29
- package/exporter/artifacts/gatsby.ts +0 -28
|
@@ -1,19 +1,6 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
import type { PlaceholderPath } from "../types/global";
|
|
1
|
+
import type { Artifacts } from "../types/global";
|
|
3
2
|
/**
|
|
4
|
-
* Returns the artifacts of
|
|
5
|
-
*
|
|
6
|
-
* @param adapter - The adapter for which to get the artifacts.
|
|
7
|
-
* @param options.cxPaths - The cx-paths.
|
|
3
|
+
* Returns the artifacts of CX.
|
|
8
4
|
*/
|
|
9
|
-
declare function
|
|
10
|
-
|
|
11
|
-
}): {
|
|
12
|
-
cx: import("../types/global").Artifacts;
|
|
13
|
-
gatsby: import("../types/global").Artifacts;
|
|
14
|
-
all: {
|
|
15
|
-
initials: string[];
|
|
16
|
-
disposables: string[];
|
|
17
|
-
};
|
|
18
|
-
};
|
|
19
|
-
export { getRenderArtifacts };
|
|
5
|
+
declare function getCxArtifacts(domain: string): Artifacts;
|
|
6
|
+
export default getCxArtifacts;
|