Skip to content

Commit

Permalink
Regression: Set offset and count optional on `ChatGetThreadsListS…
Browse files Browse the repository at this point in the history
…chema` (#25961)
  • Loading branch information
LucianoPierdona committed Jun 22, 2022
1 parent 845f56e commit bae10a0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/rest-typings/src/v1/chat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -198,12 +198,14 @@ const ChatGetThreadsListSchema = {
},
offset: {
type: 'number',
nullable: true,
},
count: {
type: 'number',
nullable: true,
},
},
required: ['rid', 'type', 'offset', 'count'],
required: ['rid', 'type'],
additionalProperties: false,
};

Expand Down

0 comments on commit bae10a0

Please sign in to comment.