addedInput schema / properties / cursor
Added value: +{
+ "description": "Pagination cursor returned by Linear",
+ "type": "string"
+}
addedInput schema / properties / documentContentId
Added value: +{
+ "description": "ID of the document content to get inline comments from",
+ "type": "string"
+}
addedInput schema / properties / initiativeId
Added value: +{
+ "description": "ID of the initiative to get comments from",
+ "type": "string"
+}
addedInput schema / properties / initiativeUpdateId
Added value: +{
+ "description": "ID of the initiative update to get comments from",
+ "type": "string"
+}
addedInput schema / properties / limit / minimum
Added value: +1
changedInput schema / properties / limit / type
Previous value: -"number"New value: +"integer"
addedInput schema / properties / orderBy
Added value: +{
+ "description": "Sort comments by created or updated date",
+ "enum": [
+ "createdAt",
+ "updatedAt"
+ ],
+ "type": "string"
+}
addedInput schema / properties / postId
Added value: +{
+ "description": "ID of the post to get comments from",
+ "type": "string"
+}
addedInput schema / properties / projectId
Added value: +{
+ "description": "ID of the project to get comments from",
+ "type": "string"
+}
addedInput schema / properties / projectUpdateId
Added value: +{
+ "description": "ID of the project update to get comments from",
+ "type": "string"
+}
removedInput schema / required
Removed value: -[
- "issueId"
-]
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "items": {
+ "items": {
+ "properties": {
+ "body": {
+ "type": "string"
+ },
+ "createdAt": {
+ "type": "string"
+ },
+ "id": {
+ "type": "string"
+ },
+ "initiative": {
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "initiativeUpdate": {
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "issue": {
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "project": {
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "projectUpdate": {
+ "type": [
+ "object",
+ "null"
+ ]
+ },
+ "quotedText": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "updatedAt": {
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ },
+ "user": {
+ "properties": {
+ "id": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ }
+ },
+ "type": "object"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "items"
+ ],
+ "type": "object"
+}