builder.io 1.18.3 → 1.18.5
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/cli/index.cjs +357 -363
- package/cli/index.cjs.map +4 -4
- package/core/index.cjs +1 -1
- package/core/index.mjs +1 -1
- package/node/index.cjs +1 -1
- package/node/index.mjs +1 -1
- package/package.json +1 -1
- package/server/index.cjs +85 -85
- package/server/index.mjs +85 -85
- package/types/cli/launch/helpers.d.ts +4 -0
- package/types/tsconfig.tsbuildinfo +1 -1
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import type { FusionConfig } from "$/ai-utils";
|
|
2
2
|
import type { DevToolsSys } from "../../types";
|
|
3
|
+
/**
|
|
4
|
+
* Scrub sensitive data from fusion config before sending to webapp or logging
|
|
5
|
+
*/
|
|
6
|
+
export declare function scrubFusionConfig(config: FusionConfig | undefined): FusionConfig | undefined;
|
|
3
7
|
export declare const isInRemoteContainer: () => boolean;
|
|
4
8
|
export declare const getVolumePath: (fusionConfig: FusionConfig) => string;
|
|
5
9
|
export declare function computeAIBranchName(featureBranch: string, sessionId: string): string;
|