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

generate definitions for source-retently #20568

Merged
merged 1 commit into from
Dec 16, 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
Original file line number Diff line number Diff line change
Expand Up @@ -1379,7 +1379,7 @@
- name: Retently
sourceDefinitionId: db04ecd1-42e7-4115-9cec-95812905c626
dockerRepository: airbyte/source-retently
dockerImageTag: 0.1.2
dockerImageTag: 0.1.3
documentationUrl: https://docs.airbyte.com/integrations/sources/retently
icon: retently.svg
sourceType: api
Expand Down
18 changes: 6 additions & 12 deletions airbyte-config/init/src/main/resources/seed/source_specs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12262,7 +12262,7 @@
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-retently:0.1.2"
- dockerImage: "airbyte/source-retently:0.1.3"
spec:
documentationUrl: "https://docsurl.com"
connectionSpecification:
Expand All @@ -12282,14 +12282,11 @@
- "client_id"
- "client_secret"
- "refresh_token"
additionalProperties: false
additionalProperties: true
properties:
auth_type:
type: "string"
const: "Client"
enum:
- "Client"
default: "Client"
order: 0
client_id:
title: "Client ID"
Expand All @@ -12310,14 +12307,11 @@
title: "Authenticate with API Token"
required:
- "api_key"
additionalProperties: false
additionalProperties: true
properties:
auth_type:
type: "string"
const: "Token"
enum:
- "Token"
default: "Token"
order: 0
api_key:
title: "API Token"
Expand All @@ -12337,7 +12331,7 @@
oauth_config_specification:
complete_oauth_output_specification:
type: "object"
additionalProperties: false
additionalProperties: true
properties:
refresh_token:
type: "string"
Expand All @@ -12346,15 +12340,15 @@
- "refresh_token"
complete_oauth_server_input_specification:
type: "object"
additionalProperties: false
additionalProperties: true
properties:
client_id:
type: "string"
client_secret:
type: "string"
complete_oauth_server_output_specification:
type: "object"
additionalProperties: false
additionalProperties: true
properties:
client_id:
type: "string"
Expand Down