* Source Quickbooks: migrate to low-code * Source Quickbooks: add oauth flow * #24658 Lowcode CDK: implement single use refresh token oauth authenticator * #23498 source Quickbooks: set up CATs * #24658 lowcode cdk: review fixes * upd manifest version + airbyte cdk version * delete source-quickbooks-singer along with seed * Automated Change * update docs and spec.json * revert data type map in docs * Automated Change * quickbooks: review fixes * quickbooks: more review fixes * quickbooks: modify spec * quickbooks: rename icon * quickbooks: generate definitions --------- Co-authored-by: Denys Davydov <davydov.den18@gmail.com> Co-authored-by: davydov-d <davydov-d@users.noreply.github.com>
19 lines
479 B
Python
19 lines
479 B
Python
#
|
|
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
|
|
#
|
|
|
|
from airbyte_cdk.sources.declarative.yaml_declarative_source import YamlDeclarativeSource
|
|
|
|
"""
|
|
This file provides the necessary constructs to interpret a provided declarative YAML configuration file into
|
|
source connector.
|
|
|
|
WARNING: Do not modify this file.
|
|
"""
|
|
|
|
|
|
# Declarative Source
|
|
class SourceQuickbooks(YamlDeclarativeSource):
|
|
def __init__(self):
|
|
super().__init__(**{"path_to_yaml": "manifest.yaml"})
|