@builder.io/ai-utils 0.9.3 → 0.9.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/codegen.d.ts +22 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@builder.io/ai-utils",
3
- "version": "0.9.3",
3
+ "version": "0.9.5",
4
4
  "description": "Builder.io AI utils",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
package/src/codegen.d.ts CHANGED
@@ -1098,4 +1098,26 @@ export interface CodegenApiTerminal {
1098
1098
  createdAt: number;
1099
1099
  lastWrittenAt: number;
1100
1100
  createdBy: string;
1101
+ readonly: boolean;
1102
+ }
1103
+ export interface SetupCommandResult {
1104
+ code: number | null;
1105
+ output: string;
1106
+ }
1107
+ export interface ConfigureDevOrchestratorUpdates {
1108
+ devCommand: boolean;
1109
+ setupCommand: boolean;
1110
+ proxyServer: boolean;
1111
+ env: boolean;
1112
+ setupResult: SetupCommandResult | undefined;
1113
+ }
1114
+ export interface ConfigureDevOrchestratorOpts {
1115
+ devCommand?: string;
1116
+ setupCommand?: string;
1117
+ proxyPort?: number;
1118
+ proxyServer?: string;
1119
+ env?: Record<string, string | null>;
1120
+ replaceEnvs?: boolean;
1121
+ forceSetupCommand?: boolean;
1122
+ forceDevCommand?: boolean;
1101
1123
  }