Skip to content
This repository was archived by the owner on Jun 5, 2025. It is now read-only.

Commit 10900b3

Browse files
Update OpenAPI to version generated from ref f11cbdf (#684)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent f11cbdf commit 10900b3

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

api/openapi.json

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@
161161
"content": {
162162
"application/json": {
163163
"schema": {
164-
"$ref": "#/components/schemas/CreateWorkspaceRequest"
164+
"$ref": "#/components/schemas/CreateOrRenameWorkspaceRequest"
165165
}
166166
}
167167
},
@@ -750,18 +750,29 @@
750750
"title": "Conversation",
751751
"description": "Represents a conversation."
752752
},
753-
"CreateWorkspaceRequest": {
753+
"CreateOrRenameWorkspaceRequest": {
754754
"properties": {
755755
"name": {
756756
"type": "string",
757757
"title": "Name"
758+
},
759+
"rename_to": {
760+
"anyOf": [
761+
{
762+
"type": "string"
763+
},
764+
{
765+
"type": "null"
766+
}
767+
],
768+
"title": "Rename To"
758769
}
759770
},
760771
"type": "object",
761772
"required": [
762773
"name"
763774
],
764-
"title": "CreateWorkspaceRequest"
775+
"title": "CreateOrRenameWorkspaceRequest"
765776
},
766777
"HTTPValidationError": {
767778
"properties": {

0 commit comments

Comments
 (0)