airbyte-cdk 6.5.3rc2__py3-none-any.whl → 6.5.5__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- airbyte_cdk/__init__.py +17 -2
- airbyte_cdk/config_observation.py +10 -3
- airbyte_cdk/connector.py +19 -9
- airbyte_cdk/connector_builder/connector_builder_handler.py +28 -8
- airbyte_cdk/connector_builder/main.py +26 -6
- airbyte_cdk/connector_builder/message_grouper.py +95 -25
- airbyte_cdk/destinations/destination.py +47 -14
- airbyte_cdk/destinations/vector_db_based/config.py +36 -14
- airbyte_cdk/destinations/vector_db_based/document_processor.py +49 -11
- airbyte_cdk/destinations/vector_db_based/embedder.py +52 -11
- airbyte_cdk/destinations/vector_db_based/test_utils.py +14 -4
- airbyte_cdk/destinations/vector_db_based/utils.py +8 -2
- airbyte_cdk/destinations/vector_db_based/writer.py +15 -4
- airbyte_cdk/entrypoint.py +82 -26
- airbyte_cdk/exception_handler.py +13 -3
- airbyte_cdk/logger.py +10 -2
- airbyte_cdk/models/airbyte_protocol.py +11 -5
- airbyte_cdk/models/airbyte_protocol_serializers.py +9 -3
- airbyte_cdk/models/well_known_types.py +1 -1
- airbyte_cdk/sources/abstract_source.py +63 -17
- airbyte_cdk/sources/concurrent_source/concurrent_read_processor.py +47 -14
- airbyte_cdk/sources/concurrent_source/concurrent_source.py +25 -7
- airbyte_cdk/sources/concurrent_source/concurrent_source_adapter.py +27 -6
- airbyte_cdk/sources/concurrent_source/thread_pool_manager.py +9 -3
- airbyte_cdk/sources/connector_state_manager.py +32 -10
- airbyte_cdk/sources/declarative/async_job/job.py +3 -1
- airbyte_cdk/sources/declarative/async_job/job_orchestrator.py +68 -14
- airbyte_cdk/sources/declarative/async_job/job_tracker.py +24 -6
- airbyte_cdk/sources/declarative/async_job/repository.py +3 -1
- airbyte_cdk/sources/declarative/auth/declarative_authenticator.py +3 -1
- airbyte_cdk/sources/declarative/auth/jwt.py +27 -7
- airbyte_cdk/sources/declarative/auth/oauth.py +35 -11
- airbyte_cdk/sources/declarative/auth/selective_authenticator.py +3 -1
- airbyte_cdk/sources/declarative/auth/token.py +25 -8
- airbyte_cdk/sources/declarative/checks/check_stream.py +12 -4
- airbyte_cdk/sources/declarative/checks/connection_checker.py +3 -1
- airbyte_cdk/sources/declarative/concurrency_level/concurrency_level.py +11 -3
- airbyte_cdk/sources/declarative/concurrent_declarative_source.py +106 -50
- airbyte_cdk/sources/declarative/datetime/min_max_datetime.py +20 -6
- airbyte_cdk/sources/declarative/declarative_source.py +3 -1
- airbyte_cdk/sources/declarative/declarative_stream.py +27 -6
- airbyte_cdk/sources/declarative/decoders/decoder.py +3 -1
- airbyte_cdk/sources/declarative/decoders/json_decoder.py +3 -1
- airbyte_cdk/sources/declarative/decoders/pagination_decoder_decorator.py +3 -1
- airbyte_cdk/sources/declarative/decoders/xml_decoder.py +6 -2
- airbyte_cdk/sources/declarative/extractors/dpath_extractor.py +6 -2
- airbyte_cdk/sources/declarative/extractors/record_filter.py +24 -7
- airbyte_cdk/sources/declarative/extractors/record_selector.py +10 -3
- airbyte_cdk/sources/declarative/extractors/response_to_file_extractor.py +15 -5
- airbyte_cdk/sources/declarative/incremental/datetime_based_cursor.py +96 -31
- airbyte_cdk/sources/declarative/incremental/global_substream_cursor.py +22 -8
- airbyte_cdk/sources/declarative/incremental/per_partition_cursor.py +46 -15
- airbyte_cdk/sources/declarative/incremental/per_partition_with_global.py +19 -5
- airbyte_cdk/sources/declarative/incremental/resumable_full_refresh_cursor.py +3 -1
- airbyte_cdk/sources/declarative/interpolation/interpolated_boolean.py +20 -2
- airbyte_cdk/sources/declarative/interpolation/interpolated_mapping.py +5 -1
- airbyte_cdk/sources/declarative/interpolation/interpolated_nested_mapping.py +10 -3
- airbyte_cdk/sources/declarative/interpolation/interpolated_string.py +6 -2
- airbyte_cdk/sources/declarative/interpolation/interpolation.py +7 -1
- airbyte_cdk/sources/declarative/interpolation/jinja.py +6 -2
- airbyte_cdk/sources/declarative/interpolation/macros.py +19 -4
- airbyte_cdk/sources/declarative/manifest_declarative_source.py +106 -24
- airbyte_cdk/sources/declarative/migrations/legacy_to_per_partition_state_migration.py +7 -2
- airbyte_cdk/sources/declarative/models/declarative_component_schema.py +656 -678
- airbyte_cdk/sources/declarative/parsers/manifest_component_transformer.py +13 -4
- airbyte_cdk/sources/declarative/parsers/manifest_reference_resolver.py +9 -2
- airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py +782 -232
- airbyte_cdk/sources/declarative/partition_routers/cartesian_product_stream_slicer.py +29 -7
- airbyte_cdk/sources/declarative/partition_routers/list_partition_router.py +25 -7
- airbyte_cdk/sources/declarative/partition_routers/substream_partition_router.py +54 -15
- airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/constant_backoff_strategy.py +6 -2
- airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/header_helper.py +3 -1
- airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/wait_time_from_header_backoff_strategy.py +17 -5
- airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/wait_until_time_from_header_backoff_strategy.py +15 -5
- airbyte_cdk/sources/declarative/requesters/error_handlers/composite_error_handler.py +3 -1
- airbyte_cdk/sources/declarative/requesters/error_handlers/default_error_handler.py +18 -8
- airbyte_cdk/sources/declarative/requesters/error_handlers/default_http_response_filter.py +16 -7
- airbyte_cdk/sources/declarative/requesters/error_handlers/http_response_filter.py +51 -14
- airbyte_cdk/sources/declarative/requesters/http_job_repository.py +29 -8
- airbyte_cdk/sources/declarative/requesters/http_requester.py +58 -16
- airbyte_cdk/sources/declarative/requesters/paginators/default_paginator.py +49 -14
- airbyte_cdk/sources/declarative/requesters/paginators/no_pagination.py +3 -1
- airbyte_cdk/sources/declarative/requesters/paginators/paginator.py +3 -1
- airbyte_cdk/sources/declarative/requesters/paginators/strategies/cursor_pagination_strategy.py +17 -5
- airbyte_cdk/sources/declarative/requesters/paginators/strategies/offset_increment.py +24 -7
- airbyte_cdk/sources/declarative/requesters/paginators/strategies/page_increment.py +9 -3
- airbyte_cdk/sources/declarative/requesters/paginators/strategies/pagination_strategy.py +3 -1
- airbyte_cdk/sources/declarative/requesters/paginators/strategies/stop_condition.py +6 -2
- airbyte_cdk/sources/declarative/requesters/request_options/datetime_based_request_options_provider.py +19 -6
- airbyte_cdk/sources/declarative/requesters/request_options/default_request_options_provider.py +3 -1
- airbyte_cdk/sources/declarative/requesters/request_options/interpolated_nested_request_input_provider.py +21 -7
- airbyte_cdk/sources/declarative/requesters/request_options/interpolated_request_input_provider.py +18 -6
- airbyte_cdk/sources/declarative/requesters/request_options/interpolated_request_options_provider.py +27 -8
- airbyte_cdk/sources/declarative/requesters/requester.py +3 -1
- airbyte_cdk/sources/declarative/retrievers/async_retriever.py +12 -5
- airbyte_cdk/sources/declarative/retrievers/simple_retriever.py +105 -24
- airbyte_cdk/sources/declarative/schema/default_schema_loader.py +3 -1
- airbyte_cdk/sources/declarative/spec/spec.py +8 -2
- airbyte_cdk/sources/declarative/stream_slicers/stream_slicer.py +3 -1
- airbyte_cdk/sources/declarative/transformations/add_fields.py +12 -3
- airbyte_cdk/sources/declarative/transformations/remove_fields.py +6 -2
- airbyte_cdk/sources/declarative/types.py +8 -1
- airbyte_cdk/sources/declarative/yaml_declarative_source.py +3 -1
- airbyte_cdk/sources/embedded/base_integration.py +14 -4
- airbyte_cdk/sources/embedded/catalog.py +16 -4
- airbyte_cdk/sources/embedded/runner.py +19 -3
- airbyte_cdk/sources/embedded/tools.py +3 -1
- airbyte_cdk/sources/file_based/availability_strategy/abstract_file_based_availability_strategy.py +12 -4
- airbyte_cdk/sources/file_based/availability_strategy/default_file_based_availability_strategy.py +27 -7
- airbyte_cdk/sources/file_based/config/abstract_file_based_spec.py +12 -6
- airbyte_cdk/sources/file_based/config/csv_format.py +21 -9
- airbyte_cdk/sources/file_based/config/file_based_stream_config.py +6 -2
- airbyte_cdk/sources/file_based/config/unstructured_format.py +10 -3
- airbyte_cdk/sources/file_based/discovery_policy/abstract_discovery_policy.py +2 -4
- airbyte_cdk/sources/file_based/discovery_policy/default_discovery_policy.py +7 -2
- airbyte_cdk/sources/file_based/exceptions.py +13 -15
- airbyte_cdk/sources/file_based/file_based_source.py +82 -24
- airbyte_cdk/sources/file_based/file_based_stream_reader.py +16 -5
- airbyte_cdk/sources/file_based/file_types/avro_parser.py +58 -17
- airbyte_cdk/sources/file_based/file_types/csv_parser.py +89 -26
- airbyte_cdk/sources/file_based/file_types/excel_parser.py +25 -7
- airbyte_cdk/sources/file_based/file_types/file_transfer.py +8 -2
- airbyte_cdk/sources/file_based/file_types/file_type_parser.py +4 -1
- airbyte_cdk/sources/file_based/file_types/jsonl_parser.py +20 -6
- airbyte_cdk/sources/file_based/file_types/parquet_parser.py +57 -16
- airbyte_cdk/sources/file_based/file_types/unstructured_parser.py +64 -15
- airbyte_cdk/sources/file_based/schema_helpers.py +33 -10
- airbyte_cdk/sources/file_based/schema_validation_policies/abstract_schema_validation_policy.py +3 -1
- airbyte_cdk/sources/file_based/schema_validation_policies/default_schema_validation_policies.py +16 -5
- airbyte_cdk/sources/file_based/stream/abstract_file_based_stream.py +33 -10
- airbyte_cdk/sources/file_based/stream/concurrent/adapters.py +47 -11
- airbyte_cdk/sources/file_based/stream/concurrent/cursor/abstract_concurrent_file_based_cursor.py +13 -22
- airbyte_cdk/sources/file_based/stream/concurrent/cursor/file_based_concurrent_cursor.py +53 -17
- airbyte_cdk/sources/file_based/stream/concurrent/cursor/file_based_final_state_cursor.py +17 -5
- airbyte_cdk/sources/file_based/stream/cursor/abstract_file_based_cursor.py +3 -1
- airbyte_cdk/sources/file_based/stream/cursor/default_file_based_cursor.py +26 -9
- airbyte_cdk/sources/file_based/stream/default_file_based_stream.py +67 -21
- airbyte_cdk/sources/http_logger.py +5 -1
- airbyte_cdk/sources/message/repository.py +18 -4
- airbyte_cdk/sources/source.py +17 -7
- airbyte_cdk/sources/streams/availability_strategy.py +9 -3
- airbyte_cdk/sources/streams/call_rate.py +63 -19
- airbyte_cdk/sources/streams/checkpoint/checkpoint_reader.py +31 -7
- airbyte_cdk/sources/streams/checkpoint/substream_resumable_full_refresh_cursor.py +6 -2
- airbyte_cdk/sources/streams/concurrent/adapters.py +77 -22
- airbyte_cdk/sources/streams/concurrent/cursor.py +56 -20
- airbyte_cdk/sources/streams/concurrent/default_stream.py +9 -2
- airbyte_cdk/sources/streams/concurrent/helpers.py +6 -2
- airbyte_cdk/sources/streams/concurrent/partition_enqueuer.py +9 -2
- airbyte_cdk/sources/streams/concurrent/partition_reader.py +4 -1
- airbyte_cdk/sources/streams/concurrent/partitions/record.py +10 -2
- airbyte_cdk/sources/streams/concurrent/partitions/types.py +6 -2
- airbyte_cdk/sources/streams/concurrent/state_converters/abstract_stream_state_converter.py +25 -10
- airbyte_cdk/sources/streams/concurrent/state_converters/datetime_stream_state_converter.py +32 -16
- airbyte_cdk/sources/streams/core.py +77 -22
- airbyte_cdk/sources/streams/http/availability_strategy.py +3 -1
- airbyte_cdk/sources/streams/http/error_handlers/default_error_mapping.py +4 -1
- airbyte_cdk/sources/streams/http/error_handlers/error_handler.py +3 -1
- airbyte_cdk/sources/streams/http/error_handlers/http_status_error_handler.py +16 -5
- airbyte_cdk/sources/streams/http/error_handlers/response_models.py +9 -3
- airbyte_cdk/sources/streams/http/exceptions.py +2 -2
- airbyte_cdk/sources/streams/http/http.py +133 -33
- airbyte_cdk/sources/streams/http/http_client.py +91 -29
- airbyte_cdk/sources/streams/http/rate_limiting.py +23 -7
- airbyte_cdk/sources/streams/http/requests_native_auth/abstract_oauth.py +19 -6
- airbyte_cdk/sources/streams/http/requests_native_auth/oauth.py +38 -11
- airbyte_cdk/sources/streams/http/requests_native_auth/token.py +13 -3
- airbyte_cdk/sources/types.py +5 -1
- airbyte_cdk/sources/utils/record_helper.py +12 -3
- airbyte_cdk/sources/utils/schema_helpers.py +9 -3
- airbyte_cdk/sources/utils/slice_logger.py +4 -1
- airbyte_cdk/sources/utils/transform.py +24 -9
- airbyte_cdk/sql/exceptions.py +19 -6
- airbyte_cdk/sql/secrets.py +3 -1
- airbyte_cdk/sql/shared/catalog_providers.py +13 -4
- airbyte_cdk/sql/shared/sql_processor.py +44 -14
- airbyte_cdk/test/catalog_builder.py +19 -8
- airbyte_cdk/test/entrypoint_wrapper.py +27 -8
- airbyte_cdk/test/mock_http/mocker.py +41 -11
- airbyte_cdk/test/mock_http/request.py +9 -3
- airbyte_cdk/test/mock_http/response.py +3 -1
- airbyte_cdk/test/mock_http/response_builder.py +29 -7
- airbyte_cdk/test/state_builder.py +10 -2
- airbyte_cdk/test/utils/data.py +6 -2
- airbyte_cdk/test/utils/http_mocking.py +3 -1
- airbyte_cdk/utils/airbyte_secrets_utils.py +3 -1
- airbyte_cdk/utils/analytics_message.py +10 -2
- airbyte_cdk/utils/datetime_format_inferrer.py +4 -1
- airbyte_cdk/utils/mapping_helpers.py +3 -1
- airbyte_cdk/utils/message_utils.py +11 -4
- airbyte_cdk/utils/print_buffer.py +6 -1
- airbyte_cdk/utils/schema_inferrer.py +30 -9
- airbyte_cdk/utils/spec_schema_transformations.py +3 -1
- airbyte_cdk/utils/traced_exception.py +35 -9
- {airbyte_cdk-6.5.3rc2.dist-info → airbyte_cdk-6.5.5.dist-info}/METADATA +7 -6
- {airbyte_cdk-6.5.3rc2.dist-info → airbyte_cdk-6.5.5.dist-info}/RECORD +198 -198
- {airbyte_cdk-6.5.3rc2.dist-info → airbyte_cdk-6.5.5.dist-info}/LICENSE.txt +0 -0
- {airbyte_cdk-6.5.3rc2.dist-info → airbyte_cdk-6.5.5.dist-info}/WHEEL +0 -0
@@ -1,330 +1,330 @@
|
|
1
|
-
airbyte_cdk/__init__.py,sha256=
|
2
|
-
airbyte_cdk/config_observation.py,sha256=
|
3
|
-
airbyte_cdk/connector.py,sha256=
|
1
|
+
airbyte_cdk/__init__.py,sha256=3BlW1O37s_grUaioVZvGj3hRsofR0tY4sMceu5ygylk,11550
|
2
|
+
airbyte_cdk/config_observation.py,sha256=A2P475pS9JndFzBggtkkAmcN1aMeq_thRbXRzmWjI3E,3997
|
3
|
+
airbyte_cdk/connector.py,sha256=srfjRNgkt1nsPw-Mm0d1qXoVmM90zHPYHIfxu8p6JXI,4223
|
4
4
|
airbyte_cdk/connector_builder/README.md,sha256=Hw3wvVewuHG9-QgsAq1jDiKuLlStDxKBz52ftyNRnBw,1665
|
5
5
|
airbyte_cdk/connector_builder/__init__.py,sha256=4Hw-PX1-VgESLF16cDdvuYCzGJtHntThLF4qIiULWeo,61
|
6
|
-
airbyte_cdk/connector_builder/connector_builder_handler.py,sha256=
|
7
|
-
airbyte_cdk/connector_builder/main.py,sha256=
|
8
|
-
airbyte_cdk/connector_builder/message_grouper.py,sha256=
|
6
|
+
airbyte_cdk/connector_builder/connector_builder_handler.py,sha256=N7C_Kk-e8rSS93TmYVvcNH7uuA6FyLu9TA3smkUFZHs,4258
|
7
|
+
airbyte_cdk/connector_builder/main.py,sha256=umO0QBCjhKKUAE7jev1Eukb5azNtk_wckh_rG77nmEs,3733
|
8
|
+
airbyte_cdk/connector_builder/message_grouper.py,sha256=tu-cUZQ-m-FcLAwL6eFNU2eqwJrIS0-i9FG6f3RopFU,19918
|
9
9
|
airbyte_cdk/connector_builder/models.py,sha256=uCHpOdJx2PyZtIqk-mt9eSVuFMQoEqrW-9sjCz0Z-AQ,1500
|
10
10
|
airbyte_cdk/destinations/__init__.py,sha256=FyDp28PT_YceJD5HDFhA-mrGfX9AONIyMQ4d68CHNxQ,213
|
11
|
-
airbyte_cdk/destinations/destination.py,sha256=
|
11
|
+
airbyte_cdk/destinations/destination.py,sha256=xViQzcYO9SXkE2hzMVwQvsHHoFP8NmXpzoJnq_VnU7k,5891
|
12
12
|
airbyte_cdk/destinations/vector_db_based/README.md,sha256=QAe8c_1Afme4r2TCE10cTSaxUE3zgCBuArSuRQqK8tA,2115
|
13
13
|
airbyte_cdk/destinations/vector_db_based/__init__.py,sha256=eAkzwTjBbXBhJ5GfPO5I53Zgpv5xQFLRQS8n4nuyPt0,1006
|
14
|
-
airbyte_cdk/destinations/vector_db_based/config.py,sha256=
|
15
|
-
airbyte_cdk/destinations/vector_db_based/document_processor.py,sha256=
|
16
|
-
airbyte_cdk/destinations/vector_db_based/embedder.py,sha256=
|
14
|
+
airbyte_cdk/destinations/vector_db_based/config.py,sha256=nadBtECw9q869ocQWrUR8K6ZvNMTCaChvc2a5QO0EW0,12467
|
15
|
+
airbyte_cdk/destinations/vector_db_based/document_processor.py,sha256=H27yFXbiaAZHh84NWkrioxi6rIPFZk7sgKQSD08bjss,9399
|
16
|
+
airbyte_cdk/destinations/vector_db_based/embedder.py,sha256=gbfr1zFHsgRqMU_XoAu22tTfpbz0FryoHe4vI4OqAAY,11984
|
17
17
|
airbyte_cdk/destinations/vector_db_based/indexer.py,sha256=beiSi2Uu67EoTr7yQSaCJFAh9RajHFGKA4PoTbpTOqM,3243
|
18
|
-
airbyte_cdk/destinations/vector_db_based/test_utils.py,sha256=
|
19
|
-
airbyte_cdk/destinations/vector_db_based/utils.py,sha256=
|
20
|
-
airbyte_cdk/destinations/vector_db_based/writer.py,sha256=
|
21
|
-
airbyte_cdk/entrypoint.py,sha256=
|
22
|
-
airbyte_cdk/exception_handler.py,sha256=
|
23
|
-
airbyte_cdk/logger.py,sha256=
|
18
|
+
airbyte_cdk/destinations/vector_db_based/test_utils.py,sha256=MkqLiOJ5QyKbV4rNiJhe-BHM7FD-ADHQ4bQGf4c5lRY,1932
|
19
|
+
airbyte_cdk/destinations/vector_db_based/utils.py,sha256=FOyEo8Lc-fY8UyhpCivhZtIqBRyxf3cUt6anmK03fUY,1127
|
20
|
+
airbyte_cdk/destinations/vector_db_based/writer.py,sha256=nPj1DtZ1-tkEBAz7Ape1FZz_YDQNXPceUyCoviVq3Fk,4525
|
21
|
+
airbyte_cdk/entrypoint.py,sha256=DAb44DODyUcrmtcmTG7_rLidNs7SugWci-4x9-dVdbU,17604
|
22
|
+
airbyte_cdk/exception_handler.py,sha256=D_doVl3Dt60ASXlJsfviOCswxGyKF2q0RL6rif3fNks,2013
|
23
|
+
airbyte_cdk/logger.py,sha256=MapEq7Ldyn3uG7ciqCSXz1YYagBhtl_rcfQkoPlcIE4,3757
|
24
24
|
airbyte_cdk/models/__init__.py,sha256=qpxctJlraOQhUj3milOoUEYjaqHM9XCdlQqnmZJwKxQ,2002
|
25
|
-
airbyte_cdk/models/airbyte_protocol.py,sha256=
|
26
|
-
airbyte_cdk/models/airbyte_protocol_serializers.py,sha256=
|
25
|
+
airbyte_cdk/models/airbyte_protocol.py,sha256=Z_man0-88utAvlDQozp456tYzWM9HR05QIOYbFzFM_E,3747
|
26
|
+
airbyte_cdk/models/airbyte_protocol_serializers.py,sha256=s6SaFB2CMrG_7jTQGn_fhFbQ1FUxhCxf5kq2RWGHMVI,1749
|
27
27
|
airbyte_cdk/models/file_transfer_record_message.py,sha256=J-E-43KOmUFdpsjeKlEfNnnZRSB-Gb5AGZjonR25Drc,323
|
28
|
-
airbyte_cdk/models/well_known_types.py,sha256=
|
28
|
+
airbyte_cdk/models/well_known_types.py,sha256=EquepbisGPuCSrs_D7YVVnMR9-ShhUr21wnFz3COiJs,156
|
29
29
|
airbyte_cdk/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
30
30
|
airbyte_cdk/sources/__init__.py,sha256=45J83QsFH3Wky3sVapZWg4C58R_i1thm61M06t2c1AQ,1156
|
31
|
-
airbyte_cdk/sources/abstract_source.py,sha256=
|
31
|
+
airbyte_cdk/sources/abstract_source.py,sha256=qY0nZzNm-9qVkt-t6s-Y6UYKIk_2zSBSn3Y_IGzJAoA,15633
|
32
32
|
airbyte_cdk/sources/concurrent_source/__init__.py,sha256=3D_RJsxQfiLboSCDdNei1Iv-msRp3DXsas6E9kl7dXc,386
|
33
|
-
airbyte_cdk/sources/concurrent_source/concurrent_read_processor.py,sha256=
|
34
|
-
airbyte_cdk/sources/concurrent_source/concurrent_source.py,sha256=
|
35
|
-
airbyte_cdk/sources/concurrent_source/concurrent_source_adapter.py,sha256=
|
33
|
+
airbyte_cdk/sources/concurrent_source/concurrent_read_processor.py,sha256=3OpAnvFLM2TvQBLUAaJh-H8doVR3fP3fx89q9BRi3es,12663
|
34
|
+
airbyte_cdk/sources/concurrent_source/concurrent_source.py,sha256=3uiJwkytP8HjY3CPTZtoPF9i0WAJE0K6GREyVZUWPaI,7768
|
35
|
+
airbyte_cdk/sources/concurrent_source/concurrent_source_adapter.py,sha256=f9PIRPWn2tXu0-bxVeYHL2vYdqCzZ_kgpHg5_Ep-cfQ,6103
|
36
36
|
airbyte_cdk/sources/concurrent_source/partition_generation_completed_sentinel.py,sha256=z1t-rAZBsqVidv2fpUlPHE9JgyXsITuGk4AMu96mXSQ,696
|
37
37
|
airbyte_cdk/sources/concurrent_source/stream_thread_exception.py,sha256=-q6mG2145HKQ28rZGD1bUmjPlIZ1S7-Yhewl8Ntu6xI,764
|
38
|
-
airbyte_cdk/sources/concurrent_source/thread_pool_manager.py,sha256=
|
38
|
+
airbyte_cdk/sources/concurrent_source/thread_pool_manager.py,sha256=00j75alk20E4sU0PNuL6ohPmU3sxuhygicY4sZJXyk4,5166
|
39
39
|
airbyte_cdk/sources/config.py,sha256=B26JsJbTxnd2-ST4wamV0PPg-lNDO17yAtQkZkrGyjU,900
|
40
|
-
airbyte_cdk/sources/connector_state_manager.py,sha256=
|
40
|
+
airbyte_cdk/sources/connector_state_manager.py,sha256=JXWqEI2z9ehpCrU7NHXaOOEqj2ZGsog0ECWygA_AnrY,7223
|
41
41
|
airbyte_cdk/sources/declarative/__init__.py,sha256=ZnqYNxHsKCgO38IwB34RQyRMXTs4GTvlRi3ImKnIioo,61
|
42
42
|
airbyte_cdk/sources/declarative/async_job/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
43
|
-
airbyte_cdk/sources/declarative/async_job/job.py,sha256=
|
44
|
-
airbyte_cdk/sources/declarative/async_job/job_orchestrator.py,sha256=
|
45
|
-
airbyte_cdk/sources/declarative/async_job/job_tracker.py,sha256=
|
46
|
-
airbyte_cdk/sources/declarative/async_job/repository.py,sha256=
|
43
|
+
airbyte_cdk/sources/declarative/async_job/job.py,sha256=V4Z6NohXwTlOavDbD-tUUQxOr7Lzpb_r4tRC64AfvDE,1702
|
44
|
+
airbyte_cdk/sources/declarative/async_job/job_orchestrator.py,sha256=shvaVraJ8ukG6RBzvlkySui1e9cND1GiatER0zSHZSs,21007
|
45
|
+
airbyte_cdk/sources/declarative/async_job/job_tracker.py,sha256=SQt21SftVgP7RUCQ8LA2vaCn-YEbyX1BnhibfTX9oaE,2321
|
46
|
+
airbyte_cdk/sources/declarative/async_job/repository.py,sha256=2OkWiZp5IKTOi_SIpP1U-Rw3gH36LBy_a8CgXoENTtg,1044
|
47
47
|
airbyte_cdk/sources/declarative/async_job/status.py,sha256=mkExR-uOAO1ckUnclaUOa74l2N9CdhLbVFM6KDoBgBM,715
|
48
48
|
airbyte_cdk/sources/declarative/async_job/timer.py,sha256=Fb8P72CQ7jIzJyzMSSNuBf2vt8bmrg9SrfmNxKwph2A,1242
|
49
49
|
airbyte_cdk/sources/declarative/auth/__init__.py,sha256=hhiJV3kU5_fja7hQYWqbYjjtJPpaJdS2NiJpJLrG2uw,294
|
50
|
-
airbyte_cdk/sources/declarative/auth/declarative_authenticator.py,sha256=
|
51
|
-
airbyte_cdk/sources/declarative/auth/jwt.py,sha256=
|
52
|
-
airbyte_cdk/sources/declarative/auth/oauth.py,sha256=
|
53
|
-
airbyte_cdk/sources/declarative/auth/selective_authenticator.py,sha256=
|
54
|
-
airbyte_cdk/sources/declarative/auth/token.py,sha256=
|
50
|
+
airbyte_cdk/sources/declarative/auth/declarative_authenticator.py,sha256=nf-OmRUHYG4ORBwyb5CANzuHEssE-oNmL-Lccn41Td8,1099
|
51
|
+
airbyte_cdk/sources/declarative/auth/jwt.py,sha256=BYE78cjQDZU_Kx7lPaiE5PE_0jCOH31ZWDbJOWyfF7g,8249
|
52
|
+
airbyte_cdk/sources/declarative/auth/oauth.py,sha256=SYQx-mXmDYD1O-Z-qEKtJWl0bzOl70rSd408B7ljHgU,8542
|
53
|
+
airbyte_cdk/sources/declarative/auth/selective_authenticator.py,sha256=GWV11BNz-C0zXRB2cfbGX_J9RoLN6_t-d5KrjrwHC7o,1372
|
54
|
+
airbyte_cdk/sources/declarative/auth/token.py,sha256=5CIS0WpjhCtMhhs7-WkSlmdxCoh5r44hmn_rhw_BQbU,11209
|
55
55
|
airbyte_cdk/sources/declarative/auth/token_provider.py,sha256=Luakvazmet-CAqX-OFCA0gqBPuzjrZzsqUKMoXXxOf0,3027
|
56
56
|
airbyte_cdk/sources/declarative/checks/__init__.py,sha256=WWXMfvKkndqwAUZdgSr7xVHVXDFTKCUQ9EubqT7H4QE,274
|
57
|
-
airbyte_cdk/sources/declarative/checks/check_stream.py,sha256=
|
58
|
-
airbyte_cdk/sources/declarative/checks/connection_checker.py,sha256=
|
57
|
+
airbyte_cdk/sources/declarative/checks/check_stream.py,sha256=dAA-UhmMj0WLXCkRQrilWCfJmncBzXCZ18ptRNip3XA,2139
|
58
|
+
airbyte_cdk/sources/declarative/checks/connection_checker.py,sha256=MBRJo6WJlZQHpIfOGaNOkkHUmgUl_4wDM6VPo41z5Ss,1383
|
59
59
|
airbyte_cdk/sources/declarative/concurrency_level/__init__.py,sha256=5XUqrmlstYlMM0j6crktlKQwALek0uiz2D3WdM46MyA,191
|
60
|
-
airbyte_cdk/sources/declarative/concurrency_level/concurrency_level.py,sha256=
|
61
|
-
airbyte_cdk/sources/declarative/concurrent_declarative_source.py,sha256=
|
60
|
+
airbyte_cdk/sources/declarative/concurrency_level/concurrency_level.py,sha256=YIwCTCpOr_QSNW4ltQK0yUGWInI8PKNY216HOOegYLk,2101
|
61
|
+
airbyte_cdk/sources/declarative/concurrent_declarative_source.py,sha256=b_zZOO2_IcBmqfXy9dVzw_CBS4kqva_dZQnU7Gc7LU0,19038
|
62
62
|
airbyte_cdk/sources/declarative/datetime/__init__.py,sha256=l9LG7Qm6e5r_qgqfVKnx3mXYtg1I9MmMjomVIPfU4XA,177
|
63
63
|
airbyte_cdk/sources/declarative/datetime/datetime_parser.py,sha256=SX9JjdesN1edN2WVUVMzU_ptqp2QB1OnsnjZ4mwcX7w,2579
|
64
|
-
airbyte_cdk/sources/declarative/datetime/min_max_datetime.py,sha256=
|
64
|
+
airbyte_cdk/sources/declarative/datetime/min_max_datetime.py,sha256=8VZJP18eJLabSPP1XBSPDaagUBG6q1ynIiPJy3rE2mc,5344
|
65
65
|
airbyte_cdk/sources/declarative/declarative_component_schema.yaml,sha256=-aUylYiBf-Pv5i9vXE4DLTD6OTlDLXm7CdJN3i-skNY,109054
|
66
|
-
airbyte_cdk/sources/declarative/declarative_source.py,sha256=
|
67
|
-
airbyte_cdk/sources/declarative/declarative_stream.py,sha256=
|
66
|
+
airbyte_cdk/sources/declarative/declarative_source.py,sha256=nF7wBqFd3AQmEKAm4CnIo29CJoQL562cJGSCeL8U8bA,1531
|
67
|
+
airbyte_cdk/sources/declarative/declarative_stream.py,sha256=JRyNeOIpsFu4ztVZsN6sncqUEIqIE-bUkD2TPgbMgk0,10375
|
68
68
|
airbyte_cdk/sources/declarative/decoders/__init__.py,sha256=VLAohtjvQKpY0UKirmJxko_-oY1hJK_tlEwxE18TXpQ,635
|
69
|
-
airbyte_cdk/sources/declarative/decoders/decoder.py,sha256=
|
70
|
-
airbyte_cdk/sources/declarative/decoders/json_decoder.py,sha256
|
69
|
+
airbyte_cdk/sources/declarative/decoders/decoder.py,sha256=sl-Gt8lXi7yD2Q-sD8je5QS2PbgrgsYjxRLWsay7DMc,826
|
70
|
+
airbyte_cdk/sources/declarative/decoders/json_decoder.py,sha256=uGsW-w3b7zMA6oGOaTJRXB1ElimmSeeB8RkB0mn7_3Y,2308
|
71
71
|
airbyte_cdk/sources/declarative/decoders/noop_decoder.py,sha256=eEgo7J9ct3nNJXnuZxxs2wEo0xAlkz2siX_ZgY4pE6M,454
|
72
|
-
airbyte_cdk/sources/declarative/decoders/pagination_decoder_decorator.py,sha256=
|
73
|
-
airbyte_cdk/sources/declarative/decoders/xml_decoder.py,sha256=
|
72
|
+
airbyte_cdk/sources/declarative/decoders/pagination_decoder_decorator.py,sha256=poFupLza71NrWhydE-5oezTzd2TyuCaBAK3TdgdEaxg,1080
|
73
|
+
airbyte_cdk/sources/declarative/decoders/xml_decoder.py,sha256=q_-glq5SV3JVoOJ5ULCZaj5fJodUvc12IxshwphNP-U,3116
|
74
74
|
airbyte_cdk/sources/declarative/exceptions.py,sha256=kTPUA4I2NV4J6HDz-mKPGMrfuc592akJnOyYx38l_QM,176
|
75
75
|
airbyte_cdk/sources/declarative/extractors/__init__.py,sha256=YFuL4D4RuuB8E1DNSbJNIj0_HApOlyECoJ_s8DuJMeI,611
|
76
|
-
airbyte_cdk/sources/declarative/extractors/dpath_extractor.py,sha256=
|
76
|
+
airbyte_cdk/sources/declarative/extractors/dpath_extractor.py,sha256=8I_kwx7-riu-uHLeZn4w7Qo033ZHzhej_ha9MZ2Q5B0,3130
|
77
77
|
airbyte_cdk/sources/declarative/extractors/http_selector.py,sha256=2ynyn1JYt8U_JpHXXNqeOyF6a1Askjt-_ZaLfHTe81E,1168
|
78
78
|
airbyte_cdk/sources/declarative/extractors/record_extractor.py,sha256=XJELMjahAsaomlvQgN2zrNO0DJX0G0fr9r682gUz7Pg,691
|
79
|
-
airbyte_cdk/sources/declarative/extractors/record_filter.py,sha256=
|
80
|
-
airbyte_cdk/sources/declarative/extractors/record_selector.py,sha256=
|
81
|
-
airbyte_cdk/sources/declarative/extractors/response_to_file_extractor.py,sha256=
|
79
|
+
airbyte_cdk/sources/declarative/extractors/record_filter.py,sha256=baG_e7MHZI5ggYi2CAkad3fDULoto1Dl-gOGC_X8Pnk,5280
|
80
|
+
airbyte_cdk/sources/declarative/extractors/record_selector.py,sha256=ErSKquEFUE4vPVYfGADesZyd9-N1nLisxbmX0ZJXFic,5719
|
81
|
+
airbyte_cdk/sources/declarative/extractors/response_to_file_extractor.py,sha256=vUfxdOdEk00hyH95PQNMeX5D3xMEDTYk7dMS5AW0z44,6398
|
82
82
|
airbyte_cdk/sources/declarative/incremental/__init__.py,sha256=CmZl9ddwMZFo8L7mEl_OFHN3ahIFRSYrJjMbR_cJaFA,1006
|
83
|
-
airbyte_cdk/sources/declarative/incremental/datetime_based_cursor.py,sha256=
|
83
|
+
airbyte_cdk/sources/declarative/incremental/datetime_based_cursor.py,sha256=jRNEGG31uAZ1N6H-t_m-0njKByXS9IUMJq4vAO_nl6A,22152
|
84
84
|
airbyte_cdk/sources/declarative/incremental/declarative_cursor.py,sha256=5Bhw9VRPyIuCaD0wmmq_L3DZsa-rJgtKSEUzSd8YYD0,536
|
85
|
-
airbyte_cdk/sources/declarative/incremental/global_substream_cursor.py,sha256=
|
86
|
-
airbyte_cdk/sources/declarative/incremental/per_partition_cursor.py,sha256=
|
87
|
-
airbyte_cdk/sources/declarative/incremental/per_partition_with_global.py,sha256=
|
88
|
-
airbyte_cdk/sources/declarative/incremental/resumable_full_refresh_cursor.py,sha256=
|
85
|
+
airbyte_cdk/sources/declarative/incremental/global_substream_cursor.py,sha256=WPCr8-zan_ccAePglmR0yb9AYSIwjPgh157yv4DFVRQ,15773
|
86
|
+
airbyte_cdk/sources/declarative/incremental/per_partition_cursor.py,sha256=l9EWEdQNun1lCls2FPUjd--UG6Jm3whbPdHAxg5aQ_Q,15653
|
87
|
+
airbyte_cdk/sources/declarative/incremental/per_partition_with_global.py,sha256=RKnlXRsmvd_4UKGFBmNsDyRd3C3sntW6qQLwJChr-3Y,8436
|
88
|
+
airbyte_cdk/sources/declarative/incremental/resumable_full_refresh_cursor.py,sha256=10LFv1QPM-agVKl6eaANmEBOfd7gZgBrkoTcMggsieQ,4809
|
89
89
|
airbyte_cdk/sources/declarative/interpolation/__init__.py,sha256=tjUJkn3B-iZ-p7RP2c3dVZejrGiQeooGmS5ibWTuUL4,437
|
90
90
|
airbyte_cdk/sources/declarative/interpolation/filters.py,sha256=dqf9W6LCnB5aWGLX1BoKxU-waORf1jT03LpJB671msU,3639
|
91
|
-
airbyte_cdk/sources/declarative/interpolation/interpolated_boolean.py,sha256=
|
92
|
-
airbyte_cdk/sources/declarative/interpolation/interpolated_mapping.py,sha256=
|
93
|
-
airbyte_cdk/sources/declarative/interpolation/interpolated_nested_mapping.py,sha256=
|
94
|
-
airbyte_cdk/sources/declarative/interpolation/interpolated_string.py,sha256=
|
95
|
-
airbyte_cdk/sources/declarative/interpolation/interpolation.py,sha256
|
96
|
-
airbyte_cdk/sources/declarative/interpolation/jinja.py,sha256=
|
97
|
-
airbyte_cdk/sources/declarative/interpolation/macros.py,sha256=
|
98
|
-
airbyte_cdk/sources/declarative/manifest_declarative_source.py,sha256
|
91
|
+
airbyte_cdk/sources/declarative/interpolation/interpolated_boolean.py,sha256=aPw-ounF0m2Ns03WUheoxOAsSRkiRMHax9uVsbibDyI,1964
|
92
|
+
airbyte_cdk/sources/declarative/interpolation/interpolated_mapping.py,sha256=UrF56LVOP1ELUxe2mEeQPBbWqomF7iEa4pVcI9HLb6c,2083
|
93
|
+
airbyte_cdk/sources/declarative/interpolation/interpolated_nested_mapping.py,sha256=i2L0gREX8nHA-pKokdVqwBf4aJgWP71KOxIABj_DHcY,1857
|
94
|
+
airbyte_cdk/sources/declarative/interpolation/interpolated_string.py,sha256=LYEZnZ_hB7rvBSZxG9s0RSrzsOkDWbBY0_P6qu5lEfc,3212
|
95
|
+
airbyte_cdk/sources/declarative/interpolation/interpolation.py,sha256=-V5UddGm69UKEB6o_O1EIES9kfY8FV_X4Ji8w1yOuSA,981
|
96
|
+
airbyte_cdk/sources/declarative/interpolation/jinja.py,sha256=KwTd0oagnZI4tARxnJZlQiDHn1IXqS7dbnRT0rKRAj8,6626
|
97
|
+
airbyte_cdk/sources/declarative/interpolation/macros.py,sha256=QgIfSVPHx_MMUCgbQdm-NMpUlp_cpk0OQhoRDFtkrxE,4040
|
98
|
+
airbyte_cdk/sources/declarative/manifest_declarative_source.py,sha256=-n0gWLPybC8-MBmmiO8k9s6L1bmNMWrsnn16JibtX7E,12916
|
99
99
|
airbyte_cdk/sources/declarative/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
100
|
-
airbyte_cdk/sources/declarative/migrations/legacy_to_per_partition_state_migration.py,sha256=
|
100
|
+
airbyte_cdk/sources/declarative/migrations/legacy_to_per_partition_state_migration.py,sha256=qlZYA_0QPI97jCMR9HKpuXQgoTzYmx_g6_vLWMR3tbU,3785
|
101
101
|
airbyte_cdk/sources/declarative/migrations/state_migration.py,sha256=KWPjealMLKSMtajXgkdGgKg7EmTLR-CqqD7UIh0-eDU,794
|
102
102
|
airbyte_cdk/sources/declarative/models/__init__.py,sha256=nUFxNCiKeYRVXuZEKA7GD-lTHxsiKcQ8FitZjKhPIvE,100
|
103
|
-
airbyte_cdk/sources/declarative/models/declarative_component_schema.py,sha256=
|
103
|
+
airbyte_cdk/sources/declarative/models/declarative_component_schema.py,sha256=pzyZGq-F2smnUvacFpyX1WThw4x2HcNB4kiKtMYJ-L0,75037
|
104
104
|
airbyte_cdk/sources/declarative/parsers/__init__.py,sha256=ZnqYNxHsKCgO38IwB34RQyRMXTs4GTvlRi3ImKnIioo,61
|
105
105
|
airbyte_cdk/sources/declarative/parsers/custom_exceptions.py,sha256=Rir9_z3Kcd5Es0-LChrzk-0qubAsiK_RSEnLmK2OXm8,553
|
106
|
-
airbyte_cdk/sources/declarative/parsers/manifest_component_transformer.py,sha256=
|
107
|
-
airbyte_cdk/sources/declarative/parsers/manifest_reference_resolver.py,sha256=
|
108
|
-
airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py,sha256=
|
106
|
+
airbyte_cdk/sources/declarative/parsers/manifest_component_transformer.py,sha256=jVZ3ZV5YZrmDNIX5cM2mugXmnbH27zHRcD22_3oatpo,8454
|
107
|
+
airbyte_cdk/sources/declarative/parsers/manifest_reference_resolver.py,sha256=IWUOdF03o-aQn0Occo1BJCxU0Pz-QILk5L67nzw2thw,6803
|
108
|
+
airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py,sha256=gN5RKhPKWBiUe-_kaEcayoXSiLjuDZPMXPLcUuAfAJc,94367
|
109
109
|
airbyte_cdk/sources/declarative/partition_routers/__init__.py,sha256=8uGos2u7TFTx_EJBdcjdUGn3Eyx6jUuEa1_VB8UP_dI,631
|
110
|
-
airbyte_cdk/sources/declarative/partition_routers/cartesian_product_stream_slicer.py,sha256=
|
111
|
-
airbyte_cdk/sources/declarative/partition_routers/list_partition_router.py,sha256=
|
110
|
+
airbyte_cdk/sources/declarative/partition_routers/cartesian_product_stream_slicer.py,sha256=c5cuVFM6NFkuQqG8Z5IwkBuwDrvXZN1CunUOM_L0ezg,6892
|
111
|
+
airbyte_cdk/sources/declarative/partition_routers/list_partition_router.py,sha256=t7pRdFWfFWJtQQG19c9PVeMODyO2BknRTakpM5U9N-8,4844
|
112
112
|
airbyte_cdk/sources/declarative/partition_routers/partition_router.py,sha256=YyEIzdmLd1FjbVP3QbQ2VFCLW_P-OGbVh6VpZShp54k,2218
|
113
113
|
airbyte_cdk/sources/declarative/partition_routers/single_partition_router.py,sha256=SKzKjSyfccq4dxGIh-J6ejrgkCHzaiTIazmbmeQiRD4,1942
|
114
|
-
airbyte_cdk/sources/declarative/partition_routers/substream_partition_router.py,sha256=
|
114
|
+
airbyte_cdk/sources/declarative/partition_routers/substream_partition_router.py,sha256=3Cb9HkRGXujNJq3J34brdTssSH07TveuuvkoxCZb2Ds,15200
|
115
115
|
airbyte_cdk/sources/declarative/requesters/__init__.py,sha256=d7a3OoHbqaJDyyPli3nqqJ2yAW_SLX6XDaBAKOwvpxw,364
|
116
116
|
airbyte_cdk/sources/declarative/requesters/error_handlers/__init__.py,sha256=6tVjjuNMGu77jZlegAO4Rb2kiYYF73ZET1GbqqWAr9A,717
|
117
117
|
airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/__init__.py,sha256=9NE_zyvXAeEmknkroG3EaWhatWGo2xqWUV-TnFd2nwY,875
|
118
|
-
airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/constant_backoff_strategy.py,sha256=
|
118
|
+
airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/constant_backoff_strategy.py,sha256=rSISdzUkd7u_F6gvb-cHA8rpZIU2uwz3a06_Ru5si4s,1697
|
119
119
|
airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/exponential_backoff_strategy.py,sha256=wix4mGM9sSlqSRp9vtEP1c-toHIJysOOIK3hdPc6h_c,1588
|
120
|
-
airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/header_helper.py,sha256=
|
121
|
-
airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/wait_time_from_header_backoff_strategy.py,sha256=
|
122
|
-
airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/wait_until_time_from_header_backoff_strategy.py,sha256=
|
120
|
+
airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/header_helper.py,sha256=n-DJ2ZffFqrhMlhU-qBeizoKmKurdGvF3pkN9vlKWkQ,1162
|
121
|
+
airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/wait_time_from_header_backoff_strategy.py,sha256=EFMgpcz9QaYz2LVQWKZBboTwn0nUK5fZ-CDgMUvjZSU,2941
|
122
|
+
airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/wait_until_time_from_header_backoff_strategy.py,sha256=6MHkXcCH6ciXwn7TY3T-QUreVgdpyckCi1Z1Sr0hmiY,3068
|
123
123
|
airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategy.py,sha256=ZN5kcaVAQDinX0Ld5NXA8M_7Sax5BoPsknVwH7v06as,634
|
124
|
-
airbyte_cdk/sources/declarative/requesters/error_handlers/composite_error_handler.py,sha256=
|
125
|
-
airbyte_cdk/sources/declarative/requesters/error_handlers/default_error_handler.py,sha256=
|
126
|
-
airbyte_cdk/sources/declarative/requesters/error_handlers/default_http_response_filter.py,sha256=
|
124
|
+
airbyte_cdk/sources/declarative/requesters/error_handlers/composite_error_handler.py,sha256=g_9SVZEktaWP6yAIpDmhFjld5f4rv4xknYILaV-Nl2E,2744
|
125
|
+
airbyte_cdk/sources/declarative/requesters/error_handlers/default_error_handler.py,sha256=1O_tbRS_BzCMIDRGWZiVH9RciIL4wZVXt01gBWPoRMY,5189
|
126
|
+
airbyte_cdk/sources/declarative/requesters/error_handlers/default_http_response_filter.py,sha256=wXx27vc31vWr0GP2NDF4O9JrAUDVu0Ft6sqhlHYYBx8,1313
|
127
127
|
airbyte_cdk/sources/declarative/requesters/error_handlers/error_handler.py,sha256=Tan66odx8VHzfdyyXMQkXz2pJYksllGqvxmpoajgcK4,669
|
128
|
-
airbyte_cdk/sources/declarative/requesters/error_handlers/http_response_filter.py,sha256=
|
129
|
-
airbyte_cdk/sources/declarative/requesters/http_job_repository.py,sha256=
|
130
|
-
airbyte_cdk/sources/declarative/requesters/http_requester.py,sha256=
|
128
|
+
airbyte_cdk/sources/declarative/requesters/error_handlers/http_response_filter.py,sha256=cKwhcOLuJ21zSew0o-tkEwyVY4cG2l-M6S5LzL7NcYE,7912
|
129
|
+
airbyte_cdk/sources/declarative/requesters/http_job_repository.py,sha256=p5v4YIIw7gYfpVsndAkmWPTCcaJ7cCuwpVfZWDogrSA,8661
|
130
|
+
airbyte_cdk/sources/declarative/requesters/http_requester.py,sha256=MQrvI4EXstfPDIB3wc8VIRNrmRvbu7HRGJwD0v935j4,14722
|
131
131
|
airbyte_cdk/sources/declarative/requesters/paginators/__init__.py,sha256=kDH6MR4fYJcVDve9V9Ued45AmEvxFdFPqX9VUN4u_KA,599
|
132
|
-
airbyte_cdk/sources/declarative/requesters/paginators/default_paginator.py,sha256=
|
133
|
-
airbyte_cdk/sources/declarative/requesters/paginators/no_pagination.py,sha256=
|
134
|
-
airbyte_cdk/sources/declarative/requesters/paginators/paginator.py,sha256=
|
132
|
+
airbyte_cdk/sources/declarative/requesters/paginators/default_paginator.py,sha256=gnuoHvsVDfMD1G--4NlTgACsdw8gEgCNfYMpuX0D39s,10880
|
133
|
+
airbyte_cdk/sources/declarative/requesters/paginators/no_pagination.py,sha256=PYmNd39H_ukdxaFukqUKJXspuknppdONwGae798IR3g,1926
|
134
|
+
airbyte_cdk/sources/declarative/requesters/paginators/paginator.py,sha256=lsZz3Fo6dN8CEmzRWZFaLwMIt4mhUwcoZ8RwlHWfP6E,1971
|
135
135
|
airbyte_cdk/sources/declarative/requesters/paginators/strategies/__init__.py,sha256=stF494yJa3j2T_IsJWEBh6ds1JTiPNakuTfZ_8Bpfxo,740
|
136
|
-
airbyte_cdk/sources/declarative/requesters/paginators/strategies/cursor_pagination_strategy.py,sha256=
|
137
|
-
airbyte_cdk/sources/declarative/requesters/paginators/strategies/offset_increment.py,sha256=
|
138
|
-
airbyte_cdk/sources/declarative/requesters/paginators/strategies/page_increment.py,sha256=
|
139
|
-
airbyte_cdk/sources/declarative/requesters/paginators/strategies/pagination_strategy.py,sha256=
|
140
|
-
airbyte_cdk/sources/declarative/requesters/paginators/strategies/stop_condition.py,sha256=
|
136
|
+
airbyte_cdk/sources/declarative/requesters/paginators/strategies/cursor_pagination_strategy.py,sha256=eH3Tk8YlMbzZM0UrY1fB5WTpNojPykfmaBXu6N37LbI,3653
|
137
|
+
airbyte_cdk/sources/declarative/requesters/paginators/strategies/offset_increment.py,sha256=vdU1WMmb5bqT08YUZkvbG8bqaHPbsAUu7KAEb6VTrSE,3366
|
138
|
+
airbyte_cdk/sources/declarative/requesters/paginators/strategies/page_increment.py,sha256=a_O-_pTkT2M8PTclsp99fRMdL74_b9LsDakNyD6A1Ns,2490
|
139
|
+
airbyte_cdk/sources/declarative/requesters/paginators/strategies/pagination_strategy.py,sha256=6Q6I8K90m8tUWkBIGSdhYnLQk095HNRVqLEaOtESeok,1289
|
140
|
+
airbyte_cdk/sources/declarative/requesters/paginators/strategies/stop_condition.py,sha256=oO_xMSWON9kPbYZlNol58VNrEdYMjZmLstWplRt8StA,1990
|
141
141
|
airbyte_cdk/sources/declarative/requesters/request_option.py,sha256=_qmv8CLQQ3fERt6BuMZeRu6tZXscPoeARx1VJdWMQ_M,1055
|
142
142
|
airbyte_cdk/sources/declarative/requesters/request_options/__init__.py,sha256=DzFS1eh7rj9OSSvgLyS_tBI9lhf3MyiKM8oab-KCkr8,772
|
143
|
-
airbyte_cdk/sources/declarative/requesters/request_options/datetime_based_request_options_provider.py,sha256=
|
144
|
-
airbyte_cdk/sources/declarative/requesters/request_options/default_request_options_provider.py,sha256=
|
145
|
-
airbyte_cdk/sources/declarative/requesters/request_options/interpolated_nested_request_input_provider.py,sha256=
|
146
|
-
airbyte_cdk/sources/declarative/requesters/request_options/interpolated_request_input_provider.py,sha256=
|
147
|
-
airbyte_cdk/sources/declarative/requesters/request_options/interpolated_request_options_provider.py,sha256=
|
143
|
+
airbyte_cdk/sources/declarative/requesters/request_options/datetime_based_request_options_provider.py,sha256=x8VtwLSefLDoUpEKTBND1apP3Ar-ub0dut4xJjSIXeI,3749
|
144
|
+
airbyte_cdk/sources/declarative/requesters/request_options/default_request_options_provider.py,sha256=SRROdPJZ5kuqHLOlkh115pWP9nDGfDxRYPgH9oD3hPo,1798
|
145
|
+
airbyte_cdk/sources/declarative/requesters/request_options/interpolated_nested_request_input_provider.py,sha256=UW4cAtzkQ261AyLI1cmCL2WLdI3ZDYGUTmrqKB9W3u8,2422
|
146
|
+
airbyte_cdk/sources/declarative/requesters/request_options/interpolated_request_input_provider.py,sha256=Vr2-qa8iHC0vJ4cCtPl7lAUlhrnl4lUuPLMSFrzxMIg,3024
|
147
|
+
airbyte_cdk/sources/declarative/requesters/request_options/interpolated_request_options_provider.py,sha256=Y7IkULGO2r7cflxJmV0Dh5AcmZIeUjT7h-bf005Vt4I,6967
|
148
148
|
airbyte_cdk/sources/declarative/requesters/request_options/request_options_provider.py,sha256=8YRiDzjYvqJ-aMmKFcjqzv_-e8OZ5QG_TbpZ-nuCu6s,2590
|
149
149
|
airbyte_cdk/sources/declarative/requesters/request_path.py,sha256=S3MeFvcaQrMbOkSY2W2VbXLNomqt_3eXqVd9ZhgNwUs,299
|
150
|
-
airbyte_cdk/sources/declarative/requesters/requester.py,sha256=
|
150
|
+
airbyte_cdk/sources/declarative/requesters/requester.py,sha256=9LWbCkHpr7GWTkPvYt1_NlENl3i3hEDEmLb-ibs0hfk,4945
|
151
151
|
airbyte_cdk/sources/declarative/retrievers/__init__.py,sha256=FVQpUGVwp2Gibk4gp07VmLKX5AafUlsZWFSrDpUDuJM,443
|
152
|
-
airbyte_cdk/sources/declarative/retrievers/async_retriever.py,sha256=
|
152
|
+
airbyte_cdk/sources/declarative/retrievers/async_retriever.py,sha256=iNe8Ihrk4vClCNtnEjtMUjjUoNo0UceYUFV7yAcXCU0,4965
|
153
153
|
airbyte_cdk/sources/declarative/retrievers/retriever.py,sha256=XPLs593Xv8c5cKMc37XzUAYmzlXd1a7eSsspM-CMuWA,1696
|
154
|
-
airbyte_cdk/sources/declarative/retrievers/simple_retriever.py,sha256=
|
154
|
+
airbyte_cdk/sources/declarative/retrievers/simple_retriever.py,sha256=j09j4ngVDGosEVVEQk_joejAXm6dBfr45ulElhz2ZoA,23931
|
155
155
|
airbyte_cdk/sources/declarative/schema/__init__.py,sha256=ul8L9S0-__AMEdbCLHBq-PMEeA928NVp8BB83BMotfU,517
|
156
|
-
airbyte_cdk/sources/declarative/schema/default_schema_loader.py,sha256=
|
156
|
+
airbyte_cdk/sources/declarative/schema/default_schema_loader.py,sha256=KTACrIE23a83wsm3Rd9Eb4K6-20lrGqYxTHNp9yxsso,1820
|
157
157
|
airbyte_cdk/sources/declarative/schema/inline_schema_loader.py,sha256=bVETE10hRsatRJq3R3BeyRR0wIoK3gcP1gcpVRQ_P5U,464
|
158
158
|
airbyte_cdk/sources/declarative/schema/json_file_schema_loader.py,sha256=5Wl-fqW-pVf_dxJ4yGHMAFfC4JjKHYJhqFJT1xA57F4,4177
|
159
159
|
airbyte_cdk/sources/declarative/schema/schema_loader.py,sha256=kjt8v0N5wWKA5zyLnrDLxf1PJKdUqvQq2RVnAOAzNSY,379
|
160
160
|
airbyte_cdk/sources/declarative/spec/__init__.py,sha256=H0UwoRhgucbKBIzg85AXrifybVmfpwWpPdy22vZKVuo,141
|
161
|
-
airbyte_cdk/sources/declarative/spec/spec.py,sha256=
|
161
|
+
airbyte_cdk/sources/declarative/spec/spec.py,sha256=1vGFWbMA2nj2zSb9e-VChfntI-Ag8SUgcwLkhMfCKUw,1907
|
162
162
|
airbyte_cdk/sources/declarative/stream_slicers/__init__.py,sha256=sI9vhc95RwJYOnA0VKjcbtKgFcmAbWjhdWBXFbAijOs,176
|
163
|
-
airbyte_cdk/sources/declarative/stream_slicers/stream_slicer.py,sha256=
|
163
|
+
airbyte_cdk/sources/declarative/stream_slicers/stream_slicer.py,sha256=7S5UEPJaYMgjGHm2IDDxC98EsoAx5YT2fsUbLDCV8_g,865
|
164
164
|
airbyte_cdk/sources/declarative/transformations/__init__.py,sha256=CPJ8TlMpiUmvG3624VYu_NfTzxwKcfBjM2Q2wJ7fkSA,919
|
165
|
-
airbyte_cdk/sources/declarative/transformations/add_fields.py,sha256=
|
165
|
+
airbyte_cdk/sources/declarative/transformations/add_fields.py,sha256=Oh4Kqws_K9r4qe75ZZ8aE4ydkKzIVP8sqeSeovCMs4M,5026
|
166
166
|
airbyte_cdk/sources/declarative/transformations/keys_to_lower_transformation.py,sha256=RTs5KX4V3hM7A6QN1WlGF21YccTIyNH6qQI9IMb__hw,670
|
167
|
-
airbyte_cdk/sources/declarative/transformations/remove_fields.py,sha256=
|
167
|
+
airbyte_cdk/sources/declarative/transformations/remove_fields.py,sha256=LyKLaOx9q8mSXCec7WnvAU9zhEV0-NGDP1p1YJ82EFo,2744
|
168
168
|
airbyte_cdk/sources/declarative/transformations/transformation.py,sha256=4sXtx9cNY2EHUPq-xHvDs8GQEBUy3Eo6TkRLKHPXx68,1161
|
169
|
-
airbyte_cdk/sources/declarative/types.py,sha256=
|
170
|
-
airbyte_cdk/sources/declarative/yaml_declarative_source.py,sha256=
|
169
|
+
airbyte_cdk/sources/declarative/types.py,sha256=yqx0xlZv_76tkC7fqJKefmvl4GJJ8mXbeddwVV8XRJU,778
|
170
|
+
airbyte_cdk/sources/declarative/yaml_declarative_source.py,sha256=2h3sQzt07fAxE0nSz2Njv_HlK2I2jmLkqbebQ_O3E1w,2389
|
171
171
|
airbyte_cdk/sources/embedded/__init__.py,sha256=ZnqYNxHsKCgO38IwB34RQyRMXTs4GTvlRi3ImKnIioo,61
|
172
|
-
airbyte_cdk/sources/embedded/base_integration.py,sha256=
|
173
|
-
airbyte_cdk/sources/embedded/catalog.py,sha256=
|
174
|
-
airbyte_cdk/sources/embedded/runner.py,sha256=
|
175
|
-
airbyte_cdk/sources/embedded/tools.py,sha256=
|
172
|
+
airbyte_cdk/sources/embedded/base_integration.py,sha256=pIFcfGmmP7HV7aVPlB5UYeA2-TNjHCyCE-30TRdOVU4,2406
|
173
|
+
airbyte_cdk/sources/embedded/catalog.py,sha256=EAnLw9u5fXLNBLfWr_I0itA7OEHMWdqEaM_rWc_tCpI,1653
|
174
|
+
airbyte_cdk/sources/embedded/runner.py,sha256=S6cz7SWRTFfT_ZhP-zZYdiT9XRijulV_bMABal2h0OI,1493
|
175
|
+
airbyte_cdk/sources/embedded/tools.py,sha256=tEoWoMh7QlSsMvxILp0KSgFlNm4XN3T5qpW48wXmK8k,745
|
176
176
|
airbyte_cdk/sources/file_based/README.md,sha256=iMqww4VZ882jfNQIdljjDgqreKs-mkdtSrRKA94iX6A,11085
|
177
177
|
airbyte_cdk/sources/file_based/__init__.py,sha256=EaxHv_9ot-eRlUCR47ZMZ0IOtB-n0HH24om7Bfn-uuQ,868
|
178
178
|
airbyte_cdk/sources/file_based/availability_strategy/__init__.py,sha256=jtfV8qaLiVBodOA03hfDhy2snPllptcqJs0tNodJ2kU,371
|
179
|
-
airbyte_cdk/sources/file_based/availability_strategy/abstract_file_based_availability_strategy.py,sha256=
|
180
|
-
airbyte_cdk/sources/file_based/availability_strategy/default_file_based_availability_strategy.py,sha256=
|
179
|
+
airbyte_cdk/sources/file_based/availability_strategy/abstract_file_based_availability_strategy.py,sha256=HXVXIkBflNGSddjh5gcRjz_HJdBZcPjQ0juU44lxPeE,2209
|
180
|
+
airbyte_cdk/sources/file_based/availability_strategy/default_file_based_availability_strategy.py,sha256=bH1_aTTsJJr8j705O6fn_YvhQYyZa0NVoE8AafE6DEM,5700
|
181
181
|
airbyte_cdk/sources/file_based/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
182
|
-
airbyte_cdk/sources/file_based/config/abstract_file_based_spec.py,sha256=
|
182
|
+
airbyte_cdk/sources/file_based/config/abstract_file_based_spec.py,sha256=kytl9zY23IL-0l7FmwP1R0XMKRxpYUulQCUqWvoJbNg,6454
|
183
183
|
airbyte_cdk/sources/file_based/config/avro_format.py,sha256=524v8w-V-NNCQlrF9Mwj-mbkI6d8IzY8OdpsuZqclv0,715
|
184
|
-
airbyte_cdk/sources/file_based/config/csv_format.py,sha256=
|
184
|
+
airbyte_cdk/sources/file_based/config/csv_format.py,sha256=w0I3g7HONf12rV-aAFjXrbylK1O34zmc4hRWKRlTIXA,8005
|
185
185
|
airbyte_cdk/sources/file_based/config/excel_format.py,sha256=3VkDtGbtc4EPGb1ZVLq8U6BBf50fiKmsgiENoPE360c,377
|
186
|
-
airbyte_cdk/sources/file_based/config/file_based_stream_config.py,sha256=
|
186
|
+
airbyte_cdk/sources/file_based/config/file_based_stream_config.py,sha256=waP2sChs7tNscwBOSJqtpIOX3p5FrF4-uobbQDsEUFc,4646
|
187
187
|
airbyte_cdk/sources/file_based/config/jsonl_format.py,sha256=MWVgi_cxzZwiYUp-HhzsrQTQMjwtyXXjd5lre9o0oJo,377
|
188
188
|
airbyte_cdk/sources/file_based/config/parquet_format.py,sha256=eXWb0vOi-1CaZ6SndrHvQoD8U0WjI9R3HWZcEJpKOdk,740
|
189
|
-
airbyte_cdk/sources/file_based/config/unstructured_format.py,sha256=
|
189
|
+
airbyte_cdk/sources/file_based/config/unstructured_format.py,sha256=ugAD56dNw-eN_Z5sjGjWO8nx1gb_8BGly61wqqMNMA0,3564
|
190
190
|
airbyte_cdk/sources/file_based/discovery_policy/__init__.py,sha256=x_7JsQGiS7Ytmr0ZDS0SNYGcNUzC4wCm3_1-Mf3ZFnw,283
|
191
|
-
airbyte_cdk/sources/file_based/discovery_policy/abstract_discovery_policy.py,sha256=
|
192
|
-
airbyte_cdk/sources/file_based/discovery_policy/default_discovery_policy.py,sha256
|
193
|
-
airbyte_cdk/sources/file_based/exceptions.py,sha256=
|
194
|
-
airbyte_cdk/sources/file_based/file_based_source.py,sha256=
|
195
|
-
airbyte_cdk/sources/file_based/file_based_stream_reader.py,sha256=
|
191
|
+
airbyte_cdk/sources/file_based/discovery_policy/abstract_discovery_policy.py,sha256=dCfXX529Rd5rtopg4VeEgTPJjFtqjtjzPq6LCw18Wt0,605
|
192
|
+
airbyte_cdk/sources/file_based/discovery_policy/default_discovery_policy.py,sha256=-xujTidtrq6HC00WKbjQh1CZdT5LMuzkp5BLjqDmfTY,1007
|
193
|
+
airbyte_cdk/sources/file_based/exceptions.py,sha256=AEELNIRzKPX6eopKd_2jhE7WiNeR0Aw7nQWVOL8fvkc,5760
|
194
|
+
airbyte_cdk/sources/file_based/file_based_source.py,sha256=CLHnw-e1cvgS-JiNAG9ssLOAeKjhFkBGZm_61Z8rQ0o,16651
|
195
|
+
airbyte_cdk/sources/file_based/file_based_stream_reader.py,sha256=09WDoXXzTTp4vz_szQJHqmEsE80GJGcHJPwnZEJXhfM,6178
|
196
196
|
airbyte_cdk/sources/file_based/file_types/__init__.py,sha256=hXMSzGQwP6T9bJlKWb8EUBZomU9mZZuXjP0J2P2dGBY,1233
|
197
|
-
airbyte_cdk/sources/file_based/file_types/avro_parser.py,sha256=
|
198
|
-
airbyte_cdk/sources/file_based/file_types/csv_parser.py,sha256=
|
199
|
-
airbyte_cdk/sources/file_based/file_types/excel_parser.py,sha256=
|
200
|
-
airbyte_cdk/sources/file_based/file_types/file_transfer.py,sha256=
|
201
|
-
airbyte_cdk/sources/file_based/file_types/file_type_parser.py,sha256=
|
202
|
-
airbyte_cdk/sources/file_based/file_types/jsonl_parser.py,sha256=
|
203
|
-
airbyte_cdk/sources/file_based/file_types/parquet_parser.py,sha256=
|
204
|
-
airbyte_cdk/sources/file_based/file_types/unstructured_parser.py,sha256=
|
197
|
+
airbyte_cdk/sources/file_based/file_types/avro_parser.py,sha256=kwNDxAHIWTluwK2jR7EEKWxsGR5Guj-MHBYJ8RCHDe8,10313
|
198
|
+
airbyte_cdk/sources/file_based/file_types/csv_parser.py,sha256=Y9PWTYqT5C0h6Y7QLM_B2fYOgnSUW1nyLlkEUzIqqlg,20597
|
199
|
+
airbyte_cdk/sources/file_based/file_types/excel_parser.py,sha256=ymAPI0r1Z6b-J5ojE_clEF4kshmzDatv0imKG0A2qfY,6994
|
200
|
+
airbyte_cdk/sources/file_based/file_types/file_transfer.py,sha256=HyGRihJxcb_lEsffKhfF3eylLBDy51_PXSwGUFEJ5bA,1265
|
201
|
+
airbyte_cdk/sources/file_based/file_types/file_type_parser.py,sha256=JgpH21PrbRqwK92BJklZWvh2TndA6xZ-eP1LPMo44oQ,2832
|
202
|
+
airbyte_cdk/sources/file_based/file_types/jsonl_parser.py,sha256=k1ri7TtwrN8oYZpCl1bNNeAQmwBbwLjmOmIz8-tKflY,5897
|
203
|
+
airbyte_cdk/sources/file_based/file_types/parquet_parser.py,sha256=0B4RYehU4z4dys3Tu-O98B0Uw7JO_LzStRwmNxKh6Xk,10486
|
204
|
+
airbyte_cdk/sources/file_based/file_types/unstructured_parser.py,sha256=oR0XdsMLpOh9kXzkVuqZbIfxzsREeWYCWpWY2vlyVHk,17171
|
205
205
|
airbyte_cdk/sources/file_based/remote_file.py,sha256=yqRz93vPe8PBXLIMJ5W5u2JRlZRhg6sBrAjn3pPjJ8A,315
|
206
|
-
airbyte_cdk/sources/file_based/schema_helpers.py,sha256=
|
206
|
+
airbyte_cdk/sources/file_based/schema_helpers.py,sha256=Cf8FH1bDFP0qCDDfEYir_WjP4exXUnikz8hZ40y1Ek0,9601
|
207
207
|
airbyte_cdk/sources/file_based/schema_validation_policies/__init__.py,sha256=sEVnRhZ8x9f7PNjo6lewxid9z0PI8eSj7gSoFC3MH1Y,527
|
208
|
-
airbyte_cdk/sources/file_based/schema_validation_policies/abstract_schema_validation_policy.py,sha256=
|
209
|
-
airbyte_cdk/sources/file_based/schema_validation_policies/default_schema_validation_policies.py,sha256=
|
208
|
+
airbyte_cdk/sources/file_based/schema_validation_policies/abstract_schema_validation_policy.py,sha256=kjvX7nOmUALYd7HuZHilUzgJPZ-MnZ08mtvuBnt2tQ0,618
|
209
|
+
airbyte_cdk/sources/file_based/schema_validation_policies/default_schema_validation_policies.py,sha256=vjTlmYT_nqzY3DbT5xem7X-bwgA9RyXHoKFqiMO2URk,1728
|
210
210
|
airbyte_cdk/sources/file_based/stream/__init__.py,sha256=QPDqdgjsabOQD93dSFqHGaFS_3pIwm-chEabZHiPJi0,265
|
211
|
-
airbyte_cdk/sources/file_based/stream/abstract_file_based_stream.py,sha256=
|
211
|
+
airbyte_cdk/sources/file_based/stream/abstract_file_based_stream.py,sha256=hZZSoAMFb--rifpg8B6gZD3I1KRF2KVrWIDlLjiKcpA,7479
|
212
212
|
airbyte_cdk/sources/file_based/stream/concurrent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
213
|
-
airbyte_cdk/sources/file_based/stream/concurrent/adapters.py,sha256
|
213
|
+
airbyte_cdk/sources/file_based/stream/concurrent/adapters.py,sha256=wp8Buy6j29OVhGIb-BoXXW85etQrMqMV11I_MXNc7PI,14208
|
214
214
|
airbyte_cdk/sources/file_based/stream/concurrent/cursor/__init__.py,sha256=AtTntHQgspWt8vZ9cjIjSOO1YpH2OO-D8E78pAViE7k,329
|
215
|
-
airbyte_cdk/sources/file_based/stream/concurrent/cursor/abstract_concurrent_file_based_cursor.py,sha256=
|
216
|
-
airbyte_cdk/sources/file_based/stream/concurrent/cursor/file_based_concurrent_cursor.py,sha256=
|
217
|
-
airbyte_cdk/sources/file_based/stream/concurrent/cursor/file_based_final_state_cursor.py,sha256
|
215
|
+
airbyte_cdk/sources/file_based/stream/concurrent/cursor/abstract_concurrent_file_based_cursor.py,sha256=pCh1X-WTTuJGF9r-QlcTMlkPbpLBeOFkGrOJePtwTeU,1887
|
216
|
+
airbyte_cdk/sources/file_based/stream/concurrent/cursor/file_based_concurrent_cursor.py,sha256=CPE_dEmAYK0r-wdI40zTnLtL3B-0DYThuJ1OKOCO8MU,14911
|
217
|
+
airbyte_cdk/sources/file_based/stream/concurrent/cursor/file_based_final_state_cursor.py,sha256=1K4oGJKtPejdVT4qoSgs6nuS0Q4BuKtVKK3iDOmNMlA,3228
|
218
218
|
airbyte_cdk/sources/file_based/stream/cursor/__init__.py,sha256=MhFB5hOo8sjwvCh8gangaymdg3EJWYt_72brFOZt068,191
|
219
|
-
airbyte_cdk/sources/file_based/stream/cursor/abstract_file_based_cursor.py,sha256=
|
220
|
-
airbyte_cdk/sources/file_based/stream/cursor/default_file_based_cursor.py,sha256=
|
221
|
-
airbyte_cdk/sources/file_based/stream/default_file_based_stream.py,sha256=
|
219
|
+
airbyte_cdk/sources/file_based/stream/cursor/abstract_file_based_cursor.py,sha256=om-x3gZFPgWDpi15S9RxZmR36VHnk8sytgN6LlBQhAw,1934
|
220
|
+
airbyte_cdk/sources/file_based/stream/cursor/default_file_based_cursor.py,sha256=LgAl6xAgY-QD_KWZe1txkFgZlNe0jZydoTyAcHsP15g,7022
|
221
|
+
airbyte_cdk/sources/file_based/stream/default_file_based_stream.py,sha256=rpwU6AOyhFLuXtcFKkcOHFWbRQ4kLCOKzAjcID_M87k,16770
|
222
222
|
airbyte_cdk/sources/file_based/types.py,sha256=INxG7OPnkdUP69oYNKMAbwhvV1AGvLRHs1J6pIia2FI,218
|
223
223
|
airbyte_cdk/sources/http_config.py,sha256=OBZeuyFilm6NlDlBhFQvHhTWabEvZww6OHDIlZujIS0,730
|
224
|
-
airbyte_cdk/sources/http_logger.py,sha256
|
224
|
+
airbyte_cdk/sources/http_logger.py,sha256=-r5zen-SPGtVri2ir1WZOcV-jT9wr2CBADi8FV_xptA,1454
|
225
225
|
airbyte_cdk/sources/message/__init__.py,sha256=14ZSLah9uyI_CyK7_jIyq521vlgKAdihe6Ciw6-jLgU,372
|
226
|
-
airbyte_cdk/sources/message/repository.py,sha256=
|
227
|
-
airbyte_cdk/sources/source.py,sha256=
|
226
|
+
airbyte_cdk/sources/message/repository.py,sha256=SG7avgti_-dj8FcRHTTrhgLLGJbElv14_zIB0SH8AIc,4763
|
227
|
+
airbyte_cdk/sources/source.py,sha256=KIBBH5VLEb8BZ8B9aROlfaI6OLoJqKDPMJ10jkAR7nk,3611
|
228
228
|
airbyte_cdk/sources/streams/__init__.py,sha256=14lMJVrpKV2E5SYKAeXV1m6ajZn8iL3XQflcEgWrWuc,256
|
229
|
-
airbyte_cdk/sources/streams/availability_strategy.py,sha256=
|
230
|
-
airbyte_cdk/sources/streams/call_rate.py,sha256=
|
229
|
+
airbyte_cdk/sources/streams/availability_strategy.py,sha256=_RU4JITrxMEN36g1RDHMu0iSw0I_3yWGfo5N8_YRvOg,3247
|
230
|
+
airbyte_cdk/sources/streams/call_rate.py,sha256=4HK7Q_4hmIGIJX-flzH6EEi0__qx-NPhyvKnNb3wylQ,21078
|
231
231
|
airbyte_cdk/sources/streams/checkpoint/__init__.py,sha256=zQQ8m9Dowli2eoql478yqVsNYB32IcE75KVwZ_YV5ew,711
|
232
|
-
airbyte_cdk/sources/streams/checkpoint/checkpoint_reader.py,sha256=
|
232
|
+
airbyte_cdk/sources/streams/checkpoint/checkpoint_reader.py,sha256=6HMT2NI-FQuaW0nt95NcyWrt5rZN4gF-Arx0sxdgbv4,15221
|
233
233
|
airbyte_cdk/sources/streams/checkpoint/cursor.py,sha256=3e-3c-54k8U7Awno7DMmAD9ndbnl9OM48EnbEgeDUO0,3499
|
234
234
|
airbyte_cdk/sources/streams/checkpoint/per_partition_key_serializer.py,sha256=_mtH3_XcpASeu_z2WnAFrXqwKaPBMuXvZlVHSpLVqa8,1074
|
235
235
|
airbyte_cdk/sources/streams/checkpoint/resumable_full_refresh_cursor.py,sha256=9si8btC8XQzHA9i2tv9vO1k-cBeyUhpfC-kePn0VNmc,1966
|
236
|
-
airbyte_cdk/sources/streams/checkpoint/substream_resumable_full_refresh_cursor.py,sha256=
|
236
|
+
airbyte_cdk/sources/streams/checkpoint/substream_resumable_full_refresh_cursor.py,sha256=qyTpIpVh7c1ptwZ9S-2sMoRHh4prpQAlzqjweQ5iCxM,4769
|
237
237
|
airbyte_cdk/sources/streams/concurrent/README.md,sha256=0nvgnlCBfZJiPDAofT8yFmUhGc4L99RCb3fL_PI4sSY,1070
|
238
238
|
airbyte_cdk/sources/streams/concurrent/__init__.py,sha256=4Hw-PX1-VgESLF16cDdvuYCzGJtHntThLF4qIiULWeo,61
|
239
239
|
airbyte_cdk/sources/streams/concurrent/abstract_stream.py,sha256=qqK8padYVkZNZ_nYLf4NXAmdNW9K8u_ys-RV-kzZAc8,3891
|
240
240
|
airbyte_cdk/sources/streams/concurrent/abstract_stream_facade.py,sha256=QTry1QCBUwJDw1QSCEvz23s7zIEx_7QMxkPq9j-oPIQ,1358
|
241
|
-
airbyte_cdk/sources/streams/concurrent/adapters.py,sha256=
|
241
|
+
airbyte_cdk/sources/streams/concurrent/adapters.py,sha256=vFg413xc4YY3ogpAnyXJXun9ErSrEOg-CEdpfuxY5js,18666
|
242
242
|
airbyte_cdk/sources/streams/concurrent/availability_strategy.py,sha256=QjX52lC4YOOvcTEhR0RU9e42yuWtueQkW_I_qpE_uTM,2876
|
243
|
-
airbyte_cdk/sources/streams/concurrent/cursor.py,sha256=
|
244
|
-
airbyte_cdk/sources/streams/concurrent/default_stream.py,sha256=
|
243
|
+
airbyte_cdk/sources/streams/concurrent/cursor.py,sha256=ynvw0FntQTUerhvyOGpQUxcLTAQ7Ay9v-f5CIVWEo3g,18046
|
244
|
+
airbyte_cdk/sources/streams/concurrent/default_stream.py,sha256=WdZYzION3q6nIhIIcpFqlovDcouOHdbnB0U1YIDP2Jk,3175
|
245
245
|
airbyte_cdk/sources/streams/concurrent/exceptions.py,sha256=JOZ446MCLpmF26r9KfS6OO_6rGjcjgJNZdcw6jccjEI,468
|
246
|
-
airbyte_cdk/sources/streams/concurrent/helpers.py,sha256=
|
247
|
-
airbyte_cdk/sources/streams/concurrent/partition_enqueuer.py,sha256=
|
248
|
-
airbyte_cdk/sources/streams/concurrent/partition_reader.py,sha256=
|
246
|
+
airbyte_cdk/sources/streams/concurrent/helpers.py,sha256=gtj9p0clZwgnClrIRH6V2Wl0Jwu11Plq-9FP4FU2VQA,1327
|
247
|
+
airbyte_cdk/sources/streams/concurrent/partition_enqueuer.py,sha256=2t64b_z9cEPmlHZnjSiMTO8PEtEdiAJDG0JcYOtUqAE,3363
|
248
|
+
airbyte_cdk/sources/streams/concurrent/partition_reader.py,sha256=0TIrjbTzYJGdA0AZUzbeIKr0iHbawnoEKVl7bWxOFZY,1760
|
249
249
|
airbyte_cdk/sources/streams/concurrent/partitions/__init__.py,sha256=4Hw-PX1-VgESLF16cDdvuYCzGJtHntThLF4qIiULWeo,61
|
250
250
|
airbyte_cdk/sources/streams/concurrent/partitions/partition.py,sha256=o2QvDYZF3Tn9NbC5jc1UkDwMiCWq9fNGj493u2WFoko,1795
|
251
251
|
airbyte_cdk/sources/streams/concurrent/partitions/partition_generator.py,sha256=_ymkkBr71_qt1fW0_MUqw96OfNBkeJngXQ09yolEDHw,441
|
252
|
-
airbyte_cdk/sources/streams/concurrent/partitions/record.py,sha256=
|
253
|
-
airbyte_cdk/sources/streams/concurrent/partitions/types.py,sha256=
|
252
|
+
airbyte_cdk/sources/streams/concurrent/partitions/record.py,sha256=HVGVZ2yF5iaPKxTjRn305lLmYb5I8k7DkQoNIyKA_MA,938
|
253
|
+
airbyte_cdk/sources/streams/concurrent/partitions/types.py,sha256=6k83K_dnwHAadkTBPSdWKssTzxVGVLH5DzZFkN6pFr8,1197
|
254
254
|
airbyte_cdk/sources/streams/concurrent/state_converters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
255
|
-
airbyte_cdk/sources/streams/concurrent/state_converters/abstract_stream_state_converter.py,sha256=
|
256
|
-
airbyte_cdk/sources/streams/concurrent/state_converters/datetime_stream_state_converter.py,sha256=
|
257
|
-
airbyte_cdk/sources/streams/core.py,sha256=
|
255
|
+
airbyte_cdk/sources/streams/concurrent/state_converters/abstract_stream_state_converter.py,sha256=T-XsEs75cwF2o2ndQ6GCOJby6ji1NyYpoW9RY09m26k,6654
|
256
|
+
airbyte_cdk/sources/streams/concurrent/state_converters/datetime_stream_state_converter.py,sha256=AkpFGTb1P-u3XW7Zlmpjk50xT8KorqV4JAEpvmkZnOE,7617
|
257
|
+
airbyte_cdk/sources/streams/core.py,sha256=0sNVS--49wtulgSb99wFR6XimaUv_owPFEsR6yxJMNE,31928
|
258
258
|
airbyte_cdk/sources/streams/http/__init__.py,sha256=NXaNlkzZMkh5kS8S5ujEaKEE6855sk6_HljF_GFjKZI,311
|
259
|
-
airbyte_cdk/sources/streams/http/availability_strategy.py,sha256=
|
259
|
+
airbyte_cdk/sources/streams/http/availability_strategy.py,sha256=sovoGFThZr-doMN9vJvTuJBrvkwQVIO0qTQO64pGZPY,2428
|
260
260
|
airbyte_cdk/sources/streams/http/error_handlers/__init__.py,sha256=R8OgTcratGH4f6BbYM2Hp8qYyEk7wMYuyda5H9ohGW8,665
|
261
261
|
airbyte_cdk/sources/streams/http/error_handlers/backoff_strategy.py,sha256=7fIkF00wD6bqIXtiG2QAgbje_xiQ5JTs99ibwR8LLXY,1030
|
262
262
|
airbyte_cdk/sources/streams/http/error_handlers/default_backoff_strategy.py,sha256=1_1Gi2ImwTbh4SgIKCRh2P4kPaVeAeHc1ib6IrBfqKA,411
|
263
|
-
airbyte_cdk/sources/streams/http/error_handlers/default_error_mapping.py,sha256=
|
264
|
-
airbyte_cdk/sources/streams/http/error_handlers/error_handler.py,sha256=
|
263
|
+
airbyte_cdk/sources/streams/http/error_handlers/default_error_mapping.py,sha256=xHh6wgP0nL-1POMPj-hqp6fYJ_-Rfu3W70Jyxa2fG9w,3375
|
264
|
+
airbyte_cdk/sources/streams/http/error_handlers/error_handler.py,sha256=GuqP7U1eC9RPaiD4y4Mkf17vKcOXo2ENnMB-CUBLsbo,1164
|
265
265
|
airbyte_cdk/sources/streams/http/error_handlers/error_message_parser.py,sha256=xC93uB5BJd3iOnAXCrYLJTitWeGZlqzwe55VtsZqNnE,456
|
266
|
-
airbyte_cdk/sources/streams/http/error_handlers/http_status_error_handler.py,sha256=
|
266
|
+
airbyte_cdk/sources/streams/http/error_handlers/http_status_error_handler.py,sha256=sZ67S7hHNK9Ya_G3M9nE1qI6ijuPZKc7loBqT3HAvvE,4187
|
267
267
|
airbyte_cdk/sources/streams/http/error_handlers/json_error_message_parser.py,sha256=E6Rsj5PUEwVs0IfZTf7nyZQq0XP-qhepzKDgYjjZQTI,1827
|
268
|
-
airbyte_cdk/sources/streams/http/error_handlers/response_models.py,sha256=
|
269
|
-
airbyte_cdk/sources/streams/http/exceptions.py,sha256=
|
270
|
-
airbyte_cdk/sources/streams/http/http.py,sha256=
|
271
|
-
airbyte_cdk/sources/streams/http/http_client.py,sha256=
|
272
|
-
airbyte_cdk/sources/streams/http/rate_limiting.py,sha256=
|
268
|
+
airbyte_cdk/sources/streams/http/error_handlers/response_models.py,sha256=7AX6sm8hMfVtcZuUrCmGmNFsO5rDK9Ecg2Kzl6rQwrk,2235
|
269
|
+
airbyte_cdk/sources/streams/http/exceptions.py,sha256=njC7MlMJoFYcSGz4mIp6-bqLFTr6vC8ej25X0oSeyjE,1824
|
270
|
+
airbyte_cdk/sources/streams/http/http.py,sha256=XoUvIClYO96datz_lBPBBY6uWmCja2mUk_yERdjskQo,28466
|
271
|
+
airbyte_cdk/sources/streams/http/http_client.py,sha256=EhB9An8wA9wkoNBxTPfHGwmL_-jJVLUl6uFgkY6Fcho,19125
|
272
|
+
airbyte_cdk/sources/streams/http/rate_limiting.py,sha256=IwdjrHKUnU97XO4qONgYRv4YYW51xQ8SJm4WLafXDB8,6351
|
273
273
|
airbyte_cdk/sources/streams/http/requests_native_auth/__init__.py,sha256=RN0D3nOX1xLgwEwKWu6pkGy3XqBFzKSNZ8Lf6umU2eY,413
|
274
|
-
airbyte_cdk/sources/streams/http/requests_native_auth/abstract_oauth.py,sha256=
|
274
|
+
airbyte_cdk/sources/streams/http/requests_native_auth/abstract_oauth.py,sha256=r6KvG6V-bzhnCGwLqnxngrjGM0UrvD1dRo8knatuAH0,10320
|
275
275
|
airbyte_cdk/sources/streams/http/requests_native_auth/abstract_token.py,sha256=T0hVF2cBXGgIfrCslvTC1uNm9rNbYjENNl2Cb3mXuSY,961
|
276
|
-
airbyte_cdk/sources/streams/http/requests_native_auth/oauth.py,sha256=
|
277
|
-
airbyte_cdk/sources/streams/http/requests_native_auth/token.py,sha256=
|
276
|
+
airbyte_cdk/sources/streams/http/requests_native_auth/oauth.py,sha256=Jx5Vfkl2JolJJ-qXQLNvwzwRXjSnsgaHbSEGxUqLRPI,13615
|
277
|
+
airbyte_cdk/sources/streams/http/requests_native_auth/token.py,sha256=h5PTzcdH-RQLeCg7xZ45w_484OPUDSwNWl_iMJQmZoI,2526
|
278
278
|
airbyte_cdk/sources/streams/utils/__init__.py,sha256=4Hw-PX1-VgESLF16cDdvuYCzGJtHntThLF4qIiULWeo,61
|
279
|
-
airbyte_cdk/sources/types.py,sha256=
|
279
|
+
airbyte_cdk/sources/types.py,sha256=q0W2snCfmiGIaiV5L42_4C_r3ObKgUQm9eqCS90VXtg,4558
|
280
280
|
airbyte_cdk/sources/utils/__init__.py,sha256=TTN6VUxVy6Is8BhYQZR5pxJGQh8yH4duXh4O1TiMiEY,118
|
281
281
|
airbyte_cdk/sources/utils/casing.py,sha256=QC-gV1O4e8DR4-bhdXieUPKm_JamzslVyfABLYYRSXA,256
|
282
|
-
airbyte_cdk/sources/utils/record_helper.py,sha256=
|
283
|
-
airbyte_cdk/sources/utils/schema_helpers.py,sha256=
|
284
|
-
airbyte_cdk/sources/utils/slice_logger.py,sha256=
|
285
|
-
airbyte_cdk/sources/utils/transform.py,sha256=
|
282
|
+
airbyte_cdk/sources/utils/record_helper.py,sha256=EIUPaJuLNrLUuTYgo0JbEsqFGvBYRiDJpWP2QOU-wWU,2184
|
283
|
+
airbyte_cdk/sources/utils/schema_helpers.py,sha256=VivHYSFporVBzrO9KuJ5YHy_vVXAMmyH7dZZWQZ8gbM,8575
|
284
|
+
airbyte_cdk/sources/utils/slice_logger.py,sha256=qWWeFLAvigFz0b4O1_O3QDM1cy8PqZAMMgVPR2hEeb8,1778
|
285
|
+
airbyte_cdk/sources/utils/transform.py,sha256=FCBIL27-CmJA5Q4IcmxdKq0hN9FhlUz5yv-EvXNx79A,9640
|
286
286
|
airbyte_cdk/sources/utils/types.py,sha256=41ZQR681t5TUnOScij58d088sb99klH_ZENFcaYro_g,175
|
287
287
|
airbyte_cdk/sql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
288
288
|
airbyte_cdk/sql/_util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
289
289
|
airbyte_cdk/sql/_util/hashing.py,sha256=HN5N1m0GPMtD_hSnWkj-721Bsq02PzGgmTZ4jcAKqas,1043
|
290
290
|
airbyte_cdk/sql/_util/name_normalizers.py,sha256=z5oJjyAIc3RJ3L6M823SiBo2G3wpO9vXnOKbMLmoN5w,2874
|
291
291
|
airbyte_cdk/sql/constants.py,sha256=ujNp1Dz8jBwEUV8rpd7Q5lItzqWGeSvMK7UWKtgclEU,1331
|
292
|
-
airbyte_cdk/sql/exceptions.py,sha256=
|
293
|
-
airbyte_cdk/sql/secrets.py,sha256
|
292
|
+
airbyte_cdk/sql/exceptions.py,sha256=7_-K2c_trPy6kM89I2pwsrnVEtXqOspd9Eqrzf2KD2A,7746
|
293
|
+
airbyte_cdk/sql/secrets.py,sha256=6Mo60XyEhCa3HurXPm6idOqWNXXFGTxoCitjfNKJ08Y,4344
|
294
294
|
airbyte_cdk/sql/shared/__init__.py,sha256=-BU9zpzwx7JxSlS7EmFuGmdB9jK_QhhEJUe5dxErrDw,334
|
295
|
-
airbyte_cdk/sql/shared/catalog_providers.py,sha256=
|
296
|
-
airbyte_cdk/sql/shared/sql_processor.py,sha256=
|
295
|
+
airbyte_cdk/sql/shared/catalog_providers.py,sha256=qiahORhtN6qBUGHhSKmzE00uC4i6W8unyBKCj7Kw47s,5218
|
296
|
+
airbyte_cdk/sql/shared/sql_processor.py,sha256=UWMMP5q1ElEQHbxW5WpF7Z1JlpPUxjAbtevDYzw3Gc8,27705
|
297
297
|
airbyte_cdk/sql/types.py,sha256=XEIhRAo_ASd0kVLBkdLf5bHiRhNple-IJrC9TibcDdY,5880
|
298
298
|
airbyte_cdk/test/__init__.py,sha256=f_XdkOg4_63QT2k3BbKY34209lppwgw-svzfZstQEq4,199
|
299
|
-
airbyte_cdk/test/catalog_builder.py,sha256
|
300
|
-
airbyte_cdk/test/entrypoint_wrapper.py,sha256
|
299
|
+
airbyte_cdk/test/catalog_builder.py,sha256=-y05Cz1x0Dlk6oE9LSKhCozssV2gYBNtMdV5YYOPOtk,3015
|
300
|
+
airbyte_cdk/test/entrypoint_wrapper.py,sha256=mRivUeptmR_8WKhsTP9_iddCJtak6oTXaKTJm2hjSEM,9819
|
301
301
|
airbyte_cdk/test/mock_http/__init__.py,sha256=uil6k-0NbUyDFZXtWw88HaS7r13i43VzA9H7hOHzZx8,322
|
302
302
|
airbyte_cdk/test/mock_http/matcher.py,sha256=4Qj8UnJKZIs-eodshryce3SN1Ayc8GZpBETmP6hTEyc,1446
|
303
|
-
airbyte_cdk/test/mock_http/mocker.py,sha256=
|
304
|
-
airbyte_cdk/test/mock_http/request.py,sha256=
|
305
|
-
airbyte_cdk/test/mock_http/response.py,sha256=
|
306
|
-
airbyte_cdk/test/mock_http/response_builder.py,sha256=
|
307
|
-
airbyte_cdk/test/state_builder.py,sha256=
|
303
|
+
airbyte_cdk/test/mock_http/mocker.py,sha256=cyQcuFFLnK_Eyk3fuibbidRvnrAbZt1aLxam7mOioxc,7256
|
304
|
+
airbyte_cdk/test/mock_http/request.py,sha256=tdB8cqk2vLgCDTOKffBKsM06llYs4ZecgtH6DKyx6yY,4112
|
305
|
+
airbyte_cdk/test/mock_http/response.py,sha256=U9KEsUkK2dPXYwnfwrwp6CcYSSpMYKLjfTrPFKSMCaM,602
|
306
|
+
airbyte_cdk/test/mock_http/response_builder.py,sha256=bmC88X3NL_1pOF45MqKsf3v7l7nYSH7fCjJZIfALyFc,8018
|
307
|
+
airbyte_cdk/test/state_builder.py,sha256=kLPql9lNzUJaBg5YYRLJlY_Hy5JLHJDVyKPMZMoYM44,946
|
308
308
|
airbyte_cdk/test/utils/__init__.py,sha256=Hu-1XT2KDoYjDF7-_ziDwv5bY3PueGjANOCbzeOegDg,57
|
309
|
-
airbyte_cdk/test/utils/data.py,sha256=
|
310
|
-
airbyte_cdk/test/utils/http_mocking.py,sha256=
|
309
|
+
airbyte_cdk/test/utils/data.py,sha256=CkCR1_-rujWNmPXFR1IXTMwx1rAl06wAyIKWpDcN02w,820
|
310
|
+
airbyte_cdk/test/utils/http_mocking.py,sha256=F2hpm2q4ijojQN5u2XtgTAp8aNgHgJ64eZNkZ9BW0ig,550
|
311
311
|
airbyte_cdk/test/utils/reading.py,sha256=SOTDYlps6Te9KumfTJ3vVDSm9EUXhvKtE8aD7gvdPlg,965
|
312
312
|
airbyte_cdk/utils/__init__.py,sha256=gHjOCoUkolS_nKtgFSudXUY-ObK2vUo6aNQLvW7o8q8,347
|
313
|
-
airbyte_cdk/utils/airbyte_secrets_utils.py,sha256=
|
314
|
-
airbyte_cdk/utils/analytics_message.py,sha256=
|
313
|
+
airbyte_cdk/utils/airbyte_secrets_utils.py,sha256=cTmhi_SJc1c7KDymcvrQSGTK64KFKio8u7gOfOsbOA4,3075
|
314
|
+
airbyte_cdk/utils/analytics_message.py,sha256=bi3uugQ2NjecnwTnz63iD5D1M8ZR8mXPbdtt6w5cC4s,653
|
315
315
|
airbyte_cdk/utils/constants.py,sha256=QzCi7j5SqpI5I06uRvQ8FC73JVJi7rXaRnR3E_gro5c,108
|
316
|
-
airbyte_cdk/utils/datetime_format_inferrer.py,sha256=
|
316
|
+
airbyte_cdk/utils/datetime_format_inferrer.py,sha256=Ne2cpk7Tx3eZDEW2Q3O7jnNOY9g-w-AUMt3Ltvwg1tY,3989
|
317
317
|
airbyte_cdk/utils/event_timing.py,sha256=Hn5kCc9xGKLcV5EYpJCZwNiz9neKKu2WG8FJF_hy278,2377
|
318
318
|
airbyte_cdk/utils/is_cloud_environment.py,sha256=DayV32Irh-SdnJ0MnjvstwCJ66_l5oEsd8l85rZtHoc,574
|
319
|
-
airbyte_cdk/utils/mapping_helpers.py,sha256=
|
320
|
-
airbyte_cdk/utils/message_utils.py,sha256=
|
319
|
+
airbyte_cdk/utils/mapping_helpers.py,sha256=H7BH-Yr8hSRG4W0zZcQ0ZzKOY5QFn8fNkGcEsE3xZN8,1736
|
320
|
+
airbyte_cdk/utils/message_utils.py,sha256=wSkwgZ-TWA0ll8sbNPp5coqHCmLJp0veDcGd7_t4lLY,1263
|
321
321
|
airbyte_cdk/utils/oneof_option_config.py,sha256=N8EmWdYdwt0FM7fuShh6H8nj_r4KEL9tb2DJJtwsPow,1180
|
322
|
-
airbyte_cdk/utils/print_buffer.py,sha256=
|
323
|
-
airbyte_cdk/utils/schema_inferrer.py,sha256=
|
324
|
-
airbyte_cdk/utils/spec_schema_transformations.py,sha256=
|
322
|
+
airbyte_cdk/utils/print_buffer.py,sha256=PhMOi0C4Z91kWKrSvCQXcp8qRh1uCimpIdvrg6voZIA,2810
|
323
|
+
airbyte_cdk/utils/schema_inferrer.py,sha256=igYTpdi1uqzyj13h5EJli67g1hfwQK8K_jlNTGGeUMY,9860
|
324
|
+
airbyte_cdk/utils/spec_schema_transformations.py,sha256=LVc9KbtMeV_z99jWo0Ou8u4l6eBJ0BWNhxj4zrrGKRs,763
|
325
325
|
airbyte_cdk/utils/stream_status_utils.py,sha256=ZmBoiy5HVbUEHAMrUONxZvxnvfV9CesmQJLDTAIWnWw,1171
|
326
|
-
airbyte_cdk/utils/traced_exception.py,sha256=
|
327
|
-
airbyte_cdk-6.5.
|
328
|
-
airbyte_cdk-6.5.
|
329
|
-
airbyte_cdk-6.5.
|
330
|
-
airbyte_cdk-6.5.
|
326
|
+
airbyte_cdk/utils/traced_exception.py,sha256=89TQdFuYZ1NJgmFpqLzY_T_T_64TpJYmVqs119Bp43g,6164
|
327
|
+
airbyte_cdk-6.5.5.dist-info/LICENSE.txt,sha256=Wfe61S4BaGPj404v8lrAbvhjYR68SHlkzeYrg3_bbuM,1051
|
328
|
+
airbyte_cdk-6.5.5.dist-info/METADATA,sha256=s9VsiPALvoHF16-wZxXXAE8wG-uiv_FsYI20BZrsbT0,13347
|
329
|
+
airbyte_cdk-6.5.5.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
330
|
+
airbyte_cdk-6.5.5.dist-info/RECORD,,
|