From 680e74cee9111fd36046a5c061570419396f7de5 Mon Sep 17 00:00:00 2001 From: ycherniaiev <94798230+ycherniaiev@users.noreply.github.com> Date: Wed, 5 Jan 2022 13:45:08 +0200 Subject: [PATCH] Update fields in source-connectors specifications: freshservice (#9143) --- .gitignore | 1 + .../src/main/resources/seed/source_definitions.yaml | 2 +- .../init/src/main/resources/seed/source_specs.yaml | 13 +++++++------ .../connectors/source-freshservice/Dockerfile | 2 +- .../source_freshservice/spec.json | 11 ++++++----- docs/integrations/sources/freshservice.md | 1 + 6 files changed, 17 insertions(+), 13 deletions(-) diff --git a/.gitignore b/.gitignore index 17b544c1d7e2..bacf3dc141f8 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,7 @@ data .settings **/gmon.out static_checker_reports/ +.vscode # Logs acceptance_tests_logs/ diff --git a/airbyte-config/init/src/main/resources/seed/source_definitions.yaml b/airbyte-config/init/src/main/resources/seed/source_definitions.yaml index 973f9fdee9f1..7a288e95b2d9 100644 --- a/airbyte-config/init/src/main/resources/seed/source_definitions.yaml +++ b/airbyte-config/init/src/main/resources/seed/source_definitions.yaml @@ -210,7 +210,7 @@ - name: Freshservice sourceDefinitionId: 9bb85338-ea95-4c93-b267-6be89125b267 dockerRepository: airbyte/source-freshservice - dockerImageTag: 0.1.0 + dockerImageTag: 0.1.1 documentationUrl: https://docs.airbyte.io/integrations/sources/freshservice icon: freshdesk.svg sourceType: api diff --git a/airbyte-config/init/src/main/resources/seed/source_specs.yaml b/airbyte-config/init/src/main/resources/seed/source_specs.yaml index 0195aa75a728..696cdec25608 100644 --- a/airbyte-config/init/src/main/resources/seed/source_specs.yaml +++ b/airbyte-config/init/src/main/resources/seed/source_specs.yaml @@ -1947,9 +1947,9 @@ supportsNormalization: false supportsDBT: false supported_destination_sync_modes: [] -- dockerImage: "airbyte/source-freshservice:0.1.0" +- dockerImage: "airbyte/source-freshservice:0.1.1" spec: - documentationUrl: "https://hub.docker.com/r/airbyte/source-freshservice" + documentationUrl: "https://docs.airbyte.io/integrations/sources/freshservice" connectionSpecification: $schema: "http://json-schema.org/draft-07/schema#" title: "Freshservice Spec" @@ -1962,17 +1962,18 @@ properties: domain_name: type: "string" - description: "Freshservice domain" + title: "Domain Name" + description: "The name of your Freshservice domain" examples: - "mydomain.freshservice.com" api_key: - title: "Api Key" + title: "API Key" type: "string" - description: "Your API Access Key. See here. The key is case sensitive." airbyte_secret: true start_date: - title: "Replication Start Date" + title: "Start Date" type: "string" description: "UTC date and time in the format 2020-10-01T00:00:00Z. Any\ \ data before this date will not be replicated." diff --git a/airbyte-integrations/connectors/source-freshservice/Dockerfile b/airbyte-integrations/connectors/source-freshservice/Dockerfile index 0d92e17cda09..857bf236df89 100644 --- a/airbyte-integrations/connectors/source-freshservice/Dockerfile +++ b/airbyte-integrations/connectors/source-freshservice/Dockerfile @@ -12,5 +12,5 @@ RUN pip install . 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-freshservice diff --git a/airbyte-integrations/connectors/source-freshservice/source_freshservice/spec.json b/airbyte-integrations/connectors/source-freshservice/source_freshservice/spec.json index 3bd93bc087c0..05f99811d50b 100644 --- a/airbyte-integrations/connectors/source-freshservice/source_freshservice/spec.json +++ b/airbyte-integrations/connectors/source-freshservice/source_freshservice/spec.json @@ -1,5 +1,5 @@ { - "documentationUrl": "https://hub.docker.com/r/airbyte/source-freshservice", + "documentationUrl": "https://docs.airbyte.io/integrations/sources/freshservice", "connectionSpecification": { "$schema": "http://json-schema.org/draft-07/schema#", "title": "Freshservice Spec", @@ -9,17 +9,18 @@ "properties": { "domain_name": { "type": "string", - "description": "Freshservice domain", + "title": "Domain Name", + "description": "The name of your Freshservice domain", "examples": ["mydomain.freshservice.com"] }, "api_key": { - "title": "Api Key", + "title": "API Key", "type": "string", - "description": "Your API Access Key. See here. The key is case sensitive.", + "description": "Freshservice API Key. See here. The key is case sensitive.", "airbyte_secret": true }, "start_date": { - "title": "Replication Start Date", + "title": "Start Date", "type": "string", "description": "UTC date and time in the format 2020-10-01T00:00:00Z. Any data before this date will not be replicated.", "examples": ["2020-10-01T00:00:00Z"], diff --git a/docs/integrations/sources/freshservice.md b/docs/integrations/sources/freshservice.md index 10b908c43a23..0133f3244a3d 100644 --- a/docs/integrations/sources/freshservice.md +++ b/docs/integrations/sources/freshservice.md @@ -53,4 +53,5 @@ Please read [How to find your API key](https://api.freshservice.com/#authenticat | Version | Date | Pull Request | Subject | | :--- | :--- | :--- | :--- | +| 0.1.1 | 2021-12-28 | [9143](https://github.com/airbytehq/airbyte/pull/9143) | Update titles and descriptions | | 0.1.0 | 2021-10-29 | [6967](https://github.com/airbytehq/airbyte/pull/6967) | 🎉 New Source: Freshservice |