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.
Files changed (198) hide show
  1. airbyte_cdk/__init__.py +17 -2
  2. airbyte_cdk/config_observation.py +10 -3
  3. airbyte_cdk/connector.py +19 -9
  4. airbyte_cdk/connector_builder/connector_builder_handler.py +28 -8
  5. airbyte_cdk/connector_builder/main.py +26 -6
  6. airbyte_cdk/connector_builder/message_grouper.py +95 -25
  7. airbyte_cdk/destinations/destination.py +47 -14
  8. airbyte_cdk/destinations/vector_db_based/config.py +36 -14
  9. airbyte_cdk/destinations/vector_db_based/document_processor.py +49 -11
  10. airbyte_cdk/destinations/vector_db_based/embedder.py +52 -11
  11. airbyte_cdk/destinations/vector_db_based/test_utils.py +14 -4
  12. airbyte_cdk/destinations/vector_db_based/utils.py +8 -2
  13. airbyte_cdk/destinations/vector_db_based/writer.py +15 -4
  14. airbyte_cdk/entrypoint.py +82 -26
  15. airbyte_cdk/exception_handler.py +13 -3
  16. airbyte_cdk/logger.py +10 -2
  17. airbyte_cdk/models/airbyte_protocol.py +11 -5
  18. airbyte_cdk/models/airbyte_protocol_serializers.py +9 -3
  19. airbyte_cdk/models/well_known_types.py +1 -1
  20. airbyte_cdk/sources/abstract_source.py +63 -17
  21. airbyte_cdk/sources/concurrent_source/concurrent_read_processor.py +47 -14
  22. airbyte_cdk/sources/concurrent_source/concurrent_source.py +25 -7
  23. airbyte_cdk/sources/concurrent_source/concurrent_source_adapter.py +27 -6
  24. airbyte_cdk/sources/concurrent_source/thread_pool_manager.py +9 -3
  25. airbyte_cdk/sources/connector_state_manager.py +32 -10
  26. airbyte_cdk/sources/declarative/async_job/job.py +3 -1
  27. airbyte_cdk/sources/declarative/async_job/job_orchestrator.py +68 -14
  28. airbyte_cdk/sources/declarative/async_job/job_tracker.py +24 -6
  29. airbyte_cdk/sources/declarative/async_job/repository.py +3 -1
  30. airbyte_cdk/sources/declarative/auth/declarative_authenticator.py +3 -1
  31. airbyte_cdk/sources/declarative/auth/jwt.py +27 -7
  32. airbyte_cdk/sources/declarative/auth/oauth.py +35 -11
  33. airbyte_cdk/sources/declarative/auth/selective_authenticator.py +3 -1
  34. airbyte_cdk/sources/declarative/auth/token.py +25 -8
  35. airbyte_cdk/sources/declarative/checks/check_stream.py +12 -4
  36. airbyte_cdk/sources/declarative/checks/connection_checker.py +3 -1
  37. airbyte_cdk/sources/declarative/concurrency_level/concurrency_level.py +11 -3
  38. airbyte_cdk/sources/declarative/concurrent_declarative_source.py +106 -50
  39. airbyte_cdk/sources/declarative/datetime/min_max_datetime.py +20 -6
  40. airbyte_cdk/sources/declarative/declarative_source.py +3 -1
  41. airbyte_cdk/sources/declarative/declarative_stream.py +27 -6
  42. airbyte_cdk/sources/declarative/decoders/decoder.py +3 -1
  43. airbyte_cdk/sources/declarative/decoders/json_decoder.py +3 -1
  44. airbyte_cdk/sources/declarative/decoders/pagination_decoder_decorator.py +3 -1
  45. airbyte_cdk/sources/declarative/decoders/xml_decoder.py +6 -2
  46. airbyte_cdk/sources/declarative/extractors/dpath_extractor.py +6 -2
  47. airbyte_cdk/sources/declarative/extractors/record_filter.py +24 -7
  48. airbyte_cdk/sources/declarative/extractors/record_selector.py +10 -3
  49. airbyte_cdk/sources/declarative/extractors/response_to_file_extractor.py +15 -5
  50. airbyte_cdk/sources/declarative/incremental/datetime_based_cursor.py +96 -31
  51. airbyte_cdk/sources/declarative/incremental/global_substream_cursor.py +22 -8
  52. airbyte_cdk/sources/declarative/incremental/per_partition_cursor.py +46 -15
  53. airbyte_cdk/sources/declarative/incremental/per_partition_with_global.py +19 -5
  54. airbyte_cdk/sources/declarative/incremental/resumable_full_refresh_cursor.py +3 -1
  55. airbyte_cdk/sources/declarative/interpolation/interpolated_boolean.py +20 -2
  56. airbyte_cdk/sources/declarative/interpolation/interpolated_mapping.py +5 -1
  57. airbyte_cdk/sources/declarative/interpolation/interpolated_nested_mapping.py +10 -3
  58. airbyte_cdk/sources/declarative/interpolation/interpolated_string.py +6 -2
  59. airbyte_cdk/sources/declarative/interpolation/interpolation.py +7 -1
  60. airbyte_cdk/sources/declarative/interpolation/jinja.py +6 -2
  61. airbyte_cdk/sources/declarative/interpolation/macros.py +19 -4
  62. airbyte_cdk/sources/declarative/manifest_declarative_source.py +106 -24
  63. airbyte_cdk/sources/declarative/migrations/legacy_to_per_partition_state_migration.py +7 -2
  64. airbyte_cdk/sources/declarative/models/declarative_component_schema.py +656 -678
  65. airbyte_cdk/sources/declarative/parsers/manifest_component_transformer.py +13 -4
  66. airbyte_cdk/sources/declarative/parsers/manifest_reference_resolver.py +9 -2
  67. airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py +782 -232
  68. airbyte_cdk/sources/declarative/partition_routers/cartesian_product_stream_slicer.py +29 -7
  69. airbyte_cdk/sources/declarative/partition_routers/list_partition_router.py +25 -7
  70. airbyte_cdk/sources/declarative/partition_routers/substream_partition_router.py +54 -15
  71. airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/constant_backoff_strategy.py +6 -2
  72. airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/header_helper.py +3 -1
  73. airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/wait_time_from_header_backoff_strategy.py +17 -5
  74. airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/wait_until_time_from_header_backoff_strategy.py +15 -5
  75. airbyte_cdk/sources/declarative/requesters/error_handlers/composite_error_handler.py +3 -1
  76. airbyte_cdk/sources/declarative/requesters/error_handlers/default_error_handler.py +18 -8
  77. airbyte_cdk/sources/declarative/requesters/error_handlers/default_http_response_filter.py +16 -7
  78. airbyte_cdk/sources/declarative/requesters/error_handlers/http_response_filter.py +51 -14
  79. airbyte_cdk/sources/declarative/requesters/http_job_repository.py +29 -8
  80. airbyte_cdk/sources/declarative/requesters/http_requester.py +58 -16
  81. airbyte_cdk/sources/declarative/requesters/paginators/default_paginator.py +49 -14
  82. airbyte_cdk/sources/declarative/requesters/paginators/no_pagination.py +3 -1
  83. airbyte_cdk/sources/declarative/requesters/paginators/paginator.py +3 -1
  84. airbyte_cdk/sources/declarative/requesters/paginators/strategies/cursor_pagination_strategy.py +17 -5
  85. airbyte_cdk/sources/declarative/requesters/paginators/strategies/offset_increment.py +24 -7
  86. airbyte_cdk/sources/declarative/requesters/paginators/strategies/page_increment.py +9 -3
  87. airbyte_cdk/sources/declarative/requesters/paginators/strategies/pagination_strategy.py +3 -1
  88. airbyte_cdk/sources/declarative/requesters/paginators/strategies/stop_condition.py +6 -2
  89. airbyte_cdk/sources/declarative/requesters/request_options/datetime_based_request_options_provider.py +19 -6
  90. airbyte_cdk/sources/declarative/requesters/request_options/default_request_options_provider.py +3 -1
  91. airbyte_cdk/sources/declarative/requesters/request_options/interpolated_nested_request_input_provider.py +21 -7
  92. airbyte_cdk/sources/declarative/requesters/request_options/interpolated_request_input_provider.py +18 -6
  93. airbyte_cdk/sources/declarative/requesters/request_options/interpolated_request_options_provider.py +27 -8
  94. airbyte_cdk/sources/declarative/requesters/requester.py +3 -1
  95. airbyte_cdk/sources/declarative/retrievers/async_retriever.py +12 -5
  96. airbyte_cdk/sources/declarative/retrievers/simple_retriever.py +105 -24
  97. airbyte_cdk/sources/declarative/schema/default_schema_loader.py +3 -1
  98. airbyte_cdk/sources/declarative/spec/spec.py +8 -2
  99. airbyte_cdk/sources/declarative/stream_slicers/stream_slicer.py +3 -1
  100. airbyte_cdk/sources/declarative/transformations/add_fields.py +12 -3
  101. airbyte_cdk/sources/declarative/transformations/remove_fields.py +6 -2
  102. airbyte_cdk/sources/declarative/types.py +8 -1
  103. airbyte_cdk/sources/declarative/yaml_declarative_source.py +3 -1
  104. airbyte_cdk/sources/embedded/base_integration.py +14 -4
  105. airbyte_cdk/sources/embedded/catalog.py +16 -4
  106. airbyte_cdk/sources/embedded/runner.py +19 -3
  107. airbyte_cdk/sources/embedded/tools.py +3 -1
  108. airbyte_cdk/sources/file_based/availability_strategy/abstract_file_based_availability_strategy.py +12 -4
  109. airbyte_cdk/sources/file_based/availability_strategy/default_file_based_availability_strategy.py +27 -7
  110. airbyte_cdk/sources/file_based/config/abstract_file_based_spec.py +12 -6
  111. airbyte_cdk/sources/file_based/config/csv_format.py +21 -9
  112. airbyte_cdk/sources/file_based/config/file_based_stream_config.py +6 -2
  113. airbyte_cdk/sources/file_based/config/unstructured_format.py +10 -3
  114. airbyte_cdk/sources/file_based/discovery_policy/abstract_discovery_policy.py +2 -4
  115. airbyte_cdk/sources/file_based/discovery_policy/default_discovery_policy.py +7 -2
  116. airbyte_cdk/sources/file_based/exceptions.py +13 -15
  117. airbyte_cdk/sources/file_based/file_based_source.py +82 -24
  118. airbyte_cdk/sources/file_based/file_based_stream_reader.py +16 -5
  119. airbyte_cdk/sources/file_based/file_types/avro_parser.py +58 -17
  120. airbyte_cdk/sources/file_based/file_types/csv_parser.py +89 -26
  121. airbyte_cdk/sources/file_based/file_types/excel_parser.py +25 -7
  122. airbyte_cdk/sources/file_based/file_types/file_transfer.py +8 -2
  123. airbyte_cdk/sources/file_based/file_types/file_type_parser.py +4 -1
  124. airbyte_cdk/sources/file_based/file_types/jsonl_parser.py +20 -6
  125. airbyte_cdk/sources/file_based/file_types/parquet_parser.py +57 -16
  126. airbyte_cdk/sources/file_based/file_types/unstructured_parser.py +64 -15
  127. airbyte_cdk/sources/file_based/schema_helpers.py +33 -10
  128. airbyte_cdk/sources/file_based/schema_validation_policies/abstract_schema_validation_policy.py +3 -1
  129. airbyte_cdk/sources/file_based/schema_validation_policies/default_schema_validation_policies.py +16 -5
  130. airbyte_cdk/sources/file_based/stream/abstract_file_based_stream.py +33 -10
  131. airbyte_cdk/sources/file_based/stream/concurrent/adapters.py +47 -11
  132. airbyte_cdk/sources/file_based/stream/concurrent/cursor/abstract_concurrent_file_based_cursor.py +13 -22
  133. airbyte_cdk/sources/file_based/stream/concurrent/cursor/file_based_concurrent_cursor.py +53 -17
  134. airbyte_cdk/sources/file_based/stream/concurrent/cursor/file_based_final_state_cursor.py +17 -5
  135. airbyte_cdk/sources/file_based/stream/cursor/abstract_file_based_cursor.py +3 -1
  136. airbyte_cdk/sources/file_based/stream/cursor/default_file_based_cursor.py +26 -9
  137. airbyte_cdk/sources/file_based/stream/default_file_based_stream.py +67 -21
  138. airbyte_cdk/sources/http_logger.py +5 -1
  139. airbyte_cdk/sources/message/repository.py +18 -4
  140. airbyte_cdk/sources/source.py +17 -7
  141. airbyte_cdk/sources/streams/availability_strategy.py +9 -3
  142. airbyte_cdk/sources/streams/call_rate.py +63 -19
  143. airbyte_cdk/sources/streams/checkpoint/checkpoint_reader.py +31 -7
  144. airbyte_cdk/sources/streams/checkpoint/substream_resumable_full_refresh_cursor.py +6 -2
  145. airbyte_cdk/sources/streams/concurrent/adapters.py +77 -22
  146. airbyte_cdk/sources/streams/concurrent/cursor.py +56 -20
  147. airbyte_cdk/sources/streams/concurrent/default_stream.py +9 -2
  148. airbyte_cdk/sources/streams/concurrent/helpers.py +6 -2
  149. airbyte_cdk/sources/streams/concurrent/partition_enqueuer.py +9 -2
  150. airbyte_cdk/sources/streams/concurrent/partition_reader.py +4 -1
  151. airbyte_cdk/sources/streams/concurrent/partitions/record.py +10 -2
  152. airbyte_cdk/sources/streams/concurrent/partitions/types.py +6 -2
  153. airbyte_cdk/sources/streams/concurrent/state_converters/abstract_stream_state_converter.py +25 -10
  154. airbyte_cdk/sources/streams/concurrent/state_converters/datetime_stream_state_converter.py +32 -16
  155. airbyte_cdk/sources/streams/core.py +77 -22
  156. airbyte_cdk/sources/streams/http/availability_strategy.py +3 -1
  157. airbyte_cdk/sources/streams/http/error_handlers/default_error_mapping.py +4 -1
  158. airbyte_cdk/sources/streams/http/error_handlers/error_handler.py +3 -1
  159. airbyte_cdk/sources/streams/http/error_handlers/http_status_error_handler.py +16 -5
  160. airbyte_cdk/sources/streams/http/error_handlers/response_models.py +9 -3
  161. airbyte_cdk/sources/streams/http/exceptions.py +2 -2
  162. airbyte_cdk/sources/streams/http/http.py +133 -33
  163. airbyte_cdk/sources/streams/http/http_client.py +91 -29
  164. airbyte_cdk/sources/streams/http/rate_limiting.py +23 -7
  165. airbyte_cdk/sources/streams/http/requests_native_auth/abstract_oauth.py +19 -6
  166. airbyte_cdk/sources/streams/http/requests_native_auth/oauth.py +38 -11
  167. airbyte_cdk/sources/streams/http/requests_native_auth/token.py +13 -3
  168. airbyte_cdk/sources/types.py +5 -1
  169. airbyte_cdk/sources/utils/record_helper.py +12 -3
  170. airbyte_cdk/sources/utils/schema_helpers.py +9 -3
  171. airbyte_cdk/sources/utils/slice_logger.py +4 -1
  172. airbyte_cdk/sources/utils/transform.py +24 -9
  173. airbyte_cdk/sql/exceptions.py +19 -6
  174. airbyte_cdk/sql/secrets.py +3 -1
  175. airbyte_cdk/sql/shared/catalog_providers.py +13 -4
  176. airbyte_cdk/sql/shared/sql_processor.py +44 -14
  177. airbyte_cdk/test/catalog_builder.py +19 -8
  178. airbyte_cdk/test/entrypoint_wrapper.py +27 -8
  179. airbyte_cdk/test/mock_http/mocker.py +41 -11
  180. airbyte_cdk/test/mock_http/request.py +9 -3
  181. airbyte_cdk/test/mock_http/response.py +3 -1
  182. airbyte_cdk/test/mock_http/response_builder.py +29 -7
  183. airbyte_cdk/test/state_builder.py +10 -2
  184. airbyte_cdk/test/utils/data.py +6 -2
  185. airbyte_cdk/test/utils/http_mocking.py +3 -1
  186. airbyte_cdk/utils/airbyte_secrets_utils.py +3 -1
  187. airbyte_cdk/utils/analytics_message.py +10 -2
  188. airbyte_cdk/utils/datetime_format_inferrer.py +4 -1
  189. airbyte_cdk/utils/mapping_helpers.py +3 -1
  190. airbyte_cdk/utils/message_utils.py +11 -4
  191. airbyte_cdk/utils/print_buffer.py +6 -1
  192. airbyte_cdk/utils/schema_inferrer.py +30 -9
  193. airbyte_cdk/utils/spec_schema_transformations.py +3 -1
  194. airbyte_cdk/utils/traced_exception.py +35 -9
  195. {airbyte_cdk-6.5.3rc2.dist-info → airbyte_cdk-6.5.5.dist-info}/METADATA +7 -6
  196. {airbyte_cdk-6.5.3rc2.dist-info → airbyte_cdk-6.5.5.dist-info}/RECORD +198 -198
  197. {airbyte_cdk-6.5.3rc2.dist-info → airbyte_cdk-6.5.5.dist-info}/LICENSE.txt +0 -0
  198. {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=wMr8oLCSWIxyMCggUkIgjQTCz7EvawipqoVLZUOncNY,11173
2
- airbyte_cdk/config_observation.py,sha256=8plsOjDZA5L-E0UxO8zDGiloTnNRxyQY9_wKV3RGpqs,3951
3
- airbyte_cdk/connector.py,sha256=dMDTjfIuic08R3wiC18mSUlwlhOla9VuDT2C84ckbp8,4106
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=ckWsGUHmFsAIcLwo9lNzvV7mW_xT_sGwL8RqfJT7oWA,4073
7
- airbyte_cdk/connector_builder/main.py,sha256=jh9f0ldjkb7UeMAewB9hWGOCCLU1qvtxk4HCWKyR9Xs,3586
8
- airbyte_cdk/connector_builder/message_grouper.py,sha256=SkzgKI5voYBwDpPkcUHDueVzYXOwK5yMMvN6UTX_yCA,18761
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=zcPXo1QS7UHcwfyItnc68HLzgBei2DEq92KUnWb3Izg,5540
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=osL8SxM_2ALFMUSk11HGyhlubrapM9lKZo9lTB-D8mY,12317
15
- airbyte_cdk/destinations/vector_db_based/document_processor.py,sha256=351t9RSXw2Jze1if2JxSFFoB9kH5TlY-ABWh-3eLglI,9066
16
- airbyte_cdk/destinations/vector_db_based/embedder.py,sha256=HxQCPwRpALmo5MvEhTuXdjinoBzlbNVvVunRw3EVgaE,11443
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=8d1Smk4jQRKtDfloXfEq12T-BU8ByyzzSBwAlchsU4A,1807
19
- airbyte_cdk/destinations/vector_db_based/utils.py,sha256=dKpjY0QQVr5wMe6XHE_XdeL-nNqAew5InCfxkbyyf5A,1073
20
- airbyte_cdk/destinations/vector_db_based/writer.py,sha256=2EOkNcOe9pKGz7DgC6iSHjWoxbYF0IZ7PcpsQYIOgUk,4394
21
- airbyte_cdk/entrypoint.py,sha256=GUCCWjynztjwdEuDhdAjAcoZ7pCIOQTcJokOcYGHfMM,16708
22
- airbyte_cdk/exception_handler.py,sha256=KS_vMH1z-JHMrAyAh1J0nnPc4eQbnyDcs-2kVpY15JY,1930
23
- airbyte_cdk/logger.py,sha256=TRkYuMVzckAs3PL3mb4uS0TG3fUgkUe_HwpJ0Usdw1c,3702
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=EBzEtGR50kTZNeMH64Pi_DBapKBnR0hYlPPYKmZKofU,3604
26
- airbyte_cdk/models/airbyte_protocol_serializers.py,sha256=9zDw4LQZBhXAZNeOf501dLeEOYcbqBK2CH9mOQCi6w4,1731
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=zki5Je6ze0oMIrfS09h21CuaEV1tKtG-9ps2n21Hxqs,129
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=CawQN8TrGz0scZE2q9J0qLIuGkewLT3fRYb4h82Hpps,14940
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=z-Ny2GO84wEnJ6ip8SFesmlDSNdf8HW-3WLOlZE8XOA,12254
34
- airbyte_cdk/sources/concurrent_source/concurrent_source.py,sha256=GbKh0Yzya_5J_BvaJeuoee6g_Hf_LBYCcoYAJEDQlRg,7593
35
- airbyte_cdk/sources/concurrent_source/concurrent_source_adapter.py,sha256=tXDUWGkUIG58zAP_zHH5nF3mLsReq9mQfsCUuzTVsZE,5918
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=LFjGc30IWrSz-_NOgh1ELJrYLWMA_JQ3ZTYUHUOI9x0,5076
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=KN2sXFgJsX6UNBHJAzbhv12HDR-XkuzbfEFjGXuDx9w,7027
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=YhDvIgJ67VkqNbWJ37NOwfInf0bluf_iYXl_cRh2Yj0,1688
44
- airbyte_cdk/sources/declarative/async_job/job_orchestrator.py,sha256=OWvaBowhcQpzGWSBAzIhL8ahQZ0NHbirf4ThSj3lMyk,20420
45
- airbyte_cdk/sources/declarative/async_job/job_tracker.py,sha256=webPXL9HhoCwLJmRAH57mQflPeXvH05s_yKwMMJm5FY,2071
46
- airbyte_cdk/sources/declarative/async_job/repository.py,sha256=dufmXqSPe1K5jU9P6XhT2wZub1K5tFTON9fCw8wHEM4,1022
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=kICp2L-M14BuvqQSPLD4i-j_yNzpIfu2uBc-Ix0-4cU,1090
51
- airbyte_cdk/sources/declarative/auth/jwt.py,sha256=TRfDbenlbLH9dOVKmCjiv0ysOZe6ufrR_VZxtRSVWJc,8007
52
- airbyte_cdk/sources/declarative/auth/oauth.py,sha256=V4wXjct6V_p3xrDXg25_YTYy3YcVam6RqEUwBx6LUEc,8272
53
- airbyte_cdk/sources/declarative/auth/selective_authenticator.py,sha256=CcKWV8ZGFyPloKl60OQT48aXl3CPiKHoEDUIg-PTIBs,1342
54
- airbyte_cdk/sources/declarative/auth/token.py,sha256=3Mh2e8GOIDmGtwCX11Z4Z9zE1gs_16vtwIUBXdg4Frc,11032
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=8qGySG7IFEtd2z8FgJ2dnJpSZKt-UeJ1Scb8-MCGDAE,2011
58
- airbyte_cdk/sources/declarative/checks/connection_checker.py,sha256=YGfYm_pS2ST1LKznRuiFfqcQZq5h0m6UiJMTUnTsvHk,1369
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=xSVPiD0b7v70Kbpo8_LUg_vpZe4T4fW0_SusTMTvOkA,1977
61
- airbyte_cdk/sources/declarative/concurrent_declarative_source.py,sha256=UKjcXsFdDOxx8oeFku_dm-CdR_b8PWdXDWDSOSgo3A0,18605
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=QIJJ-e5TLsI0RA69AZbqG7quHDe2bz788YXrGubwte0,5187
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=INBP5rNYWlptafM_EygjlLQMHYOM2pUN-Pxkzq6pP80,1517
67
- airbyte_cdk/sources/declarative/declarative_stream.py,sha256=9PW5SymEMsGHu2qa2Xs__kwPYSt4tF_EetxXZDhMdKA,10204
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=rYHYfK8di0YyDNZtRNqDg-n-nl9BJnc-isNCbyRRlrk,812
70
- airbyte_cdk/sources/declarative/decoders/json_decoder.py,sha256=-HdAIiAoWo-js1KDxzNaWsI_Y87fsjWlkxTKcr9pHTU,2278
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=MuHWVkwtVo-BDaS2plAsbzXAf-OfYFDXXXHuh14Y--g,1066
73
- airbyte_cdk/sources/declarative/decoders/xml_decoder.py,sha256=rMeWy3Hzyfv3kExmhlVxxKtE0-HLbtY9aQW18ZiEIfI,3072
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=HHszYXHDI0ECcjd9AKo6jgSBnI6Nle2Ofk0ujEHJwdU,3070
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=KNNEu9AW_wcN0DmGub-MqrRPO62g5ZiNA4y3Fujx2nI,5110
80
- airbyte_cdk/sources/declarative/extractors/record_selector.py,sha256=kz_B_fgoicFohIio6UpPHwUHG9uK0g_ANOSufOF_uyk,5610
81
- airbyte_cdk/sources/declarative/extractors/response_to_file_extractor.py,sha256=DtT7saQWipF6p3XmN-wh1rzy0un0nEwJwoQubdvdtf4,6272
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=Hc_ETkUqV2jk9ZRObtiZXi6AntqZJLgAb1RaE6MLOh8,21369
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=1If3Q8hjtz_10S3yqFjJjlwpbJDb_nJWiFWf9IlC-xw,15590
86
- airbyte_cdk/sources/declarative/incremental/per_partition_cursor.py,sha256=chWJ4rkVRjeAesdjBRgosGqEOqyJUH19W9A0bLa7sVU,15211
87
- airbyte_cdk/sources/declarative/incremental/per_partition_with_global.py,sha256=P52D8441A8Ji7-MeInjLkiO4GMzv6VM-mO_sLoI8MAY,8332
88
- airbyte_cdk/sources/declarative/incremental/resumable_full_refresh_cursor.py,sha256=tYEhcR5WiLMOAS9MH6XspBsYMLwodc8dyWtwAPFCbaY,4779
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=mu2IG6VRcCIZPYEwJfBgythPfIwRBc8Ywzf7Kdusfqs,1844
92
- airbyte_cdk/sources/declarative/interpolation/interpolated_mapping.py,sha256=VFUZJ_LETYuVlvNx1oO-Bmei8DNJVdsacZskTBR7ZD8,2018
93
- airbyte_cdk/sources/declarative/interpolation/interpolated_nested_mapping.py,sha256=FWAOVj5Vu1HNqLOXCjCwfTFyfbHeyepkTUSjXcoWMvE,1791
94
- airbyte_cdk/sources/declarative/interpolation/interpolated_string.py,sha256=bLYkpy23QENM7yU0U8INAEusb_QI5os63Tml7uI0dNU,3160
95
- airbyte_cdk/sources/declarative/interpolation/interpolation.py,sha256=BwcrI9paqhPNzfTtvsD78t910oqBsIg5rcNhIOyqT3Y,934
96
- airbyte_cdk/sources/declarative/interpolation/jinja.py,sha256=e3ZaAELbYstt87xU4GPhKUYPsMhVwVimUZLpjgVRW88,6574
97
- airbyte_cdk/sources/declarative/interpolation/macros.py,sha256=E8VTwiuyO0cp1cQci8-hjVX3v6QfNbKdkNs5dGqG45g,3969
98
- airbyte_cdk/sources/declarative/manifest_declarative_source.py,sha256=ENbpdrCfzRuk3FAK1jP0jpI878PPcATQjP7gwRAsuMQ,10737
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=bFiYDfPAAFbZDhBUqw8ynB9jwQ_WW1yJqEYtEXu9BhM,3729
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=S8LMenPrXV7sS7knf6G-ItPOTa9ioD-nRoOymjTYOTE,75379
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=i2yUdrdlPUHI0dSQX0zBT8WSg912SMiCF8qkQ8VvlA4,8287
107
- airbyte_cdk/sources/declarative/parsers/manifest_reference_resolver.py,sha256=LrJ5qUL1c1v3qP61zf0Uj8sKXPKi860TI0lWsBoL5YI,6728
108
- airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py,sha256=azdtsEXsdSBhm5sHmBqLKpAkbGvPeYtFVVw39evmBZg,88526
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=RHSwZIzrizQnwzLcaAPVmLq33x_WmTdTsLPyfFoXmJ4,6459
111
- airbyte_cdk/sources/declarative/partition_routers/list_partition_router.py,sha256=GcunY_8f4_f5QQvGegbtGqV86qDxjQJghyRSr2al97I,4651
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=gsFivtjrDnxFQFkbtCss9BGW8gUPK2OIqSaCvjO1Pmc,14415
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=H58hXQB4X1a_0VjgLfyccbkUewJHb8AukI68l4nU0l4,1637
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=Xn-96bonvA09D0FFqwQuR-utkdmiPyvnW1h52ef4MD8,1156
121
- airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/wait_time_from_header_backoff_strategy.py,sha256=vPgW34cBq2Bmax9GahElzTGAu6g132SVN3rAR4Zbq5o,2818
122
- airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/wait_until_time_from_header_backoff_strategy.py,sha256=YNq8wT2JZVR0HWqcSida2pcnAvITtwFuaozYldtmp9Y,2987
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=3x_T8sLO7wzoqWeSVS8mQCE7GNZ8B6r9ALULFblPlMg,2730
125
- airbyte_cdk/sources/declarative/requesters/error_handlers/default_error_handler.py,sha256=q3hRLySFnc_fR1-Hdiw0l-rOV3nR-WDxazkazgaHzps,5066
126
- airbyte_cdk/sources/declarative/requesters/error_handlers/default_http_response_filter.py,sha256=2QFk205ONazU2KZGDRShgusnAQidz-emiXpPEBEB7Ec,1246
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=P5Ounzpsdu_GU4SJJLg4pVGcyQWY5fQX69lLcfSG-DE,7453
129
- airbyte_cdk/sources/declarative/requesters/http_job_repository.py,sha256=mgSuLGmxawY1aJc4_VRZXMpm0Y8R8XWWlSbselhccaQ,8401
130
- airbyte_cdk/sources/declarative/requesters/http_requester.py,sha256=xiDZaQgCZxzulsvoezQv4g5kOdhEjkGo7BdBtjU75oo,14120
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=qvEfPtGjixcO-3hiO2sa9ZIcOTX47LcdS6qRgi3V7_w,10529
133
- airbyte_cdk/sources/declarative/requesters/paginators/no_pagination.py,sha256=JyFT_UlE1VZm3vd-LZlTBs5l6wkDpVhuBRhGGc4fKb8,1912
134
- airbyte_cdk/sources/declarative/requesters/paginators/paginator.py,sha256=dvslR7jcy4IJaiRVIuf9gI029FsbY-J3X93dxuciGq8,1962
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=wO-3KMvq9i8a7O4uI9_9gt1iZcTPKsD_ipLM0yRj8yY,3569
137
- airbyte_cdk/sources/declarative/requesters/paginators/strategies/offset_increment.py,sha256=28F5cyLH9gxAijpFtHGnLzPMZ8PCH3xPJ2jvwDpY4gE,3218
138
- airbyte_cdk/sources/declarative/requesters/paginators/strategies/page_increment.py,sha256=xt_XschfGj2ZtEMmJf4mMGJIqajXJL-OTSUiC_pRot8,2437
139
- airbyte_cdk/sources/declarative/requesters/paginators/strategies/pagination_strategy.py,sha256=I6rC9l0Ob56xZQKSD6u0U1U2s-7Qtv4JUAe9trjPXn4,1275
140
- airbyte_cdk/sources/declarative/requesters/paginators/strategies/stop_condition.py,sha256=DWoDZcvCfHEB6xLPfRGrBt42u7sNcAEXq7i8U1TYyJY,1967
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=lm6PVSPapl8p3GE-DASsC21z3xQR-1ckWl_BbwUNWpg,3639
144
- airbyte_cdk/sources/declarative/requesters/request_options/default_request_options_provider.py,sha256=eGbdWpjqNYVTOjQsGNhvodsz0T9vu2yMHn1st60Rguo,1789
145
- airbyte_cdk/sources/declarative/requesters/request_options/interpolated_nested_request_input_provider.py,sha256=fQTwpIEniSGbtY3rIjQBAd2yya46LOm8CIhzbxQpWPg,2275
146
- airbyte_cdk/sources/declarative/requesters/request_options/interpolated_request_input_provider.py,sha256=Udo2OnQ0n9oYoJMl1kVfwrgDdkrjDuNRVkziWTdg_TM,2883
147
- airbyte_cdk/sources/declarative/requesters/request_options/interpolated_request_options_provider.py,sha256=jb2P4jl9_D5wK-t34gqQ4LPsNnfX30tHo-XQjo_y4p0,6788
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=KPkfULrJG9p2mUMj6z1M80IMw_3QcgBmHifv_TKfKXM,4936
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=bLog_Vp2zbPT8t0bHRVkzaLZmYjjIuCb0GwkkdahROM,4909
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=qjJtoP44ovtbrCAn0C72P68RRbcBhwtUhbei6khK8XU,22931
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=X1QzDcTyZN1NbGQbivwNX68VPX1HqCSfD3FkWLFloGA,1790
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=45U1Izi86hdNZhxaJRAEx_QHJ5ln9TmyomyLuOnxtto,1868
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=ocpHhiDKw9HTfNv_hHkptb63F7dK-_K8HJHpCTxzwIc,856
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=Rvo0nFq89j4c7vs_hue6EexvdlIuA5vErRidvbMX9Qw,4855
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=WxFEIHH8NW_3SrhrYQHfiP7UdGk_9rDjzgR8x_4usv8,2682
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=ctHQfHQRrhT0WShgAicFSKa7VOpBopEFM6eV_4InPng,749
170
- airbyte_cdk/sources/declarative/yaml_declarative_source.py,sha256=36gzhunWZ3Cl9CTtj5Hxnu_BQM7CSegQQFOL5t5fPGU,2380
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=tDOJf2t9r7nYDVen3cFbeQ7bu2fTXBgJRgE6UZtiPOU,2307
173
- airbyte_cdk/sources/embedded/catalog.py,sha256=mIM7rO5CZAUIHKbrKwn1-Zn9_e3sLiHrT9HIMRJowuI,1571
174
- airbyte_cdk/sources/embedded/runner.py,sha256=kZ0CcUANuMjdZ4fmvp_w9P2IcsS9WSHxNqYHqMwcfXI,1390
175
- airbyte_cdk/sources/embedded/tools.py,sha256=fKIXwhRgsOIq4mTWF_v9CJWdVfL7gH2OUIYniDaGQis,739
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=61xYe-Skrz39PkfUTPoDyizHW01LkHNXMEw5Xq29xBg,2137
180
- airbyte_cdk/sources/file_based/availability_strategy/default_file_based_availability_strategy.py,sha256=rebkyQCWMvUSG0c2WMIWBU9ob2iRoK_1R-p5dhk2tP4,5472
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=Q7wwlzR2ccAlVLOCir_b4r4AEqCtD-VogpLLrADXL34,6348
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=GYrEk4a6qb6_Id8qPiY3FUwjOnHWBBwTRIers5StCVY,7845
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=9_BcZhE1gkcG2fbxPIpnCTa4hz7-u14INHi3hMJaF40,4594
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=eP728mU97zMOuzKQVrD4Fasr8KSskxI_8eu2pS8VZj4,3504
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=0o_qmEO0-IojO4Ckgp4V3ackTM9Ui1sUHW5HwANueLM,621
192
- airbyte_cdk/sources/file_based/discovery_policy/default_discovery_policy.py,sha256=QeZghVmf2Cq4wy_6NYcHmR6SLgdWfsGgctYg2ZsjFE4,939
193
- airbyte_cdk/sources/file_based/exceptions.py,sha256=__ep8HwCVWyQZ7B4IWu-IoQd85dXLJT54woUFsE9Tpo,5770
194
- airbyte_cdk/sources/file_based/file_based_source.py,sha256=NOjlTD8ZcZkzHdOOfCTWp5VLjgi2B__uf8Kb5jXaXNE,15956
195
- airbyte_cdk/sources/file_based/file_based_stream_reader.py,sha256=wN70zJtxyzD_rJKlNbGktRAl5yFjvTqJoRmz3NTHTfk,6072
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=sjd-IK6eyGMh1y86KufKN7R9yDa8TNBYdY8OlWUocX8,9539
198
- airbyte_cdk/sources/file_based/file_types/csv_parser.py,sha256=AUQZnr4MXWl1S7kJJvcDsbvpx5AR2NUrBHPXZeRENuU,19732
199
- airbyte_cdk/sources/file_based/file_types/excel_parser.py,sha256=BouTnDhGZghHLhouTVEi3X9fEFVggfzEY0LL306xmQ0,6821
200
- airbyte_cdk/sources/file_based/file_types/file_transfer.py,sha256=IdRCqYU7_jcEJFHIlJwMlZ0En5NhnVnwas0-woxPzvk,1187
201
- airbyte_cdk/sources/file_based/file_types/file_type_parser.py,sha256=Gbn-8v1-jLhKpJXTNOOc5PZT1Jzah6G-INCZt4snLdQ,2819
202
- airbyte_cdk/sources/file_based/file_types/jsonl_parser.py,sha256=ANXqs6jkg5l4nS2TWKF5LQI4G9-y8zfmyYmK0xjnr_g,5696
203
- airbyte_cdk/sources/file_based/file_types/parquet_parser.py,sha256=mah2o4I1ey6rOmppvlKwpePuZP6nUE7WYkVq8AYMAJc,10005
204
- airbyte_cdk/sources/file_based/file_types/unstructured_parser.py,sha256=fQ4GDo6ZE5p57RYcXipKNQoYW7AkVudQnIOXR0CLc5Q,16691
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=6MsTHFNKPJlybyajQW0rw7uep6FaCTpVwBmeIsNMAYg,9405
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=uwk6Ugf23xKG4PRPVVRVwpcNjTwPgxejl03vLSEzK0s,604
209
- airbyte_cdk/sources/file_based/schema_validation_policies/default_schema_validation_policies.py,sha256=ZeAa0z50ywMU2chNjQ7JpL4yePU1NajhBa8FS7rXLVo,1643
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=WB8KupXGUiWOjUOqUIizbueGN0Q77OGVCAkj_WoK4MM,7271
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=-sZBEwVeC0YDVyJQyWzowMoUFllyn2zhdVr6Ii_2nd0,13663
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=UYLE2A2RdV-5FaQ70naZZWY34l5AEJkIRlTH05-e_-k,1961
216
- airbyte_cdk/sources/file_based/stream/concurrent/cursor/file_based_concurrent_cursor.py,sha256=Bs8e05pbY1OhTUsklhIqrfeCataME_fkg0ToakifHgY,14331
217
- airbyte_cdk/sources/file_based/stream/concurrent/cursor/file_based_final_state_cursor.py,sha256=-N4P_iw0OA442u94mX9hHdbqB5v4DesBG1g4lFN5k64,3128
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=i-FPeK8lwCzX34GCcmvL5Yvdh8-uu7FeCVYDoFbD7IY,1920
220
- airbyte_cdk/sources/file_based/stream/cursor/default_file_based_cursor.py,sha256=kuJRKgDYOGXRk0V0I8BpFxg0hGv7SfV_nBpmmn45F88,6815
221
- airbyte_cdk/sources/file_based/stream/default_file_based_stream.py,sha256=MGabONM13wx3pnotcUjv09X5K1BLRHr63L9t_ajojqg,16100
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=v0kkpDtA0GUOgj6_3AayrYaBrSHBqG4t3MGbrtxaNmU,1437
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=tQOmtWxrAp1CMiOKi5SdIEWzcmgnCUYd-xL3fcupUT4,4583
227
- airbyte_cdk/sources/source.py,sha256=dglnTys-4jcmEP3zkK8UtQH7ferFYB9QrrtZrR8e9sU,3430
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=hpIajzGOM_0ePiVSfH9tXZbmuiAcaO-OHY-mNCz17wY,3189
230
- airbyte_cdk/sources/streams/call_rate.py,sha256=5T4J8WxMNov76iXRUtD5KlM1CsROxuAQPwGQAZyvpHg,20555
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=FntgBRUp92-UR3r29jIey-WfypIOFbO8jgJciKdEDSc,14924
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=73Rx35Zbw13f4kjOwba4VNgFAJmNOX8FyJMRq5HdQ0I,4738
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=aNyJSi2xUeU0mOAoINZwN1FHEYT6mQLB2Z2D5QFAYUo,18224
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=G8H0ffQMvhR9sNqxaBWnGHYtnLYDIkfsCK0RHqmLmZo,17564
244
- airbyte_cdk/sources/streams/concurrent/default_stream.py,sha256=_fnAoq1RLScD0vrKNno3jaPTdk3DYysLYG61eiduiWI,3115
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=FPdGovWg0_hPxoTCAJnqs2SEqEq32pRGKlvPMP7hGWo,1290
247
- airbyte_cdk/sources/streams/concurrent/partition_enqueuer.py,sha256=JXQ5s3TxtsTwYuDVfpgHLrh2ye7-I9LquYvhpdZUazA,3315
248
- airbyte_cdk/sources/streams/concurrent/partition_reader.py,sha256=o6fHBs146XiREgtezS5beHpE4VFa3Yj4avjmciyPiT4,1747
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=VsOK_UPBGuYEiUcOP8qlerWjV_DAhsgOubB70j0MEsk,863
253
- airbyte_cdk/sources/streams/concurrent/partitions/types.py,sha256=1Ogx5WDgspjg-BJsRIdwK-tWBBca1PLLA6LqHHX3hKI,1182
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=EsVFlc0CQwNUmPVN38Jfk8BcH6-WRirMq6awBc7x0nc,6470
256
- airbyte_cdk/sources/streams/concurrent/state_converters/datetime_stream_state_converter.py,sha256=VwDUjqMAUu3Kp8GNO9TIYlOFUKJsRdX30sWg2mGBRyE,7443
257
- airbyte_cdk/sources/streams/core.py,sha256=H58Zao7KjDNQ2dvYQTNj9pvpuI6nftjHJ-JfpSQJVR8,31167
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=EQQCu0e3kT5Qi__2uT6-4nKK24m-3HVbSwBDQCWZ1zQ,2414
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=DNf42xY7k-dSZ8fue3J_7-Uc-RDsI4HLZBP33LYSr4E,3362
264
- airbyte_cdk/sources/streams/http/error_handlers/error_handler.py,sha256=1tFTtO4aTQ56C_FC5LRnQSIZ1le2-31FNkceUuzZn9U,1150
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=fWNY8V19BaGyp7OCKiJVViPS336xKd4JOIu32PXgvNE,4083
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=zh0BUh9rqYvPqeqWH0fqXLrbXjG45igQC8ngMlEhLiA,2200
269
- airbyte_cdk/sources/streams/http/exceptions.py,sha256=DOTHEiBADV1YQTH4onSAbXVylDR9frpv2IeGZuURiZ0,1809
270
- airbyte_cdk/sources/streams/http/http.py,sha256=B6xLDhORfpSYQoX-o9INCMkV661lTf0m0zG-Z_mFOvo,27292
271
- airbyte_cdk/sources/streams/http/http_client.py,sha256=6lH9Z-dgKTRA0AuXMtg12LOA1-sM5H9ISUM1zEFd8vI,18244
272
- airbyte_cdk/sources/streams/http/rate_limiting.py,sha256=I0Fk7X38lYXufjekKa3q6ihno9B3gDzXBE_E585Q2o8,6169
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=VfI81zpWYMrzhU0nzN7J1lYz-aZCyHzvv-cLqzm8in0,10125
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=W4vPIvkiXDoV5e5a6-BdV4pUYPOlHTCsISFHZZygVRI,13317
277
- airbyte_cdk/sources/streams/http/requests_native_auth/token.py,sha256=hDti8DlF_R5YYX95hg9BPogYtG-KUYtOifrFDv_L3Hk,2456
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=gG8FAE1m1Uj8NZsPcchD9rOJ9V27xCewGP0Mn7IZWRM,4525
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=fkosoez7T-vNhfiWDee_Ryz5mqtPuEnjePEePDc-OXI,2095
283
- airbyte_cdk/sources/utils/schema_helpers.py,sha256=rb1sH7ST7W6g8n_ibVOE2APwg475J-YRLjaZf2FNcxY,8517
284
- airbyte_cdk/sources/utils/slice_logger.py,sha256=YeWSoZeOsQp9oZK7mick2J8KFdiY726LY2iiIj_--r4,1731
285
- airbyte_cdk/sources/utils/transform.py,sha256=4GYmO6bq33HF-a1in0dKQKqUOYI1bWItyuYF875bSQg,9493
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=IIgJWSo55Oi-wEtpUX2Hnzaw6NMJe6rHRi1bD0A0fWg,7598
293
- airbyte_cdk/sql/secrets.py,sha256=-CKnxKfc_Lcjh6ERBCglqKXnl-J_Gcqa0wS7fcTEWtc,4322
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=JeZQGWrTouuql4gSLkWNsQS5KoOa3UXg2xXeRnwuB0Y,5056
296
- airbyte_cdk/sql/shared/sql_processor.py,sha256=0zGzGNt98ee4Lxqr0Hqcg5-hmAtJFEF9EpjLG99E5s0,27346
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=nO2paMQeK8lEB2AHmkdh3vDTe_6mSaNN43MfcIII6gM,2931
300
- airbyte_cdk/test/entrypoint_wrapper.py,sha256=-fTHUbkxJveIB2l7MNHo6CnmnZUWxF6sxMuRwXDmjYo,9606
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=Wvdcq8Ix9xUWERguwOu5JqWDpAkB-8RftWphzIOoVjY,6893
304
- airbyte_cdk/test/mock_http/request.py,sha256=QeWwm5OusYrSYJFrRlgovFzQqL3c_DjD9Iufa5CpZXo,4043
305
- airbyte_cdk/test/mock_http/response.py,sha256=F09QGG8N3Z8fL_b0rmSKTYoKgku5yZJQCpj0Fwwxu3s,588
306
- airbyte_cdk/test/mock_http/response_builder.py,sha256=Z0RbdJVtutytIi4z2XbrK2zvGF4Ap2LZjPxinJe8xwQ,7809
307
- airbyte_cdk/test/state_builder.py,sha256=AaDZI4RkccRRfLoCQwbaNk2Rg7-aef3G33qcrAjNYww,881
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=mh3ZMxYL2_Ai0MgWuAsKHDXdzo4SuFEctFEtiNKm4gU,776
310
- airbyte_cdk/test/utils/http_mocking.py,sha256=VPuL--lsdyvwDsS3nx3KOCd3lim1RRxThPRhW8Z9laY,544
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=0Kl7EFG-J0ponr9sE3GQ88ifMFwcf1FaYUpDti6yf_o,3069
314
- airbyte_cdk/utils/analytics_message.py,sha256=om0y9U_Y1RNHREi_K8D3mkZgBNfwiOyG71ixOBKZbVs,598
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=gGKDQ3OdY18R5CVFhq4c7zB_E4Cxe6J6SLA29cz3cJM,3954
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=tVkbgnxy12Ah2Jxh_3tKW7CTKTAVIcPexsBhsiyTbp4,1729
320
- airbyte_cdk/utils/message_utils.py,sha256=GH6DliIg_sS9C2VRZhC4HeG0raeJh0x-hn0VSv9Cgtw,1148
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=Ax6hVtbpvhXVRFDgJJb-SU-OIQLXl4qFBIAKFckpWeo,2771
323
- airbyte_cdk/utils/schema_inferrer.py,sha256=vkzpPZiybz8uNmYqNfiBzwVJ_JgXvz1TzaF198d7v5E,9614
324
- airbyte_cdk/utils/spec_schema_transformations.py,sha256=LGjSSk8lmBiC0GiHqxDwu_iMN6bCe05UMpz9e7nCw5E,741
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=4KOMro9d08yFFNQWZhEvaWmTXaIpJ8O18nA0Va7Wddo,5855
327
- airbyte_cdk-6.5.3rc2.dist-info/LICENSE.txt,sha256=Wfe61S4BaGPj404v8lrAbvhjYR68SHlkzeYrg3_bbuM,1051
328
- airbyte_cdk-6.5.3rc2.dist-info/METADATA,sha256=wQOimptGY0qsadB-JQ_plECnWdldgMp4Nplfxke_Y4Q,13314
329
- airbyte_cdk-6.5.3rc2.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
330
- airbyte_cdk-6.5.3rc2.dist-info/RECORD,,
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,,