From 68bb2b0463798f601163ff5b1f558ae959f3d8f0 Mon Sep 17 00:00:00 2001 From: vigneshrajsb Date: Sun, 12 Jul 2026 23:05:30 -0700 Subject: [PATCH] chore: drop vestigial enableFullYaml field from Build type The backend no longer emits enableFullYaml in its API responses (the YAML-migration flag has been removed as dead code), and nothing in the CLI ever read this hand-written optional. Remove it. The orval-generated types never carried this field, so no regeneration is needed. --- src/lib/types.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib/types.ts b/src/lib/types.ts index 3faa5d8..e8d02ba 100644 --- a/src/lib/types.ts +++ b/src/lib/types.ts @@ -105,7 +105,6 @@ export type Build = Omit< isStatic?: boolean; trackDefaultBranches?: boolean; kind?: string; - enableFullYaml?: boolean; webhooksYaml?: string | null; createdAt?: string; updatedAt?: string;