addedInput schema / properties / projects_status
Added value: +{
+ "default": "active",
+ "description": "Which projects to return",
+ "enum": [
+ "active",
+ "done",
+ "archived",
+ "all"
+ ],
+ "type": "string"
+}
removedOutput schema / properties / activeProjects
Removed value: -{
- "items": {
- "additionalProperties": false,
- "properties": {
- "id": {
- "type": "string"
- },
- "key": {
- "type": "string"
- },
- "name": {
- "type": "string"
- },
- "targetDate": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ]
- }
- },
- "required": [
- "id",
- "key",
- "name",
- "targetDate"
- ],
- "type": "object"
- },
- "type": "array"
-}
addedOutput schema / properties / projects
Added value: +{
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "id": {
+ "type": "string"
+ },
+ "key": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ },
+ "status": {
+ "type": "string"
+ },
+ "targetDate": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ }
+ },
+ "required": [
+ "id",
+ "key",
+ "name",
+ "status",
+ "targetDate"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+}
changedOutput schema / required
Previous value: -[
- "activeProjects",
- "labels",
- "members",
- "recentTasks",
- "taskCounts",
- "teams",
- "today",
- "viewCounts"
-]New value: +[
+ "labels",
+ "members",
+ "projects",
+ "recentTasks",
+ "taskCounts",
+ "teams",
+ "today",
+ "viewCounts"
+]