├── .docker-cache └── .keep ├── .dockerignore ├── .github ├── ISSUE_TEMPLATE │ └── request-new-connector-form.yaml ├── actions │ ├── deploy │ │ └── action.yaml │ └── setup │ │ └── action.yaml ├── pull_request_template.md └── workflows │ ├── ci.yaml │ ├── estuary-cdk.yaml │ └── python.yaml ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── LICENSE-APACHE ├── LICENSE-BSL ├── LICENSE-MIT ├── README.md ├── base-image ├── Dockerfile └── VERSION ├── config_schema_guidelines.md ├── connector-variant.Dockerfile ├── docs ├── README.md ├── feature_flags.md ├── inbound_networking.md └── materialize │ └── README.md ├── estuary-cdk ├── README.md ├── common.Dockerfile ├── estuary_cdk │ ├── __init__.py │ ├── async_streams.py │ ├── buffer_ordered.py │ ├── capture │ │ ├── __init__.py │ │ ├── base_capture_connector.py │ │ ├── common.py │ │ ├── connector_status.py │ │ ├── request.py │ │ ├── response.py │ │ └── task.py │ ├── cron.py │ ├── emitted_changes_cache.py │ ├── flow.py │ ├── gunzip_stream.py │ ├── http.py │ ├── incremental_csv_processor.py │ ├── incremental_json_processor.py │ ├── logger.py │ ├── py.typed │ ├── pydantic_polyfill.py │ ├── requests_session_send_patch.py │ ├── shim_airbyte_cdk.py │ ├── unzip_stream.py │ └── utils.py ├── importing_airbyte_source_connectors.md ├── poetry.lock ├── pyproject.toml └── tests │ ├── __init__.py │ ├── test_airbyte_cdk.py │ ├── test_async_streams.py │ ├── test_buffer_ordered.py │ ├── test_cron_regex.py │ ├── test_emitted_changes_cache.py │ ├── test_gunzip_stream.py │ ├── test_incremental_csv_processor.py │ ├── test_incremental_json_processor.py │ └── test_unzip_stream.py ├── fetch-flow.sh ├── filesink ├── filesink.go ├── filesink_test.go ├── format.go └── store.go ├── filesource ├── filesource.go ├── filesource_test.go ├── state.go └── state_test.go ├── go.mod ├── go.sum ├── go ├── auth │ ├── google │ │ ├── .snapshots │ │ │ └── TestConfigSchema │ │ ├── config.go │ │ ├── config_test.go │ │ └── spec.go │ ├── iam │ │ └── config.go │ └── snowflake │ │ ├── .snapshots │ │ └── TestConfigSchema │ │ ├── config.go │ │ └── config_test.go ├── blob │ ├── azure.go │ ├── bucket.go │ ├── bucket_test.go │ ├── gcs.go │ └── s3.go ├── common │ ├── feature_flags.go │ └── slog_logrus_handler.go ├── connector-errors │ └── errors.go ├── dbt │ └── trigger.go ├── encrow │ ├── encrow.go │ └── encrow_test.go ├── materialize │ ├── .snapshots │ │ └── TestScheduleConfigSchema │ ├── lifecycle.go │ ├── logging.go │ ├── logging_test.go │ ├── op_future.go │ ├── schedule_config.go │ ├── schedule_config_test.go │ ├── transactions_stream.go │ ├── transactor.go │ ├── validate.go │ └── validate_test.go ├── mysql │ └── jsonpath │ │ ├── .gitignore │ │ ├── jsonpath.go │ │ ├── jsonpath.y │ │ ├── parser.go │ │ └── parser_test.go ├── network-tunnel │ ├── interface.go │ └── network_tunnel.go ├── schedule │ ├── schedule.go │ ├── schedule_test.go │ └── timezone.go ├── schema-gen │ ├── .snapshots │ │ ├── TestGenerateSchema │ │ └── TestOneOfSchema │ ├── generate.go │ ├── generate_test.go │ ├── one_of.go │ └── one_of_test.go └── writer │ ├── .snapshots │ ├── TestCsvWriter-with_headers │ ├── TestCsvWriter-without_headers │ ├── TestJsonWriter │ ├── TestParquetWriter-dictionary_encoding_disabled │ ├── TestParquetWriter-optional_values │ ├── TestParquetWriter-required_values │ └── TestParquetWriter-small_row_groups │ ├── counting_write_closer.go │ ├── csv.go │ ├── csv_test.go │ ├── json.go │ ├── json_test.go │ ├── parquet.go │ ├── parquet_schema.go │ ├── parquet_test.go │ └── test_support.go ├── materialize-azure-blob-parquet ├── .snapshots │ └── TestSpec ├── Dockerfile ├── VERSION ├── main.go └── main_test.go ├── materialize-azure-fabric-warehouse ├── .snapshots │ ├── TestSQLGeneration │ ├── TestSpecification │ ├── TestValidateAndApply │ └── TestValidateAndApplyMigrations ├── Dockerfile ├── VERSION ├── client.go ├── driver.go ├── driver_test.go ├── main.go ├── reserved_words.go ├── sqlgen.go ├── sqlgen_test.go ├── staged_file.go └── transactor.go ├── materialize-bigquery ├── .snapshots │ ├── TestSQLGeneration │ ├── TestSpecification │ ├── TestValidateAndApply │ └── TestValidateAndApplyMigrations ├── CHANGELOG.md ├── Dockerfile ├── README.md ├── VERSION ├── bigquery.go ├── bigquery_test.go ├── binding.go ├── client.go ├── cmd │ └── connector │ │ └── main.go ├── query.go ├── reserved_words.go ├── sqlgen.go ├── sqlgen_test.go ├── staged_file.go └── transactor.go ├── materialize-boilerplate ├── .snapshots │ └── TestValidate ├── apply.go ├── apply_test.go ├── boilerplate.go ├── info_schema.go ├── info_schema_test.go ├── materializer.go ├── materializer_test.go ├── ser_policy.go ├── staged_files.go ├── test_support.go ├── testdata │ ├── apply │ │ ├── _base-collection.flow.yaml │ │ ├── add-new-binding.flow.yaml │ │ ├── add-new-required.flow.yaml │ │ ├── base.flow.yaml │ │ ├── generated_specs │ │ │ ├── add-new-binding.flow.proto │ │ │ ├── add-new-required.flow.proto │ │ │ ├── base.flow.proto │ │ │ ├── make-nullable.flow.proto │ │ │ ├── remove-required.flow.proto │ │ │ └── replace-original-binding.flow.proto │ │ ├── make-nullable.flow.yaml │ │ ├── remove-required.flow.yaml │ │ └── replace-original-binding.flow.yaml │ ├── generate-spec-proto.sh │ ├── materializer │ │ ├── _base-collection.flow.yaml │ │ ├── backfill-key-change.flow.yaml │ │ ├── backfill-key-migratable.flow.yaml │ │ ├── backfill-migratable.flow.yaml │ │ ├── backfill-nullable.flow.yaml │ │ ├── base.flow.yaml │ │ ├── field-addition.flow.yaml │ │ ├── field-removal.flow.yaml │ │ ├── generated_specs │ │ │ ├── backfill-key-change.flow.proto │ │ │ ├── backfill-key-migratable.flow.proto │ │ │ ├── backfill-migratable.flow.proto │ │ │ ├── backfill-nullable.flow.proto │ │ │ ├── base.flow.proto │ │ │ ├── field-addition.flow.proto │ │ │ ├── field-removal.flow.proto │ │ │ ├── incompatible-changes.flow.proto │ │ │ ├── truncate.flow.proto │ │ │ └── updated.flow.proto │ │ ├── incompatible-changes.flow.yaml │ │ ├── truncate.flow.yaml │ │ └── updated.flow.yaml │ ├── validate │ │ ├── alternate-root.flow.yaml │ │ ├── ambiguous-fields-incompatible.flow.yaml │ │ ├── ambiguous-fields.flow.yaml │ │ ├── ambiguous-key.flow.yaml │ │ ├── base.flow.yaml │ │ ├── fewer-fields.flow.yaml │ │ ├── generated_specs │ │ │ ├── alternate-root.flow.proto │ │ │ ├── ambiguous-fields-incompatible.flow.proto │ │ │ ├── ambiguous-fields.flow.proto │ │ │ ├── ambiguous-key.flow.proto │ │ │ ├── base.flow.proto │ │ │ ├── fewer-fields.flow.proto │ │ │ ├── incompatible-changes.flow.proto │ │ │ ├── increment-backfill.flow.proto │ │ │ ├── key-subset.flow.proto │ │ │ ├── long-fields.flow.proto │ │ │ └── nullable-key.flow.proto │ │ ├── incompatible-changes.flow.yaml │ │ ├── increment-backfill.flow.yaml │ │ ├── key-subset.flow.yaml │ │ ├── long-fields.flow.yaml │ │ └── nullable-key.flow.yaml │ └── validate_apply_test_cases │ │ ├── add-and-remove-many.flow.yaml │ │ ├── add-single-optional.flow.yaml │ │ ├── base.flow.yaml │ │ ├── big-schema-changed.flow.yaml │ │ ├── big-schema-nullable.flow.yaml │ │ ├── big-schema.flow.yaml │ │ ├── challenging-fields.flow.yaml │ │ ├── generated_specs │ │ ├── add-and-remove-many.flow.proto │ │ ├── add-single-optional.flow.proto │ │ ├── base.flow.proto │ │ ├── big-schema-changed.flow.proto │ │ ├── big-schema-nullable.flow.proto │ │ ├── big-schema.flow.proto │ │ ├── challenging-fields.flow.proto │ │ ├── remove-single-optional.flow.proto │ │ └── remove-single-required.flow.proto │ │ ├── remove-single-optional.flow.yaml │ │ └── remove-single-required.flow.yaml ├── type_mapping.go ├── validate.go └── validate_test.go ├── materialize-cratedb ├── .snapshots │ ├── TestConfigURI-Basic │ ├── TestConfigURI-IncorrectSSL │ ├── TestConfigURI-RequireSSL │ ├── TestSQLGeneration │ ├── TestSpecification │ ├── TestValidateAndApply │ └── TestValidateAndApplyMigrations ├── CHANGELOG.md ├── Dockerfile ├── VARIANTS ├── VERSION ├── client.go ├── config_test.go ├── docker-compose.yaml ├── driver.go ├── driver_test.go ├── reserved_words.go ├── sqlgen.go └── sqlgen_test.go ├── materialize-databricks ├── .snapshots │ ├── TestSQLGeneration │ ├── TestSpecification │ ├── TestValidateAndApply │ └── TestValidateAndApplyMigrations ├── Dockerfile ├── VERSION ├── client.go ├── config.go ├── config_test.go ├── driver.go ├── driver_test.go ├── logger.go ├── reserved_words.go ├── sqlgen.go ├── sqlgen_test.go └── staged_file.go ├── materialize-dynamodb ├── .snapshots │ ├── TestSpec │ └── TestValidateAndApply ├── CHANGELOG.md ├── Dockerfile ├── VERSION ├── apply.go ├── docker-compose.yaml ├── driver.go ├── driver_test.go ├── main.go ├── transactor.go └── type_mapping.go ├── materialize-elasticsearch ├── .snapshots │ ├── TestDriverSpec │ └── TestValidateAndApply ├── CHANGELOG.md ├── Dockerfile ├── VERSION ├── client.go ├── docker-compose.yaml ├── driver.go ├── driver_test.go ├── transactor.go ├── type_mapping.go └── type_mapping_test.go ├── materialize-firebolt ├── .snapshots │ └── TestDriverSpec ├── CHANGELOG.md ├── Dockerfile ├── README.md ├── VERSION ├── config.go ├── config_test.go ├── driver.go ├── schemalate │ └── run.go ├── spec.go └── transactor.go ├── materialize-gcs-csv ├── .snapshots │ └── TestSpec ├── Dockerfile ├── VERSION ├── main.go └── main_test.go ├── materialize-gcs-parquet ├── .snapshots │ └── TestSpec ├── Dockerfile ├── VERSION ├── main.go └── main_test.go ├── materialize-google-pubsub ├── .snapshots │ └── TestSpec ├── CHANGELOG.md ├── Dockerfile ├── VERSION ├── cmd │ └── connector │ │ └── main.go ├── driver.go ├── driver_test.go └── transactor.go ├── materialize-google-sheets ├── .snapshots │ └── TestSpec ├── CHANGELOG.md ├── Dockerfile ├── VERSION ├── driver_test.go ├── main.go ├── transactor.go ├── util.go └── util_test.go ├── materialize-iceberg ├── .snapshots │ ├── TestComputeSchemas │ ├── TestSpec │ ├── TestTemplates │ ├── TestValidateAndApply │ └── TestValidateAndApplyLowercaseColumnNames ├── Dockerfile ├── VERSION ├── catalog │ └── catalog.go ├── cmd │ ├── connector │ │ └── main.go │ └── iceberg_helper │ │ └── main.go ├── config.go ├── driver.go ├── driver_test.go ├── emr.go ├── merge_bounds.go ├── python │ ├── common.py │ ├── exec.py │ ├── load.py │ ├── merge.py │ ├── poetry.lock │ ├── pyproject.toml │ └── python.go ├── sqlgen.go ├── sqlgen_test.go ├── staged_file.go ├── transactor.go ├── type_mapping.go └── type_mapping_test.go ├── materialize-kafka ├── Cargo.lock ├── Cargo.toml ├── Dockerfile ├── README.md ├── VERSION ├── docker-compose.yaml ├── src │ ├── apply.rs │ ├── binding_info.rs │ ├── configuration.rs │ ├── lib.rs │ ├── main.rs │ ├── transactor.rs │ └── validate.rs └── tests │ ├── fixture.json │ ├── snapshots │ ├── test__materialization.snap │ └── test__spec.snap │ ├── test.flow.yaml │ └── test.rs ├── materialize-mongodb ├── .snapshots │ └── TestSpecification ├── CHANGELOG.md ├── Dockerfile ├── README.md ├── VARIANTS ├── VERSION ├── config.go ├── config_test.go ├── docker-compose.yaml ├── driver.go ├── sample.key ├── transactor.go └── type_mapping.go ├── materialize-motherduck ├── .snapshots │ ├── TestSQLGeneration │ ├── TestSpecification │ ├── TestValidateAndApply │ └── TestValidateAndApplyMigrations ├── CHANGELOG.md ├── Dockerfile ├── VERSION ├── client.go ├── config.go ├── driver.go ├── driver_test.go ├── main.go ├── reserved_words.go ├── sqlgen.go ├── sqlgen_test.go └── staged_file.go ├── materialize-mysql ├── .snapshots │ ├── TestApplyChanges │ ├── TestConfigURI-Basic │ ├── TestConfigURI-IncorrectSSL │ ├── TestConfigURI-RequireSSL │ ├── TestSQLGeneration │ ├── TestSpecification │ ├── TestValidateAndApply │ ├── TestValidateAndApplyMigrations │ └── TestValidateAndApplyMigrationsMariaDB ├── CHANGELOG.md ├── Dockerfile ├── VARIANTS ├── VERSION ├── client.go ├── config_test.go ├── docker-compose.yaml ├── driver.go ├── driver_test.go ├── infile.go ├── reserved_words.go ├── reserved_words_singlestore.go ├── sqlgen.go ├── sqlgen_test.go └── testdata │ ├── apply-changes.flow.yaml │ └── generated_specs │ └── apply-changes.flow.proto ├── materialize-pinecone ├── .snapshots │ └── TestSpecification ├── CHANGELOG.md ├── Dockerfile ├── VERSION ├── client │ └── client.go ├── driver.go ├── driver_test.go └── transactor.go ├── materialize-postgres ├── .snapshots │ ├── TestConfigURI-Basic │ ├── TestConfigURI-IncorrectSSL │ ├── TestConfigURI-RequireSSL │ ├── TestLoadQueryNoFlowDocumentTemplate │ ├── TestSQLGeneration │ ├── TestSpecification │ ├── TestValidateAndApply │ └── TestValidateAndApplyMigrations ├── CHANGELOG.md ├── Dockerfile ├── VARIANTS ├── VERSION ├── client.go ├── config_test.go ├── docker-compose.yaml ├── driver.go ├── driver_test.go ├── reserved_words.go ├── sqlgen.go └── sqlgen_test.go ├── materialize-redshift ├── .snapshots │ ├── TestSQLGeneration │ ├── TestSpecification │ ├── TestValidateAndApply │ └── TestValidateAndApplyMigrations ├── CHANGELOG.md ├── Dockerfile ├── VERSION ├── client.go ├── driver.go ├── driver_test.go ├── load_error_info.go ├── main.go ├── reserved_words.go ├── sqlgen.go ├── sqlgen_test.go └── staged_file.go ├── materialize-s3-csv ├── .snapshots │ └── TestSpec ├── Dockerfile ├── VERSION ├── main.go └── main_test.go ├── materialize-s3-iceberg ├── .snapshots │ ├── TestSpec │ └── TestValidateAndApply ├── Dockerfile ├── VERSION ├── catalog.go ├── docker-compose.yaml ├── driver.go ├── driver_test.go ├── iceberg-ctl │ ├── iceberg_ctl │ │ ├── __main__.py │ │ └── models.py │ ├── poetry.lock │ └── pyproject.toml ├── icebergctl.go ├── transactor.go └── type_mapping.go ├── materialize-s3-parquet ├── .snapshots │ └── TestSpec ├── Dockerfile ├── VERSION ├── main.go └── main_test.go ├── materialize-slack ├── CHANGELOG.md ├── Dockerfile ├── README.md ├── VERSION ├── auth.go ├── main.go └── slack.go ├── materialize-snowflake ├── .snapshots │ ├── TestConfigURI-Optional_Parameters │ ├── TestConfigURI-User_&_Password_Authentication │ ├── TestSQLGeneration │ ├── TestSpecification │ ├── TestStreamDatatypes-BOOLEAN │ ├── TestStreamDatatypes-DATE │ ├── TestStreamDatatypes-FLOAT │ ├── TestStreamDatatypes-INTEGER │ ├── TestStreamDatatypes-TEXT │ ├── TestStreamDatatypes-TIMESTAMP_LTZ │ ├── TestStreamDatatypes-TIMESTAMP_NTZ │ ├── TestStreamDatatypes-TIMESTAMP_TZ │ ├── TestStreamDatatypes-VARIANT │ ├── TestValidateAndApply │ └── TestValidateAndApplyMigrations ├── CHANGELOG.md ├── Dockerfile ├── VERSION ├── bdec.go ├── bdec_test.go ├── client.go ├── config.go ├── config_test.go ├── pipe.go ├── reserved_words.go ├── snowflake.go ├── snowflake_test.go ├── sqlgen.go ├── sqlgen_test.go ├── staged_file.go ├── stream.go ├── stream_http.go └── stream_test.go ├── materialize-sql ├── .snapshots │ ├── TestFencingCases-covered_child │ ├── TestFencingCases-exact_match │ ├── TestFencingCases-split_from_parent │ ├── TestFencingCases-straddle │ ├── TestTableTemplate │ ├── TestValidateMigrations │ └── TestValidateNoFlowDocument ├── README.md ├── apply.go ├── dialect.go ├── driver.go ├── element_converter.go ├── element_converter_test.go ├── endpoint.go ├── meta_tables.go ├── migration_mapping.go ├── std_sql.go ├── table_mapping.go ├── templating.go ├── templating_test.go ├── test_support.go ├── testdata │ ├── flow.yaml │ ├── generated_specs │ │ └── flow.proto │ └── validate │ │ ├── base.flow.yaml │ │ ├── generated_specs │ │ ├── base.flow.proto │ │ └── migratable-changes.flow.proto │ │ └── migratable-changes.flow.yaml ├── type_mapping.go └── validate_test.go ├── materialize-sqlite ├── CHANGELOG.md ├── Dockerfile ├── VERSION ├── init.sh ├── reserved_words.go ├── sqlgen.go └── sqlite.go ├── materialize-sqlserver ├── .snapshots │ ├── TestApplyChanges │ ├── TestConfigURI-Basic │ ├── TestConfigURI-IncorrectSSL │ ├── TestConfigURI-RequireSSL │ ├── TestSQLGeneration │ ├── TestSpecification │ ├── TestValidateAndApply │ └── TestValidateAndApplyMigrations ├── CHANGELOG.md ├── Dockerfile ├── VARIANTS ├── VERSION ├── client.go ├── collation.go ├── collation_test.go ├── config_test.go ├── docker-compose.yaml ├── driver.go ├── driver_test.go ├── fence.go ├── reserved_words.go ├── sqlgen.go ├── sqlgen_test.go ├── testdata │ ├── apply-changes.flow.yaml │ └── generated_specs │ │ └── apply-changes.flow.proto └── type_mapping.go ├── materialize-starburst ├── .snapshots │ ├── TestSQLGeneration │ ├── TestSpecification │ └── TestValidateAndApply ├── Dockerfile ├── VERSION ├── client.go ├── parquet_data_converter.go ├── parquet_data_converter_test.go ├── parquet_file_processor.go ├── parquet_file_processor_test.go ├── reserved_words.go ├── s3_util.go ├── sqlgen.go ├── sqlgen_test.go ├── starburst.go ├── starburst_test.go └── testdata │ ├── flow.yaml │ └── spec.json ├── materialize-webhook ├── CHANGELOG.md ├── Dockerfile ├── VERSION └── driver.go ├── poetry.toml ├── python ├── Dockerfile ├── README.md ├── activate.sh ├── flow_sdk │ ├── __init__.py │ ├── capture │ │ ├── __init__.py │ │ ├── request.py │ │ └── response.py │ ├── derive │ │ ├── __init__.py │ │ ├── request.py │ │ └── response.py │ ├── flow.py │ ├── logger.py │ ├── shim_airbyte_cdk.py │ └── shim_singer_sdk.py ├── poetry.lock ├── pull_upstream.sh ├── py.typed └── pyproject.toml ├── scripts ├── bulk-config-editor.sh ├── bulk-config-editor │ ├── editing.go │ └── main.go ├── bulk-publish.sh ├── bulk-publish │ └── main.go ├── feature-flag-automation.sh ├── list-tasks.sh └── list-tasks │ └── main.go ├── source-airtable ├── VERSION ├── acmeCo │ ├── flow.yaml │ └── test_base │ │ ├── flow.yaml │ │ ├── pizzas │ │ └── flow.yaml │ │ └── soups │ │ └── flow.yaml ├── config.yaml ├── poetry.lock ├── pyproject.toml ├── source_airtable │ ├── __init__.py │ ├── __main__.py │ ├── auth.py │ ├── schema_helpers.py │ ├── source.py │ ├── spec.json │ └── streams.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── conftest.py │ ├── expected_schema_for_sample_table.json │ ├── sample_table_with_formulas.json │ ├── snapshots │ ├── snapshots__capture__capture.stdout.json │ ├── snapshots__discover__capture.stdout.json │ └── snapshots__spec__capture.stdout.json │ ├── test_helpers.py │ ├── test_snapshots.py │ ├── test_source.py │ └── test_streams.py ├── source-alpaca ├── .snapshots │ ├── TestCaptureMultipleBindings │ ├── TestDiscover │ ├── TestLargeCapture │ └── TestSpec ├── CHANGELOG.md ├── Dockerfile ├── README.md ├── VERSION ├── driver.go ├── driver_test.go ├── main.go ├── main_test.go ├── pull.go └── worker.go ├── source-apple-app-store ├── acmeCo │ ├── app_crashes.schema.yaml │ ├── app_downloads_detailed.schema.yaml │ ├── app_reviews.schema.yaml │ ├── app_sessions.schema.yaml │ ├── app_sessions_detailed.schema.yaml │ ├── app_store_discovery_and_engagement_detailed.schema.yaml │ ├── app_store_installs_and_deletions_detailed.schema.yaml │ └── flow.yaml ├── poetry.lock ├── pyproject.toml ├── source_apple_app_store │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── auth.py │ ├── client.py │ ├── models.py │ ├── resources.py │ └── utils.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ ├── snapshots__discover__stdout.json │ └── snapshots__spec__stdout.json │ └── test_snapshots.py ├── source-asana ├── VERSION ├── acmeCo │ ├── flow.yaml │ ├── projects.schema.yaml │ ├── stories.schema.yaml │ └── tasks.schema.yaml ├── connector_config.yaml ├── poetry.lock ├── pyproject.toml ├── source_asana │ ├── __init__.py │ ├── __main__.py │ ├── oauth.py │ ├── schemas │ │ ├── attachments.json │ │ ├── attachments_compact.json │ │ ├── custom_fields.json │ │ ├── events.json │ │ ├── organization_exports.json │ │ ├── portfolios.json │ │ ├── portfolios_compact.json │ │ ├── portfolios_memberships.json │ │ ├── projects.json │ │ ├── sections.json │ │ ├── sections_compact.json │ │ ├── stories.json │ │ ├── stories_compact.json │ │ ├── tags.json │ │ ├── tasks.json │ │ ├── team_memberships.json │ │ ├── teams.json │ │ ├── users.json │ │ └── workspaces.json │ ├── source.py │ ├── spec.json │ └── streams.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── conftest.py │ ├── snapshots │ ├── snapshots__capture__capture.stdout.json │ ├── snapshots__discover__capture.stdout.json │ └── snapshots__spec__capture.stdout.json │ ├── test_import_schemas.py │ ├── test_oauth.py │ └── test_snapshots.py ├── source-azure-blob-storage ├── .snapshots │ └── TestAzureBlobStore_getConfigSchema ├── Dockerfile ├── VERSION ├── main.go └── main_test.go ├── source-bigquery-batch ├── .snapshots │ ├── TestBinaryTypes-Capture │ ├── TestBinaryTypes-Discovery │ ├── TestCaptureFromView-Capture │ ├── TestCaptureFromView-DiscoveryWithViews │ ├── TestCaptureFromView-DiscoveryWithoutViews │ ├── TestCaptureWithDatetimeCursor-Capture │ ├── TestCaptureWithDatetimeCursor-Discovery │ ├── TestCaptureWithEmptyPoll-Capture │ ├── TestCaptureWithEmptyPoll-Discovery │ ├── TestCaptureWithModifications-Capture │ ├── TestCaptureWithModifications-Discovery │ ├── TestCaptureWithNullCursor-Capture1 │ ├── TestCaptureWithNullCursor-Capture2 │ ├── TestCaptureWithNullCursor-Discovery │ ├── TestCaptureWithTwoColumnCursor-Capture │ ├── TestCaptureWithTwoColumnCursor-Discovery │ ├── TestCaptureWithUpdatedAtCursor-Capture │ ├── TestCaptureWithUpdatedAtCursor-Discovery │ ├── TestCompositeTypes-Capture │ ├── TestCompositeTypes-Discovery │ ├── TestFeatureFlagEmitSourcedSchemas-Default │ ├── TestFeatureFlagEmitSourcedSchemas-Disabled │ ├── TestFeatureFlagEmitSourcedSchemas-Enabled │ ├── TestFeatureFlagKeylessRowID-Disabled-Capture │ ├── TestFeatureFlagKeylessRowID-Disabled-Discovery │ ├── TestFeatureFlagKeylessRowID-Enabled-Capture │ ├── TestFeatureFlagKeylessRowID-Enabled-Discovery │ ├── TestFieldLengthDiscovery │ ├── TestFullRefresh-Capture1 │ ├── TestFullRefresh-Capture2 │ ├── TestFullRefresh-Discovery │ ├── TestIntegerTypes-Capture │ ├── TestIntegerTypes-Discovery │ ├── TestJSONType-Capture │ ├── TestJSONType-Discovery │ ├── TestKeylessCapture-Capture │ ├── TestKeylessCapture-Discovery │ ├── TestKeylessFullRefreshCapture-Capture │ ├── TestKeylessFullRefreshCapture-Discovery │ ├── TestNonexistentCursor-Capture │ ├── TestNonexistentCursor-Discovery │ ├── TestNumericTypes-Capture │ ├── TestNumericTypes-Discovery │ ├── TestQueryTemplate-FirstNoCursor │ ├── TestQueryTemplate-FirstOneCursor │ ├── TestQueryTemplate-FirstThreeCursor │ ├── TestQueryTemplate-FirstTwoCursor │ ├── TestQueryTemplate-SubsequentNoCursor │ ├── TestQueryTemplate-SubsequentOneCursor │ ├── TestQueryTemplate-SubsequentThreeCursor │ ├── TestQueryTemplate-SubsequentTwoCursor │ ├── TestQueryTemplateOverride-Capture │ ├── TestQueryTemplateOverride-Discovery │ ├── TestSimpleCapture-Capture │ ├── TestSimpleCapture-Discovery │ ├── TestSourceTag-Capture │ ├── TestSourceTag-Discovery │ ├── TestSpec │ ├── TestStringTypes-Capture │ ├── TestStringTypes-Discovery │ ├── TestTemporalTypes-Capture │ └── TestTemporalTypes-Discovery ├── CHANGELOG.md ├── Dockerfile ├── README.md ├── VERSION ├── discovery.go ├── driver.go ├── main.go └── main_test.go ├── source-boilerplate ├── boilerplate.go └── testing │ ├── log.go │ └── testing.go ├── source-braintree-native ├── VERSION ├── acmeCo │ ├── add_ons.schema.yaml │ ├── credit_card_verifications.schema.yaml │ ├── customers.schema.yaml │ ├── discounts.schema.yaml │ ├── disputes.schema.yaml │ ├── flow.yaml │ ├── merchant_accounts.schema.yaml │ ├── plans.schema.yaml │ ├── subscriptions.schema.yaml │ └── transactions.schema.yaml ├── config.yaml ├── poetry.lock ├── pyproject.toml ├── source_braintree_native │ ├── __init__.py │ ├── __main__.py │ ├── api │ │ ├── __init__.py │ │ ├── common.py │ │ ├── disputes.py │ │ ├── merchant_accounts.py │ │ ├── non_paginated_snapshot_resource.py │ │ ├── searchable_incremental_resource.py │ │ └── transactions.py │ ├── models.py │ └── resources.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── sample_xml_responses │ ├── add_ons_response.xml │ ├── customer_simple.xml │ ├── customers_advanced_search_ids_response.xml │ ├── customers_advanced_search_response.xml │ ├── customers_array.xml │ ├── disbursement_detail_date.xml │ ├── discounts_empty_array.xml │ ├── discounts_response.xml │ ├── disputes_advanced_search_response.xml │ ├── merchant_accounts_response.xml │ ├── plans_response.xml │ ├── plans_single_item_array.xml │ ├── search_results_complex.xml │ ├── subscription_advanced_search_ids_response.xml │ ├── subscription_advanced_search_response.xml │ ├── subscription_nested.xml │ ├── transaction_advanced_search_ids_response.xml │ ├── transaction_advanced_search_response.xml │ └── transaction_nil_values.xml │ ├── snapshots │ ├── snapshots__capture__capture.stdout.json │ ├── snapshots__discover__capture.stdout.json │ └── snapshots__spec__capture.stdout.json │ ├── test_snapshots.py │ └── test_xml_parsing.py ├── source-brevo ├── VERSION ├── poetry.lock ├── pyproject.toml ├── source_brevo │ ├── __init__.py │ ├── __main__.py │ ├── manifest.yaml │ └── source.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ ├── snapshots__discover__capture.stdout.json │ └── snapshots__spec__capture.stdout.json │ └── test_snapshots.py ├── source-chargebee-native ├── acmeCo │ ├── addons.schema.yaml │ ├── comments.schema.yaml │ ├── contacts.schema.yaml │ ├── coupons.schema.yaml │ ├── credit_notes.schema.yaml │ ├── customers.schema.yaml │ ├── events.schema.yaml │ ├── flow.yaml │ ├── gifts.schema.yaml │ ├── hosted_pages.schema.yaml │ ├── invoices.schema.yaml │ ├── orders.schema.yaml │ ├── payment_sources.schema.yaml │ ├── plans.schema.yaml │ ├── promotional_credits.schema.yaml │ ├── site_migration_details.schema.yaml │ ├── subscriptions.schema.yaml │ ├── subscriptions_with_scheduled_changes.schema.yaml │ ├── transactions.schema.yaml │ ├── unbilled_charges.schema.yaml │ └── virtual_bank_accounts.schema.yaml ├── poetry.lock ├── pyproject.toml ├── source_chargebee_native │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── models.py │ └── resources.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ └── snapshots__spec__stdout.json │ └── test_snapshots.py ├── source-criteo ├── VERSION ├── __main__.py ├── acmeCo │ ├── flow.yaml │ └── source-criteo.MyReport.config.yaml ├── connector_config.yaml ├── poetry.lock ├── pyproject.toml ├── source_criteo │ ├── .flake8 │ ├── .github │ │ ├── dependabot.yml │ │ └── workflows │ │ │ ├── constraints.txt │ │ │ └── test.yml │ ├── .gitignore │ ├── .pre-commit-config.yaml │ ├── .secrets │ │ └── .gitignore │ ├── README.md │ ├── meltano.yml │ ├── noxfile.py │ ├── poetry.lock │ ├── pyproject.toml │ └── tap_criteo │ │ ├── __init__.py │ │ ├── auth.py │ │ ├── client.py │ │ ├── schemas │ │ ├── ad_set.json │ │ ├── advertiser.json │ │ ├── audience.json │ │ ├── campaign.json │ │ ├── empty.json │ │ └── v2020.07 │ │ │ ├── audience.json │ │ │ ├── campaign.json │ │ │ ├── category.json │ │ │ └── empty.json │ │ ├── streams │ │ ├── __init__.py │ │ ├── reports.py │ │ ├── v202007.py │ │ ├── v202104.py │ │ └── v202107.py │ │ └── tap.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ ├── snapshots__capture__capture.stdout.json │ ├── snapshots__discover__capture.stdout.json │ └── snapshots__spec__capture.stdout.json │ └── test_snapshots.py ├── source-datadog ├── poetry.lock ├── pyproject.toml ├── source_datadog │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── models.py │ └── resources.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ ├── snapshots__discover__stdout.json │ └── snapshots__spec__stdout.json │ └── test_snapshots.py ├── source-dropbox ├── .snapshots │ └── TestSpec ├── CHANGELOG.md ├── Dockerfile ├── VERSION ├── main.go ├── main_test.go ├── oauth2.go └── tests │ └── parser_spec.json ├── source-dynamics-365-finance-and-operations ├── README.md ├── VERSION ├── poetry.lock ├── pyproject.toml ├── source_dynamics_365_finance_and_operations │ ├── __init__.py │ ├── __main__.py │ ├── adls_gen2_client.py │ ├── api.py │ ├── models.py │ ├── resources.py │ └── shared.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ └── snapshots__spec__capture.stdout.json │ └── test_snapshots.py ├── source-dynamodb ├── .snapshots │ ├── TestCapture │ ├── TestCaptureDataTypes │ ├── TestCaptureOperations │ ├── TestDiscovery-additional_table_without_stream_enabled │ ├── TestDiscovery-multiple_tables_with_various_types │ ├── TestDiscovery-single_table_with_a_partition_key │ ├── TestKeyAttributeWrapperRoundTrip │ └── TestSpec ├── CHANGELOG.md ├── Dockerfile ├── VERSION ├── backfill.go ├── backfill_test.go ├── capture.go ├── discovery.go ├── discovery_test.go ├── docker-compose.yaml ├── driver.go ├── driver_test.go ├── main.go ├── main_test.go ├── pull.go ├── shard_tree.go ├── shard_tree_test.go ├── stream.go └── test_util.go ├── source-facebook-marketing-native ├── config.yaml ├── poetry.lock ├── pyproject.toml ├── source_facebook_marketing_native │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── client.py │ ├── constants.py │ ├── enums.py │ ├── fields.py │ ├── job_manager.py │ ├── models.py │ ├── permissions.py │ ├── resources.py │ └── utils.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ ├── snapshots__discover__capture.stdout.json │ └── snapshots__spec__capture.stdout.json │ └── test_snapshots.py ├── source-facebook-marketing ├── VERSION ├── acmeCo │ ├── activities.schema.yaml │ ├── ad_account.schema.yaml │ ├── ad_creatives.schema.yaml │ ├── ad_sets.schema.yaml │ ├── ads.schema.yaml │ ├── ads_insights.schema.yaml │ ├── ads_insights_action_type.schema.yaml │ ├── ads_insights_age_and_gender.schema.yaml │ ├── ads_insights_country.schema.yaml │ ├── ads_insights_dma.schema.yaml │ ├── ads_insights_platform_and_device.schema.yaml │ ├── ads_insights_region.schema.yaml │ ├── campaigns.schema.yaml │ ├── custom_conversions.schema.yaml │ ├── customads_insights_publisher_platform.schema.yaml │ ├── flow.yaml │ ├── images.schema.yaml │ └── videos.schema.yaml ├── connector_config.yaml ├── poetry.lock ├── pyproject.toml ├── source_facebook_marketing │ ├── README.md │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── schemas │ │ ├── activities.json │ │ ├── ad_account.json │ │ ├── ad_creatives.json │ │ ├── ad_sets.json │ │ ├── ads.json │ │ ├── ads_insights.json │ │ ├── ads_insights_action_breakdowns.json │ │ ├── ads_insights_breakdowns.json │ │ ├── campaigns.json │ │ ├── custom_conversions.json │ │ ├── images.json │ │ ├── shared │ │ │ ├── ads_action_stats.json │ │ │ ├── ads_histogram_stats.json │ │ │ ├── ads_image_crops.json │ │ │ ├── geo_locations.json │ │ │ └── targeting.json │ │ └── videos.json │ ├── source.py │ ├── spec.py │ ├── streams │ │ ├── __init__.py │ │ ├── async_job.py │ │ ├── async_job_manager.py │ │ ├── base_insight_streams.py │ │ ├── base_streams.py │ │ ├── common.py │ │ ├── patches.py │ │ └── streams.py │ └── utils.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ └── snapshots__spec__capture.stdout.json │ └── test_snapshots.py ├── source-firestore ├── .snapshots │ ├── TestAddedBindingSameGroup-one │ ├── TestAddedBindingSameGroup-two │ ├── TestBindingDeletion-one │ ├── TestBindingDeletion-three │ ├── TestBindingDeletion-two │ ├── TestDeletions-one │ ├── TestDeletions-two │ ├── TestDiscovery │ ├── TestDocumentReferences-backfill │ ├── TestDocumentReferences-replication │ ├── TestInitResourceStates │ ├── TestManySmallWrites-one │ ├── TestManySmallWrites-two │ ├── TestMassiveBackfill │ ├── TestMultipleWatches-one │ ├── TestMultipleWatches-two │ ├── TestNestedCollections-init │ ├── TestNestedCollections-repl │ ├── TestRestartCursorUpdates-init │ ├── TestRestartCursorUpdates-repl │ ├── TestRestartCursorUpdates-restart │ ├── TestSimpleCapture-one │ ├── TestSimpleCapture-two │ └── TestSpec ├── CHANGELOG.md ├── Dockerfile ├── README.md ├── VERSION ├── datasynth_test.go ├── discovery.go ├── helpers.go ├── main.go ├── main_test.go ├── pull.go └── validate.go ├── source-front ├── VERSION ├── acmeCo │ ├── channels.schema.yaml │ ├── contacts.schema.yaml │ ├── conversations.schema.yaml │ ├── events.schema.yaml │ ├── flow.yaml │ ├── inboxes.schema.yaml │ ├── tags.schema.yaml │ ├── teammates.schema.yaml │ └── teams.schema.yaml ├── config.yaml ├── poetry.lock ├── pyproject.toml ├── source_front │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── models.py │ └── resources.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ ├── snapshots__capture__capture.stdout.json │ ├── snapshots__discover__capture.stdout.json │ └── snapshots__spec__capture.stdout.json │ └── test_snapshots.py ├── source-gainsight-nxt ├── acmeCo │ ├── activity_timelines.schema.yaml │ ├── call_to_actions.schema.yaml │ ├── companies.schema.yaml │ ├── cs_tasks.schema.yaml │ ├── da_picklist.schema.yaml │ ├── flow.yaml │ ├── success_plans.schema.yaml │ └── users.schema.yaml ├── poetry.lock ├── pyproject.toml ├── source_gainsight_nxt │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── models.py │ └── resources.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ └── snapshots__spec__stdout.json │ └── test_snapshots.py ├── source-gcs ├── CHANGELOG.md ├── Dockerfile ├── VERSION └── main.go ├── source-genesys ├── VERSION ├── poetry.lock ├── pyproject.toml ├── source_genesys │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── models.py │ └── resources.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ ├── snapshots__discover__capture.stdout.json │ └── snapshots__spec__capture.stdout.json │ └── test_snapshots.py ├── source-gladly ├── acmeCo │ ├── AgentAvailabilityEvents.schema.yaml │ ├── AgentStatusEvents.schema.yaml │ ├── ContactEvents.schema.yaml │ ├── ConversationEvents.schema.yaml │ ├── CustomerEvents.schema.yaml │ ├── PaymentRequestEvents.schema.yaml │ ├── TaskEvents.schema.yaml │ └── flow.yaml ├── poetry.lock ├── pyproject.toml ├── source_gladly │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── models.py │ └── resources.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ ├── snapshots__discover__stdout.json │ └── snapshots__spec__stdout.json │ └── test_snapshots.py ├── source-google-ads ├── VERSION ├── acmeCo │ ├── account_performance_report.schema.yaml │ ├── accounts.schema.yaml │ ├── ad_group_ad_report.schema.yaml │ ├── ad_group_ads.schema.yaml │ ├── ad_groups.schema.yaml │ ├── campaigns.schema.yaml │ ├── click_view.schema.yaml │ ├── display_keyword_performance_report.schema.yaml │ ├── display_topics_performance_report.schema.yaml │ ├── flow.yaml │ ├── geographic_report.schema.yaml │ ├── keyword_report.schema.yaml │ ├── shopping_performance_report.schema.yaml │ └── user_location_report.schema.yaml ├── connector_config.yaml ├── poetry.lock ├── pyproject.toml ├── source_google_ads │ ├── __init__.py │ ├── __main__.py │ ├── custom_query_stream.py │ ├── google_ads.py │ ├── models.py │ ├── schemas │ │ ├── account_performance_report.json │ │ ├── accounts.json │ │ ├── ad_group_ad_labels.json │ │ ├── ad_group_ad_report.json │ │ ├── ad_group_ads.json │ │ ├── ad_group_labels.json │ │ ├── ad_groups.json │ │ ├── campaign_labels.json │ │ ├── campaigns.json │ │ ├── click_view.json │ │ ├── display_keyword_performance_report.json │ │ ├── display_topics_performance_report.json │ │ ├── geographic_report.json │ │ ├── keyword_report.json │ │ ├── service_accounts.json │ │ ├── shopping_performance_report.json │ │ └── user_location_report.json │ ├── source.py │ ├── spec.json │ ├── streams.py │ └── utils.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── common.py │ ├── conftest.py │ ├── snapshots │ ├── snapshots__discover__capture.stdout.json │ └── snapshots__spec__capture.stdout.json │ ├── test_custom_query.py │ ├── test_google_ads.py │ ├── test_models.py │ ├── test_snapshots.py │ ├── test_source.py │ ├── test_streams.py │ └── test_utils.py ├── source-google-analytics-data-api-native ├── VERSION ├── acmeCo │ ├── daily_active_users.schema.yaml │ ├── devices.schema.yaml │ ├── flow.yaml │ ├── four_weekly_active_users.schema.yaml │ ├── locations.schema.yaml │ ├── my_custom_report_with_a_filter.schema.yaml │ ├── pages.schema.yaml │ ├── traffic_sources.schema.yaml │ ├── website_overview.schema.yaml │ └── weekly_active_users.schema.yaml ├── config.yaml ├── poetry.lock ├── pyproject.toml ├── source_google_analytics_data_api_native │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── default_reports.py │ ├── models.py │ ├── resources.py │ └── utils.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ ├── snapshots__discover__capture.stdout.json │ └── snapshots__spec__capture.stdout.json │ └── test_snapshots.py ├── source-google-drive ├── CHANGELOG.md ├── Dockerfile ├── VERSION └── main.go ├── source-google-play ├── VERSION ├── poetry.lock ├── pyproject.toml ├── source-google-play.config.yaml ├── source_google_play │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── gcs.py │ ├── models.py │ ├── resources.py │ └── shared.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ ├── snapshots__discover__capture.stdout.json │ └── snapshots__spec__capture.stdout.json │ └── test_snapshots.py ├── source-google-pubsub ├── .snapshots │ └── TestSpecification ├── Dockerfile ├── VERSION ├── discovery.go ├── driver.go ├── driver_test.go ├── emitter.go ├── emitter_test.go └── main.go ├── source-google-sheets-native ├── acmeCo │ ├── OtherThings.schema.yaml │ ├── VariousTypes.schema.yaml │ └── flow.yaml ├── config.yaml ├── poetry.lock ├── pyproject.toml ├── source_google_sheets_native │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── models.py │ └── resources.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ ├── snapshots__capture__stdout.json │ ├── snapshots__discover__stdout.json │ └── snapshots__spec__stdout.json │ └── test_snapshots.py ├── source-hello-world ├── .snapshots │ └── TestCapture ├── Dockerfile ├── VERSION ├── main.go └── main_test.go ├── source-http-file ├── CHANGELOG.md ├── Dockerfile ├── VERSION ├── http_file_test.go └── main.go ├── source-http-ingest ├── Cargo.lock ├── Cargo.toml ├── Dockerfile ├── README.md ├── VARIANTS ├── VERSION ├── src │ ├── lib.rs │ ├── main.rs │ ├── server.rs │ ├── snapshots │ │ ├── source_http_ingest__server__test__openapi_spec_generation.snap │ │ ├── source_http_ingest__test__discover_backwards_compatibility.snap │ │ ├── source_http_ingest__test__discover_with_paths.snap │ │ ├── source_http_ingest__test__endpoint_config_schema.snap │ │ └── source_http_ingest__test__resource_config_schema.snap │ └── transactor.rs └── tests │ ├── snapshots │ └── test__discover.snap │ └── test.rs ├── source-hubspot-native ├── acmeCo │ ├── companies.schema.yaml │ ├── contact_list_memberships.schema.yaml │ ├── contact_lists.schema.yaml │ ├── contacts.schema.yaml │ ├── deal_pipelines.schema.yaml │ ├── deals.schema.yaml │ ├── email_events.schema.yaml │ ├── engagements.schema.yaml │ ├── flow.yaml │ ├── form_submissions.schema.yaml │ ├── forms.schema.yaml │ ├── line_items.schema.yaml │ ├── marketing_emails.schema.yaml │ ├── owners.schema.yaml │ ├── products.schema.yaml │ ├── properties.schema.yaml │ └── tickets.schema.yaml ├── config.yaml ├── poetry.lock ├── pyproject.toml ├── source_hubspot_native │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── models.py │ └── resources.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ ├── snapshots__capture__stdout.json │ ├── snapshots__discover__stdout.json │ └── snapshots__spec__stdout.json │ └── test_snapshots.py ├── source-hubspot ├── VERSION ├── acmeCo │ ├── campaigns.schema.yaml │ ├── companies.schema.yaml │ ├── contact_lists.schema.yaml │ ├── contacts.schema.yaml │ ├── deal_pipelines.schema.yaml │ ├── deals.schema.yaml │ ├── deals_archived.schema.yaml │ ├── email_events.schema.yaml │ ├── engagements.schema.yaml │ ├── engagements_calls.schema.yaml │ ├── engagements_emails.schema.yaml │ ├── engagements_meetings.schema.yaml │ ├── engagements_notes.schema.yaml │ ├── engagements_tasks.schema.yaml │ ├── flow.yaml │ ├── forms.schema.yaml │ ├── line_items.schema.yaml │ ├── owners.schema.yaml │ ├── products.schema.yaml │ ├── property_history.schema.yaml │ ├── subscription_changes.schema.yaml │ ├── ticket_pipelines.schema.yaml │ ├── tickets.schema.yaml │ └── workflows.schema.yaml ├── config.yaml ├── poetry.lock ├── pyproject.toml ├── source_hubspot │ ├── __init__.py │ ├── __main__.py │ ├── constants.py │ ├── errors.py │ ├── helpers.py │ ├── schemas │ │ ├── campaigns.json │ │ ├── companies.json │ │ ├── contact_lists.json │ │ ├── contacts.json │ │ ├── contacts_list_memberships.json │ │ ├── deal_pipelines.json │ │ ├── deals.json │ │ ├── deals_archived.json │ │ ├── email_events.json │ │ ├── email_subscriptions.json │ │ ├── engagements.json │ │ ├── engagements_calls.json │ │ ├── engagements_emails.json │ │ ├── engagements_meetings.json │ │ ├── engagements_notes.json │ │ ├── engagements_tasks.json │ │ ├── feedback_submissions.json │ │ ├── form_submissions.json │ │ ├── forms.json │ │ ├── goals.json │ │ ├── line_items.json │ │ ├── marketing_emails.json │ │ ├── owners.json │ │ ├── products.json │ │ ├── property_history.json │ │ ├── subscription_changes.json │ │ ├── ticket_pipelines.json │ │ ├── tickets.json │ │ └── workflows.json │ ├── source.py │ ├── spec.yaml │ └── streams.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── conftest.py │ ├── snapshots │ ├── snapshots__capture__capture.stdout.json │ ├── snapshots__discover__capture.stdout.json │ └── snapshots__spec__capture.stdout.json │ ├── test_field_type_converting.py │ ├── test_snapshots.py │ ├── test_source.py │ ├── test_split_properties.py │ ├── test_streams.py │ └── utils.py ├── source-impact-native ├── acmeCo │ ├── ActionInquiries.schema.yaml │ ├── Actions.schema.yaml │ ├── Ads.schema.yaml │ ├── BlockRedirectRules.schema.yaml │ ├── Campaigns.schema.yaml │ ├── Catalogs.schema.yaml │ ├── Contracts.schema.yaml │ ├── Deals.schema.yaml │ ├── ExceptionLists.schema.yaml │ ├── Invoices.schema.yaml │ ├── Jobs.schema.yaml │ ├── MediaPartnerGroups.schema.yaml │ ├── Notes.schema.yaml │ ├── PhoneNumbers.schema.yaml │ ├── PromoCodes.schema.yaml │ ├── Reports.schema.yaml │ ├── Tasks.schema.yaml │ ├── TrackingValueRequests.schema.yaml │ ├── UniqueUrls.schema.yaml │ └── flow.yaml ├── config.yaml ├── poetry.lock ├── pyproject.toml ├── source_impact_native │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── models.py │ └── resources.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ ├── snapshots__discover__stdout.json │ └── snapshots__spec__stdout.json │ └── test_snapshots.py ├── source-incident-io ├── VERSION ├── poetry.lock ├── pyproject.toml ├── source_incident_io │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── models.py │ └── resources.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ ├── snapshots__discover__capture.stdout.json │ └── snapshots__spec__capture.stdout.json │ └── test_snapshots.py ├── source-intercom-native ├── VERSION ├── acmeCo │ ├── admins.schema.yaml │ ├── companies.schema.yaml │ ├── company_attributes.schema.yaml │ ├── company_segments.schema.yaml │ ├── contact_attributes.schema.yaml │ ├── contacts.schema.yaml │ ├── conversation_parts.schema.yaml │ ├── conversations.schema.yaml │ ├── flow.yaml │ ├── segments.schema.yaml │ ├── tags.schema.yaml │ ├── teams.schema.yaml │ └── tickets.schema.yaml ├── config.yaml ├── poetry.lock ├── pyproject.toml ├── source_intercom_native │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── models.py │ └── resources.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ ├── snapshots__capture__capture.stdout.json │ ├── snapshots__discover__capture.stdout.json │ └── snapshots__spec__capture.stdout.json │ └── test_snapshots.py ├── source-iterable ├── acmeCo │ ├── campaigns.schema.yaml │ ├── custom_event.schema.yaml │ ├── email_bounce.schema.yaml │ ├── email_click.schema.yaml │ ├── email_complaint.schema.yaml │ ├── email_open.schema.yaml │ ├── email_send.schema.yaml │ ├── email_send_skip.schema.yaml │ ├── email_subscribe.schema.yaml │ ├── email_unsubscribe.schema.yaml │ ├── events.schema.yaml │ ├── flow.yaml │ ├── hosted_unsubscribe_click.schema.yaml │ ├── in_app_click.schema.yaml │ ├── in_app_close.schema.yaml │ ├── in_app_delete.schema.yaml │ ├── in_app_delivery.schema.yaml │ ├── in_app_open.schema.yaml │ ├── in_app_send.schema.yaml │ ├── in_app_send_skip.schema.yaml │ ├── inbox_message_impression.schema.yaml │ ├── inbox_session.schema.yaml │ ├── purchase.schema.yaml │ ├── push_bounce.schema.yaml │ ├── push_open.schema.yaml │ ├── push_send.schema.yaml │ ├── push_send_skip.schema.yaml │ ├── push_uninstall.schema.yaml │ ├── sms_bounce.schema.yaml │ ├── sms_click.schema.yaml │ ├── sms_received.schema.yaml │ ├── sms_send.schema.yaml │ ├── sms_send_skip.schema.yaml │ ├── sms_usage_info.schema.yaml │ ├── templates.schema.yaml │ ├── users.schema.yaml │ ├── web_push_click.schema.yaml │ ├── web_push_send.schema.yaml │ └── web_push_send_skip.schema.yaml ├── config.yaml ├── main.py ├── poetry.lock ├── pyproject.toml ├── sample_files │ └── sample_config.json ├── source_iterable │ ├── __init__.py │ ├── __main__.py │ ├── run.py │ ├── schemas │ │ ├── campaigns.json │ │ ├── campaigns_metrics.json │ │ ├── channels.json │ │ ├── email_bounce.json │ │ ├── email_click.json │ │ ├── email_complaint.json │ │ ├── email_open.json │ │ ├── email_send.json │ │ ├── email_send_skip.json │ │ ├── email_subscribe.json │ │ ├── email_unsubscribe.json │ │ ├── events.json │ │ ├── list_users.json │ │ ├── lists.json │ │ ├── message_types.json │ │ ├── metadata.json │ │ ├── templates.json │ │ └── users.json │ ├── slice_generators.py │ ├── source.py │ ├── spec.json │ ├── streams.py │ └── utils.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ ├── snapshots__discover__capture.stdout.json │ └── snapshots__spec__capture.stdout.json │ └── test_snapshots.py ├── source-iterate ├── VERSION ├── acmeCo │ ├── flow.yaml │ ├── survey_responses.schema.yaml │ └── surveys.schema.yaml ├── poetry.lock ├── pyproject.toml ├── source_iterate │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── models.py │ └── resources.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ ├── snapshots__discover__capture.stdout.json │ └── snapshots__spec__capture.stdout.json │ └── test_snapshots.py ├── source-jira-legacy ├── acmeCo │ ├── flow.yaml │ ├── groups.schema.yaml │ ├── issue_link_types.schema.yaml │ ├── issue_properties.schema.yaml │ ├── users.schema.yaml │ └── users_groups_detailed.schema.yaml ├── config.yaml ├── poetry.lock ├── pyproject.toml ├── source_jira_legacy │ ├── __init__.py │ ├── __main__.py │ ├── config_migrations.py │ ├── run.py │ ├── schemas │ │ ├── application_roles.json │ │ ├── audit_records.json │ │ ├── avatars.json │ │ ├── board_issues.json │ │ ├── boards.json │ │ ├── dashboards.json │ │ ├── dynamic_modules.json │ │ ├── filter_sharing.json │ │ ├── filters.json │ │ ├── groups.json │ │ ├── issue_comment_properties.json │ │ ├── issue_comments.json │ │ ├── issue_custom_field_contexts.json │ │ ├── issue_custom_field_options.json │ │ ├── issue_custom_field_options_apps.json │ │ ├── issue_field_configurations.json │ │ ├── issue_fields.json │ │ ├── issue_link_types.json │ │ ├── issue_navigator_settings.json │ │ ├── issue_notification_schemes.json │ │ ├── issue_priorities.json │ │ ├── issue_properties.json │ │ ├── issue_remote_links.json │ │ ├── issue_resolutions.json │ │ ├── issue_security_schemes.json │ │ ├── issue_transitions.json │ │ ├── issue_type_properties.json │ │ ├── issue_type_schemes.json │ │ ├── issue_type_screen_schemes.json │ │ ├── issue_types.json │ │ ├── issue_votes.json │ │ ├── issue_watchers.json │ │ ├── issue_worklogs.json │ │ ├── issues.json │ │ ├── jira_settings.json │ │ ├── jql.json │ │ ├── labels.json │ │ ├── permission_schemes.json │ │ ├── permissions.json │ │ ├── project_avatars.json │ │ ├── project_categories.json │ │ ├── project_components.json │ │ ├── project_email.json │ │ ├── project_permission_schemes.json │ │ ├── project_roles.json │ │ ├── project_types.json │ │ ├── project_versions.json │ │ ├── projects.json │ │ ├── pull_requests.json │ │ ├── screen_schemes.json │ │ ├── screen_tab_fields.json │ │ ├── screen_tabs.json │ │ ├── screens.json │ │ ├── server_info.json │ │ ├── sprint_issues.json │ │ ├── sprints.json │ │ ├── time_tracking.json │ │ ├── users.json │ │ ├── users_groups_detailed.json │ │ ├── webhooks.json │ │ ├── workflow_scheme_drafts.json │ │ ├── workflow_scheme_project_associations.json │ │ ├── workflow_schemes.json │ │ ├── workflow_status_categories.json │ │ ├── workflow_statuses.json │ │ ├── workflow_transition_properties.json │ │ ├── workflow_transition_rules.json │ │ └── workflows.json │ ├── source.py │ ├── spec.json │ ├── streams.py │ ├── type_transfromer.py │ └── utils.py ├── test.flow.yaml ├── tests │ ├── __init__.py │ ├── snapshots │ │ ├── snapshots__discover__capture.stdout.json │ │ └── snapshots__spec__capture.stdout.json │ └── test_snapshots.py └── unit_tests │ ├── __init__.py │ ├── conftest.py │ ├── responses │ ├── application_role.json │ ├── avatars.json │ ├── board.json │ ├── board_issues.json │ ├── dashboard.json │ ├── filter.json │ ├── filter_sharing.json │ ├── groups.json │ ├── issue_comments.json │ ├── issue_custom_field_contexts.json │ ├── issue_custom_field_options.json │ ├── issue_fields.json │ ├── issue_notification_schemas.json │ ├── issue_properties.json │ ├── issue_property_keys.json │ ├── issue_remote_links.json │ ├── issue_resolutions.json │ ├── issue_security_schemes.json │ ├── issue_type.json │ ├── issue_votes.json │ ├── issue_watchers.json │ ├── issue_worklogs.json │ ├── issues.json │ ├── issues_field_configurations.json │ ├── issues_link_types.json │ ├── issues_navigator_settings.json │ ├── jira_settings.json │ ├── labels.json │ ├── permissions.json │ ├── project_components.json │ ├── project_email.json │ ├── project_permissions.json │ ├── projects.json │ ├── projects_avatars.json │ ├── projects_categories.json │ ├── projects_versions.json │ ├── screen_tabs.json │ ├── screens.json │ ├── sprint_issues.json │ ├── sprints.json │ ├── time_tracking.json │ ├── users.json │ ├── users_groups_detailed.json │ ├── workflow_schemas.json │ ├── workflow_status_categories.json │ ├── workflow_statuses.json │ └── workflows.json │ ├── test_date_time_transformer.py │ ├── test_migrations │ ├── test_config.json │ └── test_config_migrations.py │ ├── test_pagination.py │ ├── test_source.py │ ├── test_streams.py │ └── test_utils.py ├── source-jira-native ├── VERSION ├── config.yaml ├── poetry.lock ├── pyproject.toml ├── source_jira_native │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── models.py │ └── resources.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ ├── snapshots__discover__capture.stdout.json │ └── snapshots__spec__capture.stdout.json │ ├── test_is_within_fallback_window.py │ └── test_snapshots.py ├── source-kafka ├── .dockerignore ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── Dockerfile ├── README.md ├── VERSION ├── docker-compose.yaml ├── src │ ├── configuration.rs │ ├── discover.rs │ ├── lib.rs │ ├── main.rs │ ├── msk_oauthbearer.rs │ ├── pull.rs │ ├── schema_registry.rs │ └── snapshots │ │ ├── source_kafka__discover__tests__avro record with scalar compound key.snap │ │ ├── source_kafka__discover__tests__nested avro record with scalars.snap │ │ ├── source_kafka__discover__tests__nested json object.snap │ │ ├── source_kafka__discover__tests__no key.snap │ │ ├── source_kafka__discover__tests__single non-scalar avro key.snap │ │ ├── source_kafka__discover__tests__single nullable scalar avro key.snap │ │ ├── source_kafka__discover__tests__single nullable scalar json key.snap │ │ ├── source_kafka__discover__tests__single scalar avro key.snap │ │ ├── source_kafka__discover__tests__single scalar json key.snap │ │ └── source_kafka__pull__tests__avro_to_json.snap └── tests │ ├── acmeCo │ └── flow.yaml │ ├── snapshots │ ├── test__capture.snap │ ├── test__capture_resume.snap │ ├── test__discover.snap │ └── test__spec.snap │ ├── test.flow.yaml │ └── test.rs ├── source-kinesis ├── .snapshots │ ├── TestCapture │ ├── TestCaptureParsing │ ├── TestDiscover │ └── TestSpec ├── CHANGELOG.md ├── Dockerfile ├── README.md ├── VERSION ├── capture.go ├── capture_test.go ├── connection.go ├── discovery.go ├── docker-compose.yaml ├── main.go ├── main_test.go └── shard_tracker.go ├── source-klaviyo-native ├── VERSION ├── config.yaml ├── poetry.lock ├── pyproject.toml ├── source_klaviyo_native │ ├── __init__.py │ ├── __main__.py │ ├── api │ │ ├── __init__.py │ │ ├── common.py │ │ └── events.py │ ├── models.py │ ├── resources.py │ └── shared.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ ├── snapshots__discover__capture.stdout.json │ └── snapshots__spec__capture.stdout.json │ ├── test_shared.py │ └── test_snapshots.py ├── source-klaviyo ├── acmeCo │ └── flow.yaml ├── config.yaml ├── poetry.lock ├── pyproject.toml ├── source_klaviyo │ ├── __init__.py │ ├── __main__.py │ ├── availability_strategy.py │ ├── exceptions.py │ ├── run.py │ ├── schemas │ │ ├── campaigns.json │ │ ├── email_templates.json │ │ ├── events.json │ │ ├── flows.json │ │ ├── global_exclusions.json │ │ ├── lists.json │ │ ├── metrics.json │ │ └── profiles.json │ ├── source.py │ ├── spec.json │ └── streams.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ ├── snapshots__discover__capture.stdout.json │ └── snapshots__spec__capture.stdout.json │ ├── test_snapshots.py │ ├── test_source.py │ └── test_streams.py ├── source-linkedin-ads-v2 ├── acmeCo │ ├── account_users.schema.yaml │ ├── campaign_groups.schema.yaml │ ├── campaigns.schema.yaml │ └── flow.yaml ├── config.yaml ├── poetry.lock ├── pyproject.toml ├── source_linkedin_ads_v2 │ ├── __init__.py │ ├── __main__.py │ ├── analytics_streams.py │ ├── run.py │ ├── schemas │ │ ├── account_users.json │ │ ├── accounts.json │ │ ├── ad_analytics.json │ │ ├── campaign_groups.json │ │ ├── campaigns.json │ │ ├── conversions.json │ │ └── creatives.json │ ├── source.py │ ├── spec.json │ ├── streams.py │ └── utils.py ├── test.flow.yaml ├── tests │ ├── __init__.py │ ├── snapshots │ │ ├── snapshots__discover__capture.stdout.json │ │ └── snapshots__spec__capture.stdout.json │ └── test_snapshots.py └── unit_tests │ ├── __init__.py │ ├── conftest.py │ ├── output_slices.json │ ├── responses │ └── ad_member_country_analytics │ │ ├── response_1.json │ │ ├── response_2.json │ │ └── response_3.json │ ├── test_analytics_streams.py │ ├── test_source.py │ └── utils_tests │ ├── samples │ └── test_data_for_tranform.py │ ├── test_make_slice.py │ └── test_transform_data.py ├── source-linkedin-pages ├── acmeCo │ ├── flow.yaml │ ├── follower_statistics.schema.yaml │ ├── organization_lookup.schema.yaml │ └── share_statistics.schema.yaml ├── connector_config.yaml ├── poetry.lock ├── pyproject.toml ├── source_linkedin_pages │ ├── __init__.py │ ├── __main__.py │ ├── schemas │ │ ├── follower_statistics.json │ │ ├── organization_lookup.json │ │ ├── share_statistics.json │ │ └── total_follower_count.json │ ├── source.py │ ├── spec.json │ └── utils.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ ├── discover.stdout.json │ └── spec.stdout.json │ └── test_snapshots.py ├── source-looker ├── VERSION ├── config.yaml ├── poetry.lock ├── pyproject.toml ├── source_looker │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── models.py │ └── resources.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ └── snapshots__spec__capture.stdout.json │ └── test_snapshots.py ├── source-mixpanel-native ├── acmeCo │ ├── annotations.schema.yaml │ ├── cohort_members.schema.yaml │ ├── cohorts.schema.yaml │ ├── engage.schema.yaml │ ├── export.schema.yaml │ ├── flow.yaml │ └── funnels.schema.yaml ├── config.yaml ├── poetry.lock ├── pyproject.toml ├── source_mixpanel_native │ ├── __init__.py │ ├── __main__.py │ ├── property_transformation.py │ ├── schemas │ │ ├── annotations.json │ │ ├── cohort_members.json │ │ ├── cohorts.json │ │ ├── engage.json │ │ ├── export.json │ │ └── funnels.json │ ├── source.py │ ├── spec.json │ ├── streams │ │ ├── __init__.py │ │ ├── annotations.py │ │ ├── base.py │ │ ├── cohort_members.py │ │ ├── cohorts.py │ │ ├── engage.py │ │ ├── export.py │ │ └── funnels.py │ ├── testing.py │ └── utils.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ ├── snapshots__discover__capture.stdout.json │ └── snapshots__spec__capture.stdout.json │ └── test_snapshots.py ├── source-monday ├── acmeCo │ ├── boards.schema.yaml │ ├── flow.yaml │ ├── items.schema.yaml │ ├── tags.schema.yaml │ ├── teams.schema.yaml │ └── users.schema.yaml ├── config.yaml ├── poetry.lock ├── pyproject.toml ├── source_monday │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── graphql │ │ ├── __init__.py │ │ ├── activity_logs.py │ │ ├── boards.py │ │ ├── constants.py │ │ ├── items.py │ │ └── query_executor.py │ ├── models.py │ ├── resources.py │ └── utils.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ ├── snapshots__capture__stdout.json │ ├── snapshots__discover__stdout.json │ └── snapshots__spec__stdout.json │ └── test_snapshots.py ├── source-mongodb ├── .snapshots │ ├── TestBatchIncrementalResumption │ ├── TestCapture │ ├── TestCaptureBatchSnapshotResumption │ ├── TestCaptureExclusiveCollectionFilter │ ├── TestCaptureFromView │ ├── TestCaptureFromViewIncremental │ ├── TestCaptureFromViewWithMultipleSources │ ├── TestCaptureSplitLargeDocuments │ ├── TestCaptureStressChangeStreamCorrectness │ ├── TestDiscover │ ├── TestDiscoverAllDatabases │ ├── TestDiscoverBatchCollections │ ├── TestDiscoverMultipleDatabases │ ├── TestNestedCursorFields │ └── TestSpec ├── CHANGELOG.md ├── Dockerfile ├── README.md ├── VARIANTS ├── VERSION ├── backfill.go ├── change_stream.go ├── change_stream_test.go ├── config_test.go ├── coordinator.go ├── coordinator_test.go ├── discovery.go ├── discovery_test.go ├── docker-compose-init.sh ├── docker-compose.yaml ├── global-bundle.pem ├── main.go ├── main_test.go ├── pull.go ├── pull_test.go ├── sample.key ├── test_util.go └── view_test.go ├── source-mysql-batch ├── .snapshots │ ├── TestAsyncCapture-Capture │ ├── TestAsyncCapture-Discovery │ ├── TestBinaryTypes-Capture │ ├── TestBinaryTypes-Discovery │ ├── TestCaptureFromView-Capture │ ├── TestCaptureFromView-DiscoveryWithViews │ ├── TestCaptureFromView-DiscoveryWithoutViews │ ├── TestCaptureWithEmptyPoll-Capture │ ├── TestCaptureWithEmptyPoll-Discovery │ ├── TestCaptureWithModifications-Capture │ ├── TestCaptureWithModifications-Discovery │ ├── TestCaptureWithNullCursor-Capture │ ├── TestCaptureWithNullCursor-Discovery │ ├── TestCaptureWithTwoColumnCursor-Capture │ ├── TestCaptureWithTwoColumnCursor-Discovery │ ├── TestCaptureWithUpdatedAtCursor-Capture │ ├── TestCaptureWithUpdatedAtCursor-Discovery │ ├── TestDateAndTimeTypes-Capture │ ├── TestDateAndTimeTypes-Discovery │ ├── TestEnumAndSetTypes-Capture │ ├── TestEnumAndSetTypes-Discovery │ ├── TestFeatureFlagEmitSourcedSchemas-Default │ ├── TestFeatureFlagEmitSourcedSchemas-Disabled │ ├── TestFeatureFlagEmitSourcedSchemas-Enabled │ ├── TestFeatureFlagKeylessRowID-Disabled-Capture │ ├── TestFeatureFlagKeylessRowID-Disabled-Discovery │ ├── TestFeatureFlagKeylessRowID-Enabled-Capture │ ├── TestFeatureFlagKeylessRowID-Enabled-Discovery │ ├── TestFieldLengthDiscovery │ ├── TestFullRefresh-Capture │ ├── TestFullRefresh-Discovery │ ├── TestIntegerTypes-Capture │ ├── TestIntegerTypes-Discovery │ ├── TestJSONType-Capture │ ├── TestJSONType-Discovery │ ├── TestKeylessCapture-Capture │ ├── TestKeylessCapture-Discovery │ ├── TestKeylessFullRefreshCapture-Capture │ ├── TestKeylessFullRefreshCapture-Discovery │ ├── TestNonexistentCursor-Capture │ ├── TestNonexistentCursor-Discovery │ ├── TestNumericTypes-Capture │ ├── TestNumericTypes-Discovery │ ├── TestQueryPlaceholderExpansion │ ├── TestQueryTemplate-FirstNoCursor │ ├── TestQueryTemplate-FirstOneCursor │ ├── TestQueryTemplate-FirstThreeCursor │ ├── TestQueryTemplate-FirstTwoCursor │ ├── TestQueryTemplate-SubsequentNoCursor │ ├── TestQueryTemplate-SubsequentOneCursor │ ├── TestQueryTemplate-SubsequentThreeCursor │ ├── TestQueryTemplate-SubsequentTwoCursor │ ├── TestQueryTemplateOverride-Capture │ ├── TestQueryTemplateOverride-Discovery │ ├── TestSimpleCapture-Capture │ ├── TestSimpleCapture-Discovery │ ├── TestSourceTag-Capture │ ├── TestSourceTag-Discovery │ ├── TestSpatialTypes-Capture │ ├── TestSpatialTypes-Discovery │ ├── TestSpec │ ├── TestStringTypes-Capture │ └── TestStringTypes-Discovery ├── CHANGELOG.md ├── Dockerfile ├── README.md ├── VARIANTS ├── VERSION ├── discovery.go ├── docker-compose.yaml ├── docker-initdb.sh ├── driver.go ├── main.go └── main_test.go ├── source-mysql ├── .snapshots │ ├── TestAddBinaryColumn │ ├── TestAddLegacyTextColumn │ ├── TestAlterTable_AddColumnBasic-at_end │ ├── TestAlterTable_AddColumnBasic-at_end_restart │ ├── TestAlterTable_AddColumnBasic-at_first │ ├── TestAlterTable_AddColumnBasic-at_first_restart │ ├── TestAlterTable_AddColumnBasic-at_middle │ ├── TestAlterTable_AddColumnBasic-at_middle_restart │ ├── TestAlterTable_AddColumnBasic-init │ ├── TestAlterTable_AddColumnSetEnum-enum-init │ ├── TestAlterTable_AddColumnSetEnum-enum-restart │ ├── TestAlterTable_AddColumnSetEnum-enum-stream │ ├── TestAlterTable_AddColumnSetEnum-set-init │ ├── TestAlterTable_AddColumnSetEnum-set-restart │ ├── TestAlterTable_AddColumnSetEnum-set-stream │ ├── TestAlterTable_AddEnumColumn-discover1 │ ├── TestAlterTable_AddEnumColumn-discover2 │ ├── TestAlterTable_AddEnumColumn-init │ ├── TestAlterTable_AddEnumColumn-modified │ ├── TestAlterTable_AddEnumColumn-rebackfilled │ ├── TestAlterTable_AddUnsignedColumn-discover1 │ ├── TestAlterTable_AddUnsignedColumn-discover2 │ ├── TestAlterTable_AddUnsignedColumn-init │ ├── TestAlterTable_AddUnsignedColumn-modified │ ├── TestAlterTable_AddUnsignedColumn-rebackfilled │ ├── TestAlterTable_ChangeColumn-capture1 │ ├── TestAlterTable_ChangeColumn-capture2 │ ├── TestAlterTable_ChangeColumn-capture3 │ ├── TestAlterTable_ChangeColumn-init │ ├── TestAlterTable_DropColumn-init │ ├── TestAlterTable_DropColumn-restart │ ├── TestAlterTable_DropColumn-stream │ ├── TestAlterTable_ModifyColumn-capture1 │ ├── TestAlterTable_ModifyColumn-capture2 │ ├── TestAlterTable_ModifyColumn-capture3 │ ├── TestAlterTable_ModifyColumn-capture4 │ ├── TestAlterTable_ModifyColumn-init │ ├── TestAlterTable_MultipleAlterations-altered │ ├── TestAlterTable_MultipleAlterations-init │ ├── TestAlterTable_RenameColumn-capture1 │ ├── TestAlterTable_RenameColumn-capture2 │ ├── TestAlterTable_RenameColumn-init │ ├── TestAlterTable_RenameColumnCaseInsensitive-discover │ ├── TestAlterTable_RenameColumnCaseInsensitive-init │ ├── TestAlterTable_RenameColumnCaseInsensitive-renamed │ ├── TestBackfillLegacyTextKey │ ├── TestBackfillModes │ ├── TestComplexDataset-init │ ├── TestComplexDataset-restart1 │ ├── TestComplexDataset-restart2 │ ├── TestCursorResume │ ├── TestDateNormalization │ ├── TestDatetimeNormalization │ ├── TestDatetimeNormalization-replication │ ├── TestDroppedAndRecreatedSchema │ ├── TestDroppedAndRecreatedTable │ ├── TestEmptyBlobs-Capture │ ├── TestEmptyBlobs-Discovery │ ├── TestEnumDecodingFix-backfill │ ├── TestEnumDecodingFix-discovery │ ├── TestEnumDecodingFix-replication1 │ ├── TestEnumDecodingFix-replication2 │ ├── TestEnumEmptyString-backfill │ ├── TestEnumEmptyString-discovery │ ├── TestEnumEmptyString-replication │ ├── TestEnumPrimaryKey │ ├── TestEnumPrimaryKey-discovery │ ├── TestFeatureFlagEmitSourcedSchemas-Default │ ├── TestFeatureFlagEmitSourcedSchemas-Disabled │ ├── TestFeatureFlagEmitSourcedSchemas-Enabled │ ├── TestFeatureFlagTinyintAsBool-Default-Capture │ ├── TestFeatureFlagTinyintAsBool-Default-Discovery │ ├── TestFeatureFlagTinyintAsBool-Disabled-Capture │ ├── TestFeatureFlagTinyintAsBool-Disabled-Discovery │ ├── TestFeatureFlagTinyintAsBool-Enabled-Capture │ ├── TestFeatureFlagTinyintAsBool-Enabled-Discovery │ ├── TestGeneric-CatalogPrimaryKey-capture1 │ ├── TestGeneric-CatalogPrimaryKey-capture2 │ ├── TestGeneric-CatalogPrimaryKeyOverride-capture1 │ ├── TestGeneric-CatalogPrimaryKeyOverride-capture2 │ ├── TestGeneric-DuplicatedScanKey │ ├── TestGeneric-EmptyTable-init │ ├── TestGeneric-EmptyTable-main │ ├── TestGeneric-IgnoredStreams-capture1 │ ├── TestGeneric-IgnoredStreams-capture2 │ ├── TestGeneric-KeylessCapture-Backfill │ ├── TestGeneric-KeylessCapture-Replication │ ├── TestGeneric-KeylessDiscovery │ ├── TestGeneric-MissingTable │ ├── TestGeneric-MultipleStreams-capture1 │ ├── TestGeneric-MultipleStreams-capture2 │ ├── TestGeneric-MultipleStreams-capture3 │ ├── TestGeneric-MultipleStreams-capture4 │ ├── TestGeneric-MultipleStreams-capture5 │ ├── TestGeneric-ReplicationDeletes-init │ ├── TestGeneric-ReplicationDeletes-main │ ├── TestGeneric-ReplicationInserts-init │ ├── TestGeneric-ReplicationInserts-main │ ├── TestGeneric-ReplicationOnly-backfill │ ├── TestGeneric-ReplicationOnly-replication │ ├── TestGeneric-ReplicationUpdates-init │ ├── TestGeneric-ReplicationUpdates-main │ ├── TestGeneric-SimpleCapture │ ├── TestGeneric-SimpleDiscovery │ ├── TestGeneric-SpecResponse │ ├── TestGeneric-StressCorrectness │ ├── TestInconsistentMetadata │ ├── TestMariaDBTypeUUID-capture │ ├── TestMariaDBTypeUUID-discovery │ ├── TestMariaDBTypeUUID-scankey │ ├── TestNonCommitFinalQuery │ ├── TestPartialRowImages-delete │ ├── TestPartialRowImages-init │ ├── TestPartialRowImages-main │ ├── TestPartialUpdateRowsEvent │ ├── TestPartitionedTable-Capture │ ├── TestPartitionedTable-Capture-Replication │ ├── TestPartitionedTable-Discovery │ ├── TestPrerequisites-captureAB │ ├── TestPrerequisites-captureABC-fails │ ├── TestPrerequisites-validateAB │ ├── TestPrerequisites-validateABC-fails │ ├── TestPrimaryKeyUpdate │ ├── TestPrimaryKeyUpdateOfOnlyChangesBinding │ ├── TestScanKeyDatetimes │ ├── TestScanKeyTypes-BigInt │ ├── TestScanKeyTypes-Binary │ ├── TestScanKeyTypes-Bool │ ├── TestScanKeyTypes-Char │ ├── TestScanKeyTypes-Decimal │ ├── TestScanKeyTypes-Double │ ├── TestScanKeyTypes-Integer │ ├── TestScanKeyTypes-Numeric │ ├── TestScanKeyTypes-Real │ ├── TestScanKeyTypes-SmallInt │ ├── TestScanKeyTypes-TinyInt │ ├── TestScanKeyTypes-VarBinary │ ├── TestScanKeyTypes-VarChar │ ├── TestSchemaWhitelist-Default │ ├── TestSchemaWhitelist-Excluded │ ├── TestSchemaWhitelist-Included │ ├── TestSecondaryIndexDiscovery-index_and_fk │ ├── TestSecondaryIndexDiscovery-index_only │ ├── TestSecondaryIndexDiscovery-nonunique_index │ ├── TestSecondaryIndexDiscovery-nothing │ ├── TestSecondaryIndexDiscovery-nullable_index │ ├── TestSecondaryIndexDiscovery-pk_and_index │ ├── TestSkipBackfills-init │ ├── TestSkipBackfills-main │ ├── TestSourceTag │ ├── TestTableNamesIdenticalUnderCapitalization-Capture │ ├── TestTableNamesIdenticalUnderCapitalization-Discover │ ├── TestTrickyColumnNames-backfill │ ├── TestTrickyColumnNames-discover │ ├── TestTrickyColumnNames-replication │ ├── TestTrickyEnumValues │ ├── TestTrickyTableNames-Capture │ ├── TestTrickyTableNames-Capture-Replication │ ├── TestTrickyTableNames-Discover │ ├── TestUnicodeText-binary │ ├── TestUnicodeText-latin1_swedish_ci │ ├── TestUnicodeText-ucs2_general_ci │ ├── TestUnicodeText-utf8mb3_general_ci │ ├── TestUnicodeText-utf8mb4_0900_ai_ci │ ├── TestUnicodeText-utf8mb4_general_ci │ ├── TestUnsignedIntegers-backfill │ ├── TestUnsignedIntegers-discovery │ └── TestUnsignedIntegers-replication ├── CHANGELOG.md ├── Dockerfile ├── README.md ├── VARIANTS ├── VERSION ├── backfill.go ├── capture_test.go ├── change.go ├── database.go ├── datatype_test.go ├── datatypes.go ├── diagnostics.go ├── discovery.go ├── discovery_test.go ├── docker-compose.yaml ├── docker-entrypoint-initdb.d │ └── init-user-db.sh ├── main.go ├── main_test.go ├── prerequisites.go ├── prerequisites_test.go ├── replication.go ├── replication_test.go ├── testdata │ └── statepop.csv └── throughput_test.go ├── source-navan ├── VERSION ├── poetry.lock ├── pyproject.toml ├── source_navan │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── models.py │ ├── resources.py │ └── utils.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ ├── snapshots__discover__stdout.json │ └── snapshots__spec__stdout.json │ └── test_snapshots.py ├── source-notion ├── VERSION ├── acmeCo │ ├── blocks.schema.yaml │ ├── comments.schema.yaml │ ├── databases.schema.yaml │ ├── flow.yaml │ ├── pages.schema.yaml │ └── users.schema.yaml ├── config.yaml ├── poetry.lock ├── pyproject.toml ├── source_notion │ ├── __init__.py │ ├── __main__.py │ ├── run.py │ ├── schemas │ │ ├── blocks.json │ │ ├── comments.json │ │ ├── databases.json │ │ ├── pages.json │ │ ├── shared │ │ │ ├── child.json │ │ │ ├── date.json │ │ │ ├── emoji.json │ │ │ ├── file.json │ │ │ ├── heading.json │ │ │ ├── icon.json │ │ │ ├── options.json │ │ │ ├── parent.json │ │ │ ├── rich_text.json │ │ │ ├── text_element.json │ │ │ ├── title.json │ │ │ └── user.json │ │ └── users.json │ ├── source.py │ ├── spec.json │ ├── streams.py │ └── utils.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ ├── snapshots__capture__capture.stdout.json │ ├── snapshots__discover__capture.stdout.json │ └── snapshots__spec__capture.stdout.json │ ├── test_incremental_streams.py │ ├── test_snapshots.py │ ├── test_source.py │ └── test_streams.py ├── source-onedrive ├── .snapshots │ └── TestSpec ├── CHANGELOG.md ├── Dockerfile ├── VERSION ├── main.go ├── main_test.go ├── oauth2.go └── tests │ └── parser_spec.json ├── source-oracle-batch ├── .snapshots │ ├── TestBasicCapture-Capture │ ├── TestBasicCapture-Discovery │ ├── TestBasicDatatypes-Capture │ ├── TestBasicDatatypes-Discovery │ ├── TestDecimals │ ├── TestFeatureFlagEmitSourcedSchemas-Default │ ├── TestFeatureFlagEmitSourcedSchemas-Disabled │ ├── TestFeatureFlagEmitSourcedSchemas-Enabled │ ├── TestFloatNaNs-Capture │ ├── TestFloatNaNs-Discovery │ ├── TestKeyDiscovery │ ├── TestSchemaFilter-FilteredIn │ ├── TestSchemaFilter-FilteredOut │ ├── TestSchemaFilter-Unfiltered │ └── TestSpec ├── CHANGELOG.md ├── Dockerfile ├── README.md ├── VERSION ├── config.pdb.yaml ├── discovery.go ├── driver.go ├── main.go └── main_test.go ├── source-oracle ├── .snapshots │ ├── TestAllTypes-backfill │ ├── TestAllTypes-discover │ ├── TestAllTypes-replication │ ├── TestCapitalizedTables-Capture │ ├── TestCapitalizedTables-Capture-Replication │ ├── TestCapitalizedTables-Discover │ ├── TestCaptureCapitalization │ ├── TestConfigURI-Basic │ ├── TestCrossSCNTransactions │ ├── TestCursorResume │ ├── TestGeneric-CatalogPrimaryKey-capture1 │ ├── TestGeneric-CatalogPrimaryKey-capture2 │ ├── TestGeneric-CatalogPrimaryKeyOverride-capture1 │ ├── TestGeneric-CatalogPrimaryKeyOverride-capture2 │ ├── TestGeneric-DuplicatedScanKey │ ├── TestGeneric-EmptyTable-init │ ├── TestGeneric-EmptyTable-main │ ├── TestGeneric-IgnoredStreams-capture1 │ ├── TestGeneric-IgnoredStreams-capture2 │ ├── TestGeneric-KeylessCapture-Backfill │ ├── TestGeneric-KeylessCapture-Replication │ ├── TestGeneric-KeylessDiscovery │ ├── TestGeneric-MissingTable │ ├── TestGeneric-MultipleStreams-capture1 │ ├── TestGeneric-MultipleStreams-capture2 │ ├── TestGeneric-MultipleStreams-capture3 │ ├── TestGeneric-MultipleStreams-capture4 │ ├── TestGeneric-MultipleStreams-capture5 │ ├── TestGeneric-ReplicationDeletes-init │ ├── TestGeneric-ReplicationDeletes-main │ ├── TestGeneric-ReplicationInserts-init │ ├── TestGeneric-ReplicationInserts-main │ ├── TestGeneric-ReplicationOnly-backfill │ ├── TestGeneric-ReplicationOnly-replication │ ├── TestGeneric-ReplicationUpdates-init │ ├── TestGeneric-ReplicationUpdates-main │ ├── TestGeneric-SimpleCapture │ ├── TestGeneric-SimpleDiscovery │ ├── TestGeneric-SpecResponse │ ├── TestIntegerKey-backfill │ ├── TestIntegerKey-discover │ ├── TestIntegerKey-replication │ ├── TestLongStrings-backfill │ ├── TestLongStrings-replication │ ├── TestNullValues-backfill │ ├── TestNullValues-discover │ ├── TestNullValues-replication │ ├── TestSchemaChangesExtract-delete │ ├── TestSchemaChangesExtract-init │ ├── TestSchemaChangesExtract-insert-after │ ├── TestSchemaChangesExtract-insert-before │ ├── TestSchemaChangesExtract-update │ ├── TestSchemaChangesOnline-init │ ├── TestSchemaChangesOnline-main │ ├── TestSchemaChangesSmart-init │ ├── TestSchemaChangesSmart-insert-after │ ├── TestSchemaChangesSmart-insert-before │ ├── TestSchemaChangesSmart-update │ ├── TestSchemaChangesSmartMultiple │ ├── TestSkipBackfills-init │ ├── TestSkipBackfills-main │ ├── TestStringKey-backfill │ ├── TestStringKey-discover │ ├── TestStringKey-replication │ ├── TestTrickyColumnNames-backfill │ ├── TestTrickyColumnNames-discover │ ├── TestTrickyColumnNames-replication │ ├── TestTruncatedTables-capture1 │ ├── TestTruncatedTables-capture2 │ ├── TestTruncatedTables-init │ ├── TestUnsupportedTypes-backfill │ ├── TestUnsupportedTypes-discover │ └── TestUnsupportedTypes-replication ├── Dockerfile ├── VERSION ├── backfill.go ├── capture_test.go ├── config.pdb.yaml ├── decode.go ├── diagnostics.go ├── discovery.go ├── docker-compose.yaml ├── main.go ├── main_test.go ├── prerequisites.go ├── replication.go ├── replication_test.go ├── reserved_words.go └── testdata │ └── statepop.csv ├── source-outreach ├── VERSION ├── acmeCo │ ├── accounts.schema.yaml │ ├── call_dispositions.schema.yaml │ ├── call_purposes.schema.yaml │ ├── calls.schema.yaml │ ├── email_addresses.schema.yaml │ ├── events.schema.yaml │ ├── flow.yaml │ ├── mailboxes.schema.yaml │ ├── mailings.schema.yaml │ ├── opportunities.schema.yaml │ ├── opportunity_stages.schema.yaml │ ├── prospects.schema.yaml │ ├── stages.schema.yaml │ ├── tasks.schema.yaml │ ├── teams.schema.yaml │ ├── templates.schema.yaml │ └── users.schema.yaml ├── config.yaml ├── poetry.lock ├── pyproject.toml ├── source_outreach │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── models.py │ └── resources.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ ├── snapshots__discover__capture.stdout.json │ └── snapshots__spec__capture.stdout.json │ └── test_snapshots.py ├── source-pendo ├── VERSION ├── poetry.lock ├── pyproject.toml ├── source_pendo │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── models.py │ └── resources.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ ├── snapshots__discover__capture.stdout.json │ └── snapshots__spec__capture.stdout.json │ └── test_snapshots.py ├── source-pokemon ├── poetry.lock ├── pyproject.toml ├── source_pokemon │ ├── __init__.py │ ├── __main__.py │ ├── pokemon_list.py │ ├── schemas │ │ └── pokemon.json │ ├── source.py │ └── spec.yaml └── test.flow.yaml ├── source-postgres-batch ├── .snapshots │ ├── TestArrayTypes-Capture │ ├── TestArrayTypes-Discovery │ ├── TestAsyncCapture-Capture │ ├── TestAsyncCapture-Discovery │ ├── TestBinaryTypes-Capture │ ├── TestBinaryTypes-Discovery │ ├── TestCaptureFromView-Capture │ ├── TestCaptureFromView-DiscoveryWithViews │ ├── TestCaptureFromView-DiscoveryWithoutViews │ ├── TestCaptureWithEmptyPoll-Capture │ ├── TestCaptureWithEmptyPoll-Discovery │ ├── TestCaptureWithTwoColumnCursor-Capture │ ├── TestCaptureWithTwoColumnCursor-Discovery │ ├── TestCaptureWithUpdatedAtCursor-Capture │ ├── TestCaptureWithUpdatedAtCursor-Discovery │ ├── TestDateAndTimeTypes-Capture │ ├── TestDateAndTimeTypes-Discovery │ ├── TestFeatureFlagEmitSourcedSchemas-Default │ ├── TestFeatureFlagEmitSourcedSchemas-Disabled │ ├── TestFeatureFlagEmitSourcedSchemas-Enabled │ ├── TestFeatureFlagKeylessRowID-Disabled-Capture │ ├── TestFeatureFlagKeylessRowID-Disabled-Discovery │ ├── TestFeatureFlagKeylessRowID-Enabled-Capture │ ├── TestFeatureFlagKeylessRowID-Enabled-Discovery │ ├── TestFieldLengthDiscovery │ ├── TestFullRefresh-Capture │ ├── TestFullRefresh-Discovery │ ├── TestGeometricTypes-Capture │ ├── TestGeometricTypes-Discovery │ ├── TestIntegerTypes-Capture │ ├── TestIntegerTypes-Discovery │ ├── TestJSONTypes-Capture │ ├── TestJSONTypes-Discovery │ ├── TestKeyDiscovery │ ├── TestKeylessCapture-Capture │ ├── TestKeylessCapture-Discovery │ ├── TestKeylessFullRefreshCapture-Capture │ ├── TestKeylessFullRefreshCapture-Discovery │ ├── TestModificationsAndDeletions-Capture │ ├── TestModificationsAndDeletions-Discovery │ ├── TestNetworkTypes-Capture │ ├── TestNetworkTypes-Discovery │ ├── TestNonexistentCursor-Capture │ ├── TestNonexistentCursor-Discovery │ ├── TestNumericTypes-Capture │ ├── TestNumericTypes-Discovery │ ├── TestQueryTemplates-MultiCursorFirstQuery │ ├── TestQueryTemplates-MultiCursorSubsequentQuery │ ├── TestQueryTemplates-SingleCursorFirstQuery │ ├── TestQueryTemplates-SingleCursorSubsequentQuery │ ├── TestQueryTemplates-XMinFirstQuery │ ├── TestQueryTemplates-XMinSubsequentQuery │ ├── TestSchemaFilter-FilteredIn │ ├── TestSchemaFilter-FilteredOut │ ├── TestSchemaFilter-Unfiltered │ ├── TestSimpleCapture-Capture │ ├── TestSimpleCapture-Discovery │ ├── TestSourceTag-Capture │ ├── TestSourceTag-Discovery │ ├── TestSpec │ ├── TestStringTypes-Capture │ ├── TestStringTypes-Discovery │ ├── TestUUIDType-Capture │ ├── TestUUIDType-Discovery │ ├── TestXMLType-Capture │ └── TestXMLType-Discovery ├── CHANGELOG.md ├── Dockerfile ├── README.md ├── VERSION ├── discovery.go ├── docker-compose.yaml ├── docker-initdb.sh ├── driver.go ├── main.go └── main_test.go ├── source-postgres ├── .snapshots │ ├── TestBackfillPriority │ ├── TestBackfillQueryGeneration │ ├── TestCIText-Capture │ ├── TestCIText-Discovery │ ├── TestCapitalizedTables-Capture │ ├── TestCapitalizedTables-Capture-Replication │ ├── TestCapitalizedTables-Discover │ ├── TestCaptureAfterSlotDropped-capture1 │ ├── TestCaptureAfterSlotDropped-capture2 │ ├── TestCaptureAfterSlotDropped-capture3 │ ├── TestCaptureAfterSlotDropped-capture4 │ ├── TestCaptureAsPartitions-Capture │ ├── TestCaptureAsPartitions-Discover │ ├── TestCaptureCapitalization │ ├── TestCaptureDomainJSONB-capture1 │ ├── TestCaptureDomainJSONB-capture2 │ ├── TestCaptureOversizedFields │ ├── TestCaptureOversizedFields-Replication │ ├── TestComplexDataset-init │ ├── TestComplexDataset-restart1 │ ├── TestComplexDataset-restart2 │ ├── TestConfigURI-Basic │ ├── TestConfigURI-IncorrectSSL │ ├── TestConfigURI-RequireSSL │ ├── TestCursorResume │ ├── TestDiscoveryCapitalization │ ├── TestDiscoveryComplex │ ├── TestDiscoveryExcludesSystemSchemas │ ├── TestDiscoveryWithoutPermissions │ ├── TestDroppedAndRecreatedTable │ ├── TestEnumScanKey │ ├── TestFeatureFlagEmitSourcedSchemas-Default │ ├── TestFeatureFlagEmitSourcedSchemas-Disabled │ ├── TestFeatureFlagEmitSourcedSchemas-Enabled │ ├── TestFeatureFlagFlattenArrays-Disabled-Capture │ ├── TestFeatureFlagFlattenArrays-Disabled-Discovery │ ├── TestFeatureFlagFlattenArrays-Enabled-Capture │ ├── TestFeatureFlagFlattenArrays-Enabled-Discovery │ ├── TestFloatKeyDiscovery │ ├── TestFloatKeyDiscovery-capture │ ├── TestGeneratedColumn-capture │ ├── TestGeneratedColumn-discovery │ ├── TestGeneric-CatalogPrimaryKey-capture1 │ ├── TestGeneric-CatalogPrimaryKey-capture2 │ ├── TestGeneric-CatalogPrimaryKeyOverride-capture1 │ ├── TestGeneric-CatalogPrimaryKeyOverride-capture2 │ ├── TestGeneric-DuplicatedScanKey │ ├── TestGeneric-EmptyTable-init │ ├── TestGeneric-EmptyTable-main │ ├── TestGeneric-IgnoredStreams-capture1 │ ├── TestGeneric-IgnoredStreams-capture2 │ ├── TestGeneric-KeylessCapture-Backfill │ ├── TestGeneric-KeylessCapture-Replication │ ├── TestGeneric-KeylessDiscovery │ ├── TestGeneric-MissingTable │ ├── TestGeneric-MultipleStreams-capture1 │ ├── TestGeneric-MultipleStreams-capture2 │ ├── TestGeneric-MultipleStreams-capture3 │ ├── TestGeneric-MultipleStreams-capture4 │ ├── TestGeneric-MultipleStreams-capture5 │ ├── TestGeneric-ReplicationDeletes-init │ ├── TestGeneric-ReplicationDeletes-main │ ├── TestGeneric-ReplicationInserts-init │ ├── TestGeneric-ReplicationInserts-main │ ├── TestGeneric-ReplicationOnly-backfill │ ├── TestGeneric-ReplicationOnly-replication │ ├── TestGeneric-ReplicationUpdates-init │ ├── TestGeneric-ReplicationUpdates-main │ ├── TestGeneric-SimpleCapture │ ├── TestGeneric-SimpleDiscovery │ ├── TestGeneric-SpecResponse │ ├── TestGeneric-StressCorrectness │ ├── TestKeylessBackfillQueryGeneration │ ├── TestLongYearTimestamps │ ├── TestMessageOverflow │ ├── TestMultidimensionalArrays-Capture │ ├── TestMultidimensionalArrays-Discovery │ ├── TestPartitionedCTIDBackfill │ ├── TestPartitionedTableDiscovery │ ├── TestPrerequisites-captureAB │ ├── TestPrerequisites-captureABC-fails │ ├── TestPrerequisites-validateAB │ ├── TestPrerequisites-validateABC-fails │ ├── TestPrimaryKeyUpdate │ ├── TestReplicaIdentity-init │ ├── TestReplicaIdentity-main │ ├── TestScanKeyTimestamps │ ├── TestScanKeyTypes-BigInt │ ├── TestScanKeyTypes-BigSerial │ ├── TestScanKeyTypes-Bool │ ├── TestScanKeyTypes-Char │ ├── TestScanKeyTypes-Decimal │ ├── TestScanKeyTypes-Double │ ├── TestScanKeyTypes-Integer │ ├── TestScanKeyTypes-MAC6 │ ├── TestScanKeyTypes-MAC8 │ ├── TestScanKeyTypes-Numeric │ ├── TestScanKeyTypes-OID │ ├── TestScanKeyTypes-Real │ ├── TestScanKeyTypes-Serial │ ├── TestScanKeyTypes-SmallInt │ ├── TestScanKeyTypes-SmallSerial │ ├── TestScanKeyTypes-Text │ ├── TestScanKeyTypes-UUID │ ├── TestScanKeyTypes-VarChar │ ├── TestSecondaryIndexDiscovery-index_only │ ├── TestSecondaryIndexDiscovery-nonunique_index │ ├── TestSecondaryIndexDiscovery-nothing │ ├── TestSecondaryIndexDiscovery-nullable_index │ ├── TestSecondaryIndexDiscovery-pk_and_index │ ├── TestSkipBackfills-init │ ├── TestSkipBackfills-main │ ├── TestSourceTag │ ├── TestSpecialTemporalValues │ ├── TestToastColumns-ident-default │ ├── TestToastColumns-ident-full │ ├── TestToastColumns-init │ ├── TestTrickyColumnNames-backfill │ ├── TestTrickyColumnNames-discover │ ├── TestTrickyColumnNames-replication │ ├── TestTruncatedTables-capture1 │ ├── TestTruncatedTables-capture2 │ ├── TestTruncatedTables-init │ ├── TestUnpairedSurrogatesInJSON │ ├── TestUserTypes-Domain-Capture │ ├── TestUserTypes-Domain-Capture-Replication │ ├── TestUserTypes-Domain-Discovery │ ├── TestUserTypes-Enum-Capture │ ├── TestUserTypes-Enum-Capture-Replication │ ├── TestUserTypes-Enum-Discovery │ ├── TestUserTypes-Range-Capture │ ├── TestUserTypes-Range-Capture-Replication │ ├── TestUserTypes-Range-Discovery │ ├── TestUserTypes-Tuple-Capture │ ├── TestUserTypes-Tuple-Capture-Replication │ ├── TestUserTypes-Tuple-Discovery │ └── TestXMINBackfill ├── CHANGELOG.md ├── Dockerfile ├── README.md ├── VARIANTS ├── VERSION ├── backfill.go ├── backfill_test.go ├── capture_test.go ├── change.go ├── database.go ├── datatype_test.go ├── datatypes.go ├── diagnostics.go ├── discovery.go ├── discovery_test.go ├── docker-compose.yaml ├── docker-entrypoint-initdb.d │ └── init-user-db.sh ├── fdbutils.go ├── fdbutils_test.go ├── main.go ├── main_test.go ├── prerequisites.go ├── prerequisites_test.go ├── replication.go ├── testdata │ └── statepop.csv └── throughput_test.go ├── source-qualtrics ├── VERSION ├── acmeCo │ ├── flow.yaml │ ├── survey_questions.schema.yaml │ ├── survey_responses.schema.yaml │ └── surveys.schema.yaml ├── poetry.lock ├── pyproject.toml ├── source_qualtrics │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── models.py │ └── resources.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ ├── snapshots__discover__stdout.json │ └── snapshots__spec__stdout.json │ └── test_snapshots.py ├── source-quickbooks ├── VERSION ├── config.yaml ├── poetry.lock ├── pyproject.toml ├── source_quickbooks │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── models.py │ └── resources.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ ├── snapshots__discover__stdout.json │ └── snapshots__spec__stdout.json │ └── test_snapshots.py ├── source-recharge ├── acmeCo │ ├── addresses.schema.yaml │ ├── charges.schema.yaml │ ├── customers.schema.yaml │ ├── discounts.schema.yaml │ ├── flow.yaml │ ├── metafields.schema.yaml │ ├── onetimes.schema.yaml │ ├── orders.schema.yaml │ ├── products.schema.yaml │ ├── shop.schema.yaml │ └── subscriptions.schema.yaml ├── config.yaml ├── poetry.lock ├── pyproject.toml ├── sample_files │ ├── sample_config.json │ └── sample_state.json ├── source_recharge │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── run.py │ ├── schemas │ │ ├── addresses.json │ │ ├── charges.json │ │ ├── collections.json │ │ ├── customers.json │ │ ├── discounts.json │ │ ├── metafields.json │ │ ├── onetimes.json │ │ ├── orders.json │ │ ├── products.json │ │ ├── shop.json │ │ └── subscriptions.json │ ├── source.py │ └── spec.json ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ ├── snapshot__discover__capture.stdout.json │ └── snapshot__spec__capture.stdout.json │ ├── test_api.py │ ├── test_snapshot.py │ └── test_source.py ├── source-redshift-batch ├── .snapshots │ ├── TestBasicCapture-Capture │ ├── TestBasicCapture-Discovery │ ├── TestBasicDatatypes-Capture │ ├── TestBasicDatatypes-Discovery │ ├── TestCaptureFromView-Capture │ ├── TestCaptureFromView-DiscoveryWithViews │ ├── TestCaptureFromView-DiscoveryWithoutViews │ ├── TestFeatureFlagEmitSourcedSchemas-Default │ ├── TestFeatureFlagEmitSourcedSchemas-Disabled │ ├── TestFeatureFlagEmitSourcedSchemas-Enabled │ ├── TestFeatureFlagKeylessRowID-Disabled-Capture │ ├── TestFeatureFlagKeylessRowID-Disabled-Discovery │ ├── TestFeatureFlagKeylessRowID-Enabled-Capture │ ├── TestFeatureFlagKeylessRowID-Enabled-Discovery │ ├── TestFeatureFlagUseSchemaInference-Discovery │ ├── TestFieldLengthDiscovery │ ├── TestFloatNaNs-Capture │ ├── TestFloatNaNs-Discovery │ ├── TestKeyDiscovery │ ├── TestKeylessCapture-Capture │ ├── TestKeylessCapture-Discovery │ ├── TestKeylessDiscovery │ ├── TestKeylessFullRefreshCapture-Capture │ ├── TestKeylessFullRefreshCapture-Discovery │ ├── TestNonexistentCursor-Capture │ ├── TestNonexistentCursor-Discovery │ ├── TestQueryTemplate-FirstNoCursor │ ├── TestQueryTemplate-FirstOneCursor │ ├── TestQueryTemplate-FirstThreeCursor │ ├── TestQueryTemplate-FirstTwoCursor │ ├── TestQueryTemplate-SubsequentNoCursor │ ├── TestQueryTemplate-SubsequentOneCursor │ ├── TestQueryTemplate-SubsequentThreeCursor │ ├── TestQueryTemplate-SubsequentTwoCursor │ ├── TestQueryTemplateOverride-Capture │ ├── TestQueryTemplateOverride-Discovery │ ├── TestSchemaFilter-FilteredIn │ ├── TestSchemaFilter-FilteredOut │ ├── TestSchemaFilter-Unfiltered │ ├── TestSourceTag-Capture │ ├── TestSourceTag-Discovery │ ├── TestSpec │ ├── TestTemporalTypes-Capture │ └── TestTemporalTypes-Discovery ├── CHANGELOG.md ├── Dockerfile ├── README.md ├── VERSION ├── configs │ ├── cloud-capture.yaml │ ├── cloud-setup.yaml │ ├── local-capture.yaml │ └── local-setup.yaml ├── discovery.go ├── docker-compose.yaml ├── docker-initdb.sh ├── driver.go ├── main.go └── main_test.go ├── source-s3 ├── .gitignore ├── CHANGELOG.md ├── Dockerfile ├── VERSION └── main.go ├── source-sage-intacct ├── poetry.lock ├── pyproject.toml ├── source_sage_intacct │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── models.py │ ├── resources.py │ └── sage.py └── tests │ ├── __init__.py │ ├── snapshots │ ├── xml_requests__xml_requests_api_session_request_txt_api_session_request_args0__api_session_request.txt │ ├── xml_requests__xml_requests_get_all_records_request_txt_get_all_records_request_args6__get_all_records_request.txt │ ├── xml_requests__xml_requests_get_all_records_request_txt_get_all_records_request_args7__get_all_records_request.txt │ ├── xml_requests__xml_requests_get_all_records_request_txt_get_all_records_request_args8__get_all_records_request.txt │ ├── xml_requests__xml_requests_get_deletions_at_request_txt_get_deletions_at_request_args10__get_deletions_at_request.txt │ ├── xml_requests__xml_requests_get_deletions_at_request_txt_get_deletions_at_request_args11__get_deletions_at_request.txt │ ├── xml_requests__xml_requests_get_deletions_since_request_txt_get_deletions_since_request_args9__get_deletions_since_request.txt │ ├── xml_requests__xml_requests_get_records_at_request_txt_get_records_at_request_args5__get_records_at_request.txt │ ├── xml_requests__xml_requests_get_records_at_request_txt_get_records_at_request_args6__get_records_at_request.txt │ ├── xml_requests__xml_requests_get_records_since_request_txt_get_records_since_request_args4__get_records_since_request.txt │ ├── xml_requests__xml_requests_get_user_by_id_request_txt_get_user_by_id_request_args2__get_user_by_id_request.txt │ ├── xml_requests__xml_requests_object_definition_request_txt_object_definition_request_args3__object_definition_request.txt │ └── xml_requests__xml_requests_user_datetime_prefs_request_txt_user_datetime_prefs_request_args1__user_datetime_prefs_request.txt │ ├── test_api.py │ └── test_xml_requests.py ├── source-salesforce-native ├── VERSION ├── acmeCo │ ├── Account.schema.yaml │ ├── User.schema.yaml │ └── flow.yaml ├── config.yaml ├── poetry.lock ├── pyproject.toml ├── source_salesforce_native │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── auth.py │ ├── bulk_job_manager.py │ ├── models.py │ ├── resources.py │ ├── rest_query_manager.py │ ├── shared.py │ └── supported_standard_objects.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ ├── snapshots__capture__capture.stdout.json │ ├── snapshots__discover__capture.stdout.json │ └── snapshots__spec__capture.stdout.json │ └── test_snapshots.py ├── source-sentry ├── VERSION ├── acmeCo │ ├── Issues.schema.yaml │ ├── Projects.schema.yaml │ ├── Teams.schema.yaml │ └── flow.yaml ├── config.yaml ├── poetry.lock ├── pyproject.toml ├── source_sentry │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── models.py │ └── resources.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ ├── snapshots__capture__stdout.json │ ├── snapshots__discover__stdout.json │ └── snapshots__spec__stdout.json │ └── test_snapshots.py ├── source-sftp ├── .snapshots │ ├── TestListing-non-recursive │ ├── TestListing-recursive │ ├── TestListing-recursive_otherDir │ ├── TestListing-recursive_startAt_root-sub │ ├── TestListing-recursive_startAt_root-sub-y.csv │ ├── TestListing-recursive_startAt_z │ └── TestSpec ├── CHANGELOG.md ├── Dockerfile ├── VERSION ├── docker-compose.yaml ├── main.go ├── main_test.go └── tests │ └── parser_spec.json ├── source-shopify-native ├── VERSION ├── acmeCo │ ├── abandoned_checkouts.schema.yaml │ ├── custom_collection_metafields.schema.yaml │ ├── custom_collections.schema.yaml │ ├── customer_metafields.schema.yaml │ ├── customers.schema.yaml │ ├── flow.yaml │ ├── fulfillment_orders.schema.yaml │ ├── fulfillments.schema.yaml │ ├── inventory_items.schema.yaml │ ├── inventory_levels.schema.yaml │ ├── location_metafields.schema.yaml │ ├── locations.schema.yaml │ ├── order_agreements.schema.yaml │ ├── order_metafields.schema.yaml │ ├── order_refunds.schema.yaml │ ├── order_risks.schema.yaml │ ├── order_transactions.schema.yaml │ ├── orders.schema.yaml │ ├── product_media.schema.yaml │ ├── product_metafields.schema.yaml │ ├── product_variant_metafields.schema.yaml │ ├── product_variants.schema.yaml │ ├── products.schema.yaml │ ├── smart_collection_metafields.schema.yaml │ ├── smart_collections.schema.yaml │ └── subscription_contracts.schema.yaml ├── config.yaml ├── poetry.lock ├── pyproject.toml ├── source_shopify_native │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── graphql │ │ ├── README.md │ │ ├── __init__.py │ │ ├── abandoned_checkouts.py │ │ ├── bulk_job_manager.py │ │ ├── client.py │ │ ├── collections │ │ │ ├── __init__.py │ │ │ ├── collections.py │ │ │ └── metafields.py │ │ ├── common.py │ │ ├── customers │ │ │ ├── __init__.py │ │ │ ├── customers.py │ │ │ └── metafields.py │ │ ├── inventory │ │ │ ├── __init__.py │ │ │ ├── inventory_items.py │ │ │ └── inventory_levels.py │ │ ├── locations │ │ │ ├── __init__.py │ │ │ ├── locations.py │ │ │ └── metafields.py │ │ ├── metafields.py │ │ ├── orders │ │ │ ├── __init__.py │ │ │ ├── agreements.py │ │ │ ├── fulfillment_orders.py │ │ │ ├── fulfillments.py │ │ │ ├── metafields.py │ │ │ ├── orders.py │ │ │ ├── refunds.py │ │ │ ├── risks.py │ │ │ └── transactions.py │ │ ├── products │ │ │ ├── __init__.py │ │ │ ├── media.py │ │ │ ├── metafields.py │ │ │ ├── products.py │ │ │ └── variants.py │ │ └── subscriptions │ │ │ ├── __init__.py │ │ │ └── subscription_contracts.py │ ├── models.py │ └── resources.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ ├── snapshots__capture__capture.stdout.json │ ├── snapshots__discover__capture.stdout.json │ └── snapshots__spec__capture.stdout.json │ └── test_snapshots.py ├── source-shopify ├── VERSION ├── __main__.py ├── acmeCo │ ├── configs │ │ ├── source-shopify.resource.0.config.yaml │ │ ├── source-shopify.resource.1.config.yaml │ │ ├── source-shopify.resource.2.config.yaml │ │ ├── source-shopify.resource.3.config.yaml │ │ ├── source-shopify.resource.4.config.yaml │ │ ├── source-shopify.resource.5.config.yaml │ │ └── source-shopify.resource.6.config.yaml │ ├── custom_collections.schema.yaml │ ├── customers.schema.yaml │ ├── flow.yaml │ ├── inventory_items.schema.yaml │ ├── locations.schema.yaml │ ├── metafields.schema.yaml │ ├── order_risks.schema.yaml │ ├── orders.schema.yaml │ ├── price_rules.schema.yaml │ ├── products.schema.yaml │ ├── refunds.schema.yaml │ ├── transactions.schema.yaml │ └── users.schema.yaml ├── connector_config.yaml ├── poetry.lock ├── pyproject.toml ├── source-shopify.resource.0.config.yaml ├── source-shopify.resource.1.config.yaml ├── source-shopify.resource.10.config.yaml ├── source-shopify.resource.11.config.yaml ├── source-shopify.resource.12.config.yaml ├── source-shopify.resource.13.config.yaml ├── source-shopify.resource.14.config.yaml ├── source-shopify.resource.2.config.yaml ├── source-shopify.resource.3.config.yaml ├── source-shopify.resource.4.config.yaml ├── source-shopify.resource.5.config.yaml ├── source-shopify.resource.6.config.yaml ├── source-shopify.resource.7.config.yaml ├── source-shopify.resource.8.config.yaml ├── source-shopify.resource.9.config.yaml ├── source_shopify │ ├── .github │ │ └── workflows │ │ │ └── ci_workflow.yml │ ├── .gitignore │ ├── .project │ ├── .pydevproject │ ├── .secrets │ │ └── .gitignore │ ├── LICENSE │ ├── README.md │ ├── meltano.yml │ ├── mypy.ini │ ├── output │ │ └── .gitignore │ ├── poetry.lock │ ├── pyproject.toml │ ├── tap_shopify │ │ ├── __init__.py │ │ ├── auth.py │ │ ├── client.py │ │ ├── schemas │ │ │ ├── abandoned_checkout.json │ │ │ ├── carrier_service.json │ │ │ ├── collect.json │ │ │ ├── custom_collection.json │ │ │ ├── customer.json │ │ │ ├── discount_code.json │ │ │ ├── inventory_item.json │ │ │ ├── inventory_level.json │ │ │ ├── location.json │ │ │ ├── metafield.json │ │ │ ├── order.json │ │ │ ├── price_rule.json │ │ │ ├── product.json │ │ │ ├── refund.json │ │ │ ├── risk.json │ │ │ ├── transaction.json │ │ │ └── user.json │ │ ├── streams.py │ │ └── tap.py │ └── tox.ini ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ ├── snapshots__capture__capture.stdout.json │ ├── snapshots__discover__capture.stdout.json │ └── snapshots__spec__capture.stdout.json │ └── test_snapshots.py ├── source-snowflake ├── .snapshots │ ├── TestAddingAndRemovingBindings │ ├── TestBasicDatatypes-discover │ ├── TestBasicDatatypes-init │ ├── TestBasicDatatypes-main │ ├── TestConfigURI-Optional_Parameters │ ├── TestConfigURI-User_&_Password_Authentication │ ├── TestDiscoveryMultiplePrimaryKeys │ ├── TestDiscoveryWithPrimaryKey │ ├── TestDiscoveryWithoutPrimaryKey │ ├── TestDynamicTable-discovery │ ├── TestDynamicTable-initial │ ├── TestDynamicTable-subsequent │ ├── TestLargeCapture │ ├── TestLongTableNames-init │ ├── TestLongTableNames-main │ ├── TestSimpleCapture-init │ ├── TestSimpleCapture-main │ ├── TestSpec │ ├── TestTimestampDatatypes-capture │ ├── TestTimestampDatatypes-discover │ ├── TestVariantDatatypes-capture │ └── TestVariantDatatypes-discover ├── CHANGELOG.md ├── Dockerfile ├── README.md ├── VERSION ├── capture.go ├── capture_test.go ├── config_test.go ├── database.go ├── discovery.go ├── discovery_test.go ├── main.go ├── main_test.go └── prerequisites.go ├── source-sqlserver-batch ├── .snapshots │ ├── TestAsyncCapture-Capture │ ├── TestAsyncCapture-Discovery │ ├── TestBinaryTypes-Capture │ ├── TestBinaryTypes-Discovery │ ├── TestCaptureFromView-Capture │ ├── TestCaptureFromView-DiscoveryWithViews │ ├── TestCaptureFromView-DiscoveryWithoutViews │ ├── TestCaptureWithEmptyPoll-Capture │ ├── TestCaptureWithEmptyPoll-Discovery │ ├── TestCaptureWithTwoColumnCursor-Capture │ ├── TestCaptureWithTwoColumnCursor-Discovery │ ├── TestCaptureWithUpdatedAtCursor-Capture │ ├── TestCaptureWithUpdatedAtCursor-Discovery │ ├── TestDateAndTimeTypes-Capture │ ├── TestDateAndTimeTypes-Discovery │ ├── TestDatetimeCursorRoundTrip-Chicago │ ├── TestDatetimeCursorRoundTrip-PositiveOffset │ ├── TestDatetimeCursorRoundTrip-UTC │ ├── TestDatetimeLocation-Chicago │ ├── TestDatetimeLocation-ExplicitNegativeOffset │ ├── TestDatetimeLocation-ExplicitPositiveOffset │ ├── TestDatetimeLocation-Tokyo │ ├── TestDatetimeLocation-UTC │ ├── TestDecimalCursorRoundTrip │ ├── TestFeatureFlagEmitSourcedSchemas-Default │ ├── TestFeatureFlagEmitSourcedSchemas-Disabled │ ├── TestFeatureFlagEmitSourcedSchemas-Enabled │ ├── TestFieldLengthDiscovery │ ├── TestFullRefresh-Capture │ ├── TestFullRefresh-Discovery │ ├── TestIntegerTypes-Capture │ ├── TestIntegerTypes-Discovery │ ├── TestKeyDiscovery │ ├── TestKeylessCapture-Capture │ ├── TestKeylessCapture-Discovery │ ├── TestKeylessFullRefreshCapture-Capture │ ├── TestKeylessFullRefreshCapture-Discovery │ ├── TestModificationsAndDeletions-Capture │ ├── TestModificationsAndDeletions-Discovery │ ├── TestMoneyCursorRoundTrip │ ├── TestNonexistentCursor-Capture │ ├── TestNonexistentCursor-Discovery │ ├── TestNumericTypes-Capture │ ├── TestNumericTypes-Discovery │ ├── TestQueryTemplates-MultiCursorFirstQuery │ ├── TestQueryTemplates-MultiCursorSubsequentQuery │ ├── TestQueryTemplates-SingleCursorFirstQuery │ ├── TestQueryTemplates-SingleCursorSubsequentQuery │ ├── TestSchemaFilter-FilteredIn │ ├── TestSchemaFilter-FilteredOut │ ├── TestSchemaFilter-Unfiltered │ ├── TestSimpleCapture-Capture │ ├── TestSimpleCapture-Discovery │ ├── TestSmallDatetimeCursorRoundTrip-Chicago │ ├── TestSmallDatetimeCursorRoundTrip-PositiveOffset │ ├── TestSmallDatetimeCursorRoundTrip-UTC │ ├── TestSmallMoneyCursorRoundTrip │ ├── TestSourceTag-Capture │ ├── TestSourceTag-Discovery │ ├── TestSpec │ ├── TestStringTypes-Capture │ ├── TestStringTypes-Discovery │ ├── TestUUIDType-Capture │ ├── TestUUIDType-Discovery │ ├── TestUniqueIdentifierCursorRoundTrip │ ├── TestVarbinaryCursorRoundTrip │ ├── TestXMLType-Capture │ └── TestXMLType-Discovery ├── CHANGELOG.md ├── Dockerfile ├── README.md ├── VERSION ├── cursor_test.go ├── discovery.go ├── docker-compose.yaml ├── docker-initdb.sh ├── driver.go ├── main.go └── main_test.go ├── source-sqlserver ├── .snapshots │ ├── TestAlterationAddColumn-Automatic │ ├── TestAlterationAddColumn-Manual │ ├── TestAlterationAddColumn-Off │ ├── TestBitNotNullDeletion │ ├── TestCaptureInstanceCleanup-WithDBO │ ├── TestCaptureInstanceCleanup-WithoutDBO │ ├── TestCaptureWithCompoundTextAndIntegerKey │ ├── TestCollatedCapture-Char │ ├── TestCollatedCapture-NChar │ ├── TestCollatedCapture-NVarChar │ ├── TestCollatedCapture-VarChar │ ├── TestColumnNameQuoting │ ├── TestComputedColumn-capture │ ├── TestComputedColumn-discovery │ ├── TestComputedPrimaryKey-capture │ ├── TestComputedPrimaryKey-discovery │ ├── TestDeletedTextColumn-init │ ├── TestDeletedTextColumn-main │ ├── TestDiscoverOnlyEnabled-Disabled │ ├── TestDiscoverOnlyEnabled-Enabled │ ├── TestDiscoveryIrrelevantConstraints │ ├── TestDroppedAndRecreatedTable │ ├── TestFeatureFlagEmitSourcedSchemas-Default │ ├── TestFeatureFlagEmitSourcedSchemas-Disabled │ ├── TestFeatureFlagEmitSourcedSchemas-Enabled │ ├── TestFilegroupAndRole │ ├── TestGeneric-CatalogPrimaryKey-capture1 │ ├── TestGeneric-CatalogPrimaryKey-capture2 │ ├── TestGeneric-CatalogPrimaryKeyOverride-capture1 │ ├── TestGeneric-CatalogPrimaryKeyOverride-capture2 │ ├── TestGeneric-DuplicatedScanKey │ ├── TestGeneric-EmptyTable-init │ ├── TestGeneric-EmptyTable-main │ ├── TestGeneric-IgnoredStreams-capture1 │ ├── TestGeneric-IgnoredStreams-capture2 │ ├── TestGeneric-KeylessCapture-Backfill │ ├── TestGeneric-KeylessCapture-Replication │ ├── TestGeneric-KeylessDiscovery │ ├── TestGeneric-MissingTable │ ├── TestGeneric-MultipleStreams-capture1 │ ├── TestGeneric-MultipleStreams-capture2 │ ├── TestGeneric-MultipleStreams-capture3 │ ├── TestGeneric-MultipleStreams-capture4 │ ├── TestGeneric-MultipleStreams-capture5 │ ├── TestGeneric-ReplicationDeletes-init │ ├── TestGeneric-ReplicationDeletes-main │ ├── TestGeneric-ReplicationInserts-init │ ├── TestGeneric-ReplicationInserts-main │ ├── TestGeneric-ReplicationOnly-backfill │ ├── TestGeneric-ReplicationOnly-replication │ ├── TestGeneric-ReplicationUpdates-init │ ├── TestGeneric-ReplicationUpdates-main │ ├── TestGeneric-SimpleCapture │ ├── TestGeneric-SimpleDiscovery │ ├── TestGeneric-SpecResponse │ ├── TestGeneric-StressCorrectness │ ├── TestIndexIncludedDiscovery │ ├── TestManyTables-capture1 │ ├── TestManyTables-capture2 │ ├── TestManyTables-init │ ├── TestOversizedFields │ ├── TestPrerequisites-captureAB │ ├── TestPrerequisites-captureABC-fails │ ├── TestPrerequisites-validateAB │ ├── TestPrerequisites-validateABC-fails │ ├── TestPrimaryKeyUpdate │ ├── TestRowversionTypes-rowversion-capture │ ├── TestRowversionTypes-rowversion-discovery │ ├── TestRowversionTypes-timestamp-capture │ ├── TestRowversionTypes-timestamp-discovery │ ├── TestScanKeyTypes-DateTime │ ├── TestScanKeyTypes-DateTimeOffset │ ├── TestScanKeyTypes-Decimal │ ├── TestScanKeyTypes-Integer │ ├── TestScanKeyTypes-Numeric │ ├── TestScanKeyTypes-UniqueIdentifier │ ├── TestSecondaryIndexDiscovery-index_only │ ├── TestSecondaryIndexDiscovery-nonunique_index │ ├── TestSecondaryIndexDiscovery-nothing │ ├── TestSecondaryIndexDiscovery-nullable_index │ ├── TestSecondaryIndexDiscovery-pk_and_index │ ├── TestSourceTag │ ├── TestTextCollation │ ├── TestUUIDCaptureOrder │ └── TestVarcharKeyDiscovery ├── CHANGELOG.md ├── Dockerfile ├── README.md ├── VARIANTS ├── VERSION ├── backfill.go ├── change.go ├── collation.go ├── collation_test.go ├── datatypes.go ├── datatypes_test.go ├── diagnostics.go ├── discovery.go ├── discovery_test.go ├── docker-compose.yaml ├── docker-initdb.sh ├── main.go ├── main_test.go ├── prerequisites.go ├── prerequisites_test.go ├── replication.go ├── testdata │ └── statepop.csv ├── throughput_test.go └── watermarks.go ├── source-stripe-native ├── acmeCo │ ├── Accounts.schema.yaml │ ├── ApplicationFees.schema.yaml │ ├── ApplicationFeesRefunds.schema.yaml │ ├── BalanceTransactions.schema.yaml │ ├── BankAccounts.schema.yaml │ ├── Cards.schema.yaml │ ├── Charges.schema.yaml │ ├── CheckoutSessions.schema.yaml │ ├── CheckoutSessionsLine.schema.yaml │ ├── Coupons.schema.yaml │ ├── CreditNotes.schema.yaml │ ├── CreditNotesLines.schema.yaml │ ├── CustomerBalanceTransaction.schema.yaml │ ├── Customers.schema.yaml │ ├── Disputes.schema.yaml │ ├── EarlyFraudWarning.schema.yaml │ ├── Events.schema.yaml │ ├── ExternalAccountCards.schema.yaml │ ├── ExternalBankAccount.schema.yaml │ ├── Files.schema.yaml │ ├── FilesLink.schema.yaml │ ├── InvoiceItems.schema.yaml │ ├── InvoiceLineItems.schema.yaml │ ├── Invoices.schema.yaml │ ├── PaymentIntents.schema.yaml │ ├── PaymentMethods.schema.yaml │ ├── Payouts.schema.yaml │ ├── Persons.schema.yaml │ ├── Plans.schema.yaml │ ├── Products.schema.yaml │ ├── PromotionCode.schema.yaml │ ├── Refunds.schema.yaml │ ├── Reviews.schema.yaml │ ├── SetupAttempts.schema.yaml │ ├── SetupIntents.schema.yaml │ ├── SubscriptionItems.schema.yaml │ ├── SubscriptionSchedule.schema.yaml │ ├── Subscriptions.schema.yaml │ ├── TopUps.schema.yaml │ ├── TransferReversals.schema.yaml │ ├── Transfers.schema.yaml │ ├── UsageRecords.schema.yaml │ └── flow.yaml ├── config.yaml ├── poetry.lock ├── pyproject.toml ├── source_stripe_native │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── models.py │ ├── priority_capture.py │ └── resources.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ ├── snapshots__capture__stdout.json │ ├── snapshots__discover__stdout.json │ └── snapshots__spec__stdout.json │ └── test_snapshots.py ├── source-test ├── CHANGELOG.md ├── Dockerfile ├── VERSION └── main.go ├── source-twilio ├── VERSION ├── config.yaml ├── poetry.lock ├── pyproject.toml ├── source_twilio │ ├── __init__.py │ ├── __main__.py │ ├── auth.py │ ├── run.py │ ├── schemas │ │ ├── accounts.json │ │ ├── addresses.json │ │ ├── alerts.json │ │ ├── applications.json │ │ ├── available_phone_number_countries.json │ │ ├── available_phone_numbers_local.json │ │ ├── available_phone_numbers_mobile.json │ │ ├── available_phone_numbers_toll_free.json │ │ ├── calls.json │ │ ├── conference_participants.json │ │ ├── conferences.json │ │ ├── conversation_messages.json │ │ ├── conversation_participants.json │ │ ├── conversations.json │ │ ├── dependent_phone_numbers.json │ │ ├── executions.json │ │ ├── flows.json │ │ ├── incoming_phone_numbers.json │ │ ├── keys.json │ │ ├── message_media.json │ │ ├── messages.json │ │ ├── outgoing_caller_ids.json │ │ ├── queues.json │ │ ├── recordings.json │ │ ├── roles.json │ │ ├── services.json │ │ ├── step.json │ │ ├── transcriptions.json │ │ ├── trunks.json │ │ ├── usage_records.json │ │ ├── usage_triggers.json │ │ ├── user_conversations.json │ │ ├── users.json │ │ └── verify_services.json │ ├── source.py │ ├── spec.json │ └── streams.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ ├── snapshots__discover__capture.stdout.json │ └── snapshots__spec__capture.stdout.json │ ├── test_snapshots.py │ ├── test_source.py │ └── test_streams.py ├── source-yahoo-finance ├── __main__.py ├── poetry.lock ├── pyproject.toml ├── source-investing.resource.0.config.yaml └── test.flow.yaml ├── source-zendesk-support-native ├── VERSION ├── acmeCo │ ├── account_attributes.schema.yaml │ ├── articles.schema.yaml │ ├── audit_logs.schema.yaml │ ├── automations.schema.yaml │ ├── brands.schema.yaml │ ├── custom_roles.schema.yaml │ ├── flow.yaml │ ├── group_memberships.schema.yaml │ ├── groups.schema.yaml │ ├── macros.schema.yaml │ ├── organization_memberships.schema.yaml │ ├── organizations.schema.yaml │ ├── post_comment_votes.schema.yaml │ ├── post_comments.schema.yaml │ ├── post_votes.schema.yaml │ ├── posts.schema.yaml │ ├── satisfaction_ratings.schema.yaml │ ├── schedules.schema.yaml │ ├── sla_policies.schema.yaml │ ├── tags.schema.yaml │ ├── ticket_activities.schema.yaml │ ├── ticket_audits.schema.yaml │ ├── ticket_comments.schema.yaml │ ├── ticket_fields.schema.yaml │ ├── ticket_forms.schema.yaml │ ├── ticket_metric_events.schema.yaml │ ├── ticket_metrics.schema.yaml │ ├── ticket_metrics_events.schema.yaml │ ├── ticket_skips.schema.yaml │ ├── tickets.schema.yaml │ ├── topics.schema.yaml │ └── users.schema.yaml ├── config.yaml ├── poetry.lock ├── pyproject.toml ├── source_zendesk_support_native │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── models.py │ └── resources.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── snapshots │ ├── snapshots__capture__capture.stdout.json │ ├── snapshots__discover__capture.stdout.json │ └── snapshots__spec__capture.stdout.json │ └── test_snapshots.py ├── source-zendesk-support ├── VERSION ├── acmeCo │ ├── attribute_definitions.schema.yaml │ ├── audit_logs.schema.yaml │ ├── brands.schema.yaml │ ├── custom_roles.schema.yaml │ ├── flow.yaml │ ├── macros.schema.yaml │ ├── organization_memberships.schema.yaml │ ├── organizations.schema.yaml │ ├── post_comment_votes.schema.yaml │ ├── post_comments.schema.yaml │ ├── post_votes.schema.yaml │ ├── posts.schema.yaml │ ├── satisfaction_ratings.schema.yaml │ ├── schedules.schema.yaml │ ├── sla_policies.schema.yaml │ ├── ticket_audits.schema.yaml │ ├── ticket_comments.schema.yaml │ ├── ticket_fields.schema.yaml │ ├── ticket_forms.schema.yaml │ ├── ticket_metrics.schema.yaml │ ├── ticket_skips.schema.yaml │ ├── tickets.schema.yaml │ └── users.schema.yaml ├── config.yaml ├── poetry.lock ├── pyproject.toml ├── source_zendesk_support │ ├── ZendeskSupportAvailabilityStrategy.py │ ├── __init__.py │ ├── __main__.py │ ├── schemas │ │ ├── account_attributes.json │ │ ├── attribute_definitions.json │ │ ├── audit_logs.json │ │ ├── brands.json │ │ ├── custom_roles.json │ │ ├── group_memberships.json │ │ ├── groups.json │ │ ├── macros.json │ │ ├── organization_memberships.json │ │ ├── organizations.json │ │ ├── post_comment_votes.json │ │ ├── post_comments.json │ │ ├── post_votes.json │ │ ├── posts.json │ │ ├── satisfaction_ratings.json │ │ ├── schedules.json │ │ ├── shared │ │ │ ├── attachments.json │ │ │ ├── metadata.json │ │ │ ├── via.json │ │ │ ├── via_channel.json │ │ │ └── votes.json │ │ ├── sla_policies.json │ │ ├── tags.json │ │ ├── ticket_audits.json │ │ ├── ticket_comments.json │ │ ├── ticket_fields.json │ │ ├── ticket_forms.json │ │ ├── ticket_metric_events.json │ │ ├── ticket_metrics.json │ │ ├── ticket_skips.json │ │ ├── tickets.json │ │ └── users.json │ ├── source.py │ ├── spec.json │ └── streams.py ├── test.flow.yaml └── tests │ ├── __init__.py │ ├── data.py │ ├── snapshots │ ├── snapshots__capture__capture.stdout.json │ ├── snapshots__discover__capture.stdout.json │ └── snapshots__spec__capture.stdout.json │ ├── test_backoff_on_rate_limit.py │ ├── test_futures.py │ ├── test_snapshots.py │ ├── unit_test.py │ └── utils.py ├── sqlcapture ├── capture.go ├── discovery.go ├── discovery_test.go ├── interface.go ├── main.go ├── tests │ ├── datatypes.go │ ├── helpers.go │ ├── interface.go │ └── tests.go └── tuples.go ├── tests ├── README.md ├── files │ ├── a.csv.zip │ ├── b.csv │ ├── c.csv.gz │ └── d.jsonl ├── materialize │ ├── empty.fixture.json │ ├── empty.flow.json.template │ ├── fixture.json │ ├── flow.json.template │ ├── materialize-azure-fabric-warehouse │ │ ├── cleanup.sh │ │ ├── config.yaml │ │ ├── fetch-data.go │ │ ├── fetch.sh │ │ ├── setup.sh │ │ └── snapshot.json │ ├── materialize-bigquery │ │ ├── checks.sh │ │ ├── cleanup.sh │ │ ├── config.yaml │ │ ├── fetch-data.go │ │ ├── fetch.sh │ │ ├── setup.sh │ │ └── snapshot.json │ ├── materialize-cratedb │ │ ├── cleanup.sh │ │ ├── fetch.sh │ │ └── setup.sh │ ├── materialize-databricks │ │ ├── checks.sh │ │ ├── cleanup.sh │ │ ├── config.yaml │ │ ├── fetch-data.go │ │ ├── fetch.sh │ │ ├── setup.sh │ │ └── snapshot.json │ ├── materialize-dynamodb │ │ ├── cleanup.sh │ │ ├── fetch.sh │ │ ├── setup.sh │ │ └── snapshot.json │ ├── materialize-elasticsearch │ │ ├── cleanup.sh │ │ ├── fetch.sh │ │ ├── setup.sh │ │ └── snapshot.json │ ├── materialize-firebolt │ │ ├── checks.sh │ │ ├── cleanup.sh │ │ ├── config.yaml │ │ ├── fetch-data.go │ │ ├── fetch.sh │ │ ├── setup.sh │ │ └── snapshot.json │ ├── materialize-google-sheets │ │ ├── cleanup.sh │ │ ├── config.yaml │ │ ├── fetch.sh │ │ ├── setup.sh │ │ ├── sheet-helper.go │ │ └── snapshot.json │ ├── materialize-iceberg │ │ ├── checks.sh │ │ ├── cleanup.sh │ │ ├── config.glue-catalog-auth.yaml │ │ ├── config.glue-deprecated.yaml │ │ ├── config.glue.yaml │ │ ├── config.rest-deprecated.yaml │ │ ├── config.rest.yaml │ │ ├── config.s3tables-catalog-auth.yaml │ │ ├── config.s3tables-deprecated.yaml │ │ ├── config.s3tables.yaml │ │ ├── fetch.sh │ │ ├── setup.sh │ │ └── snapshot.json │ ├── materialize-kafka │ │ ├── cleanup.sh │ │ ├── fetch.sh │ │ ├── setup.sh │ │ └── snapshot.json │ ├── materialize-mongodb │ │ ├── cleanup.sh │ │ ├── expected │ │ │ ├── duplicated-keys-delta.jsonl │ │ │ ├── duplicated-keys-standard.jsonl │ │ │ └── simple.jsonl │ │ ├── fetch.sh │ │ ├── setup.sh │ │ └── snapshot.json │ ├── materialize-motherduck │ │ ├── cleanup.sh │ │ ├── config.gcs.yaml │ │ ├── config.s3.yaml │ │ ├── fetch.sh │ │ ├── setup.sh │ │ └── snapshot.json │ ├── materialize-mysql │ │ ├── checks.sh │ │ ├── cleanup.sh │ │ ├── fetch.sh │ │ ├── setup.sh │ │ └── snapshot.json │ ├── materialize-pinecone │ │ ├── cleanup.sh │ │ ├── config.yaml │ │ ├── fetch-data.go │ │ ├── fetch.sh │ │ ├── setup.sh │ │ └── snapshot.json │ ├── materialize-postgres │ │ ├── cleanup.sh │ │ ├── fetch.sh │ │ ├── setup.sh │ │ └── snapshot.json │ ├── materialize-redshift │ │ ├── cleanup.sh │ │ ├── config.yaml │ │ ├── fetch-data.go │ │ ├── fetch.sh │ │ ├── setup.sh │ │ └── snapshot.json │ ├── materialize-s3-iceberg │ │ ├── checks.sh │ │ ├── cleanup.sh │ │ ├── config.yaml │ │ ├── fetch.sh │ │ ├── setup.sh │ │ └── snapshot.json │ ├── materialize-s3-parquet │ │ ├── cleanup.sh │ │ ├── fetch.sh │ │ ├── setup.sh │ │ └── snapshot.json │ ├── materialize-singlestore │ │ ├── api-token.yaml │ │ ├── cleanup.sh │ │ ├── config.yaml │ │ ├── fetch.sh │ │ ├── setup.sh │ │ └── snapshot.json │ ├── materialize-snowflake │ │ ├── checks.sh │ │ ├── cleanup.sh │ │ ├── config.yaml │ │ ├── fetch-data.go │ │ ├── fetch.sh │ │ ├── setup.sh │ │ └── snapshot.json │ ├── materialize-sqlserver │ │ ├── cleanup.sh │ │ ├── fetch.sh │ │ ├── query.go │ │ ├── setup.sh │ │ └── snapshot.json │ └── run.sh ├── run.sh ├── source-dynamodb │ ├── cleanup.sh │ ├── data.jsonl │ ├── expected.txt │ └── setup.sh ├── source-gcs │ ├── cleanup.sh │ ├── expected.txt │ └── setup.sh ├── source-kafka │ ├── cleanup.sh │ ├── expected.txt │ └── setup.sh ├── source-kinesis │ ├── cleanup.sh │ ├── expected.txt │ └── setup.sh ├── source-mysql │ ├── cleanup.sh │ ├── expected.txt │ └── setup.sh ├── source-postgres │ ├── cleanup.sh │ ├── expected.txt │ └── setup.sh ├── source-s3 │ ├── cleanup.sh │ ├── config.json.template │ ├── config.yaml.template │ ├── expected.txt │ └── setup.sh ├── source-sftp │ ├── cleanup.sh │ ├── expected.txt │ ├── setup.sh │ └── wait_for_server.go ├── source-sqlserver │ ├── cleanup.sh │ ├── expected.txt │ └── setup.sh └── template.flow.yaml └── testsupport └── build_catalog.go /.docker-cache/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/actions/deploy/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/.github/actions/deploy/action.yaml -------------------------------------------------------------------------------- /.github/actions/setup/action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/.github/actions/setup/action.yaml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/estuary-cdk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/.github/workflows/estuary-cdk.yaml -------------------------------------------------------------------------------- /.github/workflows/python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/.github/workflows/python.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-BSL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/LICENSE-BSL -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/README.md -------------------------------------------------------------------------------- /base-image/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/base-image/Dockerfile -------------------------------------------------------------------------------- /base-image/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /config_schema_guidelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/config_schema_guidelines.md -------------------------------------------------------------------------------- /connector-variant.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/connector-variant.Dockerfile -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/feature_flags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/docs/feature_flags.md -------------------------------------------------------------------------------- /docs/inbound_networking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/docs/inbound_networking.md -------------------------------------------------------------------------------- /docs/materialize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/docs/materialize/README.md -------------------------------------------------------------------------------- /estuary-cdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/estuary-cdk/README.md -------------------------------------------------------------------------------- /estuary-cdk/common.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/estuary-cdk/common.Dockerfile -------------------------------------------------------------------------------- /estuary-cdk/estuary_cdk/cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/estuary-cdk/estuary_cdk/cron.py -------------------------------------------------------------------------------- /estuary-cdk/estuary_cdk/flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/estuary-cdk/estuary_cdk/flow.py -------------------------------------------------------------------------------- /estuary-cdk/estuary_cdk/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/estuary-cdk/estuary_cdk/http.py -------------------------------------------------------------------------------- /estuary-cdk/estuary_cdk/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/estuary-cdk/estuary_cdk/logger.py -------------------------------------------------------------------------------- /estuary-cdk/estuary_cdk/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /estuary-cdk/estuary_cdk/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/estuary-cdk/estuary_cdk/utils.py -------------------------------------------------------------------------------- /estuary-cdk/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/estuary-cdk/poetry.lock -------------------------------------------------------------------------------- /estuary-cdk/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/estuary-cdk/pyproject.toml -------------------------------------------------------------------------------- /estuary-cdk/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fetch-flow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/fetch-flow.sh -------------------------------------------------------------------------------- /filesink/filesink.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/filesink/filesink.go -------------------------------------------------------------------------------- /filesink/filesink_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/filesink/filesink_test.go -------------------------------------------------------------------------------- /filesink/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/filesink/format.go -------------------------------------------------------------------------------- /filesink/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/filesink/store.go -------------------------------------------------------------------------------- /filesource/filesource.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/filesource/filesource.go -------------------------------------------------------------------------------- /filesource/filesource_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/filesource/filesource_test.go -------------------------------------------------------------------------------- /filesource/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/filesource/state.go -------------------------------------------------------------------------------- /filesource/state_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/filesource/state_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go.sum -------------------------------------------------------------------------------- /go/auth/google/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/auth/google/config.go -------------------------------------------------------------------------------- /go/auth/google/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/auth/google/config_test.go -------------------------------------------------------------------------------- /go/auth/google/spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/auth/google/spec.go -------------------------------------------------------------------------------- /go/auth/iam/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/auth/iam/config.go -------------------------------------------------------------------------------- /go/auth/snowflake/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/auth/snowflake/config.go -------------------------------------------------------------------------------- /go/auth/snowflake/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/auth/snowflake/config_test.go -------------------------------------------------------------------------------- /go/blob/azure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/blob/azure.go -------------------------------------------------------------------------------- /go/blob/bucket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/blob/bucket.go -------------------------------------------------------------------------------- /go/blob/bucket_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/blob/bucket_test.go -------------------------------------------------------------------------------- /go/blob/gcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/blob/gcs.go -------------------------------------------------------------------------------- /go/blob/s3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/blob/s3.go -------------------------------------------------------------------------------- /go/common/feature_flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/common/feature_flags.go -------------------------------------------------------------------------------- /go/common/slog_logrus_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/common/slog_logrus_handler.go -------------------------------------------------------------------------------- /go/connector-errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/connector-errors/errors.go -------------------------------------------------------------------------------- /go/dbt/trigger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/dbt/trigger.go -------------------------------------------------------------------------------- /go/encrow/encrow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/encrow/encrow.go -------------------------------------------------------------------------------- /go/encrow/encrow_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/encrow/encrow_test.go -------------------------------------------------------------------------------- /go/materialize/lifecycle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/materialize/lifecycle.go -------------------------------------------------------------------------------- /go/materialize/logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/materialize/logging.go -------------------------------------------------------------------------------- /go/materialize/logging_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/materialize/logging_test.go -------------------------------------------------------------------------------- /go/materialize/op_future.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/materialize/op_future.go -------------------------------------------------------------------------------- /go/materialize/schedule_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/materialize/schedule_config.go -------------------------------------------------------------------------------- /go/materialize/transactor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/materialize/transactor.go -------------------------------------------------------------------------------- /go/materialize/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/materialize/validate.go -------------------------------------------------------------------------------- /go/materialize/validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/materialize/validate_test.go -------------------------------------------------------------------------------- /go/mysql/jsonpath/.gitignore: -------------------------------------------------------------------------------- 1 | y.output 2 | -------------------------------------------------------------------------------- /go/mysql/jsonpath/jsonpath.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/mysql/jsonpath/jsonpath.go -------------------------------------------------------------------------------- /go/mysql/jsonpath/jsonpath.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/mysql/jsonpath/jsonpath.y -------------------------------------------------------------------------------- /go/mysql/jsonpath/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/mysql/jsonpath/parser.go -------------------------------------------------------------------------------- /go/mysql/jsonpath/parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/mysql/jsonpath/parser_test.go -------------------------------------------------------------------------------- /go/network-tunnel/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/network-tunnel/interface.go -------------------------------------------------------------------------------- /go/schedule/schedule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/schedule/schedule.go -------------------------------------------------------------------------------- /go/schedule/schedule_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/schedule/schedule_test.go -------------------------------------------------------------------------------- /go/schedule/timezone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/schedule/timezone.go -------------------------------------------------------------------------------- /go/schema-gen/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/schema-gen/generate.go -------------------------------------------------------------------------------- /go/schema-gen/generate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/schema-gen/generate_test.go -------------------------------------------------------------------------------- /go/schema-gen/one_of.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/schema-gen/one_of.go -------------------------------------------------------------------------------- /go/schema-gen/one_of_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/schema-gen/one_of_test.go -------------------------------------------------------------------------------- /go/writer/counting_write_closer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/writer/counting_write_closer.go -------------------------------------------------------------------------------- /go/writer/csv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/writer/csv.go -------------------------------------------------------------------------------- /go/writer/csv_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/writer/csv_test.go -------------------------------------------------------------------------------- /go/writer/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/writer/json.go -------------------------------------------------------------------------------- /go/writer/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/writer/json_test.go -------------------------------------------------------------------------------- /go/writer/parquet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/writer/parquet.go -------------------------------------------------------------------------------- /go/writer/parquet_schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/writer/parquet_schema.go -------------------------------------------------------------------------------- /go/writer/parquet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/writer/parquet_test.go -------------------------------------------------------------------------------- /go/writer/test_support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/go/writer/test_support.go -------------------------------------------------------------------------------- /materialize-azure-blob-parquet/VERSION: -------------------------------------------------------------------------------- 1 | v1 -------------------------------------------------------------------------------- /materialize-azure-fabric-warehouse/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /materialize-bigquery/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # materialize-bigquery 2 | 3 | ## v1, 2022-07-27 4 | - Beginning of changelog. 5 | -------------------------------------------------------------------------------- /materialize-bigquery/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-bigquery/Dockerfile -------------------------------------------------------------------------------- /materialize-bigquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-bigquery/README.md -------------------------------------------------------------------------------- /materialize-bigquery/VERSION: -------------------------------------------------------------------------------- 1 | v3 2 | -------------------------------------------------------------------------------- /materialize-bigquery/bigquery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-bigquery/bigquery.go -------------------------------------------------------------------------------- /materialize-bigquery/binding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-bigquery/binding.go -------------------------------------------------------------------------------- /materialize-bigquery/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-bigquery/client.go -------------------------------------------------------------------------------- /materialize-bigquery/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-bigquery/query.go -------------------------------------------------------------------------------- /materialize-bigquery/sqlgen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-bigquery/sqlgen.go -------------------------------------------------------------------------------- /materialize-bigquery/transactor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-bigquery/transactor.go -------------------------------------------------------------------------------- /materialize-boilerplate/apply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-boilerplate/apply.go -------------------------------------------------------------------------------- /materialize-cratedb/.snapshots/TestConfigURI-Basic: -------------------------------------------------------------------------------- 1 | postgres://will:secret1234@example.com:5432/somedb 2 | config valid 3 | -------------------------------------------------------------------------------- /materialize-cratedb/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /materialize-cratedb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-cratedb/Dockerfile -------------------------------------------------------------------------------- /materialize-cratedb/VARIANTS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /materialize-cratedb/VERSION: -------------------------------------------------------------------------------- 1 | v1 -------------------------------------------------------------------------------- /materialize-cratedb/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-cratedb/client.go -------------------------------------------------------------------------------- /materialize-cratedb/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-cratedb/config_test.go -------------------------------------------------------------------------------- /materialize-cratedb/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-cratedb/driver.go -------------------------------------------------------------------------------- /materialize-cratedb/driver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-cratedb/driver_test.go -------------------------------------------------------------------------------- /materialize-cratedb/sqlgen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-cratedb/sqlgen.go -------------------------------------------------------------------------------- /materialize-cratedb/sqlgen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-cratedb/sqlgen_test.go -------------------------------------------------------------------------------- /materialize-databricks/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-databricks/Dockerfile -------------------------------------------------------------------------------- /materialize-databricks/VERSION: -------------------------------------------------------------------------------- 1 | v3 2 | -------------------------------------------------------------------------------- /materialize-databricks/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-databricks/client.go -------------------------------------------------------------------------------- /materialize-databricks/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-databricks/config.go -------------------------------------------------------------------------------- /materialize-databricks/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-databricks/driver.go -------------------------------------------------------------------------------- /materialize-databricks/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-databricks/logger.go -------------------------------------------------------------------------------- /materialize-databricks/sqlgen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-databricks/sqlgen.go -------------------------------------------------------------------------------- /materialize-dynamodb/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # materialize-dynamodb 2 | 3 | ## v1, 2023-08-25 4 | 5 | - Beginning of changelog. 6 | -------------------------------------------------------------------------------- /materialize-dynamodb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-dynamodb/Dockerfile -------------------------------------------------------------------------------- /materialize-dynamodb/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /materialize-dynamodb/apply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-dynamodb/apply.go -------------------------------------------------------------------------------- /materialize-dynamodb/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-dynamodb/driver.go -------------------------------------------------------------------------------- /materialize-dynamodb/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-dynamodb/main.go -------------------------------------------------------------------------------- /materialize-dynamodb/transactor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-dynamodb/transactor.go -------------------------------------------------------------------------------- /materialize-elasticsearch/VERSION: -------------------------------------------------------------------------------- 1 | v3 2 | -------------------------------------------------------------------------------- /materialize-firebolt/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # materialize-firebolt 2 | 3 | ## v1, 2022-07-27 4 | - Beginning of changelog. 5 | -------------------------------------------------------------------------------- /materialize-firebolt/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-firebolt/Dockerfile -------------------------------------------------------------------------------- /materialize-firebolt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-firebolt/README.md -------------------------------------------------------------------------------- /materialize-firebolt/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /materialize-firebolt/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-firebolt/config.go -------------------------------------------------------------------------------- /materialize-firebolt/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-firebolt/driver.go -------------------------------------------------------------------------------- /materialize-firebolt/spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-firebolt/spec.go -------------------------------------------------------------------------------- /materialize-firebolt/transactor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-firebolt/transactor.go -------------------------------------------------------------------------------- /materialize-gcs-csv/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-gcs-csv/Dockerfile -------------------------------------------------------------------------------- /materialize-gcs-csv/VERSION: -------------------------------------------------------------------------------- 1 | v1 -------------------------------------------------------------------------------- /materialize-gcs-csv/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-gcs-csv/main.go -------------------------------------------------------------------------------- /materialize-gcs-csv/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-gcs-csv/main_test.go -------------------------------------------------------------------------------- /materialize-gcs-parquet/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-gcs-parquet/Dockerfile -------------------------------------------------------------------------------- /materialize-gcs-parquet/VERSION: -------------------------------------------------------------------------------- 1 | v1 -------------------------------------------------------------------------------- /materialize-gcs-parquet/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-gcs-parquet/main.go -------------------------------------------------------------------------------- /materialize-google-pubsub/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # materialize-google-pubsub 2 | 3 | -------------------------------------------------------------------------------- /materialize-google-pubsub/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /materialize-google-sheets/VERSION: -------------------------------------------------------------------------------- 1 | v2 2 | -------------------------------------------------------------------------------- /materialize-google-sheets/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-google-sheets/main.go -------------------------------------------------------------------------------- /materialize-google-sheets/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-google-sheets/util.go -------------------------------------------------------------------------------- /materialize-iceberg/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-iceberg/Dockerfile -------------------------------------------------------------------------------- /materialize-iceberg/VERSION: -------------------------------------------------------------------------------- 1 | v1 -------------------------------------------------------------------------------- /materialize-iceberg/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-iceberg/config.go -------------------------------------------------------------------------------- /materialize-iceberg/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-iceberg/driver.go -------------------------------------------------------------------------------- /materialize-iceberg/driver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-iceberg/driver_test.go -------------------------------------------------------------------------------- /materialize-iceberg/emr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-iceberg/emr.go -------------------------------------------------------------------------------- /materialize-iceberg/python/exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-iceberg/python/exec.py -------------------------------------------------------------------------------- /materialize-iceberg/python/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-iceberg/python/load.py -------------------------------------------------------------------------------- /materialize-iceberg/sqlgen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-iceberg/sqlgen.go -------------------------------------------------------------------------------- /materialize-iceberg/sqlgen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-iceberg/sqlgen_test.go -------------------------------------------------------------------------------- /materialize-iceberg/staged_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-iceberg/staged_file.go -------------------------------------------------------------------------------- /materialize-iceberg/transactor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-iceberg/transactor.go -------------------------------------------------------------------------------- /materialize-kafka/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-kafka/Cargo.lock -------------------------------------------------------------------------------- /materialize-kafka/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-kafka/Cargo.toml -------------------------------------------------------------------------------- /materialize-kafka/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-kafka/Dockerfile -------------------------------------------------------------------------------- /materialize-kafka/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-kafka/README.md -------------------------------------------------------------------------------- /materialize-kafka/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /materialize-kafka/src/apply.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-kafka/src/apply.rs -------------------------------------------------------------------------------- /materialize-kafka/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-kafka/src/lib.rs -------------------------------------------------------------------------------- /materialize-kafka/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-kafka/src/main.rs -------------------------------------------------------------------------------- /materialize-kafka/src/validate.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-kafka/src/validate.rs -------------------------------------------------------------------------------- /materialize-kafka/tests/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-kafka/tests/test.rs -------------------------------------------------------------------------------- /materialize-mongodb/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # materialize-mongodb 2 | 3 | ## v1, 2023-03-01 4 | - Beginning of changelog. 5 | -------------------------------------------------------------------------------- /materialize-mongodb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-mongodb/Dockerfile -------------------------------------------------------------------------------- /materialize-mongodb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-mongodb/README.md -------------------------------------------------------------------------------- /materialize-mongodb/VARIANTS: -------------------------------------------------------------------------------- 1 | materialize-cosmosdb-mongodb -------------------------------------------------------------------------------- /materialize-mongodb/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /materialize-mongodb/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-mongodb/config.go -------------------------------------------------------------------------------- /materialize-mongodb/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-mongodb/config_test.go -------------------------------------------------------------------------------- /materialize-mongodb/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-mongodb/driver.go -------------------------------------------------------------------------------- /materialize-mongodb/sample.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-mongodb/sample.key -------------------------------------------------------------------------------- /materialize-mongodb/transactor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-mongodb/transactor.go -------------------------------------------------------------------------------- /materialize-motherduck/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # materialize-motherduck 2 | 3 | ## v1, 2023-10-31 4 | - Beginning of changelog. 5 | -------------------------------------------------------------------------------- /materialize-motherduck/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-motherduck/Dockerfile -------------------------------------------------------------------------------- /materialize-motherduck/VERSION: -------------------------------------------------------------------------------- 1 | v4 2 | -------------------------------------------------------------------------------- /materialize-motherduck/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-motherduck/client.go -------------------------------------------------------------------------------- /materialize-motherduck/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-motherduck/config.go -------------------------------------------------------------------------------- /materialize-motherduck/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-motherduck/driver.go -------------------------------------------------------------------------------- /materialize-motherduck/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-motherduck/main.go -------------------------------------------------------------------------------- /materialize-motherduck/sqlgen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-motherduck/sqlgen.go -------------------------------------------------------------------------------- /materialize-mysql/.snapshots/TestConfigURI-Basic: -------------------------------------------------------------------------------- 1 | will:secret1234@tcp(example.com:3306)/somedb 2 | config valid 3 | -------------------------------------------------------------------------------- /materialize-mysql/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # materialize-mysql 2 | 3 | ## v1, 2023-08-01 4 | - Beginning of changelog. 5 | -------------------------------------------------------------------------------- /materialize-mysql/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-mysql/Dockerfile -------------------------------------------------------------------------------- /materialize-mysql/VARIANTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-mysql/VARIANTS -------------------------------------------------------------------------------- /materialize-mysql/VERSION: -------------------------------------------------------------------------------- 1 | v2 2 | -------------------------------------------------------------------------------- /materialize-mysql/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-mysql/client.go -------------------------------------------------------------------------------- /materialize-mysql/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-mysql/config_test.go -------------------------------------------------------------------------------- /materialize-mysql/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-mysql/driver.go -------------------------------------------------------------------------------- /materialize-mysql/driver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-mysql/driver_test.go -------------------------------------------------------------------------------- /materialize-mysql/infile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-mysql/infile.go -------------------------------------------------------------------------------- /materialize-mysql/sqlgen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-mysql/sqlgen.go -------------------------------------------------------------------------------- /materialize-mysql/sqlgen_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-mysql/sqlgen_test.go -------------------------------------------------------------------------------- /materialize-pinecone/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # materialize-pinecone 2 | 3 | ## v1, 2023-05-23 4 | - Beginning of changelog. 5 | -------------------------------------------------------------------------------- /materialize-pinecone/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-pinecone/Dockerfile -------------------------------------------------------------------------------- /materialize-pinecone/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /materialize-pinecone/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-pinecone/driver.go -------------------------------------------------------------------------------- /materialize-pinecone/transactor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-pinecone/transactor.go -------------------------------------------------------------------------------- /materialize-postgres/.snapshots/TestConfigURI-Basic: -------------------------------------------------------------------------------- 1 | postgres://will:secret1234@example.com:5432/somedb 2 | config valid 3 | -------------------------------------------------------------------------------- /materialize-postgres/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-postgres/CHANGELOG.md -------------------------------------------------------------------------------- /materialize-postgres/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-postgres/Dockerfile -------------------------------------------------------------------------------- /materialize-postgres/VARIANTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-postgres/VARIANTS -------------------------------------------------------------------------------- /materialize-postgres/VERSION: -------------------------------------------------------------------------------- 1 | v5 2 | -------------------------------------------------------------------------------- /materialize-postgres/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-postgres/client.go -------------------------------------------------------------------------------- /materialize-postgres/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-postgres/driver.go -------------------------------------------------------------------------------- /materialize-postgres/sqlgen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-postgres/sqlgen.go -------------------------------------------------------------------------------- /materialize-redshift/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # materialize-redshift 2 | 3 | ## v1, 2023-03-10 4 | - Beginning of changelog. 5 | -------------------------------------------------------------------------------- /materialize-redshift/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-redshift/Dockerfile -------------------------------------------------------------------------------- /materialize-redshift/VERSION: -------------------------------------------------------------------------------- 1 | v2 2 | -------------------------------------------------------------------------------- /materialize-redshift/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-redshift/client.go -------------------------------------------------------------------------------- /materialize-redshift/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-redshift/driver.go -------------------------------------------------------------------------------- /materialize-redshift/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-redshift/main.go -------------------------------------------------------------------------------- /materialize-redshift/sqlgen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-redshift/sqlgen.go -------------------------------------------------------------------------------- /materialize-s3-csv/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-s3-csv/Dockerfile -------------------------------------------------------------------------------- /materialize-s3-csv/VERSION: -------------------------------------------------------------------------------- 1 | v1 -------------------------------------------------------------------------------- /materialize-s3-csv/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-s3-csv/main.go -------------------------------------------------------------------------------- /materialize-s3-csv/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-s3-csv/main_test.go -------------------------------------------------------------------------------- /materialize-s3-iceberg/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-s3-iceberg/Dockerfile -------------------------------------------------------------------------------- /materialize-s3-iceberg/VERSION: -------------------------------------------------------------------------------- 1 | v2 2 | -------------------------------------------------------------------------------- /materialize-s3-iceberg/catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-s3-iceberg/catalog.go -------------------------------------------------------------------------------- /materialize-s3-iceberg/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-s3-iceberg/driver.go -------------------------------------------------------------------------------- /materialize-s3-parquet/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-s3-parquet/Dockerfile -------------------------------------------------------------------------------- /materialize-s3-parquet/VERSION: -------------------------------------------------------------------------------- 1 | v3 -------------------------------------------------------------------------------- /materialize-s3-parquet/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-s3-parquet/main.go -------------------------------------------------------------------------------- /materialize-slack/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # materialize-slack 2 | 3 | ## v1, 2022-07-27 4 | - Beginning of changelog. 5 | -------------------------------------------------------------------------------- /materialize-slack/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-slack/Dockerfile -------------------------------------------------------------------------------- /materialize-slack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-slack/README.md -------------------------------------------------------------------------------- /materialize-slack/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /materialize-slack/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-slack/auth.go -------------------------------------------------------------------------------- /materialize-slack/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-slack/main.go -------------------------------------------------------------------------------- /materialize-slack/slack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-slack/slack.go -------------------------------------------------------------------------------- /materialize-snowflake/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # materialize-snowflake 2 | 3 | ## v1, 2022-07-27 4 | - Beginning of changelog. 5 | -------------------------------------------------------------------------------- /materialize-snowflake/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-snowflake/Dockerfile -------------------------------------------------------------------------------- /materialize-snowflake/VERSION: -------------------------------------------------------------------------------- 1 | v4 2 | -------------------------------------------------------------------------------- /materialize-snowflake/bdec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-snowflake/bdec.go -------------------------------------------------------------------------------- /materialize-snowflake/bdec_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-snowflake/bdec_test.go -------------------------------------------------------------------------------- /materialize-snowflake/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-snowflake/client.go -------------------------------------------------------------------------------- /materialize-snowflake/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-snowflake/config.go -------------------------------------------------------------------------------- /materialize-snowflake/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-snowflake/pipe.go -------------------------------------------------------------------------------- /materialize-snowflake/snowflake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-snowflake/snowflake.go -------------------------------------------------------------------------------- /materialize-snowflake/sqlgen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-snowflake/sqlgen.go -------------------------------------------------------------------------------- /materialize-snowflake/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-snowflake/stream.go -------------------------------------------------------------------------------- /materialize-sql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-sql/README.md -------------------------------------------------------------------------------- /materialize-sql/apply.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-sql/apply.go -------------------------------------------------------------------------------- /materialize-sql/dialect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-sql/dialect.go -------------------------------------------------------------------------------- /materialize-sql/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-sql/driver.go -------------------------------------------------------------------------------- /materialize-sql/endpoint.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-sql/endpoint.go -------------------------------------------------------------------------------- /materialize-sql/meta_tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-sql/meta_tables.go -------------------------------------------------------------------------------- /materialize-sql/std_sql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-sql/std_sql.go -------------------------------------------------------------------------------- /materialize-sql/table_mapping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-sql/table_mapping.go -------------------------------------------------------------------------------- /materialize-sql/templating.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-sql/templating.go -------------------------------------------------------------------------------- /materialize-sql/templating_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-sql/templating_test.go -------------------------------------------------------------------------------- /materialize-sql/test_support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-sql/test_support.go -------------------------------------------------------------------------------- /materialize-sql/testdata/flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-sql/testdata/flow.yaml -------------------------------------------------------------------------------- /materialize-sql/type_mapping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-sql/type_mapping.go -------------------------------------------------------------------------------- /materialize-sql/validate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-sql/validate_test.go -------------------------------------------------------------------------------- /materialize-sqlite/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # materialize-sqlite 2 | 3 | ## v1, 2023-03-10 4 | 5 | - Beginning of changelog. 6 | -------------------------------------------------------------------------------- /materialize-sqlite/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-sqlite/Dockerfile -------------------------------------------------------------------------------- /materialize-sqlite/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /materialize-sqlite/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-sqlite/init.sh -------------------------------------------------------------------------------- /materialize-sqlite/sqlgen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-sqlite/sqlgen.go -------------------------------------------------------------------------------- /materialize-sqlite/sqlite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-sqlite/sqlite.go -------------------------------------------------------------------------------- /materialize-sqlserver/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # materialize-sqlserver 2 | 3 | ## v1, 2023-09-01 4 | - Beginning of changelog. 5 | -------------------------------------------------------------------------------- /materialize-sqlserver/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-sqlserver/Dockerfile -------------------------------------------------------------------------------- /materialize-sqlserver/VARIANTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-sqlserver/VARIANTS -------------------------------------------------------------------------------- /materialize-sqlserver/VERSION: -------------------------------------------------------------------------------- 1 | v2 2 | -------------------------------------------------------------------------------- /materialize-sqlserver/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-sqlserver/client.go -------------------------------------------------------------------------------- /materialize-sqlserver/collation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-sqlserver/collation.go -------------------------------------------------------------------------------- /materialize-sqlserver/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-sqlserver/driver.go -------------------------------------------------------------------------------- /materialize-sqlserver/fence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-sqlserver/fence.go -------------------------------------------------------------------------------- /materialize-sqlserver/sqlgen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-sqlserver/sqlgen.go -------------------------------------------------------------------------------- /materialize-starburst/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-starburst/Dockerfile -------------------------------------------------------------------------------- /materialize-starburst/VERSION: -------------------------------------------------------------------------------- 1 | v1 -------------------------------------------------------------------------------- /materialize-starburst/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-starburst/client.go -------------------------------------------------------------------------------- /materialize-starburst/s3_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-starburst/s3_util.go -------------------------------------------------------------------------------- /materialize-starburst/sqlgen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-starburst/sqlgen.go -------------------------------------------------------------------------------- /materialize-starburst/starburst.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-starburst/starburst.go -------------------------------------------------------------------------------- /materialize-webhook/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # materialize-webhook 2 | 3 | ## v1, 2022-07-27 4 | - Beginning of changelog. 5 | -------------------------------------------------------------------------------- /materialize-webhook/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-webhook/Dockerfile -------------------------------------------------------------------------------- /materialize-webhook/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /materialize-webhook/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/materialize-webhook/driver.go -------------------------------------------------------------------------------- /poetry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/poetry.toml -------------------------------------------------------------------------------- /python/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/python/Dockerfile -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/python/README.md -------------------------------------------------------------------------------- /python/activate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/python/activate.sh -------------------------------------------------------------------------------- /python/flow_sdk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/python/flow_sdk/__init__.py -------------------------------------------------------------------------------- /python/flow_sdk/capture/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/python/flow_sdk/capture/request.py -------------------------------------------------------------------------------- /python/flow_sdk/derive/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/python/flow_sdk/derive/__init__.py -------------------------------------------------------------------------------- /python/flow_sdk/derive/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/python/flow_sdk/derive/request.py -------------------------------------------------------------------------------- /python/flow_sdk/derive/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/python/flow_sdk/derive/response.py -------------------------------------------------------------------------------- /python/flow_sdk/flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/python/flow_sdk/flow.py -------------------------------------------------------------------------------- /python/flow_sdk/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/python/flow_sdk/logger.py -------------------------------------------------------------------------------- /python/flow_sdk/shim_singer_sdk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/python/flow_sdk/shim_singer_sdk.py -------------------------------------------------------------------------------- /python/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/python/poetry.lock -------------------------------------------------------------------------------- /python/pull_upstream.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/python/pull_upstream.sh -------------------------------------------------------------------------------- /python/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/python/pyproject.toml -------------------------------------------------------------------------------- /scripts/bulk-config-editor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/scripts/bulk-config-editor.sh -------------------------------------------------------------------------------- /scripts/bulk-config-editor/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/scripts/bulk-config-editor/main.go -------------------------------------------------------------------------------- /scripts/bulk-publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/scripts/bulk-publish.sh -------------------------------------------------------------------------------- /scripts/bulk-publish/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/scripts/bulk-publish/main.go -------------------------------------------------------------------------------- /scripts/feature-flag-automation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/scripts/feature-flag-automation.sh -------------------------------------------------------------------------------- /scripts/list-tasks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/scripts/list-tasks.sh -------------------------------------------------------------------------------- /scripts/list-tasks/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/scripts/list-tasks/main.go -------------------------------------------------------------------------------- /source-airtable/VERSION: -------------------------------------------------------------------------------- 1 | v1 -------------------------------------------------------------------------------- /source-airtable/acmeCo/flow.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | import: 3 | - test_base/flow.yaml 4 | -------------------------------------------------------------------------------- /source-airtable/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-airtable/config.yaml -------------------------------------------------------------------------------- /source-airtable/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-airtable/poetry.lock -------------------------------------------------------------------------------- /source-airtable/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-airtable/pyproject.toml -------------------------------------------------------------------------------- /source-airtable/test.flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-airtable/test.flow.yaml -------------------------------------------------------------------------------- /source-airtable/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-airtable/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-airtable/tests/conftest.py -------------------------------------------------------------------------------- /source-alpaca/.snapshots/TestSpec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-alpaca/.snapshots/TestSpec -------------------------------------------------------------------------------- /source-alpaca/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## v1, 2022-12-21 2 | - Beginning of changelog. 3 | -------------------------------------------------------------------------------- /source-alpaca/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-alpaca/Dockerfile -------------------------------------------------------------------------------- /source-alpaca/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-alpaca/README.md -------------------------------------------------------------------------------- /source-alpaca/VERSION: -------------------------------------------------------------------------------- 1 | v1 -------------------------------------------------------------------------------- /source-alpaca/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-alpaca/driver.go -------------------------------------------------------------------------------- /source-alpaca/driver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-alpaca/driver_test.go -------------------------------------------------------------------------------- /source-alpaca/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-alpaca/main.go -------------------------------------------------------------------------------- /source-alpaca/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-alpaca/main_test.go -------------------------------------------------------------------------------- /source-alpaca/pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-alpaca/pull.go -------------------------------------------------------------------------------- /source-alpaca/worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-alpaca/worker.go -------------------------------------------------------------------------------- /source-apple-app-store/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-apple-app-store/poetry.lock -------------------------------------------------------------------------------- /source-apple-app-store/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-asana/VERSION: -------------------------------------------------------------------------------- 1 | v1 -------------------------------------------------------------------------------- /source-asana/acmeCo/flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-asana/acmeCo/flow.yaml -------------------------------------------------------------------------------- /source-asana/connector_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-asana/connector_config.yaml -------------------------------------------------------------------------------- /source-asana/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-asana/poetry.lock -------------------------------------------------------------------------------- /source-asana/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-asana/pyproject.toml -------------------------------------------------------------------------------- /source-asana/source_asana/oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-asana/source_asana/oauth.py -------------------------------------------------------------------------------- /source-asana/test.flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-asana/test.flow.yaml -------------------------------------------------------------------------------- /source-asana/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-asana/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-asana/tests/conftest.py -------------------------------------------------------------------------------- /source-asana/tests/test_oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-asana/tests/test_oauth.py -------------------------------------------------------------------------------- /source-azure-blob-storage/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /source-azure-blob-storage/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-azure-blob-storage/main.go -------------------------------------------------------------------------------- /source-bigquery-batch/.snapshots/TestQueryTemplate-FirstNoCursor: -------------------------------------------------------------------------------- 1 | SELECT * FROM `testdata`.`foobar`; 2 | -------------------------------------------------------------------------------- /source-bigquery-batch/.snapshots/TestQueryTemplate-SubsequentNoCursor: -------------------------------------------------------------------------------- 1 | SELECT * FROM `testdata`.`foobar`; 2 | -------------------------------------------------------------------------------- /source-bigquery-batch/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # source-bigquery-batch 2 | 3 | ## v1, 2023-11-13 4 | - Beginning of changelog. 5 | -------------------------------------------------------------------------------- /source-bigquery-batch/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-bigquery-batch/Dockerfile -------------------------------------------------------------------------------- /source-bigquery-batch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-bigquery-batch/README.md -------------------------------------------------------------------------------- /source-bigquery-batch/VERSION: -------------------------------------------------------------------------------- 1 | v1 -------------------------------------------------------------------------------- /source-bigquery-batch/discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-bigquery-batch/discovery.go -------------------------------------------------------------------------------- /source-bigquery-batch/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-bigquery-batch/driver.go -------------------------------------------------------------------------------- /source-bigquery-batch/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-bigquery-batch/main.go -------------------------------------------------------------------------------- /source-bigquery-batch/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-bigquery-batch/main_test.go -------------------------------------------------------------------------------- /source-boilerplate/boilerplate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-boilerplate/boilerplate.go -------------------------------------------------------------------------------- /source-boilerplate/testing/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-boilerplate/testing/log.go -------------------------------------------------------------------------------- /source-braintree-native/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /source-braintree-native/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-brevo/VERSION: -------------------------------------------------------------------------------- 1 | v1 -------------------------------------------------------------------------------- /source-brevo/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-brevo/poetry.lock -------------------------------------------------------------------------------- /source-brevo/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-brevo/pyproject.toml -------------------------------------------------------------------------------- /source-brevo/test.flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-brevo/test.flow.yaml -------------------------------------------------------------------------------- /source-brevo/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-chargebee-native/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-criteo/VERSION: -------------------------------------------------------------------------------- 1 | v1 -------------------------------------------------------------------------------- /source-criteo/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-criteo/__main__.py -------------------------------------------------------------------------------- /source-criteo/acmeCo/flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-criteo/acmeCo/flow.yaml -------------------------------------------------------------------------------- /source-criteo/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-criteo/poetry.lock -------------------------------------------------------------------------------- /source-criteo/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-criteo/pyproject.toml -------------------------------------------------------------------------------- /source-criteo/source_criteo/tap_criteo/__init__.py: -------------------------------------------------------------------------------- 1 | """Singer tap for the Criteo API.""" 2 | -------------------------------------------------------------------------------- /source-criteo/source_criteo/tap_criteo/streams/__init__.py: -------------------------------------------------------------------------------- 1 | """Streams for tap-criteo.""" 2 | -------------------------------------------------------------------------------- /source-criteo/test.flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-criteo/test.flow.yaml -------------------------------------------------------------------------------- /source-criteo/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-datadog/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-datadog/poetry.lock -------------------------------------------------------------------------------- /source-datadog/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-datadog/pyproject.toml -------------------------------------------------------------------------------- /source-datadog/test.flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-datadog/test.flow.yaml -------------------------------------------------------------------------------- /source-datadog/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-dropbox/.snapshots/TestSpec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-dropbox/.snapshots/TestSpec -------------------------------------------------------------------------------- /source-dropbox/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # source-dropbox 2 | 3 | ## v1, 2024-07-24 4 | 5 | - Beginning of changelog. 6 | -------------------------------------------------------------------------------- /source-dropbox/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-dropbox/Dockerfile -------------------------------------------------------------------------------- /source-dropbox/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /source-dropbox/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-dropbox/main.go -------------------------------------------------------------------------------- /source-dropbox/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-dropbox/main_test.go -------------------------------------------------------------------------------- /source-dropbox/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-dropbox/oauth2.go -------------------------------------------------------------------------------- /source-dynamics-365-finance-and-operations/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /source-dynamics-365-finance-and-operations/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-dynamodb/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # source-dynamodb 2 | 3 | ## v1, 2023-08-03 4 | 5 | - Beginning of changelog. 6 | -------------------------------------------------------------------------------- /source-dynamodb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-dynamodb/Dockerfile -------------------------------------------------------------------------------- /source-dynamodb/VERSION: -------------------------------------------------------------------------------- 1 | v1 -------------------------------------------------------------------------------- /source-dynamodb/backfill.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-dynamodb/backfill.go -------------------------------------------------------------------------------- /source-dynamodb/backfill_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-dynamodb/backfill_test.go -------------------------------------------------------------------------------- /source-dynamodb/capture.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-dynamodb/capture.go -------------------------------------------------------------------------------- /source-dynamodb/discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-dynamodb/discovery.go -------------------------------------------------------------------------------- /source-dynamodb/discovery_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-dynamodb/discovery_test.go -------------------------------------------------------------------------------- /source-dynamodb/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-dynamodb/driver.go -------------------------------------------------------------------------------- /source-dynamodb/driver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-dynamodb/driver_test.go -------------------------------------------------------------------------------- /source-dynamodb/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-dynamodb/main.go -------------------------------------------------------------------------------- /source-dynamodb/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-dynamodb/main_test.go -------------------------------------------------------------------------------- /source-dynamodb/pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-dynamodb/pull.go -------------------------------------------------------------------------------- /source-dynamodb/shard_tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-dynamodb/shard_tree.go -------------------------------------------------------------------------------- /source-dynamodb/shard_tree_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-dynamodb/shard_tree_test.go -------------------------------------------------------------------------------- /source-dynamodb/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-dynamodb/stream.go -------------------------------------------------------------------------------- /source-dynamodb/test_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-dynamodb/test_util.go -------------------------------------------------------------------------------- /source-facebook-marketing-native/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-facebook-marketing/VERSION: -------------------------------------------------------------------------------- 1 | v4 -------------------------------------------------------------------------------- /source-facebook-marketing/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-firestore/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-firestore/CHANGELOG.md -------------------------------------------------------------------------------- /source-firestore/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-firestore/Dockerfile -------------------------------------------------------------------------------- /source-firestore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-firestore/README.md -------------------------------------------------------------------------------- /source-firestore/VERSION: -------------------------------------------------------------------------------- 1 | v3 2 | -------------------------------------------------------------------------------- /source-firestore/datasynth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-firestore/datasynth_test.go -------------------------------------------------------------------------------- /source-firestore/discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-firestore/discovery.go -------------------------------------------------------------------------------- /source-firestore/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-firestore/helpers.go -------------------------------------------------------------------------------- /source-firestore/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-firestore/main.go -------------------------------------------------------------------------------- /source-firestore/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-firestore/main_test.go -------------------------------------------------------------------------------- /source-firestore/pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-firestore/pull.go -------------------------------------------------------------------------------- /source-firestore/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-firestore/validate.go -------------------------------------------------------------------------------- /source-front/VERSION: -------------------------------------------------------------------------------- 1 | v3 2 | -------------------------------------------------------------------------------- /source-front/acmeCo/flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-front/acmeCo/flow.yaml -------------------------------------------------------------------------------- /source-front/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-front/config.yaml -------------------------------------------------------------------------------- /source-front/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-front/poetry.lock -------------------------------------------------------------------------------- /source-front/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-front/pyproject.toml -------------------------------------------------------------------------------- /source-front/source_front/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-front/source_front/api.py -------------------------------------------------------------------------------- /source-front/test.flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-front/test.flow.yaml -------------------------------------------------------------------------------- /source-front/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-gainsight-nxt/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-gainsight-nxt/poetry.lock -------------------------------------------------------------------------------- /source-gainsight-nxt/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-gcs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-gcs/CHANGELOG.md -------------------------------------------------------------------------------- /source-gcs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-gcs/Dockerfile -------------------------------------------------------------------------------- /source-gcs/VERSION: -------------------------------------------------------------------------------- 1 | v2 2 | -------------------------------------------------------------------------------- /source-gcs/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-gcs/main.go -------------------------------------------------------------------------------- /source-genesys/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /source-genesys/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-genesys/poetry.lock -------------------------------------------------------------------------------- /source-genesys/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-genesys/pyproject.toml -------------------------------------------------------------------------------- /source-genesys/test.flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-genesys/test.flow.yaml -------------------------------------------------------------------------------- /source-genesys/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-gladly/acmeCo/flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-gladly/acmeCo/flow.yaml -------------------------------------------------------------------------------- /source-gladly/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-gladly/poetry.lock -------------------------------------------------------------------------------- /source-gladly/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-gladly/pyproject.toml -------------------------------------------------------------------------------- /source-gladly/source_gladly/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-gladly/source_gladly/api.py -------------------------------------------------------------------------------- /source-gladly/test.flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-gladly/test.flow.yaml -------------------------------------------------------------------------------- /source-gladly/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-google-ads/VERSION: -------------------------------------------------------------------------------- 1 | v2 -------------------------------------------------------------------------------- /source-google-ads/acmeCo/flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-google-ads/acmeCo/flow.yaml -------------------------------------------------------------------------------- /source-google-ads/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-google-ads/poetry.lock -------------------------------------------------------------------------------- /source-google-ads/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-google-ads/pyproject.toml -------------------------------------------------------------------------------- /source-google-ads/test.flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-google-ads/test.flow.yaml -------------------------------------------------------------------------------- /source-google-ads/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-google-ads/tests/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-google-ads/tests/common.py -------------------------------------------------------------------------------- /source-google-analytics-data-api-native/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /source-google-analytics-data-api-native/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-google-drive/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # source-google-drive 2 | 3 | ## v1, 2023-08-03 4 | 5 | - Beginning of changelog. 6 | -------------------------------------------------------------------------------- /source-google-drive/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-google-drive/Dockerfile -------------------------------------------------------------------------------- /source-google-drive/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /source-google-drive/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-google-drive/main.go -------------------------------------------------------------------------------- /source-google-play/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /source-google-play/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-google-play/poetry.lock -------------------------------------------------------------------------------- /source-google-play/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-google-play/pyproject.toml -------------------------------------------------------------------------------- /source-google-play/test.flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-google-play/test.flow.yaml -------------------------------------------------------------------------------- /source-google-play/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-google-pubsub/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-google-pubsub/Dockerfile -------------------------------------------------------------------------------- /source-google-pubsub/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /source-google-pubsub/discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-google-pubsub/discovery.go -------------------------------------------------------------------------------- /source-google-pubsub/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-google-pubsub/driver.go -------------------------------------------------------------------------------- /source-google-pubsub/emitter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-google-pubsub/emitter.go -------------------------------------------------------------------------------- /source-google-pubsub/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-google-pubsub/main.go -------------------------------------------------------------------------------- /source-google-sheets-native/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-hello-world/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-hello-world/Dockerfile -------------------------------------------------------------------------------- /source-hello-world/VERSION: -------------------------------------------------------------------------------- 1 | v2 2 | -------------------------------------------------------------------------------- /source-hello-world/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-hello-world/main.go -------------------------------------------------------------------------------- /source-hello-world/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-hello-world/main_test.go -------------------------------------------------------------------------------- /source-http-file/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # source-http-file 2 | 3 | ## v1, 2022-07-27 4 | - Beginning of changelog. 5 | -------------------------------------------------------------------------------- /source-http-file/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-http-file/Dockerfile -------------------------------------------------------------------------------- /source-http-file/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /source-http-file/http_file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-http-file/http_file_test.go -------------------------------------------------------------------------------- /source-http-file/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-http-file/main.go -------------------------------------------------------------------------------- /source-http-ingest/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-http-ingest/Cargo.lock -------------------------------------------------------------------------------- /source-http-ingest/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-http-ingest/Cargo.toml -------------------------------------------------------------------------------- /source-http-ingest/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-http-ingest/Dockerfile -------------------------------------------------------------------------------- /source-http-ingest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-http-ingest/README.md -------------------------------------------------------------------------------- /source-http-ingest/VARIANTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-http-ingest/VARIANTS -------------------------------------------------------------------------------- /source-http-ingest/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /source-http-ingest/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-http-ingest/src/lib.rs -------------------------------------------------------------------------------- /source-http-ingest/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-http-ingest/src/main.rs -------------------------------------------------------------------------------- /source-http-ingest/src/server.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-http-ingest/src/server.rs -------------------------------------------------------------------------------- /source-http-ingest/tests/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-http-ingest/tests/test.rs -------------------------------------------------------------------------------- /source-hubspot-native/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-hubspot-native/config.yaml -------------------------------------------------------------------------------- /source-hubspot-native/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-hubspot-native/poetry.lock -------------------------------------------------------------------------------- /source-hubspot-native/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-hubspot/VERSION: -------------------------------------------------------------------------------- 1 | v5 -------------------------------------------------------------------------------- /source-hubspot/acmeCo/flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-hubspot/acmeCo/flow.yaml -------------------------------------------------------------------------------- /source-hubspot/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-hubspot/config.yaml -------------------------------------------------------------------------------- /source-hubspot/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-hubspot/poetry.lock -------------------------------------------------------------------------------- /source-hubspot/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-hubspot/pyproject.toml -------------------------------------------------------------------------------- /source-hubspot/test.flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-hubspot/test.flow.yaml -------------------------------------------------------------------------------- /source-hubspot/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-hubspot/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-hubspot/tests/conftest.py -------------------------------------------------------------------------------- /source-hubspot/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-hubspot/tests/utils.py -------------------------------------------------------------------------------- /source-impact-native/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-impact-native/config.yaml -------------------------------------------------------------------------------- /source-impact-native/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-impact-native/poetry.lock -------------------------------------------------------------------------------- /source-impact-native/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-incident-io/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /source-incident-io/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-incident-io/poetry.lock -------------------------------------------------------------------------------- /source-incident-io/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-incident-io/pyproject.toml -------------------------------------------------------------------------------- /source-incident-io/test.flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-incident-io/test.flow.yaml -------------------------------------------------------------------------------- /source-incident-io/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-intercom-native/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /source-intercom-native/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-intercom-native/config.yaml -------------------------------------------------------------------------------- /source-intercom-native/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-intercom-native/poetry.lock -------------------------------------------------------------------------------- /source-intercom-native/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-iterable/acmeCo/flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-iterable/acmeCo/flow.yaml -------------------------------------------------------------------------------- /source-iterable/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-iterable/config.yaml -------------------------------------------------------------------------------- /source-iterable/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-iterable/main.py -------------------------------------------------------------------------------- /source-iterable/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-iterable/poetry.lock -------------------------------------------------------------------------------- /source-iterable/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-iterable/pyproject.toml -------------------------------------------------------------------------------- /source-iterable/test.flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-iterable/test.flow.yaml -------------------------------------------------------------------------------- /source-iterable/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-iterate/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /source-iterate/acmeCo/flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-iterate/acmeCo/flow.yaml -------------------------------------------------------------------------------- /source-iterate/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-iterate/poetry.lock -------------------------------------------------------------------------------- /source-iterate/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-iterate/pyproject.toml -------------------------------------------------------------------------------- /source-iterate/test.flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-iterate/test.flow.yaml -------------------------------------------------------------------------------- /source-iterate/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-jira-legacy/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-jira-legacy/config.yaml -------------------------------------------------------------------------------- /source-jira-legacy/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-jira-legacy/poetry.lock -------------------------------------------------------------------------------- /source-jira-legacy/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-jira-legacy/pyproject.toml -------------------------------------------------------------------------------- /source-jira-legacy/test.flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-jira-legacy/test.flow.yaml -------------------------------------------------------------------------------- /source-jira-legacy/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-jira-native/VERSION: -------------------------------------------------------------------------------- 1 | v3 2 | -------------------------------------------------------------------------------- /source-jira-native/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-jira-native/config.yaml -------------------------------------------------------------------------------- /source-jira-native/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-jira-native/poetry.lock -------------------------------------------------------------------------------- /source-jira-native/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-jira-native/pyproject.toml -------------------------------------------------------------------------------- /source-jira-native/test.flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-jira-native/test.flow.yaml -------------------------------------------------------------------------------- /source-jira-native/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-kafka/.dockerignore: -------------------------------------------------------------------------------- 1 | target 2 | -------------------------------------------------------------------------------- /source-kafka/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # source-kafka 2 | 3 | ## v1, 2022-07-27 4 | - Beginning of changelog. 5 | -------------------------------------------------------------------------------- /source-kafka/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-kafka/Cargo.lock -------------------------------------------------------------------------------- /source-kafka/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-kafka/Cargo.toml -------------------------------------------------------------------------------- /source-kafka/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-kafka/Dockerfile -------------------------------------------------------------------------------- /source-kafka/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-kafka/README.md -------------------------------------------------------------------------------- /source-kafka/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /source-kafka/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-kafka/docker-compose.yaml -------------------------------------------------------------------------------- /source-kafka/src/configuration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-kafka/src/configuration.rs -------------------------------------------------------------------------------- /source-kafka/src/discover.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-kafka/src/discover.rs -------------------------------------------------------------------------------- /source-kafka/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-kafka/src/lib.rs -------------------------------------------------------------------------------- /source-kafka/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-kafka/src/main.rs -------------------------------------------------------------------------------- /source-kafka/src/pull.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-kafka/src/pull.rs -------------------------------------------------------------------------------- /source-kafka/tests/test.flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-kafka/tests/test.flow.yaml -------------------------------------------------------------------------------- /source-kafka/tests/test.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-kafka/tests/test.rs -------------------------------------------------------------------------------- /source-kinesis/.snapshots/TestSpec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-kinesis/.snapshots/TestSpec -------------------------------------------------------------------------------- /source-kinesis/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # source-kinesis 2 | 3 | ## v1, 2022-07-27 4 | - Beginning of changelog. 5 | -------------------------------------------------------------------------------- /source-kinesis/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-kinesis/Dockerfile -------------------------------------------------------------------------------- /source-kinesis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-kinesis/README.md -------------------------------------------------------------------------------- /source-kinesis/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /source-kinesis/capture.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-kinesis/capture.go -------------------------------------------------------------------------------- /source-kinesis/capture_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-kinesis/capture_test.go -------------------------------------------------------------------------------- /source-kinesis/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-kinesis/connection.go -------------------------------------------------------------------------------- /source-kinesis/discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-kinesis/discovery.go -------------------------------------------------------------------------------- /source-kinesis/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-kinesis/docker-compose.yaml -------------------------------------------------------------------------------- /source-kinesis/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-kinesis/main.go -------------------------------------------------------------------------------- /source-kinesis/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-kinesis/main_test.go -------------------------------------------------------------------------------- /source-kinesis/shard_tracker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-kinesis/shard_tracker.go -------------------------------------------------------------------------------- /source-klaviyo-native/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /source-klaviyo-native/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-klaviyo-native/config.yaml -------------------------------------------------------------------------------- /source-klaviyo-native/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-klaviyo-native/poetry.lock -------------------------------------------------------------------------------- /source-klaviyo-native/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-klaviyo/acmeCo/flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-klaviyo/acmeCo/flow.yaml -------------------------------------------------------------------------------- /source-klaviyo/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-klaviyo/config.yaml -------------------------------------------------------------------------------- /source-klaviyo/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-klaviyo/poetry.lock -------------------------------------------------------------------------------- /source-klaviyo/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-klaviyo/pyproject.toml -------------------------------------------------------------------------------- /source-klaviyo/test.flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-klaviyo/test.flow.yaml -------------------------------------------------------------------------------- /source-klaviyo/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-linkedin-ads-v2/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-linkedin-ads-v2/config.yaml -------------------------------------------------------------------------------- /source-linkedin-ads-v2/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-linkedin-ads-v2/poetry.lock -------------------------------------------------------------------------------- /source-linkedin-ads-v2/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-linkedin-ads-v2/unit_tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-linkedin-pages/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-linkedin-pages/poetry.lock -------------------------------------------------------------------------------- /source-linkedin-pages/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-looker/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /source-looker/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-looker/config.yaml -------------------------------------------------------------------------------- /source-looker/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-looker/poetry.lock -------------------------------------------------------------------------------- /source-looker/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-looker/pyproject.toml -------------------------------------------------------------------------------- /source-looker/source_looker/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-looker/source_looker/api.py -------------------------------------------------------------------------------- /source-looker/test.flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-looker/test.flow.yaml -------------------------------------------------------------------------------- /source-looker/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-mixpanel-native/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mixpanel-native/config.yaml -------------------------------------------------------------------------------- /source-mixpanel-native/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mixpanel-native/poetry.lock -------------------------------------------------------------------------------- /source-mixpanel-native/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-monday/acmeCo/flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-monday/acmeCo/flow.yaml -------------------------------------------------------------------------------- /source-monday/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-monday/config.yaml -------------------------------------------------------------------------------- /source-monday/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-monday/poetry.lock -------------------------------------------------------------------------------- /source-monday/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-monday/pyproject.toml -------------------------------------------------------------------------------- /source-monday/source_monday/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-monday/source_monday/api.py -------------------------------------------------------------------------------- /source-monday/test.flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-monday/test.flow.yaml -------------------------------------------------------------------------------- /source-monday/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-mongodb/.snapshots/TestSpec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mongodb/.snapshots/TestSpec -------------------------------------------------------------------------------- /source-mongodb/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mongodb/CHANGELOG.md -------------------------------------------------------------------------------- /source-mongodb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mongodb/Dockerfile -------------------------------------------------------------------------------- /source-mongodb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mongodb/README.md -------------------------------------------------------------------------------- /source-mongodb/VARIANTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mongodb/VARIANTS -------------------------------------------------------------------------------- /source-mongodb/VERSION: -------------------------------------------------------------------------------- 1 | v2 2 | -------------------------------------------------------------------------------- /source-mongodb/backfill.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mongodb/backfill.go -------------------------------------------------------------------------------- /source-mongodb/change_stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mongodb/change_stream.go -------------------------------------------------------------------------------- /source-mongodb/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mongodb/config_test.go -------------------------------------------------------------------------------- /source-mongodb/coordinator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mongodb/coordinator.go -------------------------------------------------------------------------------- /source-mongodb/coordinator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mongodb/coordinator_test.go -------------------------------------------------------------------------------- /source-mongodb/discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mongodb/discovery.go -------------------------------------------------------------------------------- /source-mongodb/discovery_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mongodb/discovery_test.go -------------------------------------------------------------------------------- /source-mongodb/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mongodb/docker-compose.yaml -------------------------------------------------------------------------------- /source-mongodb/global-bundle.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mongodb/global-bundle.pem -------------------------------------------------------------------------------- /source-mongodb/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mongodb/main.go -------------------------------------------------------------------------------- /source-mongodb/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mongodb/main_test.go -------------------------------------------------------------------------------- /source-mongodb/pull.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mongodb/pull.go -------------------------------------------------------------------------------- /source-mongodb/pull_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mongodb/pull_test.go -------------------------------------------------------------------------------- /source-mongodb/sample.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mongodb/sample.key -------------------------------------------------------------------------------- /source-mongodb/test_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mongodb/test_util.go -------------------------------------------------------------------------------- /source-mongodb/view_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mongodb/view_test.go -------------------------------------------------------------------------------- /source-mysql-batch/.snapshots/TestQueryTemplate-FirstNoCursor: -------------------------------------------------------------------------------- 1 | SELECT * FROM `test`.`foobar`; 2 | -------------------------------------------------------------------------------- /source-mysql-batch/.snapshots/TestQueryTemplate-FirstOneCursor: -------------------------------------------------------------------------------- 1 | SELECT * FROM `test`.`foobar` ORDER BY `ka`; 2 | -------------------------------------------------------------------------------- /source-mysql-batch/.snapshots/TestQueryTemplate-FirstTwoCursor: -------------------------------------------------------------------------------- 1 | SELECT * FROM `test`.`foobar` ORDER BY `ka`, `kb`; 2 | -------------------------------------------------------------------------------- /source-mysql-batch/.snapshots/TestQueryTemplate-SubsequentNoCursor: -------------------------------------------------------------------------------- 1 | SELECT * FROM `test`.`foobar`; 2 | -------------------------------------------------------------------------------- /source-mysql-batch/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # source-mysql-batch 2 | 3 | ## v1, 2023-09-28 4 | - Beginning of changelog. 5 | -------------------------------------------------------------------------------- /source-mysql-batch/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mysql-batch/Dockerfile -------------------------------------------------------------------------------- /source-mysql-batch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mysql-batch/README.md -------------------------------------------------------------------------------- /source-mysql-batch/VARIANTS: -------------------------------------------------------------------------------- 1 | source-singlestore-batch -------------------------------------------------------------------------------- /source-mysql-batch/VERSION: -------------------------------------------------------------------------------- 1 | v1 -------------------------------------------------------------------------------- /source-mysql-batch/discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mysql-batch/discovery.go -------------------------------------------------------------------------------- /source-mysql-batch/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mysql-batch/driver.go -------------------------------------------------------------------------------- /source-mysql-batch/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mysql-batch/main.go -------------------------------------------------------------------------------- /source-mysql-batch/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mysql-batch/main_test.go -------------------------------------------------------------------------------- /source-mysql/.snapshots/TestPrerequisites-validateAB: -------------------------------------------------------------------------------- 1 | no error 2 | -------------------------------------------------------------------------------- /source-mysql/.snapshots/TestSchemaWhitelist-Excluded: -------------------------------------------------------------------------------- 1 | (no output) 2 | -------------------------------------------------------------------------------- /source-mysql/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mysql/CHANGELOG.md -------------------------------------------------------------------------------- /source-mysql/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mysql/Dockerfile -------------------------------------------------------------------------------- /source-mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mysql/README.md -------------------------------------------------------------------------------- /source-mysql/VARIANTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mysql/VARIANTS -------------------------------------------------------------------------------- /source-mysql/VERSION: -------------------------------------------------------------------------------- 1 | v3 2 | -------------------------------------------------------------------------------- /source-mysql/backfill.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mysql/backfill.go -------------------------------------------------------------------------------- /source-mysql/capture_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mysql/capture_test.go -------------------------------------------------------------------------------- /source-mysql/change.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mysql/change.go -------------------------------------------------------------------------------- /source-mysql/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mysql/database.go -------------------------------------------------------------------------------- /source-mysql/datatype_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mysql/datatype_test.go -------------------------------------------------------------------------------- /source-mysql/datatypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mysql/datatypes.go -------------------------------------------------------------------------------- /source-mysql/diagnostics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mysql/diagnostics.go -------------------------------------------------------------------------------- /source-mysql/discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mysql/discovery.go -------------------------------------------------------------------------------- /source-mysql/discovery_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mysql/discovery_test.go -------------------------------------------------------------------------------- /source-mysql/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mysql/docker-compose.yaml -------------------------------------------------------------------------------- /source-mysql/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mysql/main.go -------------------------------------------------------------------------------- /source-mysql/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mysql/main_test.go -------------------------------------------------------------------------------- /source-mysql/prerequisites.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mysql/prerequisites.go -------------------------------------------------------------------------------- /source-mysql/prerequisites_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mysql/prerequisites_test.go -------------------------------------------------------------------------------- /source-mysql/replication.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mysql/replication.go -------------------------------------------------------------------------------- /source-mysql/replication_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mysql/replication_test.go -------------------------------------------------------------------------------- /source-mysql/testdata/statepop.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mysql/testdata/statepop.csv -------------------------------------------------------------------------------- /source-mysql/throughput_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-mysql/throughput_test.go -------------------------------------------------------------------------------- /source-navan/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /source-navan/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-navan/poetry.lock -------------------------------------------------------------------------------- /source-navan/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-navan/pyproject.toml -------------------------------------------------------------------------------- /source-navan/source_navan/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-navan/source_navan/api.py -------------------------------------------------------------------------------- /source-navan/source_navan/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-navan/source_navan/utils.py -------------------------------------------------------------------------------- /source-navan/test.flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-navan/test.flow.yaml -------------------------------------------------------------------------------- /source-navan/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-notion/VERSION: -------------------------------------------------------------------------------- 1 | v2 2 | -------------------------------------------------------------------------------- /source-notion/acmeCo/flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-notion/acmeCo/flow.yaml -------------------------------------------------------------------------------- /source-notion/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-notion/config.yaml -------------------------------------------------------------------------------- /source-notion/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-notion/poetry.lock -------------------------------------------------------------------------------- /source-notion/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-notion/pyproject.toml -------------------------------------------------------------------------------- /source-notion/source_notion/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-notion/source_notion/run.py -------------------------------------------------------------------------------- /source-notion/test.flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-notion/test.flow.yaml -------------------------------------------------------------------------------- /source-notion/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-notion/tests/test_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-notion/tests/test_source.py -------------------------------------------------------------------------------- /source-onedrive/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # source-onedrive 2 | 3 | ## v1, 2025-11-20 4 | 5 | - Beginning of changelog. 6 | -------------------------------------------------------------------------------- /source-onedrive/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-onedrive/Dockerfile -------------------------------------------------------------------------------- /source-onedrive/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /source-onedrive/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-onedrive/main.go -------------------------------------------------------------------------------- /source-onedrive/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-onedrive/main_test.go -------------------------------------------------------------------------------- /source-onedrive/oauth2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-onedrive/oauth2.go -------------------------------------------------------------------------------- /source-oracle-batch/.snapshots/TestSchemaFilter-FilteredOut: -------------------------------------------------------------------------------- 1 | (no bindings) 2 | -------------------------------------------------------------------------------- /source-oracle-batch/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # source-oracle-batch 2 | 3 | ## v1, 2025-02-13 4 | - Beginning of changelog. 5 | -------------------------------------------------------------------------------- /source-oracle-batch/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-oracle-batch/Dockerfile -------------------------------------------------------------------------------- /source-oracle-batch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-oracle-batch/README.md -------------------------------------------------------------------------------- /source-oracle-batch/VERSION: -------------------------------------------------------------------------------- 1 | v1 -------------------------------------------------------------------------------- /source-oracle-batch/discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-oracle-batch/discovery.go -------------------------------------------------------------------------------- /source-oracle-batch/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-oracle-batch/driver.go -------------------------------------------------------------------------------- /source-oracle-batch/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-oracle-batch/main.go -------------------------------------------------------------------------------- /source-oracle-batch/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-oracle-batch/main_test.go -------------------------------------------------------------------------------- /source-oracle/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-oracle/Dockerfile -------------------------------------------------------------------------------- /source-oracle/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /source-oracle/backfill.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-oracle/backfill.go -------------------------------------------------------------------------------- /source-oracle/capture_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-oracle/capture_test.go -------------------------------------------------------------------------------- /source-oracle/config.pdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-oracle/config.pdb.yaml -------------------------------------------------------------------------------- /source-oracle/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-oracle/decode.go -------------------------------------------------------------------------------- /source-oracle/diagnostics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-oracle/diagnostics.go -------------------------------------------------------------------------------- /source-oracle/discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-oracle/discovery.go -------------------------------------------------------------------------------- /source-oracle/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-oracle/docker-compose.yaml -------------------------------------------------------------------------------- /source-oracle/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-oracle/main.go -------------------------------------------------------------------------------- /source-oracle/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-oracle/main_test.go -------------------------------------------------------------------------------- /source-oracle/prerequisites.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-oracle/prerequisites.go -------------------------------------------------------------------------------- /source-oracle/replication.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-oracle/replication.go -------------------------------------------------------------------------------- /source-oracle/replication_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-oracle/replication_test.go -------------------------------------------------------------------------------- /source-oracle/reserved_words.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-oracle/reserved_words.go -------------------------------------------------------------------------------- /source-outreach/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /source-outreach/acmeCo/flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-outreach/acmeCo/flow.yaml -------------------------------------------------------------------------------- /source-outreach/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-outreach/config.yaml -------------------------------------------------------------------------------- /source-outreach/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-outreach/poetry.lock -------------------------------------------------------------------------------- /source-outreach/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-outreach/pyproject.toml -------------------------------------------------------------------------------- /source-outreach/test.flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-outreach/test.flow.yaml -------------------------------------------------------------------------------- /source-outreach/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-pendo/VERSION: -------------------------------------------------------------------------------- 1 | v2 2 | -------------------------------------------------------------------------------- /source-pendo/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-pendo/poetry.lock -------------------------------------------------------------------------------- /source-pendo/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-pendo/pyproject.toml -------------------------------------------------------------------------------- /source-pendo/source_pendo/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-pendo/source_pendo/api.py -------------------------------------------------------------------------------- /source-pendo/test.flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-pendo/test.flow.yaml -------------------------------------------------------------------------------- /source-pendo/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-pokemon/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-pokemon/poetry.lock -------------------------------------------------------------------------------- /source-pokemon/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-pokemon/pyproject.toml -------------------------------------------------------------------------------- /source-pokemon/test.flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-pokemon/test.flow.yaml -------------------------------------------------------------------------------- /source-postgres-batch/.snapshots/TestSchemaFilter-FilteredOut: -------------------------------------------------------------------------------- 1 | (no bindings) 2 | -------------------------------------------------------------------------------- /source-postgres-batch/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # source-postgres-batch 2 | 3 | ## v1, 2023-07-31 4 | - Beginning of changelog. 5 | -------------------------------------------------------------------------------- /source-postgres-batch/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-postgres-batch/Dockerfile -------------------------------------------------------------------------------- /source-postgres-batch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-postgres-batch/README.md -------------------------------------------------------------------------------- /source-postgres-batch/VERSION: -------------------------------------------------------------------------------- 1 | v1 -------------------------------------------------------------------------------- /source-postgres-batch/discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-postgres-batch/discovery.go -------------------------------------------------------------------------------- /source-postgres-batch/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-postgres-batch/driver.go -------------------------------------------------------------------------------- /source-postgres-batch/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-postgres-batch/main.go -------------------------------------------------------------------------------- /source-postgres-batch/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-postgres-batch/main_test.go -------------------------------------------------------------------------------- /source-postgres/.snapshots/TestDiscoveryExcludesSystemSchemas: -------------------------------------------------------------------------------- 1 | (no output) 2 | -------------------------------------------------------------------------------- /source-postgres/.snapshots/TestPrerequisites-validateAB: -------------------------------------------------------------------------------- 1 | no error 2 | -------------------------------------------------------------------------------- /source-postgres/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-postgres/CHANGELOG.md -------------------------------------------------------------------------------- /source-postgres/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-postgres/Dockerfile -------------------------------------------------------------------------------- /source-postgres/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-postgres/README.md -------------------------------------------------------------------------------- /source-postgres/VARIANTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-postgres/VARIANTS -------------------------------------------------------------------------------- /source-postgres/VERSION: -------------------------------------------------------------------------------- 1 | v3 2 | -------------------------------------------------------------------------------- /source-postgres/backfill.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-postgres/backfill.go -------------------------------------------------------------------------------- /source-postgres/backfill_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-postgres/backfill_test.go -------------------------------------------------------------------------------- /source-postgres/capture_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-postgres/capture_test.go -------------------------------------------------------------------------------- /source-postgres/change.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-postgres/change.go -------------------------------------------------------------------------------- /source-postgres/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-postgres/database.go -------------------------------------------------------------------------------- /source-postgres/datatype_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-postgres/datatype_test.go -------------------------------------------------------------------------------- /source-postgres/datatypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-postgres/datatypes.go -------------------------------------------------------------------------------- /source-postgres/diagnostics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-postgres/diagnostics.go -------------------------------------------------------------------------------- /source-postgres/discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-postgres/discovery.go -------------------------------------------------------------------------------- /source-postgres/discovery_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-postgres/discovery_test.go -------------------------------------------------------------------------------- /source-postgres/fdbutils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-postgres/fdbutils.go -------------------------------------------------------------------------------- /source-postgres/fdbutils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-postgres/fdbutils_test.go -------------------------------------------------------------------------------- /source-postgres/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-postgres/main.go -------------------------------------------------------------------------------- /source-postgres/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-postgres/main_test.go -------------------------------------------------------------------------------- /source-postgres/prerequisites.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-postgres/prerequisites.go -------------------------------------------------------------------------------- /source-postgres/replication.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-postgres/replication.go -------------------------------------------------------------------------------- /source-postgres/throughput_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-postgres/throughput_test.go -------------------------------------------------------------------------------- /source-qualtrics/VERSION: -------------------------------------------------------------------------------- 1 | v1 -------------------------------------------------------------------------------- /source-qualtrics/acmeCo/flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-qualtrics/acmeCo/flow.yaml -------------------------------------------------------------------------------- /source-qualtrics/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-qualtrics/poetry.lock -------------------------------------------------------------------------------- /source-qualtrics/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-qualtrics/pyproject.toml -------------------------------------------------------------------------------- /source-qualtrics/test.flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-qualtrics/test.flow.yaml -------------------------------------------------------------------------------- /source-qualtrics/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-quickbooks/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /source-quickbooks/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-quickbooks/config.yaml -------------------------------------------------------------------------------- /source-quickbooks/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-quickbooks/poetry.lock -------------------------------------------------------------------------------- /source-quickbooks/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-quickbooks/pyproject.toml -------------------------------------------------------------------------------- /source-quickbooks/test.flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-quickbooks/test.flow.yaml -------------------------------------------------------------------------------- /source-quickbooks/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-recharge/acmeCo/flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-recharge/acmeCo/flow.yaml -------------------------------------------------------------------------------- /source-recharge/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-recharge/config.yaml -------------------------------------------------------------------------------- /source-recharge/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-recharge/poetry.lock -------------------------------------------------------------------------------- /source-recharge/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-recharge/pyproject.toml -------------------------------------------------------------------------------- /source-recharge/test.flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-recharge/test.flow.yaml -------------------------------------------------------------------------------- /source-recharge/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-recharge/tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-recharge/tests/test_api.py -------------------------------------------------------------------------------- /source-redshift-batch/.snapshots/TestQueryTemplate-FirstNoCursor: -------------------------------------------------------------------------------- 1 | SELECT * FROM "testdata"."foobar"; 2 | 3 | -------------------------------------------------------------------------------- /source-redshift-batch/.snapshots/TestQueryTemplate-FirstOneCursor: -------------------------------------------------------------------------------- 1 | SELECT * FROM "testdata"."foobar" ORDER BY `ka`; 2 | 3 | -------------------------------------------------------------------------------- /source-redshift-batch/.snapshots/TestQueryTemplate-SubsequentNoCursor: -------------------------------------------------------------------------------- 1 | SELECT * FROM "testdata"."foobar"; 2 | 3 | -------------------------------------------------------------------------------- /source-redshift-batch/.snapshots/TestSchemaFilter-FilteredOut: -------------------------------------------------------------------------------- 1 | (no bindings) 2 | -------------------------------------------------------------------------------- /source-redshift-batch/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # source-redshift-batch 2 | 3 | ## v1, 2024-02-26 4 | - Beginning of changelog. 5 | -------------------------------------------------------------------------------- /source-redshift-batch/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-redshift-batch/Dockerfile -------------------------------------------------------------------------------- /source-redshift-batch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-redshift-batch/README.md -------------------------------------------------------------------------------- /source-redshift-batch/VERSION: -------------------------------------------------------------------------------- 1 | v1 -------------------------------------------------------------------------------- /source-redshift-batch/discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-redshift-batch/discovery.go -------------------------------------------------------------------------------- /source-redshift-batch/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-redshift-batch/driver.go -------------------------------------------------------------------------------- /source-redshift-batch/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-redshift-batch/main.go -------------------------------------------------------------------------------- /source-s3/.gitignore: -------------------------------------------------------------------------------- 1 | /source-s3 2 | -------------------------------------------------------------------------------- /source-s3/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-s3/CHANGELOG.md -------------------------------------------------------------------------------- /source-s3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-s3/Dockerfile -------------------------------------------------------------------------------- /source-s3/VERSION: -------------------------------------------------------------------------------- 1 | v2 2 | -------------------------------------------------------------------------------- /source-s3/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-s3/main.go -------------------------------------------------------------------------------- /source-sage-intacct/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-sage-intacct/poetry.lock -------------------------------------------------------------------------------- /source-sage-intacct/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-salesforce-native/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /source-salesforce-native/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-sentry/VERSION: -------------------------------------------------------------------------------- 1 | v2 2 | -------------------------------------------------------------------------------- /source-sentry/acmeCo/flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-sentry/acmeCo/flow.yaml -------------------------------------------------------------------------------- /source-sentry/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-sentry/config.yaml -------------------------------------------------------------------------------- /source-sentry/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-sentry/poetry.lock -------------------------------------------------------------------------------- /source-sentry/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-sentry/pyproject.toml -------------------------------------------------------------------------------- /source-sentry/test.flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-sentry/test.flow.yaml -------------------------------------------------------------------------------- /source-sentry/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-sftp/.snapshots/TestListing-recursive_otherDir: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source-sftp/.snapshots/TestListing-recursive_startAt_z: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source-sftp/.snapshots/TestSpec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-sftp/.snapshots/TestSpec -------------------------------------------------------------------------------- /source-sftp/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # source-sftp 2 | 3 | ## v1, 2023-05-11 4 | 5 | - Beginning of changelog. 6 | -------------------------------------------------------------------------------- /source-sftp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-sftp/Dockerfile -------------------------------------------------------------------------------- /source-sftp/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /source-sftp/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-sftp/docker-compose.yaml -------------------------------------------------------------------------------- /source-sftp/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-sftp/main.go -------------------------------------------------------------------------------- /source-sftp/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-sftp/main_test.go -------------------------------------------------------------------------------- /source-shopify-native/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /source-shopify-native/source_shopify_native/graphql/collections/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-shopify-native/source_shopify_native/graphql/customers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-shopify-native/source_shopify_native/graphql/inventory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-shopify-native/source_shopify_native/graphql/locations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-shopify-native/source_shopify_native/graphql/orders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-shopify-native/source_shopify_native/graphql/products/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-shopify-native/source_shopify_native/graphql/subscriptions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-shopify-native/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-shopify/VERSION: -------------------------------------------------------------------------------- 1 | v1 -------------------------------------------------------------------------------- /source-shopify/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-shopify/__main__.py -------------------------------------------------------------------------------- /source-shopify/acmeCo/flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-shopify/acmeCo/flow.yaml -------------------------------------------------------------------------------- /source-shopify/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-shopify/poetry.lock -------------------------------------------------------------------------------- /source-shopify/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-shopify/pyproject.toml -------------------------------------------------------------------------------- /source-shopify/source_shopify/tap_shopify/__init__.py: -------------------------------------------------------------------------------- 1 | """Default init.""" 2 | -------------------------------------------------------------------------------- /source-shopify/test.flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-shopify/test.flow.yaml -------------------------------------------------------------------------------- /source-shopify/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-snowflake/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # source-snowflake 2 | 3 | ## v1, 2024-01-19 4 | - Beginning of changelog. 5 | -------------------------------------------------------------------------------- /source-snowflake/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-snowflake/Dockerfile -------------------------------------------------------------------------------- /source-snowflake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-snowflake/README.md -------------------------------------------------------------------------------- /source-snowflake/VERSION: -------------------------------------------------------------------------------- 1 | v1 -------------------------------------------------------------------------------- /source-snowflake/capture.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-snowflake/capture.go -------------------------------------------------------------------------------- /source-snowflake/capture_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-snowflake/capture_test.go -------------------------------------------------------------------------------- /source-snowflake/config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-snowflake/config_test.go -------------------------------------------------------------------------------- /source-snowflake/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-snowflake/database.go -------------------------------------------------------------------------------- /source-snowflake/discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-snowflake/discovery.go -------------------------------------------------------------------------------- /source-snowflake/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-snowflake/main.go -------------------------------------------------------------------------------- /source-snowflake/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-snowflake/main_test.go -------------------------------------------------------------------------------- /source-sqlserver-batch/.snapshots/TestSchemaFilter-FilteredOut: -------------------------------------------------------------------------------- 1 | (no bindings) 2 | -------------------------------------------------------------------------------- /source-sqlserver-batch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-sqlserver-batch/README.md -------------------------------------------------------------------------------- /source-sqlserver-batch/VERSION: -------------------------------------------------------------------------------- 1 | v1 -------------------------------------------------------------------------------- /source-sqlserver-batch/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-sqlserver-batch/driver.go -------------------------------------------------------------------------------- /source-sqlserver-batch/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-sqlserver-batch/main.go -------------------------------------------------------------------------------- /source-sqlserver/.snapshots/TestPrerequisites-validateAB: -------------------------------------------------------------------------------- 1 | no error 2 | -------------------------------------------------------------------------------- /source-sqlserver/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-sqlserver/CHANGELOG.md -------------------------------------------------------------------------------- /source-sqlserver/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-sqlserver/Dockerfile -------------------------------------------------------------------------------- /source-sqlserver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-sqlserver/README.md -------------------------------------------------------------------------------- /source-sqlserver/VARIANTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-sqlserver/VARIANTS -------------------------------------------------------------------------------- /source-sqlserver/VERSION: -------------------------------------------------------------------------------- 1 | v0 -------------------------------------------------------------------------------- /source-sqlserver/backfill.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-sqlserver/backfill.go -------------------------------------------------------------------------------- /source-sqlserver/change.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-sqlserver/change.go -------------------------------------------------------------------------------- /source-sqlserver/collation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-sqlserver/collation.go -------------------------------------------------------------------------------- /source-sqlserver/datatypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-sqlserver/datatypes.go -------------------------------------------------------------------------------- /source-sqlserver/diagnostics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-sqlserver/diagnostics.go -------------------------------------------------------------------------------- /source-sqlserver/discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-sqlserver/discovery.go -------------------------------------------------------------------------------- /source-sqlserver/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-sqlserver/main.go -------------------------------------------------------------------------------- /source-sqlserver/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-sqlserver/main_test.go -------------------------------------------------------------------------------- /source-sqlserver/replication.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-sqlserver/replication.go -------------------------------------------------------------------------------- /source-sqlserver/watermarks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-sqlserver/watermarks.go -------------------------------------------------------------------------------- /source-stripe-native/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-stripe-native/config.yaml -------------------------------------------------------------------------------- /source-stripe-native/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-stripe-native/poetry.lock -------------------------------------------------------------------------------- /source-stripe-native/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-test/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # source-test 2 | 3 | ## v1, 2022-07-27 4 | - Beginning of changelog. 5 | -------------------------------------------------------------------------------- /source-test/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-test/Dockerfile -------------------------------------------------------------------------------- /source-test/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /source-test/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-test/main.go -------------------------------------------------------------------------------- /source-twilio/VERSION: -------------------------------------------------------------------------------- 1 | v2 2 | -------------------------------------------------------------------------------- /source-twilio/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-twilio/config.yaml -------------------------------------------------------------------------------- /source-twilio/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-twilio/poetry.lock -------------------------------------------------------------------------------- /source-twilio/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-twilio/pyproject.toml -------------------------------------------------------------------------------- /source-twilio/test.flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-twilio/test.flow.yaml -------------------------------------------------------------------------------- /source-twilio/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-yahoo-finance/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-yahoo-finance/__main__.py -------------------------------------------------------------------------------- /source-yahoo-finance/poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/source-yahoo-finance/poetry.lock -------------------------------------------------------------------------------- /source-zendesk-support-native/VERSION: -------------------------------------------------------------------------------- 1 | v1 2 | -------------------------------------------------------------------------------- /source-zendesk-support-native/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source-zendesk-support/VERSION: -------------------------------------------------------------------------------- 1 | v2 2 | -------------------------------------------------------------------------------- /source-zendesk-support/source_zendesk_support/schemas/post_comment_votes.json: -------------------------------------------------------------------------------- 1 | { "$ref": "votes.json" } 2 | -------------------------------------------------------------------------------- /source-zendesk-support/source_zendesk_support/schemas/post_votes.json: -------------------------------------------------------------------------------- 1 | { "$ref": "votes.json" } 2 | -------------------------------------------------------------------------------- /source-zendesk-support/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sqlcapture/capture.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/sqlcapture/capture.go -------------------------------------------------------------------------------- /sqlcapture/discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/sqlcapture/discovery.go -------------------------------------------------------------------------------- /sqlcapture/discovery_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/sqlcapture/discovery_test.go -------------------------------------------------------------------------------- /sqlcapture/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/sqlcapture/interface.go -------------------------------------------------------------------------------- /sqlcapture/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/sqlcapture/main.go -------------------------------------------------------------------------------- /sqlcapture/tests/datatypes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/sqlcapture/tests/datatypes.go -------------------------------------------------------------------------------- /sqlcapture/tests/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/sqlcapture/tests/helpers.go -------------------------------------------------------------------------------- /sqlcapture/tests/interface.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/sqlcapture/tests/interface.go -------------------------------------------------------------------------------- /sqlcapture/tests/tests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/sqlcapture/tests/tests.go -------------------------------------------------------------------------------- /sqlcapture/tuples.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/sqlcapture/tuples.go -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/files/a.csv.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/tests/files/a.csv.zip -------------------------------------------------------------------------------- /tests/files/b.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/tests/files/b.csv -------------------------------------------------------------------------------- /tests/files/c.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/tests/files/c.csv.gz -------------------------------------------------------------------------------- /tests/files/d.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/tests/files/d.jsonl -------------------------------------------------------------------------------- /tests/materialize/empty.fixture.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /tests/materialize/fixture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/tests/materialize/fixture.json -------------------------------------------------------------------------------- /tests/materialize/materialize-cratedb/fetch.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/materialize/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/tests/materialize/run.sh -------------------------------------------------------------------------------- /tests/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/tests/run.sh -------------------------------------------------------------------------------- /tests/source-dynamodb/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/tests/source-dynamodb/cleanup.sh -------------------------------------------------------------------------------- /tests/source-dynamodb/data.jsonl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/tests/source-dynamodb/data.jsonl -------------------------------------------------------------------------------- /tests/source-dynamodb/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/tests/source-dynamodb/setup.sh -------------------------------------------------------------------------------- /tests/source-gcs/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/tests/source-gcs/cleanup.sh -------------------------------------------------------------------------------- /tests/source-gcs/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/tests/source-gcs/expected.txt -------------------------------------------------------------------------------- /tests/source-gcs/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/tests/source-gcs/setup.sh -------------------------------------------------------------------------------- /tests/source-kafka/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/tests/source-kafka/cleanup.sh -------------------------------------------------------------------------------- /tests/source-kafka/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/tests/source-kafka/expected.txt -------------------------------------------------------------------------------- /tests/source-kafka/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/tests/source-kafka/setup.sh -------------------------------------------------------------------------------- /tests/source-kinesis/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/tests/source-kinesis/cleanup.sh -------------------------------------------------------------------------------- /tests/source-kinesis/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/tests/source-kinesis/setup.sh -------------------------------------------------------------------------------- /tests/source-mysql/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/tests/source-mysql/cleanup.sh -------------------------------------------------------------------------------- /tests/source-mysql/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/tests/source-mysql/expected.txt -------------------------------------------------------------------------------- /tests/source-mysql/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/tests/source-mysql/setup.sh -------------------------------------------------------------------------------- /tests/source-postgres/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/tests/source-postgres/cleanup.sh -------------------------------------------------------------------------------- /tests/source-postgres/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/tests/source-postgres/setup.sh -------------------------------------------------------------------------------- /tests/source-s3/cleanup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e 4 | 5 | docker stop "${LOCALSTACK_CONTAINER_NAME}" 6 | -------------------------------------------------------------------------------- /tests/source-s3/config.yaml.template: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/source-s3/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/tests/source-s3/expected.txt -------------------------------------------------------------------------------- /tests/source-s3/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/tests/source-s3/setup.sh -------------------------------------------------------------------------------- /tests/source-sftp/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/tests/source-sftp/cleanup.sh -------------------------------------------------------------------------------- /tests/source-sftp/expected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/tests/source-sftp/expected.txt -------------------------------------------------------------------------------- /tests/source-sftp/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/tests/source-sftp/setup.sh -------------------------------------------------------------------------------- /tests/source-sqlserver/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/tests/source-sqlserver/setup.sh -------------------------------------------------------------------------------- /tests/template.flow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/tests/template.flow.yaml -------------------------------------------------------------------------------- /testsupport/build_catalog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/estuary/connectors/HEAD/testsupport/build_catalog.go --------------------------------------------------------------------------------