Skip to content

Commit

Permalink
Update fields in source-connectors specifications: freshservice (airb…
Browse files Browse the repository at this point in the history
  • Loading branch information
ycherniaiev authored Jan 5, 2022
1 parent de56d47 commit 680e74c
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 13 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ data
.settings
**/gmon.out
static_checker_reports/
.vscode

# Logs
acceptance_tests_logs/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
13 changes: 7 additions & 6 deletions airbyte-config/init/src/main/resources/seed/source_specs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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 <a href=\"https://api.freshservice.com/#authentication\"\
description: "Freshservice API Key. See <a href=\"https://api.freshservice.com/#authentication\"\
>here</a>. 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."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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 <a href=\"https://api.freshservice.com/#authentication\">here</a>. The key is case sensitive.",
"description": "Freshservice API Key. See <a href=\"https://api.freshservice.com/#authentication\">here</a>. 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"],
Expand Down
1 change: 1 addition & 0 deletions docs/integrations/sources/freshservice.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |

0 comments on commit 680e74c

Please sign in to comment.