chore: generate

This commit is contained in:
opencode-agent[bot]
2026-04-21 18:08:04 +00:00
parent ecc06a3d8f
commit 1e1a500603
+3 -3
View File
@@ -247,9 +247,9 @@ export const Info = Schema.Struct({
.annotate({ identifier: "Config" }) .annotate({ identifier: "Config" })
.pipe( .pipe(
withStatics((s) => ({ withStatics((s) => ({
zod: (zod(s) as unknown as z.ZodObject<any>) zod: (zod(s) as unknown as z.ZodObject<any>).strict().meta({ ref: "Config" }) as unknown as z.ZodType<
.strict() DeepMutable<Schema.Schema.Type<typeof s>>
.meta({ ref: "Config" }) as unknown as z.ZodType<DeepMutable<Schema.Schema.Type<typeof s>>>, >,
})), })),
) )