@builder.io/ai-utils 0.60.1 → 0.61.0

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.60.1",
3
+ "version": "0.61.0",
4
4
  "description": "Builder.io AI utils",
5
5
  "files": [
6
6
  "src"
package/src/codegen.d.ts CHANGED
@@ -842,6 +842,18 @@ export declare const ProposedConfigSchema: z.ZodObject<{
842
842
  started: "started";
843
843
  failed: "failed";
844
844
  }>;
845
+ running: z.ZodDefault<z.ZodBoolean>;
846
+ previousStates: z.ZodOptional<z.ZodArray<z.ZodEnum<{
847
+ verified: "verified";
848
+ "no-frontend": "no-frontend";
849
+ "empty-project": "empty-project";
850
+ "mobile-project": "mobile-project";
851
+ "user-question": "user-question";
852
+ "code-change-required": "code-change-required";
853
+ other: "other";
854
+ started: "started";
855
+ failed: "failed";
856
+ }>>>;
845
857
  summary: z.ZodString;
846
858
  questions: z.ZodOptional<z.ZodArray<z.ZodObject<{
847
859
  question: z.ZodString;
package/src/codegen.js CHANGED
@@ -1016,6 +1016,8 @@ export const ProposedConfigSchema = z
1016
1016
  state: ExitStateSchema.meta({
1017
1017
  description: "Configuration state from Exit tool",
1018
1018
  }),
1019
+ running: z.boolean().default(false),
1020
+ previousStates: z.array(ExitStateSchema).optional(),
1019
1021
  summary: z.string().meta({ description: "Summary from Exit tool" }),
1020
1022
  questions: z.array(ProposedQuestionSchema).optional(),
1021
1023
  configuration: ProposedConfigurationSchema,