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

Publishing new source: Outreach #8181

Merged
merged 4 commits into from
Nov 23, 2021
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 @@ -400,6 +400,12 @@
dockerImageTag: 0.3.8
documentationUrl: https://docs.airbyte.io/integrations/sources/oracle
sourceType: database
- sourceDefinitionId: 3490c201-5d95-4783-b600-eaf07a4c7787
name: Outreach
dockerRepository: airbyte/source-outreach
dockerImageTag: 0.1.0
documentationUrl: https://docs.airbyte.io/integrations/sources/outreach
sourceType: api
- name: Paypal Transaction
sourceDefinitionId: d913b0f2-cc51-4e55-a44c-8ba1697b9239
dockerRepository: airbyte/source-paypal-transaction
Expand Down
40 changes: 40 additions & 0 deletions airbyte-config/init/src/main/resources/seed/source_specs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4349,6 +4349,46 @@
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-outreach:0.1.0"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/outreach"
connectionSpecification:
$schema: "http://json-schema.org/draft-07/schema#"
title: "Source Outreach Spec"
type: "object"
required:
- "client_id"
- "client_secret"
- "refresh_token"
- "redirect_uri"
- "start_date"
additionalProperties: false
properties:
client_id:
type: "string"
description: "Outreach client id."
client_secret:
type: "string"
description: "Outreach client secret."
airbyte_secret: true
refresh_token:
type: "string"
description: "Outreach refresh token."
airbyte_secret: true
redirect_uri:
type: "string"
description: "Outreach redirect URI."
start_date:
type: "string"
description: "The date from which you'd like to replicate data for Outreach\
\ API, in the format YYYY-MM-DDT00:00:00Z. All data generated after this\
\ date will be replicated."
examples:
- "2020-11-16T00:00:00Z"
pattern: "^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}Z$"
supportsNormalization: false
supportsDBT: false
supported_destination_sync_modes: []
- dockerImage: "airbyte/source-paypal-transaction:0.1.2"
spec:
documentationUrl: "https://docs.airbyte.io/integrations/sources/paypal-transactions"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,15 @@ tests:
status: "failed"
discovery:
- config_path: "secrets/config.json"
basic_read:
- config_path: "secrets/config.json"
configured_catalog_path: "integration_tests/configured_catalog.json"
empty_streams: []
incremental:
- config_path: "secrets/config.json"
configured_catalog_path: "integration_tests/configured_catalog.json"
future_state_path: "integration_tests/abnormal_state.json"
# https://github.com/airbytehq/airbyte/issues/8180
# basic_read:
# - config_path: "secrets/config.json"
# configured_catalog_path: "integration_tests/configured_catalog.json"
# empty_streams: []
# incremental:
# - config_path: "secrets/config.json"
# configured_catalog_path: "integration_tests/configured_catalog.json"
# future_state_path: "integration_tests/abnormal_state.json"
full_refresh:
- config_path: "secrets/config.json"
configured_catalog_path: "integration_tests/configured_catalog.json"
1 change: 1 addition & 0 deletions tools/bin/ci_credentials.sh
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,7 @@ read_secrets source-mssql "$MSSQL_RDS_TEST_CREDS"
read_secrets source-notion "$SOURCE_NOTION_TEST_CREDS"
read_secrets source-okta "$SOURCE_OKTA_TEST_CREDS"
read_secrets source-onesignal "$SOURCE_ONESIGNAL_TEST_CREDS"
read_secrets source-outreach "$SOURCE_OUTREACH_TEST_CREDS"
read_secrets source-plaid "$PLAID_INTEGRATION_TEST_CREDS"
read_secrets source-paypal-transaction "$PAYPAL_TRANSACTION_CREDS"
read_secrets source-pinterest "$PINTEREST_TEST_CREDS"
Expand Down