diff --git a/airbyte-integrations/connector-templates/source-configuration-based/setup.py.hbs b/airbyte-integrations/connector-templates/source-configuration-based/setup.py.hbs index de23ef7a33a68..49b54192a86ec 100644 --- a/airbyte-integrations/connector-templates/source-configuration-based/setup.py.hbs +++ b/airbyte-integrations/connector-templates/source-configuration-based/setup.py.hbs @@ -6,7 +6,7 @@ from setuptools import find_packages, setup MAIN_REQUIREMENTS = [ - "airbyte-cdk~=0.1.68", + "airbyte-cdk~=0.1.72", ] TEST_REQUIREMENTS = [ diff --git a/airbyte-integrations/connector-templates/source-configuration-based/source_{{snakeCase name}}/{{snakeCase name}}.yaml.hbs b/airbyte-integrations/connector-templates/source-configuration-based/source_{{snakeCase name}}/{{snakeCase name}}.yaml.hbs index 3ca79159242e4..6f8433d720263 100644 --- a/airbyte-integrations/connector-templates/source-configuration-based/source_{{snakeCase name}}/{{snakeCase name}}.yaml.hbs +++ b/airbyte-integrations/connector-templates/source-configuration-based/source_{{snakeCase name}}/{{snakeCase name}}.yaml.hbs @@ -11,7 +11,7 @@ requester: name: "\{{ options['name'] }}" http_method: "GET" authenticator: - type: ApiKeyAuthenticator + type: BearerAuthenticator api_token: "\{{ config['api_key'] }}" retriever: type: SimpleRetriever @@ -39,4 +39,4 @@ streams: - "*ref(customers_stream)" check: type: CheckStream - stream_names: ["customers_stream"] + stream_names: ["customers"]