-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Source Todoist: migrate to low-code New (#32690)
Co-authored-by: Marcos Marx <[email protected]> Co-authored-by: marcosmarxm <[email protected]>
- Loading branch information
1 parent
7c9394f
commit bbec0a1
Showing
25 changed files
with
279 additions
and
343 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# | ||
# Copyright (c) 2023 Airbyte, Inc., all rights reserved. | ||
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion
2
airbyte-integrations/connectors/source-todoist/integration_tests/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# | ||
# Copyright (c) 2022 Airbyte, Inc., all rights reserved. | ||
# Copyright (c) 2023 Airbyte, Inc., all rights reserved. | ||
# |
36 changes: 2 additions & 34 deletions
36
airbyte-integrations/connectors/source-todoist/integration_tests/abnormal_state.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,5 @@ | ||
{ | ||
"tasks": { | ||
"id": false, | ||
"project_id": 10, | ||
"section_id": -10, | ||
"content": 10, | ||
"description": true, | ||
"is_completed": "not so true", | ||
"labels": [true, false], | ||
"parent_id": -50, | ||
"order": true, | ||
"priority": "10", | ||
"due": true, | ||
"url": 50, | ||
"comment_count": "10", | ||
"created_at": { "when": true }, | ||
"creator_id": -1, | ||
"assignee_id": 20, | ||
"assigner_id": 50 | ||
}, | ||
"projects": { | ||
"id": { | ||
"number": "2203306141" | ||
}, | ||
"name": 50, | ||
"comment_count": false, | ||
"order": "1", | ||
"color": 100, | ||
"is_shared": [false], | ||
"is_favorite": "world", | ||
"parent_id": 100, | ||
"is_inbox_project": [true], | ||
"is_team_inbox": "false", | ||
"view_style": ["list"], | ||
"url": ["https://todoist.com/showProject?id=2203306141"] | ||
"todo-stream-name": { | ||
"todo-field-name": "todo-abnormal-value" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 6 additions & 18 deletions
24
airbyte-integrations/connectors/source-todoist/integration_tests/configured_catalog.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,22 @@ | ||
{ | ||
"streams": [ | ||
{ | ||
"cursor_field": null, | ||
"destination_sync_mode": "append", | ||
"primary_key": null, | ||
"stream": { | ||
"default_cursor_field": null, | ||
"json_schema": {}, | ||
"name": "tasks", | ||
"namespace": null, | ||
"source_defined_cursor": null, | ||
"source_defined_primary_key": [["id"]], | ||
"json_schema": {}, | ||
"supported_sync_modes": ["full_refresh"] | ||
}, | ||
"sync_mode": "full_refresh" | ||
"sync_mode": "full_refresh", | ||
"destination_sync_mode": "overwrite" | ||
}, | ||
{ | ||
"cursor_field": null, | ||
"destination_sync_mode": "append", | ||
"primary_key": null, | ||
"stream": { | ||
"default_cursor_field": null, | ||
"json_schema": {}, | ||
"name": "projects", | ||
"namespace": null, | ||
"source_defined_cursor": null, | ||
"source_defined_primary_key": [["id"]], | ||
"json_schema": {}, | ||
"supported_sync_modes": ["full_refresh"] | ||
}, | ||
"sync_mode": "full_refresh" | ||
"sync_mode": "full_refresh", | ||
"destination_sync_mode": "overwrite" | ||
} | ||
] | ||
} |
2 changes: 1 addition & 1 deletion
2
airbyte-integrations/connectors/source-todoist/integration_tests/invalid_config.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"token": "INVALID TOKEN" | ||
"token": "INVALID_API_TOKEN" | ||
} |
2 changes: 1 addition & 1 deletion
2
airbyte-integrations/connectors/source-todoist/integration_tests/sample_config.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"token": "VALID TOKEN" | ||
"token": "API_TOKEN" | ||
} |
Oops, something went wrong.