From 529ff1ac34e8f7a6be9d10f259542d2f9de1db2a Mon Sep 17 00:00:00 2001 From: Joe Reuter Date: Mon, 5 Feb 2024 17:30:17 +0100 Subject: [PATCH] Source Gong: Adjust schemas (#34847) --- airbyte-integrations/connectors/source-gong/Dockerfile | 2 +- airbyte-integrations/connectors/source-gong/metadata.yaml | 2 +- .../connectors/source-gong/source_gong/schemas/calls.json | 3 +++ .../connectors/source-gong/source_gong/schemas/users.json | 3 +++ docs/integrations/sources/gong.md | 1 + 5 files changed, 9 insertions(+), 2 deletions(-) diff --git a/airbyte-integrations/connectors/source-gong/Dockerfile b/airbyte-integrations/connectors/source-gong/Dockerfile index 8c90d307427e..40e34b1cfb0d 100644 --- a/airbyte-integrations/connectors/source-gong/Dockerfile +++ b/airbyte-integrations/connectors/source-gong/Dockerfile @@ -34,5 +34,5 @@ COPY source_gong ./source_gong 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-gong diff --git a/airbyte-integrations/connectors/source-gong/metadata.yaml b/airbyte-integrations/connectors/source-gong/metadata.yaml index 42fb73e25f10..dd82f25883b3 100644 --- a/airbyte-integrations/connectors/source-gong/metadata.yaml +++ b/airbyte-integrations/connectors/source-gong/metadata.yaml @@ -2,7 +2,7 @@ data: connectorSubtype: api connectorType: source definitionId: 32382e40-3b49-4b99-9c5c-4076501914e7 - dockerImageTag: 0.1.0 + dockerImageTag: 0.1.1 dockerRepository: airbyte/source-gong githubIssueLabel: source-gong icon: gong.svg diff --git a/airbyte-integrations/connectors/source-gong/source_gong/schemas/calls.json b/airbyte-integrations/connectors/source-gong/source_gong/schemas/calls.json index d2488ac806f5..a8b5b7e3e7cb 100644 --- a/airbyte-integrations/connectors/source-gong/source_gong/schemas/calls.json +++ b/airbyte-integrations/connectors/source-gong/source_gong/schemas/calls.json @@ -60,6 +60,9 @@ }, "isPrivate": { "type": ["null", "boolean"] + }, + "calendarEventId": { + "type": ["null", "string"] } } } diff --git a/airbyte-integrations/connectors/source-gong/source_gong/schemas/users.json b/airbyte-integrations/connectors/source-gong/source_gong/schemas/users.json index f23814c77c14..726bec44117c 100644 --- a/airbyte-integrations/connectors/source-gong/source_gong/schemas/users.json +++ b/airbyte-integrations/connectors/source-gong/source_gong/schemas/users.json @@ -8,6 +8,9 @@ "emailAddress": { "type": ["null", "string"] }, + "trustedEmailAddress": { + "type": ["null", "string"] + }, "created": { "type": ["null", "string"], "format": "date-time" diff --git a/docs/integrations/sources/gong.md b/docs/integrations/sources/gong.md index c01ca9482657..04aeb7da4ff2 100644 --- a/docs/integrations/sources/gong.md +++ b/docs/integrations/sources/gong.md @@ -36,4 +36,5 @@ By default Gong limits your company's access to the service to 3 API calls per s | Version | Date | Pull Request | Subject | | :------ | :--------- | :------------------------------------------------------- | :------------------------ | +| 0.1.1 | 2024-02-05 | [34847](https://github.com/airbytehq/airbyte/pull/34847) | Adjust stream schemas and make ready for airbyte-lib | | 0.1.0 | 2022-10-27 | [18819](https://github.com/airbytehq/airbyte/pull/18819) | Add Gong Source Connector |