agent-afk 5.25.4 → 5.25.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.
@@ -33,6 +33,7 @@ export declare const VerificationResultSchema: z.ZodObject<{
33
33
  regressions: z.ZodArray<z.ZodString>;
34
34
  confidence: z.ZodNumber;
35
35
  verification_log: z.ZodString;
36
+ timed_out: z.ZodOptional<z.ZodBoolean>;
36
37
  }, z.core.$strip>;
37
38
  export type VerificationResult = z.infer<typeof VerificationResultSchema>;
38
39
  export declare const FailureTypeSchema: z.ZodEnum<{
@@ -111,6 +112,7 @@ export declare const DiagnosisResultSchema: z.ZodObject<{
111
112
  regressions: z.ZodArray<z.ZodString>;
112
113
  confidence: z.ZodNumber;
113
114
  verification_log: z.ZodString;
115
+ timed_out: z.ZodOptional<z.ZodBoolean>;
114
116
  }, z.core.$strip>>>;
115
117
  outcome: z.ZodOptional<z.ZodEnum<{
116
118
  dissent: "dissent";