1
0
mirror of synced 2026-01-08 21:05:13 -05:00
Files
airbyte/airbyte-integrations/connectors/source-merge/source_merge/source.py
btkcodedev 0f476cf4b3 🎉 New Source: Merge [Low code CDK] (#25342)
* Initial commit

* add pagination

* add streams activites, applications, attachments, candidates, departments

* add schemas and stream manifest for eeocs, interviews, offers, offices, jobs, job-interview-stages

* Update spec.yaml

* fix test

* add uuid for merge connector

* update job interview stages

* remove seed files unused

* auto-bump connector version

---------

Co-authored-by: marcosmarxm <marcosmarxm@gmail.com>
Co-authored-by: Marcos Marx <marcosmarxm@users.noreply.github.com>
Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
2023-05-01 15:03:10 -03:00

19 lines
474 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 SourceMerge(YamlDeclarativeSource):
def __init__(self):
super().__init__(**{"path_to_yaml": "manifest.yaml"})