1
0
mirror of synced 2025-12-25 02:09:19 -05:00

Source Gong: Make Connector Compatible with Builder (#38596)

Co-authored-by: Alexandre Girard <alexandre@airbyte.io>
This commit is contained in:
btkcodedev
2024-05-29 01:21:47 +05:30
committed by GitHub
parent 44dea5a8e8
commit a44d5fc375
6 changed files with 591 additions and 513 deletions

View File

@@ -7,7 +7,7 @@ data:
connectorSubtype: api
connectorType: source
definitionId: 32382e40-3b49-4b99-9c5c-4076501914e7
dockerImageTag: 0.1.5
dockerImageTag: 0.1.6
dockerRepository: airbyte/source-gong
documentationUrl: https://docs.airbyte.com/integrations/sources/gong
githubIssueLabel: source-gong

View File

@@ -3,7 +3,7 @@ requires = [ "poetry-core>=1.0.0",]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
version = "0.1.5"
version = "0.1.6"
name = "source-gong"
description = "Source implementation for Gong."
authors = [ "Elliot Trabac <elliot.trabac1@gmail.com>",]

View File

@@ -1,29 +0,0 @@
documentationUrl: https://docs.airbyte.com/integrations/sources/gong
connectionSpecification:
$schema: http://json-schema.org/draft-07/schema#
title: Gong Spec
type: object
required:
- access_key
- access_key_secret
additionalProperties: true
properties:
access_key:
type: string
title: Gong Access Key
description: Gong Access Key
airbyte_secret: true
access_key_secret:
type: string
title: Gong Access Key Secret
description: Gong Access Key Secret
airbyte_secret: true
start_date:
type: string
title: Start date
pattern: ^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$
description: >-
The date from which to list calls, in the ISO-8601 format; if not specified, the calls start with the earliest recorded call.
For web-conference calls recorded by Gong, the date denotes its scheduled time, otherwise, it denotes its actual start time.
examples:
- "2018-02-18T08:00:00Z"

View File

@@ -36,6 +36,7 @@ By default Gong limits your company's access to the service to 3 API calls per s
| Version | Date | Pull Request | Subject |
| :------ | :--------- | :------------------------------------------------------- | :------------------------------------------------------------------------------ |
| 0.1.6 | 2024-05-28 | [38596](https://github.com/airbytehq/airbyte/pull/38596) | Make connector compatible with builder |
| 0.1.5 | 2024-04-19 | [37169](https://github.com/airbytehq/airbyte/pull/37169) | Updating to 0.80.0 CDK |
| 0.1.4 | 2024-04-18 | [37169](https://github.com/airbytehq/airbyte/pull/37169) | Manage dependencies with Poetry. |
| 0.1.3 | 2024-04-15 | [37169](https://github.com/airbytehq/airbyte/pull/37169) | Base image migration: remove Dockerfile and use the python-connector-base image |