removedInput schema / properties / cursor
Removed value: -{
- "anyOf": [
- {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "description": "pagination cursor"
- },
- {
- "type": "null"
- }
- ],
- "default": null
-}
changedInput schema / properties / limit / default
Previous value: -50New value: +20
addedOutput schema / $defs
Added value: +{
+ "IssueInfo": {
+ "description": "issue information",
+ "properties": {
+ "body": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null
+ },
+ "cid": {
+ "type": "string"
+ },
+ "createdAt": {
+ "type": "string"
+ },
+ "issueId": {
+ "type": "integer"
+ },
+ "labels": {
+ "default": [],
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "title": {
+ "type": "string"
+ },
+ "uri": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "uri",
+ "cid",
+ "issueId",
+ "title",
+ "createdAt"
+ ],
+ "type": "object"
+ }
+}
removedOutput schema / additionalProperties
Removed value: -true
addedOutput schema / description
Added value: +"result of listing issues"
addedOutput schema / properties
Added value: +{
+ "issues": {
+ "items": {
+ "$ref": "#/$defs/IssueInfo"
+ },
+ "type": "array"
+ }
+}
addedOutput schema / required
Added value: +[
+ "issues"
+]