Skip to content

Commit 680e74c

Browse files
authored
Update fields in source-connectors specifications: freshservice (#9143)
1 parent de56d47 commit 680e74c

File tree

6 files changed

+17
-13
lines changed

6 files changed

+17
-13
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ data
1212
.settings
1313
**/gmon.out
1414
static_checker_reports/
15+
.vscode
1516

1617
# Logs
1718
acceptance_tests_logs/

airbyte-config/init/src/main/resources/seed/source_definitions.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@
210210
- name: Freshservice
211211
sourceDefinitionId: 9bb85338-ea95-4c93-b267-6be89125b267
212212
dockerRepository: airbyte/source-freshservice
213-
dockerImageTag: 0.1.0
213+
dockerImageTag: 0.1.1
214214
documentationUrl: https://docs.airbyte.io/integrations/sources/freshservice
215215
icon: freshdesk.svg
216216
sourceType: api

airbyte-config/init/src/main/resources/seed/source_specs.yaml

+7-6
Original file line numberDiff line numberDiff line change
@@ -1947,9 +1947,9 @@
19471947
supportsNormalization: false
19481948
supportsDBT: false
19491949
supported_destination_sync_modes: []
1950-
- dockerImage: "airbyte/source-freshservice:0.1.0"
1950+
- dockerImage: "airbyte/source-freshservice:0.1.1"
19511951
spec:
1952-
documentationUrl: "https://hub.docker.com/r/airbyte/source-freshservice"
1952+
documentationUrl: "https://docs.airbyte.io/integrations/sources/freshservice"
19531953
connectionSpecification:
19541954
$schema: "http://json-schema.org/draft-07/schema#"
19551955
title: "Freshservice Spec"
@@ -1962,17 +1962,18 @@
19621962
properties:
19631963
domain_name:
19641964
type: "string"
1965-
description: "Freshservice domain"
1965+
title: "Domain Name"
1966+
description: "The name of your Freshservice domain"
19661967
examples:
19671968
- "mydomain.freshservice.com"
19681969
api_key:
1969-
title: "Api Key"
1970+
title: "API Key"
19701971
type: "string"
1971-
description: "Your API Access Key. See <a href=\"https://api.freshservice.com/#authentication\"\
1972+
description: "Freshservice API Key. See <a href=\"https://api.freshservice.com/#authentication\"\
19721973
>here</a>. The key is case sensitive."
19731974
airbyte_secret: true
19741975
start_date:
1975-
title: "Replication Start Date"
1976+
title: "Start Date"
19761977
type: "string"
19771978
description: "UTC date and time in the format 2020-10-01T00:00:00Z. Any\
19781979
\ data before this date will not be replicated."

airbyte-integrations/connectors/source-freshservice/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ RUN pip install .
1212
ENV AIRBYTE_ENTRYPOINT "python /airbyte/integration_code/main.py"
1313
ENTRYPOINT ["python", "/airbyte/integration_code/main.py"]
1414

15-
LABEL io.airbyte.version=0.1.0
15+
LABEL io.airbyte.version=0.1.1
1616
LABEL io.airbyte.name=airbyte/source-freshservice

airbyte-integrations/connectors/source-freshservice/source_freshservice/spec.json

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"documentationUrl": "https://hub.docker.com/r/airbyte/source-freshservice",
2+
"documentationUrl": "https://docs.airbyte.io/integrations/sources/freshservice",
33
"connectionSpecification": {
44
"$schema": "http://json-schema.org/draft-07/schema#",
55
"title": "Freshservice Spec",
@@ -9,17 +9,18 @@
99
"properties": {
1010
"domain_name": {
1111
"type": "string",
12-
"description": "Freshservice domain",
12+
"title": "Domain Name",
13+
"description": "The name of your Freshservice domain",
1314
"examples": ["mydomain.freshservice.com"]
1415
},
1516
"api_key": {
16-
"title": "Api Key",
17+
"title": "API Key",
1718
"type": "string",
18-
"description": "Your API Access Key. See <a href=\"https://api.freshservice.com/#authentication\">here</a>. The key is case sensitive.",
19+
"description": "Freshservice API Key. See <a href=\"https://api.freshservice.com/#authentication\">here</a>. The key is case sensitive.",
1920
"airbyte_secret": true
2021
},
2122
"start_date": {
22-
"title": "Replication Start Date",
23+
"title": "Start Date",
2324
"type": "string",
2425
"description": "UTC date and time in the format 2020-10-01T00:00:00Z. Any data before this date will not be replicated.",
2526
"examples": ["2020-10-01T00:00:00Z"],

docs/integrations/sources/freshservice.md

+1
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,5 @@ Please read [How to find your API key](https://api.freshservice.com/#authenticat
5353

5454
| Version | Date | Pull Request | Subject |
5555
| :--- | :--- | :--- | :--- |
56+
| 0.1.1 | 2021-12-28 | [9143](https://github.com/airbytehq/airbyte/pull/9143) | Update titles and descriptions |
5657
| 0.1.0 | 2021-10-29 | [6967](https://github.com/airbytehq/airbyte/pull/6967) | 🎉 New Source: Freshservice |

0 commit comments

Comments
 (0)