From be3e51250e49490e562c11df74f9f501a81a5738 Mon Sep 17 00:00:00 2001 From: Matt Miller Date: Fri, 22 May 2026 18:05:19 -0700 Subject: [PATCH] openapi: add type enum to Workspace schema (cutover follow-up) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cloud's Workspace runtime shape includes a 'type' field with enum [personal, team] that vendor's Workspace was missing. Cloud handlers reference the generated ingest.WorkspaceType Go enum. Same kind of surgical addition as JobEntry.status / BillingStatus / JobDetailResponse.status in this PR — adds cloud-runtime field to existing vendor schema. --- openapi.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/openapi.yaml b/openapi.yaml index 296a0b480..2347bd659 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -9662,6 +9662,12 @@ components: type: string name: type: string + type: + type: string + enum: + - personal + - team + description: Workspace type (personal vs. team). owner_id: type: string member_count: