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

Update fields in source-connectors specifications: freshservice #9143

Merged
merged 5 commits into from
Jan 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
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
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 |