Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Marcos/test pr 32690 #33637

Closed
wants to merge 5 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix schema
marcosmarxm committed Dec 19, 2023

Verified

This commit was signed with the committer’s verified signature.
marmichalski Marcin Michalski
commit e4285ad52f015d1b1a79b53fc83a99142018f44e
14 changes: 14 additions & 0 deletions airbyte-integrations/connectors/source-todoist/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions airbyte-integrations/connectors/source-todoist/metadata.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
data:
allowedHosts:
hosts:
- TODO # Please change to the hostname of the source.
- api.todoist.com/rest/v2
registries:
oss:
enabled: false
enabled: true
cloud:
enabled: false
connectorBuildOptions:
@@ -15,13 +15,13 @@ data:
connectorSubtype: api
connectorType: source
definitionId: 1a3d38e4-dc6b-4154-b56b-582f9e978ecd
dockerImageTag: 0.1.0
dockerImageTag: 0.2.0
dockerRepository: airbyte/source-todoist
githubIssueLabel: source-todoist
icon: todoist.svg
license: MIT
name: Todoist
releaseDate: TODO
releaseDate: 2023-12-10
releaseStage: alpha
supportLevel: community
documentationUrl: https://docs.airbyte.com/integrations/sources/todoist
3 changes: 1 addition & 2 deletions airbyte-integrations/connectors/source-todoist/setup.py
Original file line number Diff line number Diff line change
@@ -6,14 +6,13 @@
from setuptools import find_packages, setup

MAIN_REQUIREMENTS = [
"airbyte-cdk~=0.1",
"airbyte-cdk",
]

TEST_REQUIREMENTS = [
"requests-mock~=1.9.3",
"pytest~=6.2",
"pytest-mock~=3.6.1",
"connector-acceptance-test",
]

setup(
Original file line number Diff line number Diff line change
@@ -36,7 +36,6 @@ definitions:
$parameters:
path: "/projects"


streams:
- "#/definitions/tasks_stream"
- "#/definitions/projects_stream"
@@ -59,4 +58,5 @@ spec:
properties:
token:
type: string
description: API authorization bearer token for authenticating the API
description: API authorization bearer token for authenticating the API
airbyte_secret: true
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "http://json-schema.org/schema#",
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": true,
"type": "object",
"properties": {
@@ -79,4 +79,4 @@
"type": ["null", "string"]
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": true,
"type": "object",
"properties": {
"assignee_id": {
"type": ["null", "string"]
},
"assigner_id": {
"type": ["null", "string"]
},
"comment_count": {
"type": ["null", "integer"]
},
"content": {
"type": ["null", "string"]
},
"created_at": {
"type": ["null", "string"]
},
"creator_id": {
"type": ["null", "string"]
},
"description": {
"type": ["null", "string"]
},
"due": {
"anyOf": [
{
"type": ["null", "object"]
},
{
"properties": {
"date": {
"type": ["null", "string"]
},
"is_recurring": {
"type": ["null", "boolean"]
},
"lang": {
"type": ["null", "string"]
},
"string": {
"type": ["null", "string"]
}
},
"type": ["null", "object"]
}
]
},
"id": {
"type": ["null", "string"]
},
"duration": {
"type": ["null", "string"]
},
"is_completed": {
"type": ["null", "boolean"]
},
"labels": {
"type": ["null", "array"],
"items": {
"type": ["null", "string"]
}
},
"order": {
"type": ["null", "integer"]
},
"parent_id": {
"type": ["null", "string"]
},
"priority": {
"type": ["null", "integer"]
},
"project_id": {
"type": ["null", "string"]
},
"section_id": {
"type": ["null", "string"]
},
"url": {
"type": ["null", "string"]
}
}
}
3 changes: 2 additions & 1 deletion docs/integrations/sources/todoist.md
Original file line number Diff line number Diff line change
@@ -44,4 +44,5 @@ List of available streams:

| Version | Date | Pull Request | Subject |
|:--------|:-----------|:-----------------------------------------------------------|:------------------------------------------------|
| 0.1.0 | 2022-12-03 | [20046](https://github.com/airbytehq/airbyte/pull/20046) | 🎉 New Source: todoist |
| 0.2.0 | 2023-12-19 | [32690](https://github.com/airbytehq/airbyte/pull/32690) | Migrate to low-code |
| 0.1.0 | 2022-12-03 | [20046](https://github.com/airbytehq/airbyte/pull/20046) | 🎉 New Source: todoist |