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`.
This commit is contained in:
Haruma HIRABAYASHI
2026-03-27 12:53:55 +09:00
committed by GitHub
parent 4517c50227
commit 0b41d7f483
3 changed files with 3 additions and 3 deletions

View File

@@ -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: []

View File

@@ -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": [],

View File

@@ -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": [],