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 @@ -361,3 +361,13 @@ class TasksStream(bexioStream):
361361 replication_method : "FULL_TABLE"
362362 replication_key = "id"
363363 schema_filepath = SCHEMAS_DIR / "tasks.json"
364+
365+ class TaskPrioritiesStream (bexioStream ):
366+ """Task priorities stream."""
367+ name = "task_priorities"
368+ path = "2.0/todo_priority"
369+ data_key = "task_priorities"
370+ primary_keys = ["id" ]
371+ replication_method : "FULL_TABLE"
372+ replication_key = "id"
373+ schema_filepath = SCHEMAS_DIR / "task_priority.json"
Original file line number Diff line number Diff line change 3939 FictionalUsersStream ,
4040 NotesStream ,
4141 TasksStream ,
42+ TaskPrioritiesStream ,
4243)
4344
4445STREAM_TYPES = [
7576 FictionalUsersStream ,
7677 NotesStream ,
7778 TasksStream ,
79+ TaskPrioritiesStream ,
7880]
7981
8082
You can’t perform that action at this time.
0 commit comments