Skip to content
Snippets Groups Projects
Unverified Commit bae10a04 authored by Luciano Marcos Pierdona Junior's avatar Luciano Marcos Pierdona Junior Committed by GitHub
Browse files

Regression: Set `offset` and `count` optional on `ChatGetThreadsListSchema` (#25961)

parent 845f56e3
No related branches found
No related tags found
No related merge requests found
...@@ -198,12 +198,14 @@ const ChatGetThreadsListSchema = { ...@@ -198,12 +198,14 @@ const ChatGetThreadsListSchema = {
}, },
offset: { offset: {
type: 'number', type: 'number',
nullable: true,
}, },
count: { count: {
type: 'number', type: 'number',
nullable: true,
}, },
}, },
required: ['rid', 'type', 'offset', 'count'], required: ['rid', 'type'],
additionalProperties: false, additionalProperties: false,
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment