@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.
@@ -1,2 +1,4 @@
1
- declare function main(): Promise<void>;
2
- export default main;
1
+ /**
2
+ * Render every instance domain with the Gatsby adapter.
3
+ */
4
+ export declare function renderDomainsWithGatsbyAdapter(): Promise<void>;
@@ -1,19 +1,6 @@
1
- import type { Adapters } from "../adapters";
2
- import type { PlaceholderPath } from "../types/global";
1
+ import type { Artifacts } from "../types/global";
3
2
  /**
4
- * Returns the artifacts of a specific adapter along with those of CX.
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 getRenderArtifacts(adapter: Adapters, options: {
10
- cxPaths: Record<PlaceholderPath, string>;
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;