File tree Expand file tree Collapse file tree 3 files changed +24
-0
lines changed
Expand file tree Collapse file tree 3 files changed +24
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "type" : " object" ,
3+ "additionalProperties" : false ,
4+ "properties" : {
5+ "id" : {
6+ "type" : " integer"
7+ },
8+ "name" : {
9+ "type" : " string"
10+ }
11+ }
12+ }
Original file line number Diff line number Diff line change @@ -371,3 +371,13 @@ class TaskPrioritiesStream(bexioStream):
371371 replication_method : "FULL_TABLE"
372372 replication_key = "id"
373373 schema_filepath = SCHEMAS_DIR / "task_priority.json"
374+
375+ class TaskStatusStream (bexioStream ):
376+ """Task status stream."""
377+ name = "task_status"
378+ path = "2.0/todo_status"
379+ data_key = "task_status"
380+ primary_keys = ["id" ]
381+ replication_method : "FULL_TABLE"
382+ replication_key = "id"
383+ schema_filepath = SCHEMAS_DIR / "task_status.json"
Original file line number Diff line number Diff line change 4040 NotesStream ,
4141 TasksStream ,
4242 TaskPrioritiesStream ,
43+ TaskStatusStream ,
4344)
4445
4546STREAM_TYPES = [
7778 NotesStream ,
7879 TasksStream ,
7980 TaskPrioritiesStream ,
81+ TaskStatusStream ,
8082]
8183
8284
You can’t perform that action at this time.
0 commit comments