From b7da7d40d0a145eb2d109b81e20ef628c12bf69f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 21 Jan 2025 11:41:03 +0000 Subject: [PATCH] Update OpenAPI to version generated from ref f11cbdf3b90fabaa8fc89be3b47943ca502890d3 --- api/openapi.json | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/api/openapi.json b/api/openapi.json index 64b9d791..6dad20fd 100644 --- a/api/openapi.json +++ b/api/openapi.json @@ -161,7 +161,7 @@ "content": { "application/json": { "schema": { - "$ref": "#/components/schemas/CreateWorkspaceRequest" + "$ref": "#/components/schemas/CreateOrRenameWorkspaceRequest" } } }, @@ -750,18 +750,29 @@ "title": "Conversation", "description": "Represents a conversation." }, - "CreateWorkspaceRequest": { + "CreateOrRenameWorkspaceRequest": { "properties": { "name": { "type": "string", "title": "Name" + }, + "rename_to": { + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "title": "Rename To" } }, "type": "object", "required": [ "name" ], - "title": "CreateWorkspaceRequest" + "title": "CreateOrRenameWorkspaceRequest" }, "HTTPValidationError": { "properties": {