From 0b41d7f483a626d121771cd5f93df628db5df30b Mon Sep 17 00:00:00 2001 From: Haruma HIRABAYASHI <82667808+hrm1810884@users.noreply.github.com> Date: Fri, 27 Mar 2026 12:53:55 +0900 Subject: [PATCH] docs(swagger): fix operationId typo `converation` -> `conversation` (#13920) issue: https://github.com/chatwoot/chatwoot/issues/13921 Fix a typo in the Messages API operationId where `converation` was used instead of `conversation`. This causes cspell errors when generating client code with tools like Orval. ## What changed - `swagger/paths/public/inboxes/messages/index.yml`: fixed operationId from `list-all-converation-messages` to `list-all-conversation-messages` - `swagger/swagger.json` and `swagger/tag_groups/client_swagger.json`: regenerated to reflect the fix ## Note If you are using a code generator like Orval against this swagger spec, the generated function name will change from `listAllConverationMessages` to `listAllConversationMessages`. --- swagger/paths/public/inboxes/messages/index.yml | 2 +- swagger/swagger.json | 2 +- swagger/tag_groups/client_swagger.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/swagger/paths/public/inboxes/messages/index.yml b/swagger/paths/public/inboxes/messages/index.yml index 68e34fed7..4477d66c3 100644 --- a/swagger/paths/public/inboxes/messages/index.yml +++ b/swagger/paths/public/inboxes/messages/index.yml @@ -1,6 +1,6 @@ tags: - Messages API -operationId: list-all-converation-messages +operationId: list-all-conversation-messages summary: List all messages description: List all messages in the conversation security: [] diff --git a/swagger/swagger.json b/swagger/swagger.json index 3a9c39728..94d1f04d3 100644 --- a/swagger/swagger.json +++ b/swagger/swagger.json @@ -1366,7 +1366,7 @@ "tags": [ "Messages API" ], - "operationId": "list-all-converation-messages", + "operationId": "list-all-conversation-messages", "summary": "List all messages", "description": "List all messages in the conversation", "security": [], diff --git a/swagger/tag_groups/client_swagger.json b/swagger/tag_groups/client_swagger.json index f95b1bed3..763e090b1 100644 --- a/swagger/tag_groups/client_swagger.json +++ b/swagger/tag_groups/client_swagger.json @@ -536,7 +536,7 @@ "tags": [ "Messages API" ], - "operationId": "list-all-converation-messages", + "operationId": "list-all-conversation-messages", "summary": "List all messages", "description": "List all messages in the conversation", "security": [],