@builder.io/ai-utils 0.12.10 → 0.12.11

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@builder.io/ai-utils",
3
- "version": "0.12.10",
3
+ "version": "0.12.11",
4
4
  "description": "Builder.io AI utils",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
package/src/codegen.d.ts CHANGED
@@ -1046,6 +1046,7 @@ export interface FusionConfig {
1046
1046
  conflictBehavior: "replace" | "exit" | "kill";
1047
1047
  };
1048
1048
  miseLocationPath?: string;
1049
+ proxyOrigin?: string;
1049
1050
  setupDependencies?: SetupDependency[];
1050
1051
  projectId?: string;
1051
1052
  branchName?: string;
@@ -31,6 +31,7 @@ interface OrganizationSettings {
31
31
  fusionShareableUrlSuffix?: string;
32
32
  autoDetectDevServerPatterns?: string[];
33
33
  environmentVariables?: EnvironmentVariable[];
34
+ fusionPrLabel?: string;
34
35
  runInPty?: boolean;
35
36
  privacyMode?: Pick<PrivacyMode, "mcpServers" | "redactUserMessages" | "redactLLMMessages"> & {
36
37
  enabled?: boolean;
package/src/projects.d.ts CHANGED
@@ -373,6 +373,7 @@ export interface Project {
373
373
  refreshPreview?: boolean;
374
374
  installCommand?: string;
375
375
  validateCommand?: string;
376
+ proxyOrigin?: string;
376
377
  gitBranchNamingStrategy?: "ai-session" | "branch-name" | "custom";
377
378
  setupDependencies?: SetupDependency[];
378
379
  gitBranchNamingCustom?: string;