1
0
mirror of synced 2026-01-08 12:03:02 -05:00
Files
airbyte/airbyte-integrations/connectors/source-quickbooks/source_quickbooks/source.py
Roman Yermilov [GL] a992167f90 Source Quickbooks: migrate to low-code (#24324)
* 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>
2023-04-11 08:52:00 +03:00

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"})