airbyte-cdk 0.51.2__tar.gz → 0.51.4__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/PKG-INFO +1 -1
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/file_based/file_types/csv_parser.py +4 -5
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/file_based/stream/default_file_based_stream.py +2 -3
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk.egg-info/PKG-INFO +1 -1
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/setup.py +1 -1
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/file_based/file_types/test_csv_parser.py +1 -1
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/file_based/scenarios/csv_scenarios.py +0 -2
- airbyte-cdk-0.51.4/unit_tests/sources/file_based/stream/test_default_file_based_stream.py +130 -0
- airbyte-cdk-0.51.2/unit_tests/sources/file_based/stream/test_default_file_based_stream.py +0 -48
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/LICENSE.txt +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/README.md +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/config_observation.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/connector.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/connector_builder/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/connector_builder/connector_builder_handler.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/connector_builder/main.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/connector_builder/message_grouper.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/connector_builder/models.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/destinations/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/destinations/destination.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/entrypoint.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/exception_handler.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/logger.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/models/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/models/airbyte_protocol.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/models/well_known_types.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/py.typed +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/abstract_source.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/config.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/connector_state_manager.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/auth/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/auth/declarative_authenticator.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/auth/oauth.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/auth/token.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/auth/token_provider.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/checks/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/checks/check_stream.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/checks/connection_checker.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/create_partial.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/datetime/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/datetime/datetime_parser.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/datetime/min_max_datetime.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/declarative_component_schema.yaml +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/declarative_source.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/declarative_stream.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/decoders/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/decoders/decoder.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/decoders/json_decoder.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/exceptions.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/extractors/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/extractors/dpath_extractor.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/extractors/http_selector.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/extractors/record_extractor.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/extractors/record_filter.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/extractors/record_selector.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/incremental/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/incremental/cursor.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/incremental/datetime_based_cursor.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/incremental/per_partition_cursor.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/interpolation/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/interpolation/filters.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/interpolation/interpolated_boolean.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/interpolation/interpolated_mapping.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/interpolation/interpolated_nested_mapping.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/interpolation/interpolated_string.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/interpolation/interpolation.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/interpolation/jinja.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/interpolation/macros.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/manifest_declarative_source.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/models/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/models/declarative_component_schema.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/parsers/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/parsers/class_types_registry.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/parsers/custom_exceptions.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/parsers/default_implementation_registry.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/parsers/manifest_component_transformer.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/parsers/manifest_reference_resolver.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/partition_routers/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/partition_routers/list_partition_router.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/partition_routers/single_partition_router.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/partition_routers/substream_partition_router.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/requesters/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/requesters/error_handlers/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/constant_backoff_strategy.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/exponential_backoff_strategy.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/header_helper.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/wait_time_from_header_backoff_strategy.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/wait_until_time_from_header_backoff_strategy.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategy.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/requesters/error_handlers/composite_error_handler.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/requesters/error_handlers/default_error_handler.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/requesters/error_handlers/error_handler.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/requesters/error_handlers/http_response_filter.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/requesters/error_handlers/response_action.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/requesters/error_handlers/response_status.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/requesters/http_requester.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/requesters/paginators/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/requesters/paginators/default_paginator.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/requesters/paginators/no_pagination.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/requesters/paginators/paginator.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/requesters/paginators/strategies/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/requesters/paginators/strategies/cursor_pagination_strategy.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/requesters/paginators/strategies/offset_increment.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/requesters/paginators/strategies/page_increment.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/requesters/paginators/strategies/pagination_strategy.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/requesters/paginators/strategies/stop_condition.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/requesters/request_option.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/requesters/request_options/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/requesters/request_options/interpolated_nested_request_input_provider.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/requesters/request_options/interpolated_request_input_provider.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/requesters/request_options/interpolated_request_options_provider.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/requesters/request_options/request_options_provider.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/requesters/request_path.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/requesters/requester.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/retrievers/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/retrievers/retriever.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/retrievers/simple_retriever.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/schema/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/schema/default_schema_loader.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/schema/inline_schema_loader.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/schema/json_file_schema_loader.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/schema/schema_loader.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/spec/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/spec/spec.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/stream_slicers/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/stream_slicers/cartesian_product_stream_slicer.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/stream_slicers/stream_slicer.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/transformations/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/transformations/add_fields.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/transformations/remove_fields.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/transformations/transformation.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/types.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/yaml_declarative_source.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/deprecated/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/deprecated/base_source.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/deprecated/client.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/embedded/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/embedded/base_integration.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/embedded/catalog.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/embedded/runner.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/embedded/tools.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/file_based/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/file_based/availability_strategy/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/file_based/availability_strategy/abstract_file_based_availability_strategy.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/file_based/availability_strategy/default_file_based_availability_strategy.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/file_based/config/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/file_based/config/abstract_file_based_spec.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/file_based/config/avro_format.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/file_based/config/csv_format.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/file_based/config/file_based_stream_config.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/file_based/config/jsonl_format.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/file_based/config/parquet_format.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/file_based/discovery_policy/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/file_based/discovery_policy/abstract_discovery_policy.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/file_based/discovery_policy/default_discovery_policy.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/file_based/exceptions.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/file_based/file_based_source.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/file_based/file_based_stream_reader.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/file_based/file_types/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/file_based/file_types/avro_parser.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/file_based/file_types/file_type_parser.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/file_based/file_types/jsonl_parser.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/file_based/file_types/parquet_parser.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/file_based/remote_file.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/file_based/schema_helpers.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/file_based/schema_validation_policies/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/file_based/schema_validation_policies/abstract_schema_validation_policy.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/file_based/schema_validation_policies/default_schema_validation_policies.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/file_based/stream/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/file_based/stream/abstract_file_based_stream.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/file_based/stream/cursor/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/file_based/stream/cursor/abstract_file_based_cursor.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/file_based/stream/cursor/default_file_based_cursor.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/file_based/types.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/http_logger.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/message/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/message/repository.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/singer/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/singer/singer_helpers.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/singer/source.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/source.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/streams/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/streams/availability_strategy.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/streams/core.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/streams/http/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/streams/http/auth/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/streams/http/auth/core.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/streams/http/auth/oauth.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/streams/http/auth/token.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/streams/http/availability_strategy.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/streams/http/exceptions.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/streams/http/http.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/streams/http/rate_limiting.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/streams/http/requests_native_auth/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/streams/http/requests_native_auth/abstract_oauth.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/streams/http/requests_native_auth/abstract_token.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/streams/http/requests_native_auth/oauth.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/streams/http/requests_native_auth/token.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/streams/utils/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/streams/utils/stream_helper.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/utils/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/utils/casing.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/utils/catalog_helpers.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/utils/record_helper.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/utils/schema_helpers.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/utils/schema_models.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/utils/transform.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/utils/types.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/utils/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/utils/airbyte_secrets_utils.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/utils/datetime_format_inferrer.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/utils/event_timing.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/utils/mapping_helpers.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/utils/schema_inferrer.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/utils/spec_schema_transformations.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/utils/stream_status_utils.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/utils/traced_exception.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk.egg-info/SOURCES.txt +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk.egg-info/dependency_links.txt +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk.egg-info/requires.txt +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk.egg-info/top_level.txt +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/pyproject.toml +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/setup.cfg +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/source_declarative_manifest/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/source_declarative_manifest/main.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/connector_builder/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/connector_builder/test_connector_builder_handler.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/connector_builder/test_message_grouper.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/connector_builder/utils.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/destinations/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/destinations/test_destination.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/singer/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/singer/test_singer_helpers.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/singer/test_singer_source.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/auth/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/auth/test_oauth.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/auth/test_session_token_auth.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/auth/test_token_auth.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/auth/test_token_provider.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/checks/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/checks/test_check_stream.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/decoders/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/decoders/test_json_decoder.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/external_component.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/extractors/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/extractors/test_dpath_extractor.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/extractors/test_record_filter.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/extractors/test_record_selector.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/incremental/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/incremental/test_datetime_based_cursor.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/incremental/test_per_partition_cursor.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/incremental/test_per_partition_cursor_integration.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/interpolation/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/interpolation/test_filters.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/interpolation/test_interpolated_boolean.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/interpolation/test_interpolated_mapping.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/interpolation/test_interpolated_nested_mapping.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/interpolation/test_interpolated_string.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/interpolation/test_jinja.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/interpolation/test_macros.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/parsers/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/parsers/test_manifest_component_transformer.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/parsers/test_manifest_reference_resolver.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/parsers/test_model_to_component_factory.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/parsers/testing_components.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/partition_routers/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/partition_routers/test_list_partition_router.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/partition_routers/test_single_partition_router.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/partition_routers/test_substream_partition_router.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/requesters/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/requesters/error_handlers/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/requesters/error_handlers/backoff_strategies/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/requesters/error_handlers/backoff_strategies/test_constant_backoff.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/requesters/error_handlers/backoff_strategies/test_exponential_backoff.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/requesters/error_handlers/backoff_strategies/test_header_helper.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/requesters/error_handlers/backoff_strategies/test_wait_time_from_header.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/requesters/error_handlers/backoff_strategies/test_wait_until_time_from_header.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/requesters/error_handlers/test_composite_error_handler.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/requesters/error_handlers/test_default_error_handler.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/requesters/error_handlers/test_http_response_filter.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/requesters/error_handlers/test_response_status.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/requesters/paginators/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/requesters/paginators/test_cursor_pagination_strategy.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/requesters/paginators/test_default_paginator.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/requesters/paginators/test_no_paginator.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/requesters/paginators/test_offset_increment.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/requesters/paginators/test_page_increment.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/requesters/paginators/test_request_option.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/requesters/paginators/test_stop_condition.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/requesters/request_options/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/requesters/request_options/test_interpolated_request_options_provider.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/requesters/test_http_requester.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/requesters/test_interpolated_request_input_provider.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/retrievers/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/retrievers/test_simple_retriever.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/schema/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/schema/source_test/SourceTest.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/schema/source_test/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/schema/test_default_schema_loader.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/schema/test_inline_schema_loader.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/schema/test_json_file_schema_loader.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/states/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/stream_slicers/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/stream_slicers/test_cartesian_product_stream_slicer.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/test_create_partial.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/test_declarative_stream.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/test_manifest_declarative_source.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/declarative/test_yaml_declarative_source.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/file_based/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/file_based/config/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/file_based/config/test_abstract_file_based_spec.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/file_based/config/test_file_based_stream_config.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/file_based/file_types/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/file_based/file_types/test_avro_parser.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/file_based/file_types/test_jsonl_parser.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/file_based/file_types/test_parquet_parser.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/file_based/helpers.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/file_based/in_memory_files_source.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/file_based/scenarios/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/file_based/scenarios/avro_scenarios.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/file_based/scenarios/check_scenarios.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/file_based/scenarios/incremental_scenarios.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/file_based/scenarios/jsonl_scenarios.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/file_based/scenarios/parquet_scenarios.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/file_based/scenarios/scenario_builder.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/file_based/scenarios/user_input_schema_scenarios.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/file_based/scenarios/validation_policy_scenarios.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/file_based/stream/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/file_based/stream/test_default_file_based_cursor.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/file_based/test_file_based_stream_reader.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/file_based/test_scenarios.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/file_based/test_schema_helpers.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/fixtures/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/fixtures/source_test_fixture.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/message/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/message/test_repository.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/streams/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/streams/http/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/streams/http/auth/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/streams/http/auth/test_auth.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/streams/http/requests_native_auth/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/streams/http/requests_native_auth/test_requests_native_auth.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/streams/http/test_availability_strategy.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/streams/http/test_http.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/streams/test_availability_strategy.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/streams/test_streams_core.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/test_abstract_source.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/test_config.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/test_connector_state_manager.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/test_http_logger.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/test_integration_source.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/test_source.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/utils/__init__.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/utils/test_datetime_format_inferrer.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/utils/test_mapping_helpers.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/utils/test_schema_inferrer.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/utils/test_secret_utils.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/utils/test_stream_status_utils.py +0 -0
- {airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/utils/test_traced_exception.py +0 -0
{airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/file_based/file_types/csv_parser.py
RENAMED
@@ -158,7 +158,7 @@ class CsvParser(FileTypeParser):
|
|
158
158
|
deduped_property_types = CsvParser._pre_propcess_property_types(property_types)
|
159
159
|
else:
|
160
160
|
deduped_property_types = {}
|
161
|
-
cast_fn = CsvParser._get_cast_function(deduped_property_types, config_format, logger)
|
161
|
+
cast_fn = CsvParser._get_cast_function(deduped_property_types, config_format, logger, config.schemaless)
|
162
162
|
data_generator = self._csv_reader.read_data(config, file, stream_reader, logger, self.file_read_mode)
|
163
163
|
for row in data_generator:
|
164
164
|
yield CsvParser._to_nullable(cast_fn(row), deduped_property_types, config_format.null_values, config_format.strings_can_be_null)
|
@@ -170,10 +170,10 @@ class CsvParser(FileTypeParser):
|
|
170
170
|
|
171
171
|
@staticmethod
|
172
172
|
def _get_cast_function(
|
173
|
-
deduped_property_types: Mapping[str, str], config_format: CsvFormat, logger: logging.Logger
|
173
|
+
deduped_property_types: Mapping[str, str], config_format: CsvFormat, logger: logging.Logger, schemaless: bool
|
174
174
|
) -> Callable[[Mapping[str, str]], Mapping[str, str]]:
|
175
175
|
# Only cast values if the schema is provided
|
176
|
-
if deduped_property_types:
|
176
|
+
if deduped_property_types and not schemaless:
|
177
177
|
return partial(CsvParser._cast_types, deduped_property_types=deduped_property_types, config_format=config_format, logger=logger)
|
178
178
|
else:
|
179
179
|
# If no schema is provided, yield the rows as they are
|
@@ -275,11 +275,10 @@ class CsvParser(FileTypeParser):
|
|
275
275
|
except ValueError:
|
276
276
|
warnings.append(_format_warning(key, value, prop_type))
|
277
277
|
|
278
|
+
result[key] = cast_value
|
278
279
|
else:
|
279
280
|
warnings.append(_format_warning(key, value, prop_type))
|
280
281
|
|
281
|
-
result[key] = cast_value
|
282
|
-
|
283
282
|
if warnings:
|
284
283
|
logger.warning(
|
285
284
|
f"{FileBasedSourceError.ERROR_CASTING_VALUE.value}: {','.join([w for w in warnings])}",
|
@@ -65,7 +65,7 @@ class DefaultFileBasedStream(AbstractFileBasedStream, IncrementalMixin):
|
|
65
65
|
slices = [{"files": list(group[1])} for group in itertools.groupby(sorted_files_to_read, lambda f: f.last_modified)]
|
66
66
|
return slices
|
67
67
|
|
68
|
-
def read_records_from_slice(self, stream_slice: StreamSlice) -> Iterable[
|
68
|
+
def read_records_from_slice(self, stream_slice: StreamSlice) -> Iterable[AirbyteMessage]:
|
69
69
|
"""
|
70
70
|
Yield all records from all remote files in `list_files_for_this_sync`.
|
71
71
|
|
@@ -127,9 +127,8 @@ class DefaultFileBasedStream(AbstractFileBasedStream, IncrementalMixin):
|
|
127
127
|
stack_trace=traceback.format_exc(),
|
128
128
|
),
|
129
129
|
)
|
130
|
-
break
|
131
130
|
|
132
|
-
|
131
|
+
finally:
|
133
132
|
if n_skipped:
|
134
133
|
yield AirbyteMessage(
|
135
134
|
type=MessageType.LOG,
|
@@ -21,7 +21,7 @@ setup(
|
|
21
21
|
name="airbyte-cdk",
|
22
22
|
# The version of the airbyte-cdk package is used at runtime to validate manifests. That validation must be
|
23
23
|
# updated if our semver format changes such as using release candidate versions.
|
24
|
-
version="0.51.
|
24
|
+
version="0.51.4",
|
25
25
|
description="A framework for writing Airbyte Connectors.",
|
26
26
|
long_description=README,
|
27
27
|
long_description_content_type="text/markdown",
|
@@ -100,7 +100,7 @@ logger = logging.getLogger()
|
|
100
100
|
pytest.param(
|
101
101
|
{"col9": "['a', 'b']"}, DEFAULT_TRUE_VALUES, DEFAULT_FALSE_VALUES, {"col9": "['a', 'b']"}, id="cannot-cast-to-list-of-objects"
|
102
102
|
),
|
103
|
-
pytest.param({"col11": "x"}, DEFAULT_TRUE_VALUES, DEFAULT_FALSE_VALUES, {
|
103
|
+
pytest.param({"col11": "x"}, DEFAULT_TRUE_VALUES, DEFAULT_FALSE_VALUES, {}, id="item-not-in-props-doesn't-error"),
|
104
104
|
],
|
105
105
|
)
|
106
106
|
def test_cast_to_python_type(row: Dict[str, str], true_values: Set[str], false_values: Set[str], expected_output: Dict[str, Any]) -> None:
|
{airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/unit_tests/sources/file_based/scenarios/csv_scenarios.py
RENAMED
@@ -481,7 +481,6 @@ multi_csv_stream_n_file_exceeds_limit_for_inference = (
|
|
481
481
|
"data": {
|
482
482
|
"col1": "val11b",
|
483
483
|
"col2": "val12b",
|
484
|
-
"col3": "val13b",
|
485
484
|
"_ab_source_file_last_modified": "2023-06-05T03:54:07.000000Z",
|
486
485
|
"_ab_source_file_url": "b.csv",
|
487
486
|
},
|
@@ -491,7 +490,6 @@ multi_csv_stream_n_file_exceeds_limit_for_inference = (
|
|
491
490
|
"data": {
|
492
491
|
"col1": "val21b",
|
493
492
|
"col2": "val22b",
|
494
|
-
"col3": "val23b",
|
495
493
|
"_ab_source_file_last_modified": "2023-06-05T03:54:07.000000Z",
|
496
494
|
"_ab_source_file_url": "b.csv",
|
497
495
|
},
|
@@ -0,0 +1,130 @@
|
|
1
|
+
#
|
2
|
+
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
|
3
|
+
#
|
4
|
+
|
5
|
+
import unittest
|
6
|
+
from datetime import datetime, timezone
|
7
|
+
from typing import Any, Iterable, Iterator, Mapping
|
8
|
+
from unittest.mock import Mock
|
9
|
+
|
10
|
+
import pytest
|
11
|
+
from airbyte_cdk.models import Level
|
12
|
+
from airbyte_cdk.sources.file_based.availability_strategy import AbstractFileBasedAvailabilityStrategy
|
13
|
+
from airbyte_cdk.sources.file_based.discovery_policy import AbstractDiscoveryPolicy
|
14
|
+
from airbyte_cdk.sources.file_based.file_based_stream_reader import AbstractFileBasedStreamReader
|
15
|
+
from airbyte_cdk.sources.file_based.file_types.file_type_parser import FileTypeParser
|
16
|
+
from airbyte_cdk.sources.file_based.remote_file import RemoteFile
|
17
|
+
from airbyte_cdk.sources.file_based.schema_validation_policies import AbstractSchemaValidationPolicy
|
18
|
+
from airbyte_cdk.sources.file_based.stream.cursor import AbstractFileBasedCursor
|
19
|
+
from airbyte_cdk.sources.file_based.stream.default_file_based_stream import DefaultFileBasedStream
|
20
|
+
|
21
|
+
|
22
|
+
@pytest.mark.parametrize(
|
23
|
+
"input_schema, expected_output",
|
24
|
+
[
|
25
|
+
pytest.param({}, {}, id="empty-schema"),
|
26
|
+
pytest.param(
|
27
|
+
{"type": "string"},
|
28
|
+
{"type": ["null", "string"]},
|
29
|
+
id="simple-schema",
|
30
|
+
),
|
31
|
+
pytest.param(
|
32
|
+
{"type": ["string"]},
|
33
|
+
{"type": ["null", "string"]},
|
34
|
+
id="simple-schema-list-type",
|
35
|
+
),
|
36
|
+
pytest.param(
|
37
|
+
{"type": ["null", "string"]},
|
38
|
+
{"type": ["null", "string"]},
|
39
|
+
id="simple-schema-already-has-null",
|
40
|
+
),
|
41
|
+
pytest.param(
|
42
|
+
{"properties": {"type": "string"}},
|
43
|
+
{"properties": {"type": ["null", "string"]}},
|
44
|
+
id="nested-schema",
|
45
|
+
),
|
46
|
+
pytest.param(
|
47
|
+
{"items": {"type": "string"}},
|
48
|
+
{"items": {"type": ["null", "string"]}},
|
49
|
+
id="array-schema",
|
50
|
+
),
|
51
|
+
pytest.param(
|
52
|
+
{"type": "object", "properties": {"prop": {"type": "string"}}},
|
53
|
+
{"type": ["null", "object"], "properties": {"prop": {"type": ["null", "string"]}}},
|
54
|
+
id="deeply-nested-schema",
|
55
|
+
),
|
56
|
+
],
|
57
|
+
)
|
58
|
+
def test_fill_nulls(input_schema: Mapping[str, Any], expected_output: Mapping[str, Any]) -> None:
|
59
|
+
assert DefaultFileBasedStream._fill_nulls(input_schema) == expected_output
|
60
|
+
|
61
|
+
|
62
|
+
class DefaultFileBasedStreamTest(unittest.TestCase):
|
63
|
+
_FILE_TYPE = "file_type"
|
64
|
+
_NOW = datetime(2022, 10, 22, tzinfo=timezone.utc)
|
65
|
+
_A_RECORD = {"a_record": 1}
|
66
|
+
|
67
|
+
def setUp(self) -> None:
|
68
|
+
self._stream_config = Mock()
|
69
|
+
self._stream_config.file_type = self._FILE_TYPE
|
70
|
+
self._stream_config.name = "a stream name"
|
71
|
+
self._catalog_schema = Mock()
|
72
|
+
self._stream_reader = Mock(spec=AbstractFileBasedStreamReader)
|
73
|
+
self._availability_strategy = Mock(spec=AbstractFileBasedAvailabilityStrategy)
|
74
|
+
self._discovery_policy = Mock(spec=AbstractDiscoveryPolicy)
|
75
|
+
self._parser = Mock(spec=FileTypeParser)
|
76
|
+
self._validation_policy = Mock(spec=AbstractSchemaValidationPolicy)
|
77
|
+
self._validation_policy.name = "validation policy name"
|
78
|
+
self._cursor = Mock(spec=AbstractFileBasedCursor)
|
79
|
+
|
80
|
+
self._stream = DefaultFileBasedStream(
|
81
|
+
config=self._stream_config,
|
82
|
+
catalog_schema=self._catalog_schema,
|
83
|
+
stream_reader=self._stream_reader,
|
84
|
+
availability_strategy=self._availability_strategy,
|
85
|
+
discovery_policy=self._discovery_policy,
|
86
|
+
parsers={self._FILE_TYPE: self._parser},
|
87
|
+
validation_policy=self._validation_policy,
|
88
|
+
cursor=self._cursor,
|
89
|
+
)
|
90
|
+
|
91
|
+
def test_when_read_records_from_slice_then_return_records(self) -> None:
|
92
|
+
self._parser.parse_records.return_value = [self._A_RECORD]
|
93
|
+
messages = list(self._stream.read_records_from_slice({"files": [RemoteFile(uri="uri", last_modified=self._NOW)]}))
|
94
|
+
assert list(map(lambda message: message.record.data["data"], messages)) == [self._A_RECORD]
|
95
|
+
|
96
|
+
def test_given_exception_when_read_records_from_slice_then_do_process_other_files(self) -> None:
|
97
|
+
"""
|
98
|
+
The current behavior for source-s3 v3 does not fail sync on some errors and hence, we will keep this behaviour for now. One example
|
99
|
+
we can easily reproduce this is by having a file with gzip extension that is not actually a gzip file. The reader will fail to open
|
100
|
+
the file but the sync won't fail.
|
101
|
+
Ticket: https://github.com/airbytehq/airbyte/issues/29680
|
102
|
+
"""
|
103
|
+
self._parser.parse_records.side_effect = [ValueError("An error"), [self._A_RECORD]]
|
104
|
+
|
105
|
+
messages = list(self._stream.read_records_from_slice({"files": [
|
106
|
+
RemoteFile(uri="invalid_file", last_modified=self._NOW),
|
107
|
+
RemoteFile(uri="valid_file", last_modified=self._NOW),
|
108
|
+
]}))
|
109
|
+
|
110
|
+
assert messages[0].log.level == Level.ERROR
|
111
|
+
assert messages[1].record.data["data"] == self._A_RECORD
|
112
|
+
|
113
|
+
def test_given_exception_after_skipping_records_when_read_records_from_slice_then_send_warning(self) -> None:
|
114
|
+
self._stream_config.schemaless = False
|
115
|
+
self._validation_policy.record_passes_validation_policy.return_value = False
|
116
|
+
self._parser.parse_records.side_effect = [self._iter([self._A_RECORD, ValueError("An error")])]
|
117
|
+
|
118
|
+
messages = list(self._stream.read_records_from_slice({"files": [
|
119
|
+
RemoteFile(uri="invalid_file", last_modified=self._NOW),
|
120
|
+
RemoteFile(uri="valid_file", last_modified=self._NOW),
|
121
|
+
]}))
|
122
|
+
|
123
|
+
assert messages[0].log.level == Level.ERROR
|
124
|
+
assert messages[1].log.level == Level.WARN
|
125
|
+
|
126
|
+
def _iter(self, x: Iterable[Any]) -> Iterator[Any]:
|
127
|
+
for item in x:
|
128
|
+
if isinstance(item, Exception):
|
129
|
+
raise item
|
130
|
+
yield item
|
@@ -1,48 +0,0 @@
|
|
1
|
-
#
|
2
|
-
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
|
3
|
-
#
|
4
|
-
|
5
|
-
from typing import Any, Mapping
|
6
|
-
|
7
|
-
import pytest
|
8
|
-
from airbyte_cdk.sources.file_based.stream.default_file_based_stream import DefaultFileBasedStream
|
9
|
-
|
10
|
-
|
11
|
-
@pytest.mark.parametrize(
|
12
|
-
"input_schema, expected_output",
|
13
|
-
[
|
14
|
-
pytest.param({}, {}, id="empty-schema"),
|
15
|
-
pytest.param(
|
16
|
-
{"type": "string"},
|
17
|
-
{"type": ["null", "string"]},
|
18
|
-
id="simple-schema",
|
19
|
-
),
|
20
|
-
pytest.param(
|
21
|
-
{"type": ["string"]},
|
22
|
-
{"type": ["null", "string"]},
|
23
|
-
id="simple-schema-list-type",
|
24
|
-
),
|
25
|
-
pytest.param(
|
26
|
-
{"type": ["null", "string"]},
|
27
|
-
{"type": ["null", "string"]},
|
28
|
-
id="simple-schema-already-has-null",
|
29
|
-
),
|
30
|
-
pytest.param(
|
31
|
-
{"properties": {"type": "string"}},
|
32
|
-
{"properties": {"type": ["null", "string"]}},
|
33
|
-
id="nested-schema",
|
34
|
-
),
|
35
|
-
pytest.param(
|
36
|
-
{"items": {"type": "string"}},
|
37
|
-
{"items": {"type": ["null", "string"]}},
|
38
|
-
id="array-schema",
|
39
|
-
),
|
40
|
-
pytest.param(
|
41
|
-
{"type": "object", "properties": {"prop": {"type": "string"}}},
|
42
|
-
{"type": ["null", "object"], "properties": {"prop": {"type": ["null", "string"]}}},
|
43
|
-
id="deeply-nested-schema",
|
44
|
-
),
|
45
|
-
],
|
46
|
-
)
|
47
|
-
def test_fill_nulls(input_schema: Mapping[str, Any], expected_output: Mapping[str, Any]) -> None:
|
48
|
-
assert DefaultFileBasedStream._fill_nulls(input_schema) == expected_output
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/connector_builder/connector_builder_handler.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/auth/token_provider.py
RENAMED
File without changes
|
{airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/checks/__init__.py
RENAMED
File without changes
|
{airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/checks/check_stream.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/datetime/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/declarative_source.py
RENAMED
File without changes
|
{airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/declarative_stream.py
RENAMED
File without changes
|
{airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/decoders/__init__.py
RENAMED
File without changes
|
{airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/decoders/decoder.py
RENAMED
File without changes
|
{airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/decoders/json_decoder.py
RENAMED
File without changes
|
File without changes
|
{airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/extractors/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/incremental/__init__.py
RENAMED
File without changes
|
{airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/incremental/cursor.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/interpolation/__init__.py
RENAMED
File without changes
|
{airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/interpolation/filters.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/interpolation/jinja.py
RENAMED
File without changes
|
{airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/interpolation/macros.py
RENAMED
File without changes
|
File without changes
|
{airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/models/__init__.py
RENAMED
File without changes
|
File without changes
|
{airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/parsers/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/requesters/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/requesters/request_path.py
RENAMED
File without changes
|
{airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/requesters/requester.py
RENAMED
File without changes
|
{airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/retrievers/__init__.py
RENAMED
File without changes
|
{airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/retrievers/retriever.py
RENAMED
File without changes
|
File without changes
|
{airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/schema/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/schema/schema_loader.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
{airbyte-cdk-0.51.2 → airbyte-cdk-0.51.4}/airbyte_cdk/sources/declarative/stream_slicers/__init__.py
RENAMED
File without changes
|