Skip to content

Commit

Permalink
🐛 Source Zenloop: re-add missing seed files (airbytehq#8299)
Browse files Browse the repository at this point in the history
  • Loading branch information
alafanechere authored Dec 2, 2021
1 parent 1160580 commit 9a54c4d
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -725,6 +725,12 @@
documentationUrl: https://docs.airbyte.io/integrations/sources/zendesk-talk
icon: zendesk.svg
sourceType: api
- name: Zenloop
sourceDefinitionId: f1e4c7f6-db5c-4035-981f-d35ab4998794
dockerRepository: airbyte/source-zenloop
dockerImageTag: 0.1.1
documentationUrl: https://docs.airbyte.io/integrations/sources/zenloop
sourceType: api
- sourceDefinitionId: cdaf146a-9b75-49fd-9dd2-9d64a0bb4781
name: Sentry
dockerRepository: airbyte/source-sentry
Expand Down
36 changes: 36 additions & 0 deletions airbyte-config/init/src/main/resources/seed/source_specs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6496,6 +6496,42 @@
supportsDBT: false
supported_destination_sync_modes:
- "append"
- dockerImage: "airbyte/source-zenloop:0.1.1"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/zenloop"
connectionSpecification:
$schema: "http://json-schema.org/draft-07/schema#"
title: "Zenloop Spec"
type: "object"
required:
- "api_token"
additionalProperties: false
properties:
api_token:
type: "string"
description: "Zenloop API Token. You can get the API token in settings page\
\ <a href=\"https://app.zenloop.com/settings/api\">here</a> "
airbyte_secret: true
date_from:
type: "string"
description: "Zenloop date_from. Format: 2021-10-24T03:30:30Z or 2021-10-24.\
\ Leave empty if only data from current data should be synced"
examples:
- "2021-10-24T03:30:30Z"
survey_id:
type: "string"
description: "Zenloop Survey ID. Can be found <a href=\"https://app.zenloop.com/settings/api\"\
>here</a>. Leave empty to pull answers from all surveys"
airbyte_secret: true
survey_group_id:
type: "string"
description: "Zenloop Survey Group ID. Can be found by pulling All Survey\
\ Groups via SurveyGroups stream. Leave empty to pull answers from all\
\ survey groups"
airbyte_secret: true
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-sentry:0.1.0"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/sentry"
Expand Down
2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-zenloop/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ COPY source_zenloop ./source_zenloop
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]

LABEL io.airbyte.version=0.1.0
LABEL io.airbyte.version=0.1.1
LABEL io.airbyte.name=airbyte/source-zenloop
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"documentationUrl": "https://docsurl.com",
"documentationUrl": "https://docs.airbyte.io/integrations/sources/zenloop",
"connectionSpecification": {
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Zenloop Spec",
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/sources/zenloop.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,5 @@ Please register on Zenloop and retrieve your API token [here](https://app.zenloo

| Version | Date | Pull Request | Subject |
| :--- | :--- | :--- | :--- |
| 0.1.1 | 2021-10-26 | [8299](https://github.com/airbytehq/airbyte/pull/8299) | Fix missing seed files |
| 0.1.0 | 2021-10-26 | [7380](https://github.com/airbytehq/airbyte/pull/7380) | Initial Release |

0 comments on commit 9a54c4d

Please sign in to comment.