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`.
23 lines
543 B
YAML
23 lines
543 B
YAML
tags:
|
|
- Messages API
|
|
operationId: list-all-conversation-messages
|
|
summary: List all messages
|
|
description: List all messages in the conversation
|
|
security: []
|
|
responses:
|
|
'200':
|
|
description: Success
|
|
content:
|
|
application/json:
|
|
schema:
|
|
type: array
|
|
description: 'Array of messages'
|
|
items:
|
|
$ref: '#/components/schemas/public_message'
|
|
'401':
|
|
description: Unauthorized
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '#/components/schemas/bad_request_error'
|