airbyte-cdk 6.7.0rc2__py3-none-any.whl → 6.7.1__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 (126) hide show
  1. airbyte_cdk/cli/__init__.py +1 -0
  2. airbyte_cdk/cli/source_declarative_manifest/__init__.py +6 -0
  3. airbyte_cdk/cli/source_declarative_manifest/_run.py +224 -0
  4. airbyte_cdk/cli/source_declarative_manifest/spec.json +17 -0
  5. airbyte_cdk/config_observation.py +2 -1
  6. airbyte_cdk/connector.py +1 -0
  7. airbyte_cdk/connector_builder/connector_builder_handler.py +1 -1
  8. airbyte_cdk/connector_builder/main.py +2 -1
  9. airbyte_cdk/destinations/destination.py +2 -1
  10. airbyte_cdk/destinations/vector_db_based/config.py +2 -1
  11. airbyte_cdk/destinations/vector_db_based/document_processor.py +4 -3
  12. airbyte_cdk/destinations/vector_db_based/embedder.py +5 -4
  13. airbyte_cdk/entrypoint.py +3 -2
  14. airbyte_cdk/logger.py +2 -1
  15. airbyte_cdk/models/__init__.py +2 -0
  16. airbyte_cdk/models/airbyte_protocol.py +2 -1
  17. airbyte_cdk/sources/concurrent_source/concurrent_read_processor.py +3 -3
  18. airbyte_cdk/sources/concurrent_source/concurrent_source.py +1 -1
  19. airbyte_cdk/sources/config.py +2 -1
  20. airbyte_cdk/sources/declarative/auth/jwt.py +1 -0
  21. airbyte_cdk/sources/declarative/auth/oauth.py +1 -0
  22. airbyte_cdk/sources/declarative/auth/selective_authenticator.py +1 -0
  23. airbyte_cdk/sources/declarative/auth/token.py +2 -1
  24. airbyte_cdk/sources/declarative/auth/token_provider.py +3 -2
  25. airbyte_cdk/sources/declarative/concurrent_declarative_source.py +24 -54
  26. airbyte_cdk/sources/declarative/declarative_component_schema.yaml +180 -13
  27. airbyte_cdk/sources/declarative/decoders/json_decoder.py +3 -2
  28. airbyte_cdk/sources/declarative/decoders/noop_decoder.py +1 -0
  29. airbyte_cdk/sources/declarative/decoders/pagination_decoder_decorator.py +1 -0
  30. airbyte_cdk/sources/declarative/decoders/xml_decoder.py +1 -0
  31. airbyte_cdk/sources/declarative/extractors/dpath_extractor.py +1 -0
  32. airbyte_cdk/sources/declarative/extractors/http_selector.py +1 -0
  33. airbyte_cdk/sources/declarative/extractors/record_filter.py +6 -48
  34. airbyte_cdk/sources/declarative/extractors/record_selector.py +32 -4
  35. airbyte_cdk/sources/declarative/extractors/response_to_file_extractor.py +2 -1
  36. airbyte_cdk/sources/declarative/incremental/datetime_based_cursor.py +2 -1
  37. airbyte_cdk/sources/declarative/incremental/global_substream_cursor.py +5 -2
  38. airbyte_cdk/sources/declarative/incremental/per_partition_cursor.py +5 -2
  39. airbyte_cdk/sources/declarative/incremental/per_partition_with_global.py +1 -3
  40. airbyte_cdk/sources/declarative/interpolation/jinja.py +5 -4
  41. airbyte_cdk/sources/declarative/manifest_declarative_source.py +4 -3
  42. airbyte_cdk/sources/declarative/migrations/legacy_to_per_partition_state_migration.py +1 -1
  43. airbyte_cdk/sources/declarative/models/declarative_component_schema.py +122 -0
  44. airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py +26 -17
  45. airbyte_cdk/sources/declarative/partition_routers/substream_partition_router.py +1 -0
  46. airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/constant_backoff_strategy.py +1 -0
  47. airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/exponential_backoff_strategy.py +1 -0
  48. airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/wait_time_from_header_backoff_strategy.py +1 -0
  49. airbyte_cdk/sources/declarative/requesters/error_handlers/backoff_strategies/wait_until_time_from_header_backoff_strategy.py +1 -0
  50. airbyte_cdk/sources/declarative/requesters/error_handlers/composite_error_handler.py +1 -0
  51. airbyte_cdk/sources/declarative/requesters/error_handlers/default_error_handler.py +1 -0
  52. airbyte_cdk/sources/declarative/requesters/error_handlers/default_http_response_filter.py +1 -0
  53. airbyte_cdk/sources/declarative/requesters/error_handlers/http_response_filter.py +1 -0
  54. airbyte_cdk/sources/declarative/requesters/http_job_repository.py +2 -1
  55. airbyte_cdk/sources/declarative/requesters/http_requester.py +1 -0
  56. airbyte_cdk/sources/declarative/requesters/paginators/default_paginator.py +1 -0
  57. airbyte_cdk/sources/declarative/requesters/paginators/no_pagination.py +1 -0
  58. airbyte_cdk/sources/declarative/requesters/paginators/paginator.py +1 -0
  59. airbyte_cdk/sources/declarative/requesters/paginators/strategies/cursor_pagination_strategy.py +1 -0
  60. airbyte_cdk/sources/declarative/requesters/paginators/strategies/offset_increment.py +1 -0
  61. airbyte_cdk/sources/declarative/requesters/paginators/strategies/page_increment.py +1 -0
  62. airbyte_cdk/sources/declarative/requesters/paginators/strategies/pagination_strategy.py +1 -0
  63. airbyte_cdk/sources/declarative/requesters/paginators/strategies/stop_condition.py +9 -3
  64. airbyte_cdk/sources/declarative/requesters/request_options/interpolated_request_options_provider.py +2 -1
  65. airbyte_cdk/sources/declarative/requesters/requester.py +1 -0
  66. airbyte_cdk/sources/declarative/retrievers/async_retriever.py +2 -1
  67. airbyte_cdk/sources/declarative/retrievers/simple_retriever.py +12 -4
  68. airbyte_cdk/sources/declarative/stream_slicers/declarative_partition_generator.py +7 -4
  69. airbyte_cdk/sources/declarative/transformations/add_fields.py +1 -0
  70. airbyte_cdk/sources/declarative/transformations/remove_fields.py +1 -0
  71. airbyte_cdk/sources/declarative/yaml_declarative_source.py +1 -0
  72. airbyte_cdk/sources/embedded/tools.py +1 -0
  73. airbyte_cdk/sources/file_based/config/abstract_file_based_spec.py +2 -1
  74. airbyte_cdk/sources/file_based/config/avro_format.py +2 -1
  75. airbyte_cdk/sources/file_based/config/csv_format.py +2 -1
  76. airbyte_cdk/sources/file_based/config/excel_format.py +2 -1
  77. airbyte_cdk/sources/file_based/config/file_based_stream_config.py +2 -1
  78. airbyte_cdk/sources/file_based/config/jsonl_format.py +2 -1
  79. airbyte_cdk/sources/file_based/config/parquet_format.py +2 -1
  80. airbyte_cdk/sources/file_based/config/unstructured_format.py +2 -1
  81. airbyte_cdk/sources/file_based/file_based_source.py +2 -1
  82. airbyte_cdk/sources/file_based/file_based_stream_reader.py +2 -1
  83. airbyte_cdk/sources/file_based/file_types/avro_parser.py +1 -0
  84. airbyte_cdk/sources/file_based/file_types/csv_parser.py +2 -1
  85. airbyte_cdk/sources/file_based/file_types/excel_parser.py +5 -5
  86. airbyte_cdk/sources/file_based/file_types/jsonl_parser.py +2 -1
  87. airbyte_cdk/sources/file_based/file_types/parquet_parser.py +2 -1
  88. airbyte_cdk/sources/file_based/file_types/unstructured_parser.py +9 -8
  89. airbyte_cdk/sources/file_based/stream/abstract_file_based_stream.py +2 -1
  90. airbyte_cdk/sources/file_based/stream/concurrent/adapters.py +5 -4
  91. airbyte_cdk/sources/file_based/stream/concurrent/cursor/abstract_concurrent_file_based_cursor.py +1 -1
  92. airbyte_cdk/sources/file_based/stream/concurrent/cursor/file_based_concurrent_cursor.py +1 -1
  93. airbyte_cdk/sources/file_based/stream/concurrent/cursor/file_based_final_state_cursor.py +1 -1
  94. airbyte_cdk/sources/http_logger.py +1 -0
  95. airbyte_cdk/sources/streams/call_rate.py +1 -2
  96. airbyte_cdk/sources/streams/concurrent/abstract_stream.py +2 -1
  97. airbyte_cdk/sources/streams/concurrent/adapters.py +8 -4
  98. airbyte_cdk/sources/streams/concurrent/availability_strategy.py +2 -1
  99. airbyte_cdk/sources/streams/concurrent/cursor.py +30 -6
  100. airbyte_cdk/sources/streams/concurrent/partitions/partition.py +1 -1
  101. airbyte_cdk/sources/streams/concurrent/partitions/types.py +1 -1
  102. airbyte_cdk/sources/streams/concurrent/state_converters/datetime_stream_state_converter.py +1 -1
  103. airbyte_cdk/sources/streams/core.py +2 -1
  104. airbyte_cdk/sources/streams/http/error_handlers/default_error_mapping.py +2 -1
  105. airbyte_cdk/sources/streams/http/error_handlers/http_status_error_handler.py +1 -0
  106. airbyte_cdk/sources/streams/http/error_handlers/json_error_message_parser.py +1 -0
  107. airbyte_cdk/sources/streams/http/error_handlers/response_models.py +2 -1
  108. airbyte_cdk/sources/streams/http/http.py +3 -2
  109. airbyte_cdk/sources/streams/http/http_client.py +49 -2
  110. airbyte_cdk/sources/streams/http/requests_native_auth/abstract_oauth.py +2 -1
  111. airbyte_cdk/sources/streams/http/requests_native_auth/oauth.py +1 -0
  112. airbyte_cdk/sources/types.py +14 -1
  113. airbyte_cdk/sources/utils/schema_helpers.py +3 -2
  114. airbyte_cdk/sql/secrets.py +2 -1
  115. airbyte_cdk/sql/shared/sql_processor.py +8 -6
  116. airbyte_cdk/test/entrypoint_wrapper.py +4 -3
  117. airbyte_cdk/test/mock_http/mocker.py +1 -0
  118. airbyte_cdk/utils/schema_inferrer.py +2 -1
  119. airbyte_cdk/utils/slice_hasher.py +1 -1
  120. airbyte_cdk/utils/traced_exception.py +2 -1
  121. {airbyte_cdk-6.7.0rc2.dist-info → airbyte_cdk-6.7.1.dist-info}/METADATA +11 -3
  122. {airbyte_cdk-6.7.0rc2.dist-info → airbyte_cdk-6.7.1.dist-info}/RECORD +125 -121
  123. airbyte_cdk-6.7.1.dist-info/entry_points.txt +3 -0
  124. airbyte_cdk/sources/streams/concurrent/partitions/record.py +0 -35
  125. {airbyte_cdk-6.7.0rc2.dist-info → airbyte_cdk-6.7.1.dist-info}/LICENSE.txt +0 -0
  126. {airbyte_cdk-6.7.0rc2.dist-info → airbyte_cdk-6.7.1.dist-info}/WHEEL +0 -0
@@ -1,28 +1,32 @@
1
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
2
+ airbyte_cdk/cli/__init__.py,sha256=Hu-1XT2KDoYjDF7-_ziDwv5bY3PueGjANOCbzeOegDg,57
3
+ airbyte_cdk/cli/source_declarative_manifest/__init__.py,sha256=_zFyFFl4leAvtnkHmBFbtLYT6Bh44qxmLbU0wnK2TZQ,92
4
+ airbyte_cdk/cli/source_declarative_manifest/_run.py,sha256=YZ9FoGkTmH010GbYXwSFTCBcokV6MKPiSHcz72hdwe4,7770
5
+ airbyte_cdk/cli/source_declarative_manifest/spec.json,sha256=Earc1L6ngcdIr514oFQlUoOxdF4RHqtUyStSIAquXdY,554
6
+ airbyte_cdk/config_observation.py,sha256=DBl99OV7oW5aJPepVXvZjVBH_s7fDcWNsBL6s1cZPlg,3998
7
+ airbyte_cdk/connector.py,sha256=bO23kdGRkl8XKFytOgrrWFc_VagteTHVEF6IsbizVkM,4224
4
8
  airbyte_cdk/connector_builder/README.md,sha256=Hw3wvVewuHG9-QgsAq1jDiKuLlStDxKBz52ftyNRnBw,1665
5
9
  airbyte_cdk/connector_builder/__init__.py,sha256=4Hw-PX1-VgESLF16cDdvuYCzGJtHntThLF4qIiULWeo,61
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
10
+ airbyte_cdk/connector_builder/connector_builder_handler.py,sha256=ezePCJuE6WW9NHwlWHFTmRkKFSzVu9LOYYSvO1LZnYM,4232
11
+ airbyte_cdk/connector_builder/main.py,sha256=zf3jtUZWWOzukWDTqsfIeMwFF719dwT9AWv_2GFjBw8,3734
8
12
  airbyte_cdk/connector_builder/message_grouper.py,sha256=tu-cUZQ-m-FcLAwL6eFNU2eqwJrIS0-i9FG6f3RopFU,19918
9
13
  airbyte_cdk/connector_builder/models.py,sha256=uCHpOdJx2PyZtIqk-mt9eSVuFMQoEqrW-9sjCz0Z-AQ,1500
10
14
  airbyte_cdk/destinations/__init__.py,sha256=FyDp28PT_YceJD5HDFhA-mrGfX9AONIyMQ4d68CHNxQ,213
11
- airbyte_cdk/destinations/destination.py,sha256=xViQzcYO9SXkE2hzMVwQvsHHoFP8NmXpzoJnq_VnU7k,5891
15
+ airbyte_cdk/destinations/destination.py,sha256=SlUK67L7DrDcZZe-6fOzWM6kajST2b9EH9MmaCDJEgM,5892
12
16
  airbyte_cdk/destinations/vector_db_based/README.md,sha256=QAe8c_1Afme4r2TCE10cTSaxUE3zgCBuArSuRQqK8tA,2115
13
17
  airbyte_cdk/destinations/vector_db_based/__init__.py,sha256=eAkzwTjBbXBhJ5GfPO5I53Zgpv5xQFLRQS8n4nuyPt0,1006
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
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
17
21
  airbyte_cdk/destinations/vector_db_based/indexer.py,sha256=beiSi2Uu67EoTr7yQSaCJFAh9RajHFGKA4PoTbpTOqM,3243
18
22
  airbyte_cdk/destinations/vector_db_based/test_utils.py,sha256=MkqLiOJ5QyKbV4rNiJhe-BHM7FD-ADHQ4bQGf4c5lRY,1932
19
23
  airbyte_cdk/destinations/vector_db_based/utils.py,sha256=FOyEo8Lc-fY8UyhpCivhZtIqBRyxf3cUt6anmK03fUY,1127
20
24
  airbyte_cdk/destinations/vector_db_based/writer.py,sha256=nPj1DtZ1-tkEBAz7Ape1FZz_YDQNXPceUyCoviVq3Fk,4525
21
- airbyte_cdk/entrypoint.py,sha256=DAb44DODyUcrmtcmTG7_rLidNs7SugWci-4x9-dVdbU,17604
25
+ airbyte_cdk/entrypoint.py,sha256=B0kd8NWYs6pFDC75OoPxiGNcIh9jZDnU9qIVvtOQsNE,17605
22
26
  airbyte_cdk/exception_handler.py,sha256=D_doVl3Dt60ASXlJsfviOCswxGyKF2q0RL6rif3fNks,2013
23
- airbyte_cdk/logger.py,sha256=MapEq7Ldyn3uG7ciqCSXz1YYagBhtl_rcfQkoPlcIE4,3757
24
- airbyte_cdk/models/__init__.py,sha256=qpxctJlraOQhUj3milOoUEYjaqHM9XCdlQqnmZJwKxQ,2002
25
- 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
26
30
  airbyte_cdk/models/airbyte_protocol_serializers.py,sha256=s6SaFB2CMrG_7jTQGn_fhFbQ1FUxhCxf5kq2RWGHMVI,1749
27
31
  airbyte_cdk/models/file_transfer_record_message.py,sha256=J-E-43KOmUFdpsjeKlEfNnnZRSB-Gb5AGZjonR25Drc,323
28
32
  airbyte_cdk/models/well_known_types.py,sha256=EquepbisGPuCSrs_D7YVVnMR9-ShhUr21wnFz3COiJs,156
@@ -30,13 +34,13 @@ airbyte_cdk/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
30
34
  airbyte_cdk/sources/__init__.py,sha256=45J83QsFH3Wky3sVapZWg4C58R_i1thm61M06t2c1AQ,1156
31
35
  airbyte_cdk/sources/abstract_source.py,sha256=qY0nZzNm-9qVkt-t6s-Y6UYKIk_2zSBSn3Y_IGzJAoA,15633
32
36
  airbyte_cdk/sources/concurrent_source/__init__.py,sha256=3D_RJsxQfiLboSCDdNei1Iv-msRp3DXsas6E9kl7dXc,386
33
- airbyte_cdk/sources/concurrent_source/concurrent_read_processor.py,sha256=cEyZALjsxVx7k9bzcDUpSIXskOqEg5PKn7K3ZMk5U2E,12766
34
- 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
35
39
  airbyte_cdk/sources/concurrent_source/concurrent_source_adapter.py,sha256=f9PIRPWn2tXu0-bxVeYHL2vYdqCzZ_kgpHg5_Ep-cfQ,6103
36
40
  airbyte_cdk/sources/concurrent_source/partition_generation_completed_sentinel.py,sha256=z1t-rAZBsqVidv2fpUlPHE9JgyXsITuGk4AMu96mXSQ,696
37
41
  airbyte_cdk/sources/concurrent_source/stream_thread_exception.py,sha256=-q6mG2145HKQ28rZGD1bUmjPlIZ1S7-Yhewl8Ntu6xI,764
38
42
  airbyte_cdk/sources/concurrent_source/thread_pool_manager.py,sha256=00j75alk20E4sU0PNuL6ohPmU3sxuhygicY4sZJXyk4,5166
39
- airbyte_cdk/sources/config.py,sha256=B26JsJbTxnd2-ST4wamV0PPg-lNDO17yAtQkZkrGyjU,900
43
+ airbyte_cdk/sources/config.py,sha256=dzfOZT9dqB_xac1cuFIXOMSmHtOahc6QaK0vFKRBPcw,901
40
44
  airbyte_cdk/sources/connector_state_manager.py,sha256=JXWqEI2z9ehpCrU7NHXaOOEqj2ZGsog0ECWygA_AnrY,7223
41
45
  airbyte_cdk/sources/declarative/__init__.py,sha256=ZnqYNxHsKCgO38IwB34RQyRMXTs4GTvlRi3ImKnIioo,61
42
46
  airbyte_cdk/sources/declarative/async_job/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -48,43 +52,43 @@ airbyte_cdk/sources/declarative/async_job/status.py,sha256=mkExR-uOAO1ckUnclaUOa
48
52
  airbyte_cdk/sources/declarative/async_job/timer.py,sha256=Fb8P72CQ7jIzJyzMSSNuBf2vt8bmrg9SrfmNxKwph2A,1242
49
53
  airbyte_cdk/sources/declarative/auth/__init__.py,sha256=hhiJV3kU5_fja7hQYWqbYjjtJPpaJdS2NiJpJLrG2uw,294
50
54
  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
- 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
56
60
  airbyte_cdk/sources/declarative/checks/__init__.py,sha256=WWXMfvKkndqwAUZdgSr7xVHVXDFTKCUQ9EubqT7H4QE,274
57
61
  airbyte_cdk/sources/declarative/checks/check_stream.py,sha256=dAA-UhmMj0WLXCkRQrilWCfJmncBzXCZ18ptRNip3XA,2139
58
62
  airbyte_cdk/sources/declarative/checks/connection_checker.py,sha256=MBRJo6WJlZQHpIfOGaNOkkHUmgUl_4wDM6VPo41z5Ss,1383
59
63
  airbyte_cdk/sources/declarative/concurrency_level/__init__.py,sha256=5XUqrmlstYlMM0j6crktlKQwALek0uiz2D3WdM46MyA,191
60
64
  airbyte_cdk/sources/declarative/concurrency_level/concurrency_level.py,sha256=YIwCTCpOr_QSNW4ltQK0yUGWInI8PKNY216HOOegYLk,2101
61
- airbyte_cdk/sources/declarative/concurrent_declarative_source.py,sha256=hbHylluHcEexCFonA0fYuTQl7gDhU3uwNkn-CgvuYl8,21198
65
+ airbyte_cdk/sources/declarative/concurrent_declarative_source.py,sha256=XQVc7xMRffm9v4qwDMTGIfWzNB2pf9GvILB4MvB0icU,19818
62
66
  airbyte_cdk/sources/declarative/datetime/__init__.py,sha256=l9LG7Qm6e5r_qgqfVKnx3mXYtg1I9MmMjomVIPfU4XA,177
63
67
  airbyte_cdk/sources/declarative/datetime/datetime_parser.py,sha256=SX9JjdesN1edN2WVUVMzU_ptqp2QB1OnsnjZ4mwcX7w,2579
64
68
  airbyte_cdk/sources/declarative/datetime/min_max_datetime.py,sha256=8VZJP18eJLabSPP1XBSPDaagUBG6q1ynIiPJy3rE2mc,5344
65
- airbyte_cdk/sources/declarative/declarative_component_schema.yaml,sha256=QGpwBEd-KZIeUwtWiZNvRW9SbG4SLGveZHRjAgUk7mg,110383
69
+ airbyte_cdk/sources/declarative/declarative_component_schema.yaml,sha256=YDTnUHa7kxw70mI_JJ-KW4nVq6RwzyarZ3dAHTMRzIk,119354
66
70
  airbyte_cdk/sources/declarative/declarative_source.py,sha256=nF7wBqFd3AQmEKAm4CnIo29CJoQL562cJGSCeL8U8bA,1531
67
71
  airbyte_cdk/sources/declarative/declarative_stream.py,sha256=JRyNeOIpsFu4ztVZsN6sncqUEIqIE-bUkD2TPgbMgk0,10375
68
72
  airbyte_cdk/sources/declarative/decoders/__init__.py,sha256=hNlhaB5FjNC6IfJyglj5ZJWkYD2nEAukMDmzRz5PC6o,671
69
73
  airbyte_cdk/sources/declarative/decoders/decoder.py,sha256=sl-Gt8lXi7yD2Q-sD8je5QS2PbgrgsYjxRLWsay7DMc,826
70
- airbyte_cdk/sources/declarative/decoders/json_decoder.py,sha256=e5SQzUSpAp7iHrgbDOQQgduf3B09CCndf_NxJswEJS8,3326
71
- airbyte_cdk/sources/declarative/decoders/noop_decoder.py,sha256=eEgo7J9ct3nNJXnuZxxs2wEo0xAlkz2siX_ZgY4pE6M,454
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
+ 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
74
78
  airbyte_cdk/sources/declarative/exceptions.py,sha256=kTPUA4I2NV4J6HDz-mKPGMrfuc592akJnOyYx38l_QM,176
75
79
  airbyte_cdk/sources/declarative/extractors/__init__.py,sha256=YFuL4D4RuuB8E1DNSbJNIj0_HApOlyECoJ_s8DuJMeI,611
76
- airbyte_cdk/sources/declarative/extractors/dpath_extractor.py,sha256=8I_kwx7-riu-uHLeZn4w7Qo033ZHzhej_ha9MZ2Q5B0,3130
77
- 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
78
82
  airbyte_cdk/sources/declarative/extractors/record_extractor.py,sha256=XJELMjahAsaomlvQgN2zrNO0DJX0G0fr9r682gUz7Pg,691
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
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=ajE6YPt4Yk970Q9Oj1lvSXH8m7UqvAifgg0pG0QUEzk,6399
82
86
  airbyte_cdk/sources/declarative/incremental/__init__.py,sha256=CmZl9ddwMZFo8L7mEl_OFHN3ahIFRSYrJjMbR_cJaFA,1006
83
- 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
84
88
  airbyte_cdk/sources/declarative/incremental/declarative_cursor.py,sha256=5Bhw9VRPyIuCaD0wmmq_L3DZsa-rJgtKSEUzSd8YYD0,536
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
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
88
92
  airbyte_cdk/sources/declarative/incremental/resumable_full_refresh_cursor.py,sha256=10LFv1QPM-agVKl6eaANmEBOfd7gZgBrkoTcMggsieQ,4809
89
93
  airbyte_cdk/sources/declarative/interpolation/__init__.py,sha256=tjUJkn3B-iZ-p7RP2c3dVZejrGiQeooGmS5ibWTuUL4,437
90
94
  airbyte_cdk/sources/declarative/interpolation/filters.py,sha256=dqf9W6LCnB5aWGLX1BoKxU-waORf1jT03LpJB671msU,3639
@@ -93,65 +97,65 @@ airbyte_cdk/sources/declarative/interpolation/interpolated_mapping.py,sha256=UrF
93
97
  airbyte_cdk/sources/declarative/interpolation/interpolated_nested_mapping.py,sha256=i2L0gREX8nHA-pKokdVqwBf4aJgWP71KOxIABj_DHcY,1857
94
98
  airbyte_cdk/sources/declarative/interpolation/interpolated_string.py,sha256=LYEZnZ_hB7rvBSZxG9s0RSrzsOkDWbBY0_P6qu5lEfc,3212
95
99
  airbyte_cdk/sources/declarative/interpolation/interpolation.py,sha256=-V5UddGm69UKEB6o_O1EIES9kfY8FV_X4Ji8w1yOuSA,981
96
- 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
97
101
  airbyte_cdk/sources/declarative/interpolation/macros.py,sha256=QgIfSVPHx_MMUCgbQdm-NMpUlp_cpk0OQhoRDFtkrxE,4040
98
- 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
99
103
  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=iNsF3jWCaZAmJYArmDQg0MJgZikk6frh3IfhcMBR_Qc,3924
104
+ airbyte_cdk/sources/declarative/migrations/legacy_to_per_partition_state_migration.py,sha256=iemy3fKLczcU0-Aor7tx5jcT6DRedKMqyK7kCOp01hg,3924
101
105
  airbyte_cdk/sources/declarative/migrations/state_migration.py,sha256=KWPjealMLKSMtajXgkdGgKg7EmTLR-CqqD7UIh0-eDU,794
102
106
  airbyte_cdk/sources/declarative/models/__init__.py,sha256=nUFxNCiKeYRVXuZEKA7GD-lTHxsiKcQ8FitZjKhPIvE,100
103
- airbyte_cdk/sources/declarative/models/declarative_component_schema.py,sha256=O_jSeWL2xHxi1u09chtmM40Xk7hVKrnfQjYBFyXbk9I,76057
107
+ airbyte_cdk/sources/declarative/models/declarative_component_schema.py,sha256=OBdsgP21THXXgybpyIgwNKY8VF1zNEyi6UUcHDaQTIc,84312
104
108
  airbyte_cdk/sources/declarative/parsers/__init__.py,sha256=ZnqYNxHsKCgO38IwB34RQyRMXTs4GTvlRi3ImKnIioo,61
105
109
  airbyte_cdk/sources/declarative/parsers/custom_exceptions.py,sha256=Rir9_z3Kcd5Es0-LChrzk-0qubAsiK_RSEnLmK2OXm8,553
106
110
  airbyte_cdk/sources/declarative/parsers/manifest_component_transformer.py,sha256=jVZ3ZV5YZrmDNIX5cM2mugXmnbH27zHRcD22_3oatpo,8454
107
111
  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=ffPS6F7qPOoFNJDgC1wbvRjM4wC7UshLJ1Trde3Xjyc,95235
112
+ airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py,sha256=-CjcKFMKjWRjdVJg8lLJWOYFV--wcCSO6uCMObf4F78,95496
109
113
  airbyte_cdk/sources/declarative/partition_routers/__init__.py,sha256=8uGos2u7TFTx_EJBdcjdUGn3Eyx6jUuEa1_VB8UP_dI,631
110
114
  airbyte_cdk/sources/declarative/partition_routers/cartesian_product_stream_slicer.py,sha256=c5cuVFM6NFkuQqG8Z5IwkBuwDrvXZN1CunUOM_L0ezg,6892
111
115
  airbyte_cdk/sources/declarative/partition_routers/list_partition_router.py,sha256=t7pRdFWfFWJtQQG19c9PVeMODyO2BknRTakpM5U9N-8,4844
112
116
  airbyte_cdk/sources/declarative/partition_routers/partition_router.py,sha256=YyEIzdmLd1FjbVP3QbQ2VFCLW_P-OGbVh6VpZShp54k,2218
113
117
  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=3Cb9HkRGXujNJq3J34brdTssSH07TveuuvkoxCZb2Ds,15200
118
+ airbyte_cdk/sources/declarative/partition_routers/substream_partition_router.py,sha256=nS4XoROk9CVk6Vh5FBwXj2ISWHpo_JDCBbQ4mRkKHh4,15201
115
119
  airbyte_cdk/sources/declarative/requesters/__init__.py,sha256=d7a3OoHbqaJDyyPli3nqqJ2yAW_SLX6XDaBAKOwvpxw,364
116
120
  airbyte_cdk/sources/declarative/requesters/error_handlers/__init__.py,sha256=6tVjjuNMGu77jZlegAO4Rb2kiYYF73ZET1GbqqWAr9A,717
117
121
  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=rSISdzUkd7u_F6gvb-cHA8rpZIU2uwz3a06_Ru5si4s,1697
119
- 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
120
124
  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
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
123
127
  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=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
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
127
131
  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=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
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=7FaOhSBuf3otWixIicBcgk0IY-boESMQ5RdFcEl2gSs,8662
134
+ airbyte_cdk/sources/declarative/requesters/http_requester.py,sha256=RqYPkgJFAWfcZBTc-JBcGHPm4JL1ZQOhs9GKU4MP2eE,14723
131
135
  airbyte_cdk/sources/declarative/requesters/paginators/__init__.py,sha256=kDH6MR4fYJcVDve9V9Ued45AmEvxFdFPqX9VUN4u_KA,599
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
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
135
139
  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=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
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
141
145
  airbyte_cdk/sources/declarative/requesters/request_option.py,sha256=_qmv8CLQQ3fERt6BuMZeRu6tZXscPoeARx1VJdWMQ_M,1055
142
146
  airbyte_cdk/sources/declarative/requesters/request_options/__init__.py,sha256=DzFS1eh7rj9OSSvgLyS_tBI9lhf3MyiKM8oab-KCkr8,772
143
147
  airbyte_cdk/sources/declarative/requesters/request_options/datetime_based_request_options_provider.py,sha256=x8VtwLSefLDoUpEKTBND1apP3Ar-ub0dut4xJjSIXeI,3749
144
148
  airbyte_cdk/sources/declarative/requesters/request_options/default_request_options_provider.py,sha256=SRROdPJZ5kuqHLOlkh115pWP9nDGfDxRYPgH9oD3hPo,1798
145
149
  airbyte_cdk/sources/declarative/requesters/request_options/interpolated_nested_request_input_provider.py,sha256=UW4cAtzkQ261AyLI1cmCL2WLdI3ZDYGUTmrqKB9W3u8,2422
146
150
  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
151
+ airbyte_cdk/sources/declarative/requesters/request_options/interpolated_request_options_provider.py,sha256=377N60kxWRNOBYtZthBvLblgqokcf8T1Pztpdf23MXI,6968
148
152
  airbyte_cdk/sources/declarative/requesters/request_options/request_options_provider.py,sha256=8YRiDzjYvqJ-aMmKFcjqzv_-e8OZ5QG_TbpZ-nuCu6s,2590
149
153
  airbyte_cdk/sources/declarative/requesters/request_path.py,sha256=S3MeFvcaQrMbOkSY2W2VbXLNomqt_3eXqVd9ZhgNwUs,299
150
- airbyte_cdk/sources/declarative/requesters/requester.py,sha256=9LWbCkHpr7GWTkPvYt1_NlENl3i3hEDEmLb-ibs0hfk,4945
154
+ airbyte_cdk/sources/declarative/requesters/requester.py,sha256=iVVpXQ4KEd9OyZNwmOofMvx7_06i8ZRxGo3aNTrEQLM,4946
151
155
  airbyte_cdk/sources/declarative/retrievers/__init__.py,sha256=FVQpUGVwp2Gibk4gp07VmLKX5AafUlsZWFSrDpUDuJM,443
152
- airbyte_cdk/sources/declarative/retrievers/async_retriever.py,sha256=iNe8Ihrk4vClCNtnEjtMUjjUoNo0UceYUFV7yAcXCU0,4965
156
+ airbyte_cdk/sources/declarative/retrievers/async_retriever.py,sha256=hHfE6fNe2sKKcVbgK6M8R1nOmHGnD2tL276ZO0HB7Yc,4966
153
157
  airbyte_cdk/sources/declarative/retrievers/retriever.py,sha256=XPLs593Xv8c5cKMc37XzUAYmzlXd1a7eSsspM-CMuWA,1696
154
- airbyte_cdk/sources/declarative/retrievers/simple_retriever.py,sha256=j09j4ngVDGosEVVEQk_joejAXm6dBfr45ulElhz2ZoA,23931
158
+ airbyte_cdk/sources/declarative/retrievers/simple_retriever.py,sha256=N4swGw5mfuTXJ2R7AKX18CHzizsr69pXwt5uSHLPi48,24172
155
159
  airbyte_cdk/sources/declarative/schema/__init__.py,sha256=ul8L9S0-__AMEdbCLHBq-PMEeA928NVp8BB83BMotfU,517
156
160
  airbyte_cdk/sources/declarative/schema/default_schema_loader.py,sha256=KTACrIE23a83wsm3Rd9Eb4K6-20lrGqYxTHNp9yxsso,1820
157
161
  airbyte_cdk/sources/declarative/schema/inline_schema_loader.py,sha256=bVETE10hRsatRJq3R3BeyRR0wIoK3gcP1gcpVRQ_P5U,464
@@ -160,75 +164,75 @@ airbyte_cdk/sources/declarative/schema/schema_loader.py,sha256=kjt8v0N5wWKA5zyLn
160
164
  airbyte_cdk/sources/declarative/spec/__init__.py,sha256=H0UwoRhgucbKBIzg85AXrifybVmfpwWpPdy22vZKVuo,141
161
165
  airbyte_cdk/sources/declarative/spec/spec.py,sha256=1vGFWbMA2nj2zSb9e-VChfntI-Ag8SUgcwLkhMfCKUw,1907
162
166
  airbyte_cdk/sources/declarative/stream_slicers/__init__.py,sha256=sI9vhc95RwJYOnA0VKjcbtKgFcmAbWjhdWBXFbAijOs,176
163
- 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
164
168
  airbyte_cdk/sources/declarative/stream_slicers/stream_slicer.py,sha256=SOkIPBi2Wu7yxIvA15yFzUAB95a3IzA8LPq5DEqHQQc,725
165
169
  airbyte_cdk/sources/declarative/transformations/__init__.py,sha256=CPJ8TlMpiUmvG3624VYu_NfTzxwKcfBjM2Q2wJ7fkSA,919
166
- 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
167
171
  airbyte_cdk/sources/declarative/transformations/keys_to_lower_transformation.py,sha256=RTs5KX4V3hM7A6QN1WlGF21YccTIyNH6qQI9IMb__hw,670
168
- airbyte_cdk/sources/declarative/transformations/remove_fields.py,sha256=LyKLaOx9q8mSXCec7WnvAU9zhEV0-NGDP1p1YJ82EFo,2744
172
+ airbyte_cdk/sources/declarative/transformations/remove_fields.py,sha256=EwUP0SZ2p4GRJ6Q8CUzlz9dcUeEidEFDlI2IBye2tlc,2745
169
173
  airbyte_cdk/sources/declarative/transformations/transformation.py,sha256=4sXtx9cNY2EHUPq-xHvDs8GQEBUy3Eo6TkRLKHPXx68,1161
170
174
  airbyte_cdk/sources/declarative/types.py,sha256=yqx0xlZv_76tkC7fqJKefmvl4GJJ8mXbeddwVV8XRJU,778
171
- 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
172
176
  airbyte_cdk/sources/embedded/__init__.py,sha256=ZnqYNxHsKCgO38IwB34RQyRMXTs4GTvlRi3ImKnIioo,61
173
177
  airbyte_cdk/sources/embedded/base_integration.py,sha256=pIFcfGmmP7HV7aVPlB5UYeA2-TNjHCyCE-30TRdOVU4,2406
174
178
  airbyte_cdk/sources/embedded/catalog.py,sha256=EAnLw9u5fXLNBLfWr_I0itA7OEHMWdqEaM_rWc_tCpI,1653
175
179
  airbyte_cdk/sources/embedded/runner.py,sha256=S6cz7SWRTFfT_ZhP-zZYdiT9XRijulV_bMABal2h0OI,1493
176
- airbyte_cdk/sources/embedded/tools.py,sha256=tEoWoMh7QlSsMvxILp0KSgFlNm4XN3T5qpW48wXmK8k,745
180
+ airbyte_cdk/sources/embedded/tools.py,sha256=kp26Au9xH4hxsnDQoavxE_a418ZrRUAMBr2MeOU52VI,746
177
181
  airbyte_cdk/sources/file_based/README.md,sha256=iMqww4VZ882jfNQIdljjDgqreKs-mkdtSrRKA94iX6A,11085
178
182
  airbyte_cdk/sources/file_based/__init__.py,sha256=EaxHv_9ot-eRlUCR47ZMZ0IOtB-n0HH24om7Bfn-uuQ,868
179
183
  airbyte_cdk/sources/file_based/availability_strategy/__init__.py,sha256=jtfV8qaLiVBodOA03hfDhy2snPllptcqJs0tNodJ2kU,371
180
184
  airbyte_cdk/sources/file_based/availability_strategy/abstract_file_based_availability_strategy.py,sha256=HXVXIkBflNGSddjh5gcRjz_HJdBZcPjQ0juU44lxPeE,2209
181
185
  airbyte_cdk/sources/file_based/availability_strategy/default_file_based_availability_strategy.py,sha256=bH1_aTTsJJr8j705O6fn_YvhQYyZa0NVoE8AafE6DEM,5700
182
186
  airbyte_cdk/sources/file_based/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
183
- airbyte_cdk/sources/file_based/config/abstract_file_based_spec.py,sha256=kytl9zY23IL-0l7FmwP1R0XMKRxpYUulQCUqWvoJbNg,6454
184
- airbyte_cdk/sources/file_based/config/avro_format.py,sha256=524v8w-V-NNCQlrF9Mwj-mbkI6d8IzY8OdpsuZqclv0,715
185
- airbyte_cdk/sources/file_based/config/csv_format.py,sha256=w0I3g7HONf12rV-aAFjXrbylK1O34zmc4hRWKRlTIXA,8005
186
- airbyte_cdk/sources/file_based/config/excel_format.py,sha256=3VkDtGbtc4EPGb1ZVLq8U6BBf50fiKmsgiENoPE360c,377
187
- airbyte_cdk/sources/file_based/config/file_based_stream_config.py,sha256=waP2sChs7tNscwBOSJqtpIOX3p5FrF4-uobbQDsEUFc,4646
188
- airbyte_cdk/sources/file_based/config/jsonl_format.py,sha256=MWVgi_cxzZwiYUp-HhzsrQTQMjwtyXXjd5lre9o0oJo,377
189
- airbyte_cdk/sources/file_based/config/parquet_format.py,sha256=eXWb0vOi-1CaZ6SndrHvQoD8U0WjI9R3HWZcEJpKOdk,740
190
- 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
191
195
  airbyte_cdk/sources/file_based/discovery_policy/__init__.py,sha256=x_7JsQGiS7Ytmr0ZDS0SNYGcNUzC4wCm3_1-Mf3ZFnw,283
192
196
  airbyte_cdk/sources/file_based/discovery_policy/abstract_discovery_policy.py,sha256=dCfXX529Rd5rtopg4VeEgTPJjFtqjtjzPq6LCw18Wt0,605
193
197
  airbyte_cdk/sources/file_based/discovery_policy/default_discovery_policy.py,sha256=-xujTidtrq6HC00WKbjQh1CZdT5LMuzkp5BLjqDmfTY,1007
194
198
  airbyte_cdk/sources/file_based/exceptions.py,sha256=AEELNIRzKPX6eopKd_2jhE7WiNeR0Aw7nQWVOL8fvkc,5760
195
- airbyte_cdk/sources/file_based/file_based_source.py,sha256=CLHnw-e1cvgS-JiNAG9ssLOAeKjhFkBGZm_61Z8rQ0o,16651
196
- 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
197
201
  airbyte_cdk/sources/file_based/file_types/__init__.py,sha256=hXMSzGQwP6T9bJlKWb8EUBZomU9mZZuXjP0J2P2dGBY,1233
198
- airbyte_cdk/sources/file_based/file_types/avro_parser.py,sha256=kwNDxAHIWTluwK2jR7EEKWxsGR5Guj-MHBYJ8RCHDe8,10313
199
- airbyte_cdk/sources/file_based/file_types/csv_parser.py,sha256=Y9PWTYqT5C0h6Y7QLM_B2fYOgnSUW1nyLlkEUzIqqlg,20597
200
- 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
201
205
  airbyte_cdk/sources/file_based/file_types/file_transfer.py,sha256=HyGRihJxcb_lEsffKhfF3eylLBDy51_PXSwGUFEJ5bA,1265
202
206
  airbyte_cdk/sources/file_based/file_types/file_type_parser.py,sha256=JgpH21PrbRqwK92BJklZWvh2TndA6xZ-eP1LPMo44oQ,2832
203
- airbyte_cdk/sources/file_based/file_types/jsonl_parser.py,sha256=k1ri7TtwrN8oYZpCl1bNNeAQmwBbwLjmOmIz8-tKflY,5897
204
- airbyte_cdk/sources/file_based/file_types/parquet_parser.py,sha256=0B4RYehU4z4dys3Tu-O98B0Uw7JO_LzStRwmNxKh6Xk,10486
205
- 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
206
210
  airbyte_cdk/sources/file_based/remote_file.py,sha256=yqRz93vPe8PBXLIMJ5W5u2JRlZRhg6sBrAjn3pPjJ8A,315
207
211
  airbyte_cdk/sources/file_based/schema_helpers.py,sha256=Cf8FH1bDFP0qCDDfEYir_WjP4exXUnikz8hZ40y1Ek0,9601
208
212
  airbyte_cdk/sources/file_based/schema_validation_policies/__init__.py,sha256=sEVnRhZ8x9f7PNjo6lewxid9z0PI8eSj7gSoFC3MH1Y,527
209
213
  airbyte_cdk/sources/file_based/schema_validation_policies/abstract_schema_validation_policy.py,sha256=kjvX7nOmUALYd7HuZHilUzgJPZ-MnZ08mtvuBnt2tQ0,618
210
214
  airbyte_cdk/sources/file_based/schema_validation_policies/default_schema_validation_policies.py,sha256=vjTlmYT_nqzY3DbT5xem7X-bwgA9RyXHoKFqiMO2URk,1728
211
215
  airbyte_cdk/sources/file_based/stream/__init__.py,sha256=QPDqdgjsabOQD93dSFqHGaFS_3pIwm-chEabZHiPJi0,265
212
- 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
213
217
  airbyte_cdk/sources/file_based/stream/concurrent/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
214
- 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
215
219
  airbyte_cdk/sources/file_based/stream/concurrent/cursor/__init__.py,sha256=AtTntHQgspWt8vZ9cjIjSOO1YpH2OO-D8E78pAViE7k,329
216
- airbyte_cdk/sources/file_based/stream/concurrent/cursor/abstract_concurrent_file_based_cursor.py,sha256=pCh1X-WTTuJGF9r-QlcTMlkPbpLBeOFkGrOJePtwTeU,1887
217
- airbyte_cdk/sources/file_based/stream/concurrent/cursor/file_based_concurrent_cursor.py,sha256=CPE_dEmAYK0r-wdI40zTnLtL3B-0DYThuJ1OKOCO8MU,14911
218
- 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
219
223
  airbyte_cdk/sources/file_based/stream/cursor/__init__.py,sha256=MhFB5hOo8sjwvCh8gangaymdg3EJWYt_72brFOZt068,191
220
224
  airbyte_cdk/sources/file_based/stream/cursor/abstract_file_based_cursor.py,sha256=om-x3gZFPgWDpi15S9RxZmR36VHnk8sytgN6LlBQhAw,1934
221
225
  airbyte_cdk/sources/file_based/stream/cursor/default_file_based_cursor.py,sha256=LgAl6xAgY-QD_KWZe1txkFgZlNe0jZydoTyAcHsP15g,7022
222
226
  airbyte_cdk/sources/file_based/stream/default_file_based_stream.py,sha256=rpwU6AOyhFLuXtcFKkcOHFWbRQ4kLCOKzAjcID_M87k,16770
223
227
  airbyte_cdk/sources/file_based/types.py,sha256=INxG7OPnkdUP69oYNKMAbwhvV1AGvLRHs1J6pIia2FI,218
224
228
  airbyte_cdk/sources/http_config.py,sha256=OBZeuyFilm6NlDlBhFQvHhTWabEvZww6OHDIlZujIS0,730
225
- airbyte_cdk/sources/http_logger.py,sha256=-r5zen-SPGtVri2ir1WZOcV-jT9wr2CBADi8FV_xptA,1454
229
+ airbyte_cdk/sources/http_logger.py,sha256=R9xhq-uEgXZXMMhIX6PhYxxVG0WvPp6__vTOCcyMJMM,1455
226
230
  airbyte_cdk/sources/message/__init__.py,sha256=14ZSLah9uyI_CyK7_jIyq521vlgKAdihe6Ciw6-jLgU,372
227
231
  airbyte_cdk/sources/message/repository.py,sha256=SG7avgti_-dj8FcRHTTrhgLLGJbElv14_zIB0SH8AIc,4763
228
232
  airbyte_cdk/sources/source.py,sha256=KIBBH5VLEb8BZ8B9aROlfaI6OLoJqKDPMJ10jkAR7nk,3611
229
233
  airbyte_cdk/sources/streams/__init__.py,sha256=14lMJVrpKV2E5SYKAeXV1m6ajZn8iL3XQflcEgWrWuc,256
230
234
  airbyte_cdk/sources/streams/availability_strategy.py,sha256=_RU4JITrxMEN36g1RDHMu0iSw0I_3yWGfo5N8_YRvOg,3247
231
- 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
232
236
  airbyte_cdk/sources/streams/checkpoint/__init__.py,sha256=zQQ8m9Dowli2eoql478yqVsNYB32IcE75KVwZ_YV5ew,711
233
237
  airbyte_cdk/sources/streams/checkpoint/checkpoint_reader.py,sha256=6HMT2NI-FQuaW0nt95NcyWrt5rZN4gF-Arx0sxdgbv4,15221
234
238
  airbyte_cdk/sources/streams/checkpoint/cursor.py,sha256=3e-3c-54k8U7Awno7DMmAD9ndbnl9OM48EnbEgeDUO0,3499
@@ -237,52 +241,51 @@ airbyte_cdk/sources/streams/checkpoint/resumable_full_refresh_cursor.py,sha256=9
237
241
  airbyte_cdk/sources/streams/checkpoint/substream_resumable_full_refresh_cursor.py,sha256=qyTpIpVh7c1ptwZ9S-2sMoRHh4prpQAlzqjweQ5iCxM,4769
238
242
  airbyte_cdk/sources/streams/concurrent/README.md,sha256=0nvgnlCBfZJiPDAofT8yFmUhGc4L99RCb3fL_PI4sSY,1070
239
243
  airbyte_cdk/sources/streams/concurrent/__init__.py,sha256=4Hw-PX1-VgESLF16cDdvuYCzGJtHntThLF4qIiULWeo,61
240
- 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
241
245
  airbyte_cdk/sources/streams/concurrent/abstract_stream_facade.py,sha256=QTry1QCBUwJDw1QSCEvz23s7zIEx_7QMxkPq9j-oPIQ,1358
242
- airbyte_cdk/sources/streams/concurrent/adapters.py,sha256=dbRuPkk-t5QWu39F5IjMkbxwtnLyQM4PIJ3EX2C4UwQ,15051
243
- airbyte_cdk/sources/streams/concurrent/availability_strategy.py,sha256=QjX52lC4YOOvcTEhR0RU9e42yuWtueQkW_I_qpE_uTM,2876
244
- 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
245
249
  airbyte_cdk/sources/streams/concurrent/default_stream.py,sha256=WdZYzION3q6nIhIIcpFqlovDcouOHdbnB0U1YIDP2Jk,3175
246
250
  airbyte_cdk/sources/streams/concurrent/exceptions.py,sha256=JOZ446MCLpmF26r9KfS6OO_6rGjcjgJNZdcw6jccjEI,468
247
251
  airbyte_cdk/sources/streams/concurrent/helpers.py,sha256=gtj9p0clZwgnClrIRH6V2Wl0Jwu11Plq-9FP4FU2VQA,1327
248
252
  airbyte_cdk/sources/streams/concurrent/partition_enqueuer.py,sha256=2t64b_z9cEPmlHZnjSiMTO8PEtEdiAJDG0JcYOtUqAE,3363
249
253
  airbyte_cdk/sources/streams/concurrent/partition_reader.py,sha256=0TIrjbTzYJGdA0AZUzbeIKr0iHbawnoEKVl7bWxOFZY,1760
250
254
  airbyte_cdk/sources/streams/concurrent/partitions/__init__.py,sha256=4Hw-PX1-VgESLF16cDdvuYCzGJtHntThLF4qIiULWeo,61
251
- airbyte_cdk/sources/streams/concurrent/partitions/partition.py,sha256=FRt6wsdMoXL2gZiAkd4cP-Bi7oM1ZzRDimDh0j98atw,1521
255
+ airbyte_cdk/sources/streams/concurrent/partitions/partition.py,sha256=CmaRcKn8y118No3qvbRV9DBeAUKv17lrVgloR4Y9TwU,1490
252
256
  airbyte_cdk/sources/streams/concurrent/partitions/partition_generator.py,sha256=_ymkkBr71_qt1fW0_MUqw96OfNBkeJngXQ09yolEDHw,441
253
- airbyte_cdk/sources/streams/concurrent/partitions/record.py,sha256=HVGVZ2yF5iaPKxTjRn305lLmYb5I8k7DkQoNIyKA_MA,938
254
257
  airbyte_cdk/sources/streams/concurrent/partitions/stream_slicer.py,sha256=nbdkkHoN0NFeSs7YUFfzY1Lg5Jrt8fWY_ln3YrhY-Ko,544
255
- airbyte_cdk/sources/streams/concurrent/partitions/types.py,sha256=6k83K_dnwHAadkTBPSdWKssTzxVGVLH5DzZFkN6pFr8,1197
258
+ airbyte_cdk/sources/streams/concurrent/partitions/types.py,sha256=frPVvHtY7vLxpGEbMQzNvF1Y52ZVyct9f1DDhGoRjwY,1166
256
259
  airbyte_cdk/sources/streams/concurrent/state_converters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
257
260
  airbyte_cdk/sources/streams/concurrent/state_converters/abstract_stream_state_converter.py,sha256=CXHUMOhndu-LOKgsnNTItv5s5qrKpmJDeHOzlH1nBy8,6819
258
- airbyte_cdk/sources/streams/concurrent/state_converters/datetime_stream_state_converter.py,sha256=n9UPKpSsCu1zjaOKVp6WTuyGSQS2Qh9YWy8myKBpe18,7721
259
- 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
260
263
  airbyte_cdk/sources/streams/http/__init__.py,sha256=NXaNlkzZMkh5kS8S5ujEaKEE6855sk6_HljF_GFjKZI,311
261
264
  airbyte_cdk/sources/streams/http/availability_strategy.py,sha256=sovoGFThZr-doMN9vJvTuJBrvkwQVIO0qTQO64pGZPY,2428
262
265
  airbyte_cdk/sources/streams/http/error_handlers/__init__.py,sha256=R8OgTcratGH4f6BbYM2Hp8qYyEk7wMYuyda5H9ohGW8,665
263
266
  airbyte_cdk/sources/streams/http/error_handlers/backoff_strategy.py,sha256=7fIkF00wD6bqIXtiG2QAgbje_xiQ5JTs99ibwR8LLXY,1030
264
267
  airbyte_cdk/sources/streams/http/error_handlers/default_backoff_strategy.py,sha256=1_1Gi2ImwTbh4SgIKCRh2P4kPaVeAeHc1ib6IrBfqKA,411
265
- 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
266
269
  airbyte_cdk/sources/streams/http/error_handlers/error_handler.py,sha256=GuqP7U1eC9RPaiD4y4Mkf17vKcOXo2ENnMB-CUBLsbo,1164
267
270
  airbyte_cdk/sources/streams/http/error_handlers/error_message_parser.py,sha256=xC93uB5BJd3iOnAXCrYLJTitWeGZlqzwe55VtsZqNnE,456
268
- airbyte_cdk/sources/streams/http/error_handlers/http_status_error_handler.py,sha256=sZ67S7hHNK9Ya_G3M9nE1qI6ijuPZKc7loBqT3HAvvE,4187
269
- airbyte_cdk/sources/streams/http/error_handlers/json_error_message_parser.py,sha256=E6Rsj5PUEwVs0IfZTf7nyZQq0XP-qhepzKDgYjjZQTI,1827
270
- 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
271
274
  airbyte_cdk/sources/streams/http/exceptions.py,sha256=njC7MlMJoFYcSGz4mIp6-bqLFTr6vC8ej25X0oSeyjE,1824
272
- airbyte_cdk/sources/streams/http/http.py,sha256=XoUvIClYO96datz_lBPBBY6uWmCja2mUk_yERdjskQo,28466
273
- 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
274
277
  airbyte_cdk/sources/streams/http/rate_limiting.py,sha256=IwdjrHKUnU97XO4qONgYRv4YYW51xQ8SJm4WLafXDB8,6351
275
278
  airbyte_cdk/sources/streams/http/requests_native_auth/__init__.py,sha256=RN0D3nOX1xLgwEwKWu6pkGy3XqBFzKSNZ8Lf6umU2eY,413
276
- 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
277
280
  airbyte_cdk/sources/streams/http/requests_native_auth/abstract_token.py,sha256=T0hVF2cBXGgIfrCslvTC1uNm9rNbYjENNl2Cb3mXuSY,961
278
- 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
279
282
  airbyte_cdk/sources/streams/http/requests_native_auth/token.py,sha256=h5PTzcdH-RQLeCg7xZ45w_484OPUDSwNWl_iMJQmZoI,2526
280
283
  airbyte_cdk/sources/streams/utils/__init__.py,sha256=4Hw-PX1-VgESLF16cDdvuYCzGJtHntThLF4qIiULWeo,61
281
- airbyte_cdk/sources/types.py,sha256=q0W2snCfmiGIaiV5L42_4C_r3ObKgUQm9eqCS90VXtg,4558
284
+ airbyte_cdk/sources/types.py,sha256=WWVigI7ZSoQU2TBCzDsHJtoX4Ima9v--lcLyYwUG_cE,4904
282
285
  airbyte_cdk/sources/utils/__init__.py,sha256=TTN6VUxVy6Is8BhYQZR5pxJGQh8yH4duXh4O1TiMiEY,118
283
286
  airbyte_cdk/sources/utils/casing.py,sha256=QC-gV1O4e8DR4-bhdXieUPKm_JamzslVyfABLYYRSXA,256
284
287
  airbyte_cdk/sources/utils/record_helper.py,sha256=EIUPaJuLNrLUuTYgo0JbEsqFGvBYRiDJpWP2QOU-wWU,2184
285
- airbyte_cdk/sources/utils/schema_helpers.py,sha256=VivHYSFporVBzrO9KuJ5YHy_vVXAMmyH7dZZWQZ8gbM,8575
288
+ airbyte_cdk/sources/utils/schema_helpers.py,sha256=uR6IJt782l15bQ57O6SCqA75xybZ946oyC9nw3zYJ0k,8576
286
289
  airbyte_cdk/sources/utils/slice_logger.py,sha256=qWWeFLAvigFz0b4O1_O3QDM1cy8PqZAMMgVPR2hEeb8,1778
287
290
  airbyte_cdk/sources/utils/transform.py,sha256=FCBIL27-CmJA5Q4IcmxdKq0hN9FhlUz5yv-EvXNx79A,9640
288
291
  airbyte_cdk/sources/utils/types.py,sha256=41ZQR681t5TUnOScij58d088sb99klH_ZENFcaYro_g,175
@@ -292,17 +295,17 @@ airbyte_cdk/sql/_util/hashing.py,sha256=HN5N1m0GPMtD_hSnWkj-721Bsq02PzGgmTZ4jcAK
292
295
  airbyte_cdk/sql/_util/name_normalizers.py,sha256=z5oJjyAIc3RJ3L6M823SiBo2G3wpO9vXnOKbMLmoN5w,2874
293
296
  airbyte_cdk/sql/constants.py,sha256=ujNp1Dz8jBwEUV8rpd7Q5lItzqWGeSvMK7UWKtgclEU,1331
294
297
  airbyte_cdk/sql/exceptions.py,sha256=7_-K2c_trPy6kM89I2pwsrnVEtXqOspd9Eqrzf2KD2A,7746
295
- airbyte_cdk/sql/secrets.py,sha256=6Mo60XyEhCa3HurXPm6idOqWNXXFGTxoCitjfNKJ08Y,4344
298
+ airbyte_cdk/sql/secrets.py,sha256=FRIafU5YbWzoK8jtAcfExwzMGdswMbs0OOo1O7Y5i-g,4345
296
299
  airbyte_cdk/sql/shared/__init__.py,sha256=-BU9zpzwx7JxSlS7EmFuGmdB9jK_QhhEJUe5dxErrDw,334
297
300
  airbyte_cdk/sql/shared/catalog_providers.py,sha256=qiahORhtN6qBUGHhSKmzE00uC4i6W8unyBKCj7Kw47s,5218
298
- airbyte_cdk/sql/shared/sql_processor.py,sha256=UWMMP5q1ElEQHbxW5WpF7Z1JlpPUxjAbtevDYzw3Gc8,27705
301
+ airbyte_cdk/sql/shared/sql_processor.py,sha256=fPWLcDaCBXQRV1ugdWIZ6x53FYGQ1BpMFYJGnSCYed0,27707
299
302
  airbyte_cdk/sql/types.py,sha256=XEIhRAo_ASd0kVLBkdLf5bHiRhNple-IJrC9TibcDdY,5880
300
303
  airbyte_cdk/test/__init__.py,sha256=f_XdkOg4_63QT2k3BbKY34209lppwgw-svzfZstQEq4,199
301
304
  airbyte_cdk/test/catalog_builder.py,sha256=-y05Cz1x0Dlk6oE9LSKhCozssV2gYBNtMdV5YYOPOtk,3015
302
- airbyte_cdk/test/entrypoint_wrapper.py,sha256=mRivUeptmR_8WKhsTP9_iddCJtak6oTXaKTJm2hjSEM,9819
305
+ airbyte_cdk/test/entrypoint_wrapper.py,sha256=cfRbBIsu1mpehf89qP0j8pi99LGNiPRnkF2XShHhNOY,9820
303
306
  airbyte_cdk/test/mock_http/__init__.py,sha256=uil6k-0NbUyDFZXtWw88HaS7r13i43VzA9H7hOHzZx8,322
304
307
  airbyte_cdk/test/mock_http/matcher.py,sha256=4Qj8UnJKZIs-eodshryce3SN1Ayc8GZpBETmP6hTEyc,1446
305
- airbyte_cdk/test/mock_http/mocker.py,sha256=cyQcuFFLnK_Eyk3fuibbidRvnrAbZt1aLxam7mOioxc,7256
308
+ airbyte_cdk/test/mock_http/mocker.py,sha256=I_yM6EI-SSurS47O94OB9ZQDqsZGX0aCnUZUBBmqVBc,7257
306
309
  airbyte_cdk/test/mock_http/request.py,sha256=tdB8cqk2vLgCDTOKffBKsM06llYs4ZecgtH6DKyx6yY,4112
307
310
  airbyte_cdk/test/mock_http/response.py,sha256=U9KEsUkK2dPXYwnfwrwp6CcYSSpMYKLjfTrPFKSMCaM,602
308
311
  airbyte_cdk/test/mock_http/response_builder.py,sha256=bmC88X3NL_1pOF45MqKsf3v7l7nYSH7fCjJZIfALyFc,8018
@@ -322,12 +325,13 @@ airbyte_cdk/utils/mapping_helpers.py,sha256=H7BH-Yr8hSRG4W0zZcQ0ZzKOY5QFn8fNkGcE
322
325
  airbyte_cdk/utils/message_utils.py,sha256=wSkwgZ-TWA0ll8sbNPp5coqHCmLJp0veDcGd7_t4lLY,1263
323
326
  airbyte_cdk/utils/oneof_option_config.py,sha256=N8EmWdYdwt0FM7fuShh6H8nj_r4KEL9tb2DJJtwsPow,1180
324
327
  airbyte_cdk/utils/print_buffer.py,sha256=PhMOi0C4Z91kWKrSvCQXcp8qRh1uCimpIdvrg6voZIA,2810
325
- airbyte_cdk/utils/schema_inferrer.py,sha256=igYTpdi1uqzyj13h5EJli67g1hfwQK8K_jlNTGGeUMY,9860
326
- 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
327
330
  airbyte_cdk/utils/spec_schema_transformations.py,sha256=LVc9KbtMeV_z99jWo0Ou8u4l6eBJ0BWNhxj4zrrGKRs,763
328
331
  airbyte_cdk/utils/stream_status_utils.py,sha256=ZmBoiy5HVbUEHAMrUONxZvxnvfV9CesmQJLDTAIWnWw,1171
329
- airbyte_cdk/utils/traced_exception.py,sha256=89TQdFuYZ1NJgmFpqLzY_T_T_64TpJYmVqs119Bp43g,6164
330
- airbyte_cdk-6.7.0rc2.dist-info/LICENSE.txt,sha256=Wfe61S4BaGPj404v8lrAbvhjYR68SHlkzeYrg3_bbuM,1051
331
- airbyte_cdk-6.7.0rc2.dist-info/METADATA,sha256=0dmVuMrkaui3uUXZp0tg1CfHzY58AHUPJGAGQhk4VRw,13300
332
- airbyte_cdk-6.7.0rc2.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
333
- airbyte_cdk-6.7.0rc2.dist-info/RECORD,,
332
+ airbyte_cdk/utils/traced_exception.py,sha256=a6q51tBS3IdtefuOiL1eBwSmnNAXfjFMlMjSIQ_Tl-o,6165
333
+ airbyte_cdk-6.7.1.dist-info/LICENSE.txt,sha256=Wfe61S4BaGPj404v8lrAbvhjYR68SHlkzeYrg3_bbuM,1051
334
+ airbyte_cdk-6.7.1.dist-info/METADATA,sha256=_zN3B3AI1Fi9mkPxrvh9NPvcEQUKwLm9qMHavrSH_cE,13519
335
+ airbyte_cdk-6.7.1.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
336
+ airbyte_cdk-6.7.1.dist-info/entry_points.txt,sha256=fj-e3PAQvsxsQzyyq8UkG1k8spunWnD4BAH2AwlR6NM,95
337
+ airbyte_cdk-6.7.1.dist-info/RECORD,,
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ source-declarative-manifest=airbyte_cdk.cli.source_declarative_manifest:run
3
+
@@ -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()})"