addedInput schema / $defs
Added value: +{
+ "CommentFieldsEnum": {
+ "enum": [
+ "created_at",
+ "updated_at",
+ "created_by",
+ "updated_by",
+ "id",
+ "long_id",
+ "text",
+ "transport",
+ "text_html",
+ "summonees",
+ "maillist_summonees"
+ ],
+ "title": "CommentFieldsEnum",
+ "type": "string"
+ }
+}
addedInput schema / properties / cursor
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Cursor for the next page of comments: the 'next_cursor' value returned by the previous call. Leave empty for the first page.",
+ "title": "Cursor"
+}
addedInput schema / properties / fields
Added value: +{
+ "anyOf": [
+ {
+ "items": {
+ "$ref": "#/$defs/CommentFieldsEnum"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Fields to include in each comment. In order to not pollute the context window - select only the fields you need (comment text/text_html can be large). Not specifying this returns all available fields.",
+ "title": "Fields"
+}
addedInput schema / properties / per_page
Added value: +{
+ "default": 50,
+ "description": "The number of items per page for cursor-paginated endpoints. May be decreased if results exceed the context window.",
+ "minimum": 1,
+ "title": "Per Page",
+ "type": "integer"
+}
addedOutput schema / description
Added value: +"A page of comments plus the cursor to fetch the next page.\n\n`next_cursor` is the cursor for the next page, or `None` when there are no more\npages; how it is obtained depends on the endpoint. Pass it back as the `cursor`\nargument to continue."
addedOutput schema / properties / comments
Added value: +{
+ "items": {
+ "$ref": "#/$defs/IssueComment"
+ },
+ "title": "Comments",
+ "type": "array"
+}
addedOutput schema / properties / next_cursor
Added value: +{
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Next Cursor"
+}
removedOutput schema / properties / result
Removed value: -{
- "items": {
- "$ref": "#/$defs/IssueComment"
- },
- "title": "Result",
- "type": "array"
-}
changedOutput schema / required
Previous value: -[
- "result"
-]New value: +[
+ "comments"
+]
changedOutput schema / title
Previous value: -"issue_get_commentsOutput"New value: +"CommentsPage"