airbyte-cdk 6.7.1rc3__py3-none-any.whl → 6.7.2__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 (123) hide show
  1. airbyte_cdk/cli/source_declarative_manifest/_run.py +2 -1
  2. airbyte_cdk/config_observation.py +2 -1
  3. airbyte_cdk/connector.py +1 -0
  4. airbyte_cdk/connector_builder/connector_builder_handler.py +1 -1
  5. airbyte_cdk/connector_builder/main.py +2 -1
  6. airbyte_cdk/destinations/destination.py +2 -1
  7. airbyte_cdk/destinations/vector_db_based/config.py +2 -1
  8. airbyte_cdk/destinations/vector_db_based/document_processor.py +4 -3
  9. airbyte_cdk/destinations/vector_db_based/embedder.py +5 -4
  10. airbyte_cdk/entrypoint.py +3 -2
  11. airbyte_cdk/logger.py +2 -1
  12. airbyte_cdk/models/__init__.py +2 -0
  13. airbyte_cdk/models/airbyte_protocol.py +2 -1
  14. airbyte_cdk/sources/concurrent_source/concurrent_read_processor.py +3 -3
  15. airbyte_cdk/sources/concurrent_source/concurrent_source.py +1 -1
  16. airbyte_cdk/sources/config.py +2 -1
  17. airbyte_cdk/sources/declarative/auth/jwt.py +1 -0
  18. airbyte_cdk/sources/declarative/auth/oauth.py +1 -0
  19. airbyte_cdk/sources/declarative/auth/selective_authenticator.py +1 -0
  20. airbyte_cdk/sources/declarative/auth/token.py +2 -1
  21. airbyte_cdk/sources/declarative/auth/token_provider.py +3 -2
  22. airbyte_cdk/sources/declarative/concurrent_declarative_source.py +6 -4
  23. airbyte_cdk/sources/declarative/declarative_component_schema.yaml +196 -0
  24. airbyte_cdk/sources/declarative/decoders/json_decoder.py +3 -2
  25. airbyte_cdk/sources/declarative/decoders/noop_decoder.py +1 -0
  26. airbyte_cdk/sources/declarative/decoders/pagination_decoder_decorator.py +1 -0
  27. airbyte_cdk/sources/declarative/decoders/xml_decoder.py +1 -0
  28. airbyte_cdk/sources/declarative/extractors/dpath_extractor.py +1 -0
  29. airbyte_cdk/sources/declarative/extractors/http_selector.py +1 -0
  30. airbyte_cdk/sources/declarative/extractors/record_filter.py +6 -48
  31. airbyte_cdk/sources/declarative/extractors/record_selector.py +32 -4
  32. airbyte_cdk/sources/declarative/extractors/response_to_file_extractor.py +7 -2
  33. airbyte_cdk/sources/declarative/incremental/datetime_based_cursor.py +2 -1
  34. airbyte_cdk/sources/declarative/incremental/global_substream_cursor.py +5 -2
  35. airbyte_cdk/sources/declarative/incremental/per_partition_cursor.py +5 -2
  36. airbyte_cdk/sources/declarative/incremental/per_partition_with_global.py +1 -3
  37. airbyte_cdk/sources/declarative/interpolation/jinja.py +5 -4
  38. airbyte_cdk/sources/declarative/manifest_declarative_source.py +4 -3
  39. airbyte_cdk/sources/declarative/migrations/legacy_to_per_partition_state_migration.py +1 -1
  40. airbyte_cdk/sources/declarative/models/declarative_component_schema.py +144 -0
  41. airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py +41 -4
  42. airbyte_cdk/sources/declarative/partition_routers/substream_partition_router.py +1 -0
  43. airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/constant_backoff_strategy.py +1 -0
  44. airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/exponential_backoff_strategy.py +1 -0
  45. airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/wait_time_from_header_backoff_strategy.py +1 -0
  46. airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/wait_until_time_from_header_backoff_strategy.py +1 -0
  47. airbyte_cdk/sources/declarative/requesters/error_handlers/composite_error_handler.py +1 -0
  48. airbyte_cdk/sources/declarative/requesters/error_handlers/default_error_handler.py +1 -0
  49. airbyte_cdk/sources/declarative/requesters/error_handlers/default_http_response_filter.py +1 -0
  50. airbyte_cdk/sources/declarative/requesters/error_handlers/http_response_filter.py +1 -0
  51. airbyte_cdk/sources/declarative/requesters/http_job_repository.py +3 -2
  52. airbyte_cdk/sources/declarative/requesters/http_requester.py +1 -0
  53. airbyte_cdk/sources/declarative/requesters/paginators/default_paginator.py +1 -0
  54. airbyte_cdk/sources/declarative/requesters/paginators/no_pagination.py +1 -0
  55. airbyte_cdk/sources/declarative/requesters/paginators/paginator.py +1 -0
  56. airbyte_cdk/sources/declarative/requesters/paginators/strategies/cursor_pagination_strategy.py +1 -0
  57. airbyte_cdk/sources/declarative/requesters/paginators/strategies/offset_increment.py +1 -0
  58. airbyte_cdk/sources/declarative/requesters/paginators/strategies/page_increment.py +1 -0
  59. airbyte_cdk/sources/declarative/requesters/paginators/strategies/pagination_strategy.py +1 -0
  60. airbyte_cdk/sources/declarative/requesters/paginators/strategies/stop_condition.py +9 -3
  61. airbyte_cdk/sources/declarative/requesters/request_options/interpolated_request_options_provider.py +2 -1
  62. airbyte_cdk/sources/declarative/requesters/requester.py +1 -0
  63. airbyte_cdk/sources/declarative/retrievers/async_retriever.py +2 -1
  64. airbyte_cdk/sources/declarative/retrievers/simple_retriever.py +12 -4
  65. airbyte_cdk/sources/declarative/stream_slicers/declarative_partition_generator.py +7 -4
  66. airbyte_cdk/sources/declarative/transformations/add_fields.py +1 -0
  67. airbyte_cdk/sources/declarative/transformations/remove_fields.py +1 -0
  68. airbyte_cdk/sources/declarative/yaml_declarative_source.py +1 -0
  69. airbyte_cdk/sources/embedded/tools.py +1 -0
  70. airbyte_cdk/sources/file_based/config/abstract_file_based_spec.py +2 -1
  71. airbyte_cdk/sources/file_based/config/avro_format.py +2 -1
  72. airbyte_cdk/sources/file_based/config/csv_format.py +2 -1
  73. airbyte_cdk/sources/file_based/config/excel_format.py +2 -1
  74. airbyte_cdk/sources/file_based/config/file_based_stream_config.py +2 -1
  75. airbyte_cdk/sources/file_based/config/jsonl_format.py +2 -1
  76. airbyte_cdk/sources/file_based/config/parquet_format.py +2 -1
  77. airbyte_cdk/sources/file_based/config/unstructured_format.py +2 -1
  78. airbyte_cdk/sources/file_based/file_based_source.py +2 -1
  79. airbyte_cdk/sources/file_based/file_based_stream_reader.py +2 -1
  80. airbyte_cdk/sources/file_based/file_types/avro_parser.py +1 -0
  81. airbyte_cdk/sources/file_based/file_types/csv_parser.py +2 -1
  82. airbyte_cdk/sources/file_based/file_types/excel_parser.py +5 -5
  83. airbyte_cdk/sources/file_based/file_types/jsonl_parser.py +2 -1
  84. airbyte_cdk/sources/file_based/file_types/parquet_parser.py +2 -1
  85. airbyte_cdk/sources/file_based/file_types/unstructured_parser.py +9 -8
  86. airbyte_cdk/sources/file_based/stream/abstract_file_based_stream.py +2 -1
  87. airbyte_cdk/sources/file_based/stream/concurrent/adapters.py +5 -4
  88. airbyte_cdk/sources/file_based/stream/concurrent/cursor/abstract_concurrent_file_based_cursor.py +1 -1
  89. airbyte_cdk/sources/file_based/stream/concurrent/cursor/file_based_concurrent_cursor.py +1 -1
  90. airbyte_cdk/sources/file_based/stream/concurrent/cursor/file_based_final_state_cursor.py +1 -1
  91. airbyte_cdk/sources/http_logger.py +1 -0
  92. airbyte_cdk/sources/streams/call_rate.py +1 -2
  93. airbyte_cdk/sources/streams/concurrent/abstract_stream.py +2 -1
  94. airbyte_cdk/sources/streams/concurrent/adapters.py +8 -4
  95. airbyte_cdk/sources/streams/concurrent/availability_strategy.py +2 -1
  96. airbyte_cdk/sources/streams/concurrent/cursor.py +30 -6
  97. airbyte_cdk/sources/streams/concurrent/partitions/partition.py +1 -1
  98. airbyte_cdk/sources/streams/concurrent/partitions/types.py +1 -1
  99. airbyte_cdk/sources/streams/concurrent/state_converters/datetime_stream_state_converter.py +1 -1
  100. airbyte_cdk/sources/streams/core.py +2 -1
  101. airbyte_cdk/sources/streams/http/error_handlers/default_error_mapping.py +2 -1
  102. airbyte_cdk/sources/streams/http/error_handlers/http_status_error_handler.py +1 -0
  103. airbyte_cdk/sources/streams/http/error_handlers/json_error_message_parser.py +1 -0
  104. airbyte_cdk/sources/streams/http/error_handlers/response_models.py +2 -1
  105. airbyte_cdk/sources/streams/http/http.py +3 -2
  106. airbyte_cdk/sources/streams/http/http_client.py +49 -2
  107. airbyte_cdk/sources/streams/http/requests_native_auth/abstract_oauth.py +2 -1
  108. airbyte_cdk/sources/streams/http/requests_native_auth/oauth.py +1 -0
  109. airbyte_cdk/sources/types.py +14 -1
  110. airbyte_cdk/sources/utils/schema_helpers.py +3 -2
  111. airbyte_cdk/sql/secrets.py +2 -1
  112. airbyte_cdk/sql/shared/sql_processor.py +8 -6
  113. airbyte_cdk/test/entrypoint_wrapper.py +4 -3
  114. airbyte_cdk/test/mock_http/mocker.py +1 -0
  115. airbyte_cdk/utils/schema_inferrer.py +2 -1
  116. airbyte_cdk/utils/slice_hasher.py +1 -1
  117. airbyte_cdk/utils/traced_exception.py +2 -1
  118. {airbyte_cdk-6.7.1rc3.dist-info → airbyte_cdk-6.7.2.dist-info}/METADATA +9 -2
  119. {airbyte_cdk-6.7.1rc3.dist-info → airbyte_cdk-6.7.2.dist-info}/RECORD +122 -123
  120. airbyte_cdk/sources/streams/concurrent/partitions/record.py +0 -35
  121. {airbyte_cdk-6.7.1rc3.dist-info → airbyte_cdk-6.7.2.dist-info}/LICENSE.txt +0 -0
  122. {airbyte_cdk-6.7.1rc3.dist-info → airbyte_cdk-6.7.2.dist-info}/WHEEL +0 -0
  123. {airbyte_cdk-6.7.1rc3.dist-info → airbyte_cdk-6.7.2.dist-info}/entry_points.txt +0 -0
@@ -1,32 +1,32 @@
1
1
  airbyte_cdk/__init__.py,sha256=3BlW1O37s_grUaioVZvGj3hRsofR0tY4sMceu5ygylk,11550
2
2
  airbyte_cdk/cli/__init__.py,sha256=Hu-1XT2KDoYjDF7-_ziDwv5bY3PueGjANOCbzeOegDg,57
3
3
  airbyte_cdk/cli/source_declarative_manifest/__init__.py,sha256=_zFyFFl4leAvtnkHmBFbtLYT6Bh44qxmLbU0wnK2TZQ,92
4
- airbyte_cdk/cli/source_declarative_manifest/_run.py,sha256=3rIz-W65J6c2g3eMvvh2jk00cBBTiSgxx-MqA9WPUkw,7769
4
+ airbyte_cdk/cli/source_declarative_manifest/_run.py,sha256=YZ9FoGkTmH010GbYXwSFTCBcokV6MKPiSHcz72hdwe4,7770
5
5
  airbyte_cdk/cli/source_declarative_manifest/spec.json,sha256=Earc1L6ngcdIr514oFQlUoOxdF4RHqtUyStSIAquXdY,554
6
- airbyte_cdk/config_observation.py,sha256=A2P475pS9JndFzBggtkkAmcN1aMeq_thRbXRzmWjI3E,3997
7
- airbyte_cdk/connector.py,sha256=srfjRNgkt1nsPw-Mm0d1qXoVmM90zHPYHIfxu8p6JXI,4223
6
+ airbyte_cdk/config_observation.py,sha256=DBl99OV7oW5aJPepVXvZjVBH_s7fDcWNsBL6s1cZPlg,3998
7
+ airbyte_cdk/connector.py,sha256=bO23kdGRkl8XKFytOgrrWFc_VagteTHVEF6IsbizVkM,4224
8
8
  airbyte_cdk/connector_builder/README.md,sha256=Hw3wvVewuHG9-QgsAq1jDiKuLlStDxKBz52ftyNRnBw,1665
9
9
  airbyte_cdk/connector_builder/__init__.py,sha256=4Hw-PX1-VgESLF16cDdvuYCzGJtHntThLF4qIiULWeo,61
10
- airbyte_cdk/connector_builder/connector_builder_handler.py,sha256=N7C_Kk-e8rSS93TmYVvcNH7uuA6FyLu9TA3smkUFZHs,4258
11
- airbyte_cdk/connector_builder/main.py,sha256=umO0QBCjhKKUAE7jev1Eukb5azNtk_wckh_rG77nmEs,3733
10
+ airbyte_cdk/connector_builder/connector_builder_handler.py,sha256=ezePCJuE6WW9NHwlWHFTmRkKFSzVu9LOYYSvO1LZnYM,4232
11
+ airbyte_cdk/connector_builder/main.py,sha256=zf3jtUZWWOzukWDTqsfIeMwFF719dwT9AWv_2GFjBw8,3734
12
12
  airbyte_cdk/connector_builder/message_grouper.py,sha256=tu-cUZQ-m-FcLAwL6eFNU2eqwJrIS0-i9FG6f3RopFU,19918
13
13
  airbyte_cdk/connector_builder/models.py,sha256=uCHpOdJx2PyZtIqk-mt9eSVuFMQoEqrW-9sjCz0Z-AQ,1500
14
14
  airbyte_cdk/destinations/__init__.py,sha256=FyDp28PT_YceJD5HDFhA-mrGfX9AONIyMQ4d68CHNxQ,213
15
- airbyte_cdk/destinations/destination.py,sha256=xViQzcYO9SXkE2hzMVwQvsHHoFP8NmXpzoJnq_VnU7k,5891
15
+ airbyte_cdk/destinations/destination.py,sha256=SlUK67L7DrDcZZe-6fOzWM6kajST2b9EH9MmaCDJEgM,5892
16
16
  airbyte_cdk/destinations/vector_db_based/README.md,sha256=QAe8c_1Afme4r2TCE10cTSaxUE3zgCBuArSuRQqK8tA,2115
17
17
  airbyte_cdk/destinations/vector_db_based/__init__.py,sha256=eAkzwTjBbXBhJ5GfPO5I53Zgpv5xQFLRQS8n4nuyPt0,1006
18
- airbyte_cdk/destinations/vector_db_based/config.py,sha256=nadBtECw9q869ocQWrUR8K6ZvNMTCaChvc2a5QO0EW0,12467
19
- airbyte_cdk/destinations/vector_db_based/document_processor.py,sha256=H27yFXbiaAZHh84NWkrioxi6rIPFZk7sgKQSD08bjss,9399
20
- airbyte_cdk/destinations/vector_db_based/embedder.py,sha256=gbfr1zFHsgRqMU_XoAu22tTfpbz0FryoHe4vI4OqAAY,11984
18
+ airbyte_cdk/destinations/vector_db_based/config.py,sha256=1u87eibIWLZ_wuaCvE3yp5ayguM9dGhGXbT8agmkUBg,12468
19
+ airbyte_cdk/destinations/vector_db_based/document_processor.py,sha256=Wer1QOqE1pBP6yHpVyXLVKb7-dHfIs7bn0MQavJtjPI,9400
20
+ airbyte_cdk/destinations/vector_db_based/embedder.py,sha256=f2ri-_q6SAnMHgBne_i0Sj5lFfKb6DX4apu3hY6fjhg,11985
21
21
  airbyte_cdk/destinations/vector_db_based/indexer.py,sha256=beiSi2Uu67EoTr7yQSaCJFAh9RajHFGKA4PoTbpTOqM,3243
22
22
  airbyte_cdk/destinations/vector_db_based/test_utils.py,sha256=MkqLiOJ5QyKbV4rNiJhe-BHM7FD-ADHQ4bQGf4c5lRY,1932
23
23
  airbyte_cdk/destinations/vector_db_based/utils.py,sha256=FOyEo8Lc-fY8UyhpCivhZtIqBRyxf3cUt6anmK03fUY,1127
24
24
  airbyte_cdk/destinations/vector_db_based/writer.py,sha256=nPj1DtZ1-tkEBAz7Ape1FZz_YDQNXPceUyCoviVq3Fk,4525
25
- airbyte_cdk/entrypoint.py,sha256=DAb44DODyUcrmtcmTG7_rLidNs7SugWci-4x9-dVdbU,17604
25
+ airbyte_cdk/entrypoint.py,sha256=B0kd8NWYs6pFDC75OoPxiGNcIh9jZDnU9qIVvtOQsNE,17605
26
26
  airbyte_cdk/exception_handler.py,sha256=D_doVl3Dt60ASXlJsfviOCswxGyKF2q0RL6rif3fNks,2013
27
- airbyte_cdk/logger.py,sha256=MapEq7Ldyn3uG7ciqCSXz1YYagBhtl_rcfQkoPlcIE4,3757
28
- airbyte_cdk/models/__init__.py,sha256=qpxctJlraOQhUj3milOoUEYjaqHM9XCdlQqnmZJwKxQ,2002
29
- airbyte_cdk/models/airbyte_protocol.py,sha256=Z_man0-88utAvlDQozp456tYzWM9HR05QIOYbFzFM_E,3747
27
+ airbyte_cdk/logger.py,sha256=ckavMoaV-p0rxQANyrRynVw8eysO7ZNoCGfKzHNYNB8,3758
28
+ airbyte_cdk/models/__init__.py,sha256=5n8LEEQviDBmdZQPG4vnccWgsKpS4Q4L8MI7LUfIEsY,2051
29
+ airbyte_cdk/models/airbyte_protocol.py,sha256=MCmLir67-hF12YM5OKzeGbWrlxr7ChG_OQSE1xG8EIU,3748
30
30
  airbyte_cdk/models/airbyte_protocol_serializers.py,sha256=s6SaFB2CMrG_7jTQGn_fhFbQ1FUxhCxf5kq2RWGHMVI,1749
31
31
  airbyte_cdk/models/file_transfer_record_message.py,sha256=J-E-43KOmUFdpsjeKlEfNnnZRSB-Gb5AGZjonR25Drc,323
32
32
  airbyte_cdk/models/well_known_types.py,sha256=EquepbisGPuCSrs_D7YVVnMR9-ShhUr21wnFz3COiJs,156
@@ -34,13 +34,13 @@ airbyte_cdk/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
34
34
  airbyte_cdk/sources/__init__.py,sha256=45J83QsFH3Wky3sVapZWg4C58R_i1thm61M06t2c1AQ,1156
35
35
  airbyte_cdk/sources/abstract_source.py,sha256=qY0nZzNm-9qVkt-t6s-Y6UYKIk_2zSBSn3Y_IGzJAoA,15633
36
36
  airbyte_cdk/sources/concurrent_source/__init__.py,sha256=3D_RJsxQfiLboSCDdNei1Iv-msRp3DXsas6E9kl7dXc,386
37
- airbyte_cdk/sources/concurrent_source/concurrent_read_processor.py,sha256=cEyZALjsxVx7k9bzcDUpSIXskOqEg5PKn7K3ZMk5U2E,12766
38
- airbyte_cdk/sources/concurrent_source/concurrent_source.py,sha256=3uiJwkytP8HjY3CPTZtoPF9i0WAJE0K6GREyVZUWPaI,7768
37
+ airbyte_cdk/sources/concurrent_source/concurrent_read_processor.py,sha256=dbDBNcNNg2IZU5pZb3HfZeILU7X5_EhYGSbNqq3JD4I,12711
38
+ airbyte_cdk/sources/concurrent_source/concurrent_source.py,sha256=Bq54JBp8HUz7lGhladoX-dpyscX77Kxbs32bLwWdjdI,7737
39
39
  airbyte_cdk/sources/concurrent_source/concurrent_source_adapter.py,sha256=f9PIRPWn2tXu0-bxVeYHL2vYdqCzZ_kgpHg5_Ep-cfQ,6103
40
40
  airbyte_cdk/sources/concurrent_source/partition_generation_completed_sentinel.py,sha256=z1t-rAZBsqVidv2fpUlPHE9JgyXsITuGk4AMu96mXSQ,696
41
41
  airbyte_cdk/sources/concurrent_source/stream_thread_exception.py,sha256=-q6mG2145HKQ28rZGD1bUmjPlIZ1S7-Yhewl8Ntu6xI,764
42
42
  airbyte_cdk/sources/concurrent_source/thread_pool_manager.py,sha256=00j75alk20E4sU0PNuL6ohPmU3sxuhygicY4sZJXyk4,5166
43
- airbyte_cdk/sources/config.py,sha256=B26JsJbTxnd2-ST4wamV0PPg-lNDO17yAtQkZkrGyjU,900
43
+ airbyte_cdk/sources/config.py,sha256=dzfOZT9dqB_xac1cuFIXOMSmHtOahc6QaK0vFKRBPcw,901
44
44
  airbyte_cdk/sources/connector_state_manager.py,sha256=JXWqEI2z9ehpCrU7NHXaOOEqj2ZGsog0ECWygA_AnrY,7223
45
45
  airbyte_cdk/sources/declarative/__init__.py,sha256=ZnqYNxHsKCgO38IwB34RQyRMXTs4GTvlRi3ImKnIioo,61
46
46
  airbyte_cdk/sources/declarative/async_job/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -52,43 +52,43 @@ airbyte_cdk/sources/declarative/async_job/status.py,sha256=mkExR-uOAO1ckUnclaUOa
52
52
  airbyte_cdk/sources/declarative/async_job/timer.py,sha256=Fb8P72CQ7jIzJyzMSSNuBf2vt8bmrg9SrfmNxKwph2A,1242
53
53
  airbyte_cdk/sources/declarative/auth/__init__.py,sha256=hhiJV3kU5_fja7hQYWqbYjjtJPpaJdS2NiJpJLrG2uw,294
54
54
  airbyte_cdk/sources/declarative/auth/declarative_authenticator.py,sha256=nf-OmRUHYG4ORBwyb5CANzuHEssE-oNmL-Lccn41Td8,1099
55
- airbyte_cdk/sources/declarative/auth/jwt.py,sha256=BYE78cjQDZU_Kx7lPaiE5PE_0jCOH31ZWDbJOWyfF7g,8249
56
- airbyte_cdk/sources/declarative/auth/oauth.py,sha256=SYQx-mXmDYD1O-Z-qEKtJWl0bzOl70rSd408B7ljHgU,8542
57
- airbyte_cdk/sources/declarative/auth/selective_authenticator.py,sha256=GWV11BNz-C0zXRB2cfbGX_J9RoLN6_t-d5KrjrwHC7o,1372
58
- airbyte_cdk/sources/declarative/auth/token.py,sha256=5CIS0WpjhCtMhhs7-WkSlmdxCoh5r44hmn_rhw_BQbU,11209
59
- airbyte_cdk/sources/declarative/auth/token_provider.py,sha256=Luakvazmet-CAqX-OFCA0gqBPuzjrZzsqUKMoXXxOf0,3027
55
+ airbyte_cdk/sources/declarative/auth/jwt.py,sha256=7r5q1zOekjw8kEmEk1oUyovzVt3cbD6BuFnRILeLZi8,8250
56
+ airbyte_cdk/sources/declarative/auth/oauth.py,sha256=k5Z04Dl19QMK399udFBt8iBeQuExUei9FK07mRJ0nv4,8543
57
+ airbyte_cdk/sources/declarative/auth/selective_authenticator.py,sha256=q8nvcWplavGvBEFzBJQE1Abe7jcuRoY4UTrLLbRx8lo,1373
58
+ airbyte_cdk/sources/declarative/auth/token.py,sha256=r4u3WXyVa7WmiSZ9-eZXlrUI-pS0D4YWJnwjLzwV-Fk,11210
59
+ airbyte_cdk/sources/declarative/auth/token_provider.py,sha256=9oq3dcBPAPwXSfkISjhA05dMhIzxaDQTmwOydBrnsMk,3028
60
60
  airbyte_cdk/sources/declarative/checks/__init__.py,sha256=WWXMfvKkndqwAUZdgSr7xVHVXDFTKCUQ9EubqT7H4QE,274
61
61
  airbyte_cdk/sources/declarative/checks/check_stream.py,sha256=dAA-UhmMj0WLXCkRQrilWCfJmncBzXCZ18ptRNip3XA,2139
62
62
  airbyte_cdk/sources/declarative/checks/connection_checker.py,sha256=MBRJo6WJlZQHpIfOGaNOkkHUmgUl_4wDM6VPo41z5Ss,1383
63
63
  airbyte_cdk/sources/declarative/concurrency_level/__init__.py,sha256=5XUqrmlstYlMM0j6crktlKQwALek0uiz2D3WdM46MyA,191
64
64
  airbyte_cdk/sources/declarative/concurrency_level/concurrency_level.py,sha256=YIwCTCpOr_QSNW4ltQK0yUGWInI8PKNY216HOOegYLk,2101
65
- airbyte_cdk/sources/declarative/concurrent_declarative_source.py,sha256=BpaTXzdf57pqUg1xDlj2xxm-VN74h8c-55xEQUlA_1I,19734
65
+ airbyte_cdk/sources/declarative/concurrent_declarative_source.py,sha256=XQVc7xMRffm9v4qwDMTGIfWzNB2pf9GvILB4MvB0icU,19818
66
66
  airbyte_cdk/sources/declarative/datetime/__init__.py,sha256=l9LG7Qm6e5r_qgqfVKnx3mXYtg1I9MmMjomVIPfU4XA,177
67
67
  airbyte_cdk/sources/declarative/datetime/datetime_parser.py,sha256=SX9JjdesN1edN2WVUVMzU_ptqp2QB1OnsnjZ4mwcX7w,2579
68
68
  airbyte_cdk/sources/declarative/datetime/min_max_datetime.py,sha256=8VZJP18eJLabSPP1XBSPDaagUBG6q1ynIiPJy3rE2mc,5344
69
- airbyte_cdk/sources/declarative/declarative_component_schema.yaml,sha256=GjHEK3Z3T2e9aNEMDEmjZj5WkuZiBlxQXWIwNMGz-js,110374
69
+ airbyte_cdk/sources/declarative/declarative_component_schema.yaml,sha256=TuI5-eeHJ2UwDK2g7bVfuVA7lYDU3opkSb0-lBTYWig,120613
70
70
  airbyte_cdk/sources/declarative/declarative_source.py,sha256=nF7wBqFd3AQmEKAm4CnIo29CJoQL562cJGSCeL8U8bA,1531
71
71
  airbyte_cdk/sources/declarative/declarative_stream.py,sha256=JRyNeOIpsFu4ztVZsN6sncqUEIqIE-bUkD2TPgbMgk0,10375
72
72
  airbyte_cdk/sources/declarative/decoders/__init__.py,sha256=hNlhaB5FjNC6IfJyglj5ZJWkYD2nEAukMDmzRz5PC6o,671
73
73
  airbyte_cdk/sources/declarative/decoders/decoder.py,sha256=sl-Gt8lXi7yD2Q-sD8je5QS2PbgrgsYjxRLWsay7DMc,826
74
- airbyte_cdk/sources/declarative/decoders/json_decoder.py,sha256=e5SQzUSpAp7iHrgbDOQQgduf3B09CCndf_NxJswEJS8,3326
75
- airbyte_cdk/sources/declarative/decoders/noop_decoder.py,sha256=eEgo7J9ct3nNJXnuZxxs2wEo0xAlkz2siX_ZgY4pE6M,454
76
- airbyte_cdk/sources/declarative/decoders/pagination_decoder_decorator.py,sha256=poFupLza71NrWhydE-5oezTzd2TyuCaBAK3TdgdEaxg,1080
77
- airbyte_cdk/sources/declarative/decoders/xml_decoder.py,sha256=q_-glq5SV3JVoOJ5ULCZaj5fJodUvc12IxshwphNP-U,3116
74
+ airbyte_cdk/sources/declarative/decoders/json_decoder.py,sha256=qdbjeR6RffKaah_iWvMsOcDolYuxJY5DaI3b9AMTZXg,3327
75
+ airbyte_cdk/sources/declarative/decoders/noop_decoder.py,sha256=Yh2el0hxo1ahR2nfj6ka4tR7eFl7QX7BQffHYY9Ubew,455
76
+ airbyte_cdk/sources/declarative/decoders/pagination_decoder_decorator.py,sha256=ZVBZhAOl0I0MymXN5CKTC-kIXG4GuUQAEyn0XpUDuSE,1081
77
+ airbyte_cdk/sources/declarative/decoders/xml_decoder.py,sha256=EU-7t-5vIGRHZ14h-f0GUE4V5-eTM9Flux-A8xgI1Rc,3117
78
78
  airbyte_cdk/sources/declarative/exceptions.py,sha256=kTPUA4I2NV4J6HDz-mKPGMrfuc592akJnOyYx38l_QM,176
79
79
  airbyte_cdk/sources/declarative/extractors/__init__.py,sha256=YFuL4D4RuuB8E1DNSbJNIj0_HApOlyECoJ_s8DuJMeI,611
80
- airbyte_cdk/sources/declarative/extractors/dpath_extractor.py,sha256=8I_kwx7-riu-uHLeZn4w7Qo033ZHzhej_ha9MZ2Q5B0,3130
81
- airbyte_cdk/sources/declarative/extractors/http_selector.py,sha256=2ynyn1JYt8U_JpHXXNqeOyF6a1Askjt-_ZaLfHTe81E,1168
80
+ airbyte_cdk/sources/declarative/extractors/dpath_extractor.py,sha256=wR4Ol4MG2lt5UlqXF5EU_k7qa5cN4_-luu3PJ1PlO3A,3131
81
+ airbyte_cdk/sources/declarative/extractors/http_selector.py,sha256=2zWZ4ewTqQC8VwkjS0xD_u350Km3SiYP7hpOOgiLg5o,1169
82
82
  airbyte_cdk/sources/declarative/extractors/record_extractor.py,sha256=XJELMjahAsaomlvQgN2zrNO0DJX0G0fr9r682gUz7Pg,691
83
- airbyte_cdk/sources/declarative/extractors/record_filter.py,sha256=baG_e7MHZI5ggYi2CAkad3fDULoto1Dl-gOGC_X8Pnk,5280
84
- airbyte_cdk/sources/declarative/extractors/record_selector.py,sha256=ErSKquEFUE4vPVYfGADesZyd9-N1nLisxbmX0ZJXFic,5719
85
- airbyte_cdk/sources/declarative/extractors/response_to_file_extractor.py,sha256=vUfxdOdEk00hyH95PQNMeX5D3xMEDTYk7dMS5AW0z44,6398
83
+ airbyte_cdk/sources/declarative/extractors/record_filter.py,sha256=OJ9xmhNWNwwzxYOeIrDy1GINb1zH9MBy6suC5tm2LSk,3545
84
+ airbyte_cdk/sources/declarative/extractors/record_selector.py,sha256=AkXPOWyp741cpYLBl9AbmVmOQmQ2BzZ2XjgsMEB6gGc,6583
85
+ airbyte_cdk/sources/declarative/extractors/response_to_file_extractor.py,sha256=LhqGDfX06_dDYLKsIVnwQ_nAWCln-v8PV7Wgt_QVeTI,6533
86
86
  airbyte_cdk/sources/declarative/incremental/__init__.py,sha256=CmZl9ddwMZFo8L7mEl_OFHN3ahIFRSYrJjMbR_cJaFA,1006
87
- airbyte_cdk/sources/declarative/incremental/datetime_based_cursor.py,sha256=jRNEGG31uAZ1N6H-t_m-0njKByXS9IUMJq4vAO_nl6A,22152
87
+ airbyte_cdk/sources/declarative/incremental/datetime_based_cursor.py,sha256=wvaJKHLNkdtzciIYKOAICPepRpQE8rCiFIwwvuGepr8,22153
88
88
  airbyte_cdk/sources/declarative/incremental/declarative_cursor.py,sha256=5Bhw9VRPyIuCaD0wmmq_L3DZsa-rJgtKSEUzSd8YYD0,536
89
- airbyte_cdk/sources/declarative/incremental/global_substream_cursor.py,sha256=WPCr8-zan_ccAePglmR0yb9AYSIwjPgh157yv4DFVRQ,15773
90
- airbyte_cdk/sources/declarative/incremental/per_partition_cursor.py,sha256=l9EWEdQNun1lCls2FPUjd--UG6Jm3whbPdHAxg5aQ_Q,15653
91
- airbyte_cdk/sources/declarative/incremental/per_partition_with_global.py,sha256=RKnlXRsmvd_4UKGFBmNsDyRd3C3sntW6qQLwJChr-3Y,8436
89
+ airbyte_cdk/sources/declarative/incremental/global_substream_cursor.py,sha256=3_EEZop94bMitZaJd2PF5Q2Xt9v94tYg7p7YJz8tAFc,15869
90
+ airbyte_cdk/sources/declarative/incremental/per_partition_cursor.py,sha256=hElcYijbOHjdLKOMA7W7aizEbf22r7OSApXALP875uI,15749
91
+ airbyte_cdk/sources/declarative/incremental/per_partition_with_global.py,sha256=2YBOA2NnwAeIKlIhSwUB_W-FaGnPcmrG_liY7b4mV2Y,8365
92
92
  airbyte_cdk/sources/declarative/incremental/resumable_full_refresh_cursor.py,sha256=10LFv1QPM-agVKl6eaANmEBOfd7gZgBrkoTcMggsieQ,4809
93
93
  airbyte_cdk/sources/declarative/interpolation/__init__.py,sha256=tjUJkn3B-iZ-p7RP2c3dVZejrGiQeooGmS5ibWTuUL4,437
94
94
  airbyte_cdk/sources/declarative/interpolation/filters.py,sha256=dqf9W6LCnB5aWGLX1BoKxU-waORf1jT03LpJB671msU,3639
@@ -97,65 +97,65 @@ airbyte_cdk/sources/declarative/interpolation/interpolated_mapping.py,sha256=UrF
97
97
  airbyte_cdk/sources/declarative/interpolation/interpolated_nested_mapping.py,sha256=i2L0gREX8nHA-pKokdVqwBf4aJgWP71KOxIABj_DHcY,1857
98
98
  airbyte_cdk/sources/declarative/interpolation/interpolated_string.py,sha256=LYEZnZ_hB7rvBSZxG9s0RSrzsOkDWbBY0_P6qu5lEfc,3212
99
99
  airbyte_cdk/sources/declarative/interpolation/interpolation.py,sha256=-V5UddGm69UKEB6o_O1EIES9kfY8FV_X4Ji8w1yOuSA,981
100
- airbyte_cdk/sources/declarative/interpolation/jinja.py,sha256=KwTd0oagnZI4tARxnJZlQiDHn1IXqS7dbnRT0rKRAj8,6626
100
+ airbyte_cdk/sources/declarative/interpolation/jinja.py,sha256=JzFAk-YrydnwP_pGmoxSf46MJbuJlwR-yRkJhH6_nLg,6627
101
101
  airbyte_cdk/sources/declarative/interpolation/macros.py,sha256=QgIfSVPHx_MMUCgbQdm-NMpUlp_cpk0OQhoRDFtkrxE,4040
102
- airbyte_cdk/sources/declarative/manifest_declarative_source.py,sha256=SR5s8gbLmuQwCd4mgiNyk1tttocMC1bJbkA582TzbYA,12918
102
+ airbyte_cdk/sources/declarative/manifest_declarative_source.py,sha256=FEOmFo2mwdpmO8pH9jnw-sUAnijjuigZWYqH_0Gq9oQ,12919
103
103
  airbyte_cdk/sources/declarative/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
104
- airbyte_cdk/sources/declarative/migrations/legacy_to_per_partition_state_migration.py,sha256=iNsF3jWCaZAmJYArmDQg0MJgZikk6frh3IfhcMBR_Qc,3924
104
+ airbyte_cdk/sources/declarative/migrations/legacy_to_per_partition_state_migration.py,sha256=iemy3fKLczcU0-Aor7tx5jcT6DRedKMqyK7kCOp01hg,3924
105
105
  airbyte_cdk/sources/declarative/migrations/state_migration.py,sha256=KWPjealMLKSMtajXgkdGgKg7EmTLR-CqqD7UIh0-eDU,794
106
106
  airbyte_cdk/sources/declarative/models/__init__.py,sha256=nUFxNCiKeYRVXuZEKA7GD-lTHxsiKcQ8FitZjKhPIvE,100
107
- airbyte_cdk/sources/declarative/models/declarative_component_schema.py,sha256=O_jSeWL2xHxi1u09chtmM40Xk7hVKrnfQjYBFyXbk9I,76057
107
+ airbyte_cdk/sources/declarative/models/declarative_component_schema.py,sha256=tZcVSMRJ5-5MoX4ejpXxt5E2suqiQ5AwprQWQiWHhho,85060
108
108
  airbyte_cdk/sources/declarative/parsers/__init__.py,sha256=ZnqYNxHsKCgO38IwB34RQyRMXTs4GTvlRi3ImKnIioo,61
109
109
  airbyte_cdk/sources/declarative/parsers/custom_exceptions.py,sha256=Rir9_z3Kcd5Es0-LChrzk-0qubAsiK_RSEnLmK2OXm8,553
110
110
  airbyte_cdk/sources/declarative/parsers/manifest_component_transformer.py,sha256=jVZ3ZV5YZrmDNIX5cM2mugXmnbH27zHRcD22_3oatpo,8454
111
111
  airbyte_cdk/sources/declarative/parsers/manifest_reference_resolver.py,sha256=IWUOdF03o-aQn0Occo1BJCxU0Pz-QILk5L67nzw2thw,6803
112
- airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py,sha256=ObmWWZBE1jeP63_B74GaZqLlHmNsShBp6kOIF4hXXCI,95403
112
+ airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py,sha256=4WksEBtXaUqVtCO1xMCvcwxo72lOAfflCpY9hWqXcLg,96693
113
113
  airbyte_cdk/sources/declarative/partition_routers/__init__.py,sha256=8uGos2u7TFTx_EJBdcjdUGn3Eyx6jUuEa1_VB8UP_dI,631
114
114
  airbyte_cdk/sources/declarative/partition_routers/cartesian_product_stream_slicer.py,sha256=c5cuVFM6NFkuQqG8Z5IwkBuwDrvXZN1CunUOM_L0ezg,6892
115
115
  airbyte_cdk/sources/declarative/partition_routers/list_partition_router.py,sha256=t7pRdFWfFWJtQQG19c9PVeMODyO2BknRTakpM5U9N-8,4844
116
116
  airbyte_cdk/sources/declarative/partition_routers/partition_router.py,sha256=YyEIzdmLd1FjbVP3QbQ2VFCLW_P-OGbVh6VpZShp54k,2218
117
117
  airbyte_cdk/sources/declarative/partition_routers/single_partition_router.py,sha256=SKzKjSyfccq4dxGIh-J6ejrgkCHzaiTIazmbmeQiRD4,1942
118
- airbyte_cdk/sources/declarative/partition_routers/substream_partition_router.py,sha256=3Cb9HkRGXujNJq3J34brdTssSH07TveuuvkoxCZb2Ds,15200
118
+ airbyte_cdk/sources/declarative/partition_routers/substream_partition_router.py,sha256=nS4XoROk9CVk6Vh5FBwXj2ISWHpo_JDCBbQ4mRkKHh4,15201
119
119
  airbyte_cdk/sources/declarative/requesters/__init__.py,sha256=d7a3OoHbqaJDyyPli3nqqJ2yAW_SLX6XDaBAKOwvpxw,364
120
120
  airbyte_cdk/sources/declarative/requesters/error_handlers/__init__.py,sha256=6tVjjuNMGu77jZlegAO4Rb2kiYYF73ZET1GbqqWAr9A,717
121
121
  airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/__init__.py,sha256=9NE_zyvXAeEmknkroG3EaWhatWGo2xqWUV-TnFd2nwY,875
122
- airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/constant_backoff_strategy.py,sha256=rSISdzUkd7u_F6gvb-cHA8rpZIU2uwz3a06_Ru5si4s,1697
123
- airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/exponential_backoff_strategy.py,sha256=wix4mGM9sSlqSRp9vtEP1c-toHIJysOOIK3hdPc6h_c,1588
122
+ airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/constant_backoff_strategy.py,sha256=NLAe1w-QciWFEUyCXV25_yZfGg3F82EPe9VsHRVTfX4,1698
123
+ airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/exponential_backoff_strategy.py,sha256=tFCzf5jFAzyfiNwZq1UnDnhdPDeWWFkGTX7lmdsgM6w,1589
124
124
  airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/header_helper.py,sha256=n-DJ2ZffFqrhMlhU-qBeizoKmKurdGvF3pkN9vlKWkQ,1162
125
- airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/wait_time_from_header_backoff_strategy.py,sha256=EFMgpcz9QaYz2LVQWKZBboTwn0nUK5fZ-CDgMUvjZSU,2941
126
- airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/wait_until_time_from_header_backoff_strategy.py,sha256=6MHkXcCH6ciXwn7TY3T-QUreVgdpyckCi1Z1Sr0hmiY,3068
125
+ airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/wait_time_from_header_backoff_strategy.py,sha256=I3KYCJHhPiRfxYUzOa293YH4U3wGFISDsdY1OMHWRtw,2942
126
+ airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/wait_until_time_from_header_backoff_strategy.py,sha256=T2JTIdHdPzPiW0MpkCNYPsuaHUtF9V-ijNqUqdTDl6U,3069
127
127
  airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategy.py,sha256=ZN5kcaVAQDinX0Ld5NXA8M_7Sax5BoPsknVwH7v06as,634
128
- airbyte_cdk/sources/declarative/requesters/error_handlers/composite_error_handler.py,sha256=g_9SVZEktaWP6yAIpDmhFjld5f4rv4xknYILaV-Nl2E,2744
129
- airbyte_cdk/sources/declarative/requesters/error_handlers/default_error_handler.py,sha256=1O_tbRS_BzCMIDRGWZiVH9RciIL4wZVXt01gBWPoRMY,5189
130
- airbyte_cdk/sources/declarative/requesters/error_handlers/default_http_response_filter.py,sha256=wXx27vc31vWr0GP2NDF4O9JrAUDVu0Ft6sqhlHYYBx8,1313
128
+ airbyte_cdk/sources/declarative/requesters/error_handlers/composite_error_handler.py,sha256=tw5TMrzBAixZ0Z57Y90CtBuUVYQ-V4vob74IkcBHiAQ,2745
129
+ airbyte_cdk/sources/declarative/requesters/error_handlers/default_error_handler.py,sha256=WeTBxHv9BOGmyPn5Kpz7WHn_s7jyGRVUuS1HK-InwlI,5190
130
+ airbyte_cdk/sources/declarative/requesters/error_handlers/default_http_response_filter.py,sha256=q0YkeYUUWO6iErUy0vjqiOkhg8_9d5YcCmtlpXAJJ9E,1314
131
131
  airbyte_cdk/sources/declarative/requesters/error_handlers/error_handler.py,sha256=Tan66odx8VHzfdyyXMQkXz2pJYksllGqvxmpoajgcK4,669
132
- airbyte_cdk/sources/declarative/requesters/error_handlers/http_response_filter.py,sha256=cKwhcOLuJ21zSew0o-tkEwyVY4cG2l-M6S5LzL7NcYE,7912
133
- airbyte_cdk/sources/declarative/requesters/http_job_repository.py,sha256=p5v4YIIw7gYfpVsndAkmWPTCcaJ7cCuwpVfZWDogrSA,8661
134
- airbyte_cdk/sources/declarative/requesters/http_requester.py,sha256=MQrvI4EXstfPDIB3wc8VIRNrmRvbu7HRGJwD0v935j4,14722
132
+ airbyte_cdk/sources/declarative/requesters/error_handlers/http_response_filter.py,sha256=xTLaLAtDTclsHTXlvipDcxbmMzqPTbHrZBdAVsXDA9I,7913
133
+ airbyte_cdk/sources/declarative/requesters/http_job_repository.py,sha256=o0520AmHMb7SAoeokVNwoOzuZzIAT6ryx9uFYGSOrs0,8664
134
+ airbyte_cdk/sources/declarative/requesters/http_requester.py,sha256=RqYPkgJFAWfcZBTc-JBcGHPm4JL1ZQOhs9GKU4MP2eE,14723
135
135
  airbyte_cdk/sources/declarative/requesters/paginators/__init__.py,sha256=kDH6MR4fYJcVDve9V9Ued45AmEvxFdFPqX9VUN4u_KA,599
136
- airbyte_cdk/sources/declarative/requesters/paginators/default_paginator.py,sha256=gnuoHvsVDfMD1G--4NlTgACsdw8gEgCNfYMpuX0D39s,10880
137
- airbyte_cdk/sources/declarative/requesters/paginators/no_pagination.py,sha256=PYmNd39H_ukdxaFukqUKJXspuknppdONwGae798IR3g,1926
138
- airbyte_cdk/sources/declarative/requesters/paginators/paginator.py,sha256=lsZz3Fo6dN8CEmzRWZFaLwMIt4mhUwcoZ8RwlHWfP6E,1971
136
+ airbyte_cdk/sources/declarative/requesters/paginators/default_paginator.py,sha256=YaefzhiGlVKmd3EjrQAVOnLqeBnFDf8n_GDfrAwFBRg,10881
137
+ airbyte_cdk/sources/declarative/requesters/paginators/no_pagination.py,sha256=-P-QOlefFhEe99bsB2y3yTvA8c8kCCbfBaTS6qPvF6I,1927
138
+ airbyte_cdk/sources/declarative/requesters/paginators/paginator.py,sha256=ZgyvH7DOrASQ5K__J5SRAXH3REUW2n3yPHnFW9xq4NU,1972
139
139
  airbyte_cdk/sources/declarative/requesters/paginators/strategies/__init__.py,sha256=stF494yJa3j2T_IsJWEBh6ds1JTiPNakuTfZ_8Bpfxo,740
140
- airbyte_cdk/sources/declarative/requesters/paginators/strategies/cursor_pagination_strategy.py,sha256=eH3Tk8YlMbzZM0UrY1fB5WTpNojPykfmaBXu6N37LbI,3653
141
- airbyte_cdk/sources/declarative/requesters/paginators/strategies/offset_increment.py,sha256=vdU1WMmb5bqT08YUZkvbG8bqaHPbsAUu7KAEb6VTrSE,3366
142
- airbyte_cdk/sources/declarative/requesters/paginators/strategies/page_increment.py,sha256=a_O-_pTkT2M8PTclsp99fRMdL74_b9LsDakNyD6A1Ns,2490
143
- airbyte_cdk/sources/declarative/requesters/paginators/strategies/pagination_strategy.py,sha256=6Q6I8K90m8tUWkBIGSdhYnLQk095HNRVqLEaOtESeok,1289
144
- airbyte_cdk/sources/declarative/requesters/paginators/strategies/stop_condition.py,sha256=oO_xMSWON9kPbYZlNol58VNrEdYMjZmLstWplRt8StA,1990
140
+ airbyte_cdk/sources/declarative/requesters/paginators/strategies/cursor_pagination_strategy.py,sha256=vFzpNv8BdgXrYO5qhi2_Un4x4y-EAQWxinZtEPWz5KI,3654
141
+ airbyte_cdk/sources/declarative/requesters/paginators/strategies/offset_increment.py,sha256=pMPi6iQrhtrI9VRPj218QNM_OqD8lX8P3Tr9yloKoE8,3367
142
+ airbyte_cdk/sources/declarative/requesters/paginators/strategies/page_increment.py,sha256=kQGpfr-dOwarxTIf2S4sHVulBzm8zSwQXBM7rOhkafA,2491
143
+ airbyte_cdk/sources/declarative/requesters/paginators/strategies/pagination_strategy.py,sha256=ABpO4t0UUziBZnyml8UT_NhlF6loekhQji57TpKnaiY,1290
144
+ airbyte_cdk/sources/declarative/requesters/paginators/strategies/stop_condition.py,sha256=-8NwokW-aKwv8DdeHh1ssODTobBYSOmIhH2-IjSjlNA,2213
145
145
  airbyte_cdk/sources/declarative/requesters/request_option.py,sha256=_qmv8CLQQ3fERt6BuMZeRu6tZXscPoeARx1VJdWMQ_M,1055
146
146
  airbyte_cdk/sources/declarative/requesters/request_options/__init__.py,sha256=DzFS1eh7rj9OSSvgLyS_tBI9lhf3MyiKM8oab-KCkr8,772
147
147
  airbyte_cdk/sources/declarative/requesters/request_options/datetime_based_request_options_provider.py,sha256=x8VtwLSefLDoUpEKTBND1apP3Ar-ub0dut4xJjSIXeI,3749
148
148
  airbyte_cdk/sources/declarative/requesters/request_options/default_request_options_provider.py,sha256=SRROdPJZ5kuqHLOlkh115pWP9nDGfDxRYPgH9oD3hPo,1798
149
149
  airbyte_cdk/sources/declarative/requesters/request_options/interpolated_nested_request_input_provider.py,sha256=UW4cAtzkQ261AyLI1cmCL2WLdI3ZDYGUTmrqKB9W3u8,2422
150
150
  airbyte_cdk/sources/declarative/requesters/request_options/interpolated_request_input_provider.py,sha256=Vr2-qa8iHC0vJ4cCtPl7lAUlhrnl4lUuPLMSFrzxMIg,3024
151
- airbyte_cdk/sources/declarative/requesters/request_options/interpolated_request_options_provider.py,sha256=Y7IkULGO2r7cflxJmV0Dh5AcmZIeUjT7h-bf005Vt4I,6967
151
+ airbyte_cdk/sources/declarative/requesters/request_options/interpolated_request_options_provider.py,sha256=377N60kxWRNOBYtZthBvLblgqokcf8T1Pztpdf23MXI,6968
152
152
  airbyte_cdk/sources/declarative/requesters/request_options/request_options_provider.py,sha256=8YRiDzjYvqJ-aMmKFcjqzv_-e8OZ5QG_TbpZ-nuCu6s,2590
153
153
  airbyte_cdk/sources/declarative/requesters/request_path.py,sha256=S3MeFvcaQrMbOkSY2W2VbXLNomqt_3eXqVd9ZhgNwUs,299
154
- airbyte_cdk/sources/declarative/requesters/requester.py,sha256=9LWbCkHpr7GWTkPvYt1_NlENl3i3hEDEmLb-ibs0hfk,4945
154
+ airbyte_cdk/sources/declarative/requesters/requester.py,sha256=iVVpXQ4KEd9OyZNwmOofMvx7_06i8ZRxGo3aNTrEQLM,4946
155
155
  airbyte_cdk/sources/declarative/retrievers/__init__.py,sha256=FVQpUGVwp2Gibk4gp07VmLKX5AafUlsZWFSrDpUDuJM,443
156
- airbyte_cdk/sources/declarative/retrievers/async_retriever.py,sha256=iNe8Ihrk4vClCNtnEjtMUjjUoNo0UceYUFV7yAcXCU0,4965
156
+ airbyte_cdk/sources/declarative/retrievers/async_retriever.py,sha256=hHfE6fNe2sKKcVbgK6M8R1nOmHGnD2tL276ZO0HB7Yc,4966
157
157
  airbyte_cdk/sources/declarative/retrievers/retriever.py,sha256=XPLs593Xv8c5cKMc37XzUAYmzlXd1a7eSsspM-CMuWA,1696
158
- airbyte_cdk/sources/declarative/retrievers/simple_retriever.py,sha256=j09j4ngVDGosEVVEQk_joejAXm6dBfr45ulElhz2ZoA,23931
158
+ airbyte_cdk/sources/declarative/retrievers/simple_retriever.py,sha256=N4swGw5mfuTXJ2R7AKX18CHzizsr69pXwt5uSHLPi48,24172
159
159
  airbyte_cdk/sources/declarative/schema/__init__.py,sha256=ul8L9S0-__AMEdbCLHBq-PMEeA928NVp8BB83BMotfU,517
160
160
  airbyte_cdk/sources/declarative/schema/default_schema_loader.py,sha256=KTACrIE23a83wsm3Rd9Eb4K6-20lrGqYxTHNp9yxsso,1820
161
161
  airbyte_cdk/sources/declarative/schema/inline_schema_loader.py,sha256=bVETE10hRsatRJq3R3BeyRR0wIoK3gcP1gcpVRQ_P5U,464
@@ -164,75 +164,75 @@ airbyte_cdk/sources/declarative/schema/schema_loader.py,sha256=kjt8v0N5wWKA5zyLn
164
164
  airbyte_cdk/sources/declarative/spec/__init__.py,sha256=H0UwoRhgucbKBIzg85AXrifybVmfpwWpPdy22vZKVuo,141
165
165
  airbyte_cdk/sources/declarative/spec/spec.py,sha256=1vGFWbMA2nj2zSb9e-VChfntI-Ag8SUgcwLkhMfCKUw,1907
166
166
  airbyte_cdk/sources/declarative/stream_slicers/__init__.py,sha256=sI9vhc95RwJYOnA0VKjcbtKgFcmAbWjhdWBXFbAijOs,176
167
- airbyte_cdk/sources/declarative/stream_slicers/declarative_partition_generator.py,sha256=YDk2BmVMAUSyJTM1Clzjk5rdYRJzksMLLxJZdaMxuHE,3384
167
+ airbyte_cdk/sources/declarative/stream_slicers/declarative_partition_generator.py,sha256=E7feZ5xkHwFHODq8FSjwdGe291RZoCMCRHT1rWnQ1lI,3463
168
168
  airbyte_cdk/sources/declarative/stream_slicers/stream_slicer.py,sha256=SOkIPBi2Wu7yxIvA15yFzUAB95a3IzA8LPq5DEqHQQc,725
169
169
  airbyte_cdk/sources/declarative/transformations/__init__.py,sha256=CPJ8TlMpiUmvG3624VYu_NfTzxwKcfBjM2Q2wJ7fkSA,919
170
- airbyte_cdk/sources/declarative/transformations/add_fields.py,sha256=Oh4Kqws_K9r4qe75ZZ8aE4ydkKzIVP8sqeSeovCMs4M,5026
170
+ airbyte_cdk/sources/declarative/transformations/add_fields.py,sha256=r4YdAuAk2bQtNWJMztIIy2CC-NglD9NeK1s1TeO9wkw,5027
171
171
  airbyte_cdk/sources/declarative/transformations/keys_to_lower_transformation.py,sha256=RTs5KX4V3hM7A6QN1WlGF21YccTIyNH6qQI9IMb__hw,670
172
- airbyte_cdk/sources/declarative/transformations/remove_fields.py,sha256=LyKLaOx9q8mSXCec7WnvAU9zhEV0-NGDP1p1YJ82EFo,2744
172
+ airbyte_cdk/sources/declarative/transformations/remove_fields.py,sha256=EwUP0SZ2p4GRJ6Q8CUzlz9dcUeEidEFDlI2IBye2tlc,2745
173
173
  airbyte_cdk/sources/declarative/transformations/transformation.py,sha256=4sXtx9cNY2EHUPq-xHvDs8GQEBUy3Eo6TkRLKHPXx68,1161
174
174
  airbyte_cdk/sources/declarative/types.py,sha256=yqx0xlZv_76tkC7fqJKefmvl4GJJ8mXbeddwVV8XRJU,778
175
- airbyte_cdk/sources/declarative/yaml_declarative_source.py,sha256=2h3sQzt07fAxE0nSz2Njv_HlK2I2jmLkqbebQ_O3E1w,2389
175
+ airbyte_cdk/sources/declarative/yaml_declarative_source.py,sha256=MsKSAqtpwIqJfYOiUX01RbqMeTy7pvBoguvyTWrL7pI,2390
176
176
  airbyte_cdk/sources/embedded/__init__.py,sha256=ZnqYNxHsKCgO38IwB34RQyRMXTs4GTvlRi3ImKnIioo,61
177
177
  airbyte_cdk/sources/embedded/base_integration.py,sha256=pIFcfGmmP7HV7aVPlB5UYeA2-TNjHCyCE-30TRdOVU4,2406
178
178
  airbyte_cdk/sources/embedded/catalog.py,sha256=EAnLw9u5fXLNBLfWr_I0itA7OEHMWdqEaM_rWc_tCpI,1653
179
179
  airbyte_cdk/sources/embedded/runner.py,sha256=S6cz7SWRTFfT_ZhP-zZYdiT9XRijulV_bMABal2h0OI,1493
180
- airbyte_cdk/sources/embedded/tools.py,sha256=tEoWoMh7QlSsMvxILp0KSgFlNm4XN3T5qpW48wXmK8k,745
180
+ airbyte_cdk/sources/embedded/tools.py,sha256=kp26Au9xH4hxsnDQoavxE_a418ZrRUAMBr2MeOU52VI,746
181
181
  airbyte_cdk/sources/file_based/README.md,sha256=iMqww4VZ882jfNQIdljjDgqreKs-mkdtSrRKA94iX6A,11085
182
182
  airbyte_cdk/sources/file_based/__init__.py,sha256=EaxHv_9ot-eRlUCR47ZMZ0IOtB-n0HH24om7Bfn-uuQ,868
183
183
  airbyte_cdk/sources/file_based/availability_strategy/__init__.py,sha256=jtfV8qaLiVBodOA03hfDhy2snPllptcqJs0tNodJ2kU,371
184
184
  airbyte_cdk/sources/file_based/availability_strategy/abstract_file_based_availability_strategy.py,sha256=HXVXIkBflNGSddjh5gcRjz_HJdBZcPjQ0juU44lxPeE,2209
185
185
  airbyte_cdk/sources/file_based/availability_strategy/default_file_based_availability_strategy.py,sha256=bH1_aTTsJJr8j705O6fn_YvhQYyZa0NVoE8AafE6DEM,5700
186
186
  airbyte_cdk/sources/file_based/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
187
- airbyte_cdk/sources/file_based/config/abstract_file_based_spec.py,sha256=kytl9zY23IL-0l7FmwP1R0XMKRxpYUulQCUqWvoJbNg,6454
188
- airbyte_cdk/sources/file_based/config/avro_format.py,sha256=524v8w-V-NNCQlrF9Mwj-mbkI6d8IzY8OdpsuZqclv0,715
189
- airbyte_cdk/sources/file_based/config/csv_format.py,sha256=w0I3g7HONf12rV-aAFjXrbylK1O34zmc4hRWKRlTIXA,8005
190
- airbyte_cdk/sources/file_based/config/excel_format.py,sha256=3VkDtGbtc4EPGb1ZVLq8U6BBf50fiKmsgiENoPE360c,377
191
- airbyte_cdk/sources/file_based/config/file_based_stream_config.py,sha256=waP2sChs7tNscwBOSJqtpIOX3p5FrF4-uobbQDsEUFc,4646
192
- airbyte_cdk/sources/file_based/config/jsonl_format.py,sha256=MWVgi_cxzZwiYUp-HhzsrQTQMjwtyXXjd5lre9o0oJo,377
193
- airbyte_cdk/sources/file_based/config/parquet_format.py,sha256=eXWb0vOi-1CaZ6SndrHvQoD8U0WjI9R3HWZcEJpKOdk,740
194
- airbyte_cdk/sources/file_based/config/unstructured_format.py,sha256=ugAD56dNw-eN_Z5sjGjWO8nx1gb_8BGly61wqqMNMA0,3564
187
+ airbyte_cdk/sources/file_based/config/abstract_file_based_spec.py,sha256=tj-M1L5BTa5yIQ3jHo09CtCTSq_eR-68zgyOPqwsurw,6455
188
+ airbyte_cdk/sources/file_based/config/avro_format.py,sha256=NxTF96ewzn6HuhgodsY7Rpb-ybr1ZEWW5d4Vid64g5A,716
189
+ airbyte_cdk/sources/file_based/config/csv_format.py,sha256=NWekkyT8dTwiVK0mwa_krQD4FJPHSDfILo8kPAg3-Vs,8006
190
+ airbyte_cdk/sources/file_based/config/excel_format.py,sha256=9qAmTsT6SoVzNfNv0oBVkVCmiyqQuVAbfRKajjoa7Js,378
191
+ airbyte_cdk/sources/file_based/config/file_based_stream_config.py,sha256=rkTuHpz9G8o2YEnCkOZJM2vJZt_hEE4zklHivRfx43s,4647
192
+ airbyte_cdk/sources/file_based/config/jsonl_format.py,sha256=cxtpz4t9_ERQyj_1Bx4DjOxuYLykWt0B02S4dWW5BgM,378
193
+ airbyte_cdk/sources/file_based/config/parquet_format.py,sha256=XOp-7nmm_WcbGI8SjKH2fs3Mkf1H4RAOYSWeUFYAz3w,741
194
+ airbyte_cdk/sources/file_based/config/unstructured_format.py,sha256=tIbB9Pn1HqU67ju7hEZ9dBstRrb2eojUNMsdckzbj58,3565
195
195
  airbyte_cdk/sources/file_based/discovery_policy/__init__.py,sha256=x_7JsQGiS7Ytmr0ZDS0SNYGcNUzC4wCm3_1-Mf3ZFnw,283
196
196
  airbyte_cdk/sources/file_based/discovery_policy/abstract_discovery_policy.py,sha256=dCfXX529Rd5rtopg4VeEgTPJjFtqjtjzPq6LCw18Wt0,605
197
197
  airbyte_cdk/sources/file_based/discovery_policy/default_discovery_policy.py,sha256=-xujTidtrq6HC00WKbjQh1CZdT5LMuzkp5BLjqDmfTY,1007
198
198
  airbyte_cdk/sources/file_based/exceptions.py,sha256=AEELNIRzKPX6eopKd_2jhE7WiNeR0Aw7nQWVOL8fvkc,5760
199
- airbyte_cdk/sources/file_based/file_based_source.py,sha256=CLHnw-e1cvgS-JiNAG9ssLOAeKjhFkBGZm_61Z8rQ0o,16651
200
- airbyte_cdk/sources/file_based/file_based_stream_reader.py,sha256=09WDoXXzTTp4vz_szQJHqmEsE80GJGcHJPwnZEJXhfM,6178
199
+ airbyte_cdk/sources/file_based/file_based_source.py,sha256=RfpctRNLJ_EHKKEc2E1EZGYRfhG0Z9o6TgsKS4XrSNY,16652
200
+ airbyte_cdk/sources/file_based/file_based_stream_reader.py,sha256=ohxKlqPuV7TGwjyRy_gaWUol8QN5lBSoCYoaqBtRh1c,6179
201
201
  airbyte_cdk/sources/file_based/file_types/__init__.py,sha256=hXMSzGQwP6T9bJlKWb8EUBZomU9mZZuXjP0J2P2dGBY,1233
202
- airbyte_cdk/sources/file_based/file_types/avro_parser.py,sha256=kwNDxAHIWTluwK2jR7EEKWxsGR5Guj-MHBYJ8RCHDe8,10313
203
- airbyte_cdk/sources/file_based/file_types/csv_parser.py,sha256=Y9PWTYqT5C0h6Y7QLM_B2fYOgnSUW1nyLlkEUzIqqlg,20597
204
- airbyte_cdk/sources/file_based/file_types/excel_parser.py,sha256=ymAPI0r1Z6b-J5ojE_clEF4kshmzDatv0imKG0A2qfY,6994
202
+ airbyte_cdk/sources/file_based/file_types/avro_parser.py,sha256=bWPKvm0CrNrGPnwXy37CpJivx8kAZ0aDOOrNwDuEX9Q,10314
203
+ airbyte_cdk/sources/file_based/file_types/csv_parser.py,sha256=boRGkrPTbop4ysCRXIxZj1AzyJcIG-oqDiOXXAW-fv0,20598
204
+ airbyte_cdk/sources/file_based/file_types/excel_parser.py,sha256=TKtBApq_WGfydRf0JFx0FGKA4RCf8JwTCQpEB8R2jVw,6978
205
205
  airbyte_cdk/sources/file_based/file_types/file_transfer.py,sha256=HyGRihJxcb_lEsffKhfF3eylLBDy51_PXSwGUFEJ5bA,1265
206
206
  airbyte_cdk/sources/file_based/file_types/file_type_parser.py,sha256=JgpH21PrbRqwK92BJklZWvh2TndA6xZ-eP1LPMo44oQ,2832
207
- airbyte_cdk/sources/file_based/file_types/jsonl_parser.py,sha256=k1ri7TtwrN8oYZpCl1bNNeAQmwBbwLjmOmIz8-tKflY,5897
208
- airbyte_cdk/sources/file_based/file_types/parquet_parser.py,sha256=0B4RYehU4z4dys3Tu-O98B0Uw7JO_LzStRwmNxKh6Xk,10486
209
- airbyte_cdk/sources/file_based/file_types/unstructured_parser.py,sha256=3dlhzKq4Vuc-E01uG5TLPAn0E8Be2SrBNukeP22RNFM,18601
207
+ airbyte_cdk/sources/file_based/file_types/jsonl_parser.py,sha256=akSEmTdPz-0s30jaJ6z1HnRIapS9guuTOOCFtLEeqMs,5898
208
+ airbyte_cdk/sources/file_based/file_types/parquet_parser.py,sha256=XenFg5sJ-UBnIkSmsiNJRou11NO0zZXx-RXgPHMT2NA,10487
209
+ airbyte_cdk/sources/file_based/file_types/unstructured_parser.py,sha256=r5FNcJadiI5PTyl1-doIodPCwW7xZWOTHl4Epd-w0-8,18602
210
210
  airbyte_cdk/sources/file_based/remote_file.py,sha256=yqRz93vPe8PBXLIMJ5W5u2JRlZRhg6sBrAjn3pPjJ8A,315
211
211
  airbyte_cdk/sources/file_based/schema_helpers.py,sha256=Cf8FH1bDFP0qCDDfEYir_WjP4exXUnikz8hZ40y1Ek0,9601
212
212
  airbyte_cdk/sources/file_based/schema_validation_policies/__init__.py,sha256=sEVnRhZ8x9f7PNjo6lewxid9z0PI8eSj7gSoFC3MH1Y,527
213
213
  airbyte_cdk/sources/file_based/schema_validation_policies/abstract_schema_validation_policy.py,sha256=kjvX7nOmUALYd7HuZHilUzgJPZ-MnZ08mtvuBnt2tQ0,618
214
214
  airbyte_cdk/sources/file_based/schema_validation_policies/default_schema_validation_policies.py,sha256=vjTlmYT_nqzY3DbT5xem7X-bwgA9RyXHoKFqiMO2URk,1728
215
215
  airbyte_cdk/sources/file_based/stream/__init__.py,sha256=QPDqdgjsabOQD93dSFqHGaFS_3pIwm-chEabZHiPJi0,265
216
- airbyte_cdk/sources/file_based/stream/abstract_file_based_stream.py,sha256=hZZSoAMFb--rifpg8B6gZD3I1KRF2KVrWIDlLjiKcpA,7479
216
+ airbyte_cdk/sources/file_based/stream/abstract_file_based_stream.py,sha256=V_6oReWy83x1lXLhAIx4qkruOqPCX-5ROBQCgzvYPUU,7480
217
217
  airbyte_cdk/sources/file_based/stream/concurrent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
218
- airbyte_cdk/sources/file_based/stream/concurrent/adapters.py,sha256=zaZYfnQsACkVEyR7ZJM-8z3f3aSL0eO69J-vI3n4gkQ,13882
218
+ airbyte_cdk/sources/file_based/stream/concurrent/adapters.py,sha256=L6r58EsffGsyREZN4HCpLnqSoY3Z9kW5kUJkBYV9gDs,13899
219
219
  airbyte_cdk/sources/file_based/stream/concurrent/cursor/__init__.py,sha256=AtTntHQgspWt8vZ9cjIjSOO1YpH2OO-D8E78pAViE7k,329
220
- airbyte_cdk/sources/file_based/stream/concurrent/cursor/abstract_concurrent_file_based_cursor.py,sha256=pCh1X-WTTuJGF9r-QlcTMlkPbpLBeOFkGrOJePtwTeU,1887
221
- airbyte_cdk/sources/file_based/stream/concurrent/cursor/file_based_concurrent_cursor.py,sha256=CPE_dEmAYK0r-wdI40zTnLtL3B-0DYThuJ1OKOCO8MU,14911
222
- airbyte_cdk/sources/file_based/stream/concurrent/cursor/file_based_final_state_cursor.py,sha256=1K4oGJKtPejdVT4qoSgs6nuS0Q4BuKtVKK3iDOmNMlA,3228
220
+ airbyte_cdk/sources/file_based/stream/concurrent/cursor/abstract_concurrent_file_based_cursor.py,sha256=5dYZMLBEbvCyrCT89lCYdm2FdrLPLuxjdpQSVGP5o0w,1856
221
+ airbyte_cdk/sources/file_based/stream/concurrent/cursor/file_based_concurrent_cursor.py,sha256=gRTL-9I3ejjQOpLKd6ixe9rB3kGlubCdhUt9ri6AdAI,14880
222
+ airbyte_cdk/sources/file_based/stream/concurrent/cursor/file_based_final_state_cursor.py,sha256=V4Dy7o-FVLwCsvHgV8cgCN46vb_nc7Jlfow-D3SXjbU,3197
223
223
  airbyte_cdk/sources/file_based/stream/cursor/__init__.py,sha256=MhFB5hOo8sjwvCh8gangaymdg3EJWYt_72brFOZt068,191
224
224
  airbyte_cdk/sources/file_based/stream/cursor/abstract_file_based_cursor.py,sha256=om-x3gZFPgWDpi15S9RxZmR36VHnk8sytgN6LlBQhAw,1934
225
225
  airbyte_cdk/sources/file_based/stream/cursor/default_file_based_cursor.py,sha256=LgAl6xAgY-QD_KWZe1txkFgZlNe0jZydoTyAcHsP15g,7022
226
226
  airbyte_cdk/sources/file_based/stream/default_file_based_stream.py,sha256=rpwU6AOyhFLuXtcFKkcOHFWbRQ4kLCOKzAjcID_M87k,16770
227
227
  airbyte_cdk/sources/file_based/types.py,sha256=INxG7OPnkdUP69oYNKMAbwhvV1AGvLRHs1J6pIia2FI,218
228
228
  airbyte_cdk/sources/http_config.py,sha256=OBZeuyFilm6NlDlBhFQvHhTWabEvZww6OHDIlZujIS0,730
229
- airbyte_cdk/sources/http_logger.py,sha256=-r5zen-SPGtVri2ir1WZOcV-jT9wr2CBADi8FV_xptA,1454
229
+ airbyte_cdk/sources/http_logger.py,sha256=R9xhq-uEgXZXMMhIX6PhYxxVG0WvPp6__vTOCcyMJMM,1455
230
230
  airbyte_cdk/sources/message/__init__.py,sha256=14ZSLah9uyI_CyK7_jIyq521vlgKAdihe6Ciw6-jLgU,372
231
231
  airbyte_cdk/sources/message/repository.py,sha256=SG7avgti_-dj8FcRHTTrhgLLGJbElv14_zIB0SH8AIc,4763
232
232
  airbyte_cdk/sources/source.py,sha256=KIBBH5VLEb8BZ8B9aROlfaI6OLoJqKDPMJ10jkAR7nk,3611
233
233
  airbyte_cdk/sources/streams/__init__.py,sha256=14lMJVrpKV2E5SYKAeXV1m6ajZn8iL3XQflcEgWrWuc,256
234
234
  airbyte_cdk/sources/streams/availability_strategy.py,sha256=_RU4JITrxMEN36g1RDHMu0iSw0I_3yWGfo5N8_YRvOg,3247
235
- airbyte_cdk/sources/streams/call_rate.py,sha256=4HK7Q_4hmIGIJX-flzH6EEi0__qx-NPhyvKnNb3wylQ,21078
235
+ airbyte_cdk/sources/streams/call_rate.py,sha256=Um_Ny8R7WZ2B0PWoxr-wrWPsgc5we7HrHalaMcozuVs,21052
236
236
  airbyte_cdk/sources/streams/checkpoint/__init__.py,sha256=zQQ8m9Dowli2eoql478yqVsNYB32IcE75KVwZ_YV5ew,711
237
237
  airbyte_cdk/sources/streams/checkpoint/checkpoint_reader.py,sha256=6HMT2NI-FQuaW0nt95NcyWrt5rZN4gF-Arx0sxdgbv4,15221
238
238
  airbyte_cdk/sources/streams/checkpoint/cursor.py,sha256=3e-3c-54k8U7Awno7DMmAD9ndbnl9OM48EnbEgeDUO0,3499
@@ -241,52 +241,51 @@ airbyte_cdk/sources/streams/checkpoint/resumable_full_refresh_cursor.py,sha256=9
241
241
  airbyte_cdk/sources/streams/checkpoint/substream_resumable_full_refresh_cursor.py,sha256=qyTpIpVh7c1ptwZ9S-2sMoRHh4prpQAlzqjweQ5iCxM,4769
242
242
  airbyte_cdk/sources/streams/concurrent/README.md,sha256=0nvgnlCBfZJiPDAofT8yFmUhGc4L99RCb3fL_PI4sSY,1070
243
243
  airbyte_cdk/sources/streams/concurrent/__init__.py,sha256=4Hw-PX1-VgESLF16cDdvuYCzGJtHntThLF4qIiULWeo,61
244
- airbyte_cdk/sources/streams/concurrent/abstract_stream.py,sha256=qqK8padYVkZNZ_nYLf4NXAmdNW9K8u_ys-RV-kzZAc8,3891
244
+ airbyte_cdk/sources/streams/concurrent/abstract_stream.py,sha256=sVFzrJq9YVuMalfKqg-_IIlbm_yrKW1eqAG_U-4Jwr4,3892
245
245
  airbyte_cdk/sources/streams/concurrent/abstract_stream_facade.py,sha256=QTry1QCBUwJDw1QSCEvz23s7zIEx_7QMxkPq9j-oPIQ,1358
246
- airbyte_cdk/sources/streams/concurrent/adapters.py,sha256=dbRuPkk-t5QWu39F5IjMkbxwtnLyQM4PIJ3EX2C4UwQ,15051
247
- airbyte_cdk/sources/streams/concurrent/availability_strategy.py,sha256=QjX52lC4YOOvcTEhR0RU9e42yuWtueQkW_I_qpE_uTM,2876
248
- airbyte_cdk/sources/streams/concurrent/cursor.py,sha256=cvgpTQC7X66GQu0huJOpgceECre2bBU0tI_ZrGYBn5E,19468
246
+ airbyte_cdk/sources/streams/concurrent/adapters.py,sha256=f2TmcQaDRN9ttiaD_wsgDCCXUG4C_UtIQy19yd49tp0,15176
247
+ airbyte_cdk/sources/streams/concurrent/availability_strategy.py,sha256=xqErZU9v9QTe9Fv-MSJAICABs3Ke27mdA7QpgyFFj8g,2877
248
+ airbyte_cdk/sources/streams/concurrent/cursor.py,sha256=D_kQxKAmIwgs3eoJeVZPTjMToRT1N2FGd2RR8RnpX90,20555
249
249
  airbyte_cdk/sources/streams/concurrent/default_stream.py,sha256=WdZYzION3q6nIhIIcpFqlovDcouOHdbnB0U1YIDP2Jk,3175
250
250
  airbyte_cdk/sources/streams/concurrent/exceptions.py,sha256=JOZ446MCLpmF26r9KfS6OO_6rGjcjgJNZdcw6jccjEI,468
251
251
  airbyte_cdk/sources/streams/concurrent/helpers.py,sha256=gtj9p0clZwgnClrIRH6V2Wl0Jwu11Plq-9FP4FU2VQA,1327
252
252
  airbyte_cdk/sources/streams/concurrent/partition_enqueuer.py,sha256=2t64b_z9cEPmlHZnjSiMTO8PEtEdiAJDG0JcYOtUqAE,3363
253
253
  airbyte_cdk/sources/streams/concurrent/partition_reader.py,sha256=0TIrjbTzYJGdA0AZUzbeIKr0iHbawnoEKVl7bWxOFZY,1760
254
254
  airbyte_cdk/sources/streams/concurrent/partitions/__init__.py,sha256=4Hw-PX1-VgESLF16cDdvuYCzGJtHntThLF4qIiULWeo,61
255
- airbyte_cdk/sources/streams/concurrent/partitions/partition.py,sha256=FRt6wsdMoXL2gZiAkd4cP-Bi7oM1ZzRDimDh0j98atw,1521
255
+ airbyte_cdk/sources/streams/concurrent/partitions/partition.py,sha256=CmaRcKn8y118No3qvbRV9DBeAUKv17lrVgloR4Y9TwU,1490
256
256
  airbyte_cdk/sources/streams/concurrent/partitions/partition_generator.py,sha256=_ymkkBr71_qt1fW0_MUqw96OfNBkeJngXQ09yolEDHw,441
257
- airbyte_cdk/sources/streams/concurrent/partitions/record.py,sha256=HVGVZ2yF5iaPKxTjRn305lLmYb5I8k7DkQoNIyKA_MA,938
258
257
  airbyte_cdk/sources/streams/concurrent/partitions/stream_slicer.py,sha256=nbdkkHoN0NFeSs7YUFfzY1Lg5Jrt8fWY_ln3YrhY-Ko,544
259
- airbyte_cdk/sources/streams/concurrent/partitions/types.py,sha256=6k83K_dnwHAadkTBPSdWKssTzxVGVLH5DzZFkN6pFr8,1197
258
+ airbyte_cdk/sources/streams/concurrent/partitions/types.py,sha256=frPVvHtY7vLxpGEbMQzNvF1Y52ZVyct9f1DDhGoRjwY,1166
260
259
  airbyte_cdk/sources/streams/concurrent/state_converters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
261
260
  airbyte_cdk/sources/streams/concurrent/state_converters/abstract_stream_state_converter.py,sha256=CXHUMOhndu-LOKgsnNTItv5s5qrKpmJDeHOzlH1nBy8,6819
262
- airbyte_cdk/sources/streams/concurrent/state_converters/datetime_stream_state_converter.py,sha256=n9UPKpSsCu1zjaOKVp6WTuyGSQS2Qh9YWy8myKBpe18,7721
263
- airbyte_cdk/sources/streams/core.py,sha256=0sNVS--49wtulgSb99wFR6XimaUv_owPFEsR6yxJMNE,31928
261
+ airbyte_cdk/sources/streams/concurrent/state_converters/datetime_stream_state_converter.py,sha256=wDfBtNH_mnUOjAlIJjxVHpGrb3JKK_zkcRjx0Ma5DRc,7721
262
+ airbyte_cdk/sources/streams/core.py,sha256=vasGjGkOvafNp0FWEEhtxmKqwyX6IVO-yJWMLgjzpzo,31929
264
263
  airbyte_cdk/sources/streams/http/__init__.py,sha256=NXaNlkzZMkh5kS8S5ujEaKEE6855sk6_HljF_GFjKZI,311
265
264
  airbyte_cdk/sources/streams/http/availability_strategy.py,sha256=sovoGFThZr-doMN9vJvTuJBrvkwQVIO0qTQO64pGZPY,2428
266
265
  airbyte_cdk/sources/streams/http/error_handlers/__init__.py,sha256=R8OgTcratGH4f6BbYM2Hp8qYyEk7wMYuyda5H9ohGW8,665
267
266
  airbyte_cdk/sources/streams/http/error_handlers/backoff_strategy.py,sha256=7fIkF00wD6bqIXtiG2QAgbje_xiQ5JTs99ibwR8LLXY,1030
268
267
  airbyte_cdk/sources/streams/http/error_handlers/default_backoff_strategy.py,sha256=1_1Gi2ImwTbh4SgIKCRh2P4kPaVeAeHc1ib6IrBfqKA,411
269
- airbyte_cdk/sources/streams/http/error_handlers/default_error_mapping.py,sha256=xHh6wgP0nL-1POMPj-hqp6fYJ_-Rfu3W70Jyxa2fG9w,3375
268
+ airbyte_cdk/sources/streams/http/error_handlers/default_error_mapping.py,sha256=Z0gHhbBSFNWuatzCtBOQt9C-BkiN1G76wr6yl0qodEU,3376
270
269
  airbyte_cdk/sources/streams/http/error_handlers/error_handler.py,sha256=GuqP7U1eC9RPaiD4y4Mkf17vKcOXo2ENnMB-CUBLsbo,1164
271
270
  airbyte_cdk/sources/streams/http/error_handlers/error_message_parser.py,sha256=xC93uB5BJd3iOnAXCrYLJTitWeGZlqzwe55VtsZqNnE,456
272
- airbyte_cdk/sources/streams/http/error_handlers/http_status_error_handler.py,sha256=sZ67S7hHNK9Ya_G3M9nE1qI6ijuPZKc7loBqT3HAvvE,4187
273
- airbyte_cdk/sources/streams/http/error_handlers/json_error_message_parser.py,sha256=E6Rsj5PUEwVs0IfZTf7nyZQq0XP-qhepzKDgYjjZQTI,1827
274
- airbyte_cdk/sources/streams/http/error_handlers/response_models.py,sha256=7AX6sm8hMfVtcZuUrCmGmNFsO5rDK9Ecg2Kzl6rQwrk,2235
271
+ airbyte_cdk/sources/streams/http/error_handlers/http_status_error_handler.py,sha256=2gqececTxxUqO6aIkVNNXADg48Px5EHUwnXHL9KiPT8,4188
272
+ airbyte_cdk/sources/streams/http/error_handlers/json_error_message_parser.py,sha256=GW5rkBQLLTj7MEaDdbpG7DHxTQVRrDOg1ehLLxjqiM4,1828
273
+ airbyte_cdk/sources/streams/http/error_handlers/response_models.py,sha256=xGIVELBFY0TmH9aUq1ikoqJz8oHLr6di2JLvKWVEO-s,2236
275
274
  airbyte_cdk/sources/streams/http/exceptions.py,sha256=njC7MlMJoFYcSGz4mIp6-bqLFTr6vC8ej25X0oSeyjE,1824
276
- airbyte_cdk/sources/streams/http/http.py,sha256=XoUvIClYO96datz_lBPBBY6uWmCja2mUk_yERdjskQo,28466
277
- airbyte_cdk/sources/streams/http/http_client.py,sha256=EhB9An8wA9wkoNBxTPfHGwmL_-jJVLUl6uFgkY6Fcho,19125
275
+ airbyte_cdk/sources/streams/http/http.py,sha256=h0bq4arzMeJsR-5HZNfGYXtZhgVvLbW6myi9fuhMayU,28467
276
+ airbyte_cdk/sources/streams/http/http_client.py,sha256=-fbKg5fJG0Gg2D287QfrTmfawmVWR-ZRztemHIL087E,21467
278
277
  airbyte_cdk/sources/streams/http/rate_limiting.py,sha256=IwdjrHKUnU97XO4qONgYRv4YYW51xQ8SJm4WLafXDB8,6351
279
278
  airbyte_cdk/sources/streams/http/requests_native_auth/__init__.py,sha256=RN0D3nOX1xLgwEwKWu6pkGy3XqBFzKSNZ8Lf6umU2eY,413
280
- airbyte_cdk/sources/streams/http/requests_native_auth/abstract_oauth.py,sha256=r6KvG6V-bzhnCGwLqnxngrjGM0UrvD1dRo8knatuAH0,10320
279
+ airbyte_cdk/sources/streams/http/requests_native_auth/abstract_oauth.py,sha256=nxI94yJ3bGfpDO8RR3QvOJ-PSW0n9CElSAkgl5ae80Y,10321
281
280
  airbyte_cdk/sources/streams/http/requests_native_auth/abstract_token.py,sha256=T0hVF2cBXGgIfrCslvTC1uNm9rNbYjENNl2Cb3mXuSY,961
282
- airbyte_cdk/sources/streams/http/requests_native_auth/oauth.py,sha256=Jx5Vfkl2JolJJ-qXQLNvwzwRXjSnsgaHbSEGxUqLRPI,13615
281
+ airbyte_cdk/sources/streams/http/requests_native_auth/oauth.py,sha256=7qqG4HX84DTIBp_C4hrmDbE0ZBzExnZDKl_TapmPzRQ,13616
283
282
  airbyte_cdk/sources/streams/http/requests_native_auth/token.py,sha256=h5PTzcdH-RQLeCg7xZ45w_484OPUDSwNWl_iMJQmZoI,2526
284
283
  airbyte_cdk/sources/streams/utils/__init__.py,sha256=4Hw-PX1-VgESLF16cDdvuYCzGJtHntThLF4qIiULWeo,61
285
- airbyte_cdk/sources/types.py,sha256=q0W2snCfmiGIaiV5L42_4C_r3ObKgUQm9eqCS90VXtg,4558
284
+ airbyte_cdk/sources/types.py,sha256=WWVigI7ZSoQU2TBCzDsHJtoX4Ima9v--lcLyYwUG_cE,4904
286
285
  airbyte_cdk/sources/utils/__init__.py,sha256=TTN6VUxVy6Is8BhYQZR5pxJGQh8yH4duXh4O1TiMiEY,118
287
286
  airbyte_cdk/sources/utils/casing.py,sha256=QC-gV1O4e8DR4-bhdXieUPKm_JamzslVyfABLYYRSXA,256
288
287
  airbyte_cdk/sources/utils/record_helper.py,sha256=EIUPaJuLNrLUuTYgo0JbEsqFGvBYRiDJpWP2QOU-wWU,2184
289
- airbyte_cdk/sources/utils/schema_helpers.py,sha256=VivHYSFporVBzrO9KuJ5YHy_vVXAMmyH7dZZWQZ8gbM,8575
288
+ airbyte_cdk/sources/utils/schema_helpers.py,sha256=uR6IJt782l15bQ57O6SCqA75xybZ946oyC9nw3zYJ0k,8576
290
289
  airbyte_cdk/sources/utils/slice_logger.py,sha256=qWWeFLAvigFz0b4O1_O3QDM1cy8PqZAMMgVPR2hEeb8,1778
291
290
  airbyte_cdk/sources/utils/transform.py,sha256=FCBIL27-CmJA5Q4IcmxdKq0hN9FhlUz5yv-EvXNx79A,9640
292
291
  airbyte_cdk/sources/utils/types.py,sha256=41ZQR681t5TUnOScij58d088sb99klH_ZENFcaYro_g,175
@@ -296,17 +295,17 @@ airbyte_cdk/sql/_util/hashing.py,sha256=HN5N1m0GPMtD_hSnWkj-721Bsq02PzGgmTZ4jcAK
296
295
  airbyte_cdk/sql/_util/name_normalizers.py,sha256=z5oJjyAIc3RJ3L6M823SiBo2G3wpO9vXnOKbMLmoN5w,2874
297
296
  airbyte_cdk/sql/constants.py,sha256=ujNp1Dz8jBwEUV8rpd7Q5lItzqWGeSvMK7UWKtgclEU,1331
298
297
  airbyte_cdk/sql/exceptions.py,sha256=7_-K2c_trPy6kM89I2pwsrnVEtXqOspd9Eqrzf2KD2A,7746
299
- airbyte_cdk/sql/secrets.py,sha256=6Mo60XyEhCa3HurXPm6idOqWNXXFGTxoCitjfNKJ08Y,4344
298
+ airbyte_cdk/sql/secrets.py,sha256=FRIafU5YbWzoK8jtAcfExwzMGdswMbs0OOo1O7Y5i-g,4345
300
299
  airbyte_cdk/sql/shared/__init__.py,sha256=-BU9zpzwx7JxSlS7EmFuGmdB9jK_QhhEJUe5dxErrDw,334
301
300
  airbyte_cdk/sql/shared/catalog_providers.py,sha256=qiahORhtN6qBUGHhSKmzE00uC4i6W8unyBKCj7Kw47s,5218
302
- airbyte_cdk/sql/shared/sql_processor.py,sha256=UWMMP5q1ElEQHbxW5WpF7Z1JlpPUxjAbtevDYzw3Gc8,27705
301
+ airbyte_cdk/sql/shared/sql_processor.py,sha256=fPWLcDaCBXQRV1ugdWIZ6x53FYGQ1BpMFYJGnSCYed0,27707
303
302
  airbyte_cdk/sql/types.py,sha256=XEIhRAo_ASd0kVLBkdLf5bHiRhNple-IJrC9TibcDdY,5880
304
303
  airbyte_cdk/test/__init__.py,sha256=f_XdkOg4_63QT2k3BbKY34209lppwgw-svzfZstQEq4,199
305
304
  airbyte_cdk/test/catalog_builder.py,sha256=-y05Cz1x0Dlk6oE9LSKhCozssV2gYBNtMdV5YYOPOtk,3015
306
- airbyte_cdk/test/entrypoint_wrapper.py,sha256=mRivUeptmR_8WKhsTP9_iddCJtak6oTXaKTJm2hjSEM,9819
305
+ airbyte_cdk/test/entrypoint_wrapper.py,sha256=cfRbBIsu1mpehf89qP0j8pi99LGNiPRnkF2XShHhNOY,9820
307
306
  airbyte_cdk/test/mock_http/__init__.py,sha256=uil6k-0NbUyDFZXtWw88HaS7r13i43VzA9H7hOHzZx8,322
308
307
  airbyte_cdk/test/mock_http/matcher.py,sha256=4Qj8UnJKZIs-eodshryce3SN1Ayc8GZpBETmP6hTEyc,1446
309
- airbyte_cdk/test/mock_http/mocker.py,sha256=cyQcuFFLnK_Eyk3fuibbidRvnrAbZt1aLxam7mOioxc,7256
308
+ airbyte_cdk/test/mock_http/mocker.py,sha256=I_yM6EI-SSurS47O94OB9ZQDqsZGX0aCnUZUBBmqVBc,7257
310
309
  airbyte_cdk/test/mock_http/request.py,sha256=tdB8cqk2vLgCDTOKffBKsM06llYs4ZecgtH6DKyx6yY,4112
311
310
  airbyte_cdk/test/mock_http/response.py,sha256=U9KEsUkK2dPXYwnfwrwp6CcYSSpMYKLjfTrPFKSMCaM,602
312
311
  airbyte_cdk/test/mock_http/response_builder.py,sha256=bmC88X3NL_1pOF45MqKsf3v7l7nYSH7fCjJZIfALyFc,8018
@@ -326,13 +325,13 @@ airbyte_cdk/utils/mapping_helpers.py,sha256=H7BH-Yr8hSRG4W0zZcQ0ZzKOY5QFn8fNkGcE
326
325
  airbyte_cdk/utils/message_utils.py,sha256=wSkwgZ-TWA0ll8sbNPp5coqHCmLJp0veDcGd7_t4lLY,1263
327
326
  airbyte_cdk/utils/oneof_option_config.py,sha256=N8EmWdYdwt0FM7fuShh6H8nj_r4KEL9tb2DJJtwsPow,1180
328
327
  airbyte_cdk/utils/print_buffer.py,sha256=PhMOi0C4Z91kWKrSvCQXcp8qRh1uCimpIdvrg6voZIA,2810
329
- airbyte_cdk/utils/schema_inferrer.py,sha256=igYTpdi1uqzyj13h5EJli67g1hfwQK8K_jlNTGGeUMY,9860
330
- airbyte_cdk/utils/slice_hasher.py,sha256=EemcgcQlI8-LPYOPlYv4Qkdjyho79XVLWaUHF5XclWc,1043
328
+ airbyte_cdk/utils/schema_inferrer.py,sha256=_jLzL9PzE4gfR44OSavkIqZNFM9t08c3LuRrkR7PZbk,9861
329
+ airbyte_cdk/utils/slice_hasher.py,sha256=-pHexlNYoWYPnXNH-M7HEbjmeJe9Zk7SJijdQ7d1JqQ,1043
331
330
  airbyte_cdk/utils/spec_schema_transformations.py,sha256=LVc9KbtMeV_z99jWo0Ou8u4l6eBJ0BWNhxj4zrrGKRs,763
332
331
  airbyte_cdk/utils/stream_status_utils.py,sha256=ZmBoiy5HVbUEHAMrUONxZvxnvfV9CesmQJLDTAIWnWw,1171
333
- airbyte_cdk/utils/traced_exception.py,sha256=89TQdFuYZ1NJgmFpqLzY_T_T_64TpJYmVqs119Bp43g,6164
334
- airbyte_cdk-6.7.1rc3.dist-info/LICENSE.txt,sha256=Wfe61S4BaGPj404v8lrAbvhjYR68SHlkzeYrg3_bbuM,1051
335
- airbyte_cdk-6.7.1rc3.dist-info/METADATA,sha256=30Cxq3db7GZ-C8f9O_upnnu24ohOqsW5epbzvlvsJw0,13345
336
- airbyte_cdk-6.7.1rc3.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
337
- airbyte_cdk-6.7.1rc3.dist-info/entry_points.txt,sha256=fj-e3PAQvsxsQzyyq8UkG1k8spunWnD4BAH2AwlR6NM,95
338
- airbyte_cdk-6.7.1rc3.dist-info/RECORD,,
332
+ airbyte_cdk/utils/traced_exception.py,sha256=a6q51tBS3IdtefuOiL1eBwSmnNAXfjFMlMjSIQ_Tl-o,6165
333
+ airbyte_cdk-6.7.2.dist-info/LICENSE.txt,sha256=Wfe61S4BaGPj404v8lrAbvhjYR68SHlkzeYrg3_bbuM,1051
334
+ airbyte_cdk-6.7.2.dist-info/METADATA,sha256=Vwh7KkG8etaFx_bfo5a_sJD4mjVJxA6oT_r8Czej8Tk,13519
335
+ airbyte_cdk-6.7.2.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
336
+ airbyte_cdk-6.7.2.dist-info/entry_points.txt,sha256=fj-e3PAQvsxsQzyyq8UkG1k8spunWnD4BAH2AwlR6NM,95
337
+ airbyte_cdk-6.7.2.dist-info/RECORD,,
@@ -1,35 +0,0 @@
1
- #
2
- # Copyright (c) 2023 Airbyte, Inc., all rights reserved.
3
- #
4
-
5
- from typing import TYPE_CHECKING, Any, Mapping
6
-
7
- if TYPE_CHECKING:
8
- from airbyte_cdk.sources.streams.concurrent.partitions.partition import Partition
9
-
10
-
11
- class Record:
12
- """
13
- Represents a record read from a stream.
14
- """
15
-
16
- def __init__(
17
- self,
18
- data: Mapping[str, Any],
19
- partition: "Partition",
20
- is_file_transfer_message: bool = False,
21
- ):
22
- self.data = data
23
- self.partition = partition
24
- self.is_file_transfer_message = is_file_transfer_message
25
-
26
- def __eq__(self, other: Any) -> bool:
27
- if not isinstance(other, Record):
28
- return False
29
- return (
30
- self.data == other.data
31
- and self.partition.stream_name() == other.partition.stream_name()
32
- )
33
-
34
- def __repr__(self) -> str:
35
- return f"Record(data={self.data}, stream_name={self.partition.stream_name()})"