@builder.io/ai-utils 0.5.32 → 0.5.33

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/codegen.d.ts +11 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@builder.io/ai-utils",
3
- "version": "0.5.32",
3
+ "version": "0.5.33",
4
4
  "description": "Builder.io AI utils",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
package/src/codegen.d.ts CHANGED
@@ -207,6 +207,7 @@ export interface CodeGenInputOptions {
207
207
  attachments?: Attachment[];
208
208
  beforeCommit?: string;
209
209
  workingDirectory?: string;
210
+ encryptKey?: string;
210
211
  modelOverride?: string;
211
212
  builderContent?: BuilderContent;
212
213
  framework?: CodeGenFramework;
@@ -827,6 +828,16 @@ export interface FusionConfig {
827
828
  isLocal?: boolean;
828
829
  envVariables?: Record<string, string>;
829
830
  accessControl?: AclPolicy;
831
+ privacyMode?: {
832
+ encrypt: boolean;
833
+ encryptKey?: string;
834
+ /**
835
+ * If true, the CLI will enable MCP servers during privacy mode.
836
+ *
837
+ * @default false
838
+ */
839
+ mcpServers?: boolean;
840
+ };
830
841
  repoIndexingConfig?: RepoIndexingConfig;
831
842
  machine?: RemoteMachineConfig;
832
843
  _attemptDryRunBackupGit?: boolean;