airbyte-cdk 6.60.0.post35.dev16509779638__py3-none-any.whl → 6.60.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 (34) hide show
  1. airbyte_cdk/cli/source_declarative_manifest/_run.py +35 -30
  2. airbyte_cdk/config_observation.py +2 -2
  3. airbyte_cdk/connector.py +2 -1
  4. airbyte_cdk/connector_builder/connector_builder_handler.py +6 -1
  5. airbyte_cdk/connector_builder/main.py +11 -18
  6. airbyte_cdk/connector_builder/test_reader/helpers.py +31 -0
  7. airbyte_cdk/connector_builder/test_reader/message_grouper.py +5 -0
  8. airbyte_cdk/connector_builder/test_reader/reader.py +8 -3
  9. airbyte_cdk/destinations/destination.py +7 -7
  10. airbyte_cdk/entrypoint.py +23 -8
  11. airbyte_cdk/logger.py +2 -2
  12. airbyte_cdk/models/__init__.py +6 -7
  13. airbyte_cdk/models/airbyte_protocol.py +81 -2
  14. airbyte_cdk/models/airbyte_protocol_serializers.py +26 -152
  15. airbyte_cdk/models/well_known_types.py +1 -1
  16. airbyte_cdk/sources/declarative/concurrent_declarative_source.py +2 -4
  17. airbyte_cdk/sources/declarative/manifest_declarative_source.py +15 -7
  18. airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py +7 -4
  19. airbyte_cdk/sources/declarative/spec/spec.py +2 -2
  20. airbyte_cdk/sources/file_based/file_based_source.py +3 -3
  21. airbyte_cdk/sources/source.py +4 -2
  22. airbyte_cdk/sources/streams/http/http_client.py +7 -5
  23. airbyte_cdk/sources/streams/permissions/identities_stream.py +1 -1
  24. airbyte_cdk/sql/shared/sql_processor.py +1 -1
  25. airbyte_cdk/test/catalog_builder.py +2 -1
  26. airbyte_cdk/test/entrypoint_wrapper.py +16 -25
  27. airbyte_cdk/utils/datetime_helpers.py +5 -14
  28. airbyte_cdk/utils/traced_exception.py +2 -2
  29. {airbyte_cdk-6.60.0.post35.dev16509779638.dist-info → airbyte_cdk-6.60.1.dist-info}/METADATA +11 -10
  30. {airbyte_cdk-6.60.0.post35.dev16509779638.dist-info → airbyte_cdk-6.60.1.dist-info}/RECORD +34 -34
  31. {airbyte_cdk-6.60.0.post35.dev16509779638.dist-info → airbyte_cdk-6.60.1.dist-info}/LICENSE.txt +0 -0
  32. {airbyte_cdk-6.60.0.post35.dev16509779638.dist-info → airbyte_cdk-6.60.1.dist-info}/LICENSE_SHORT +0 -0
  33. {airbyte_cdk-6.60.0.post35.dev16509779638.dist-info → airbyte_cdk-6.60.1.dist-info}/WHEEL +0 -0
  34. {airbyte_cdk-6.60.0.post35.dev16509779638.dist-info → airbyte_cdk-6.60.1.dist-info}/entry_points.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: airbyte-cdk
3
- Version: 6.60.0.post35.dev16509779638
3
+ Version: 6.60.1
4
4
  Summary: A framework for writing Airbyte Connectors.
5
5
  Home-page: https://airbyte.com
6
6
  License: MIT
@@ -23,7 +23,7 @@ Provides-Extra: sql
23
23
  Provides-Extra: vector-db-based
24
24
  Requires-Dist: Jinja2 (>=3.1.2,<3.2.0)
25
25
  Requires-Dist: PyYAML (>=6.0.1,<7.0.0)
26
- Requires-Dist: airbyte-protocol-models-pdv2 (>=0.18.0,<0.19.0)
26
+ Requires-Dist: airbyte-protocol-models-dataclasses (>=0.17.1,<0.18.0)
27
27
  Requires-Dist: anyascii (>=0.3.2,<0.4.0)
28
28
  Requires-Dist: avro (>=1.11.2,<1.13.0) ; extra == "file-based"
29
29
  Requires-Dist: backoff
@@ -31,14 +31,13 @@ Requires-Dist: boltons (>=25.0.0,<26.0.0)
31
31
  Requires-Dist: cachetools
32
32
  Requires-Dist: click (>=8.1.8,<9.0.0)
33
33
  Requires-Dist: cohere (==4.21) ; extra == "vector-db-based"
34
- Requires-Dist: cryptography (>=44.0.0,<46.0.0)
35
- Requires-Dist: dacite (>=1.9.2,<2.0.0)
34
+ Requires-Dist: cryptography (>=44.0.0,<45.0.0)
36
35
  Requires-Dist: dateparser (>=1.2.2,<2.0.0)
37
36
  Requires-Dist: dpath (>=2.1.6,<3.0.0)
38
37
  Requires-Dist: dunamai (>=1.22.0,<2.0.0)
39
38
  Requires-Dist: fastavro (>=1.8.0,<1.9.0) ; extra == "file-based"
40
39
  Requires-Dist: genson (==1.3.0)
41
- Requires-Dist: google-cloud-secret-manager (>=2.17.0,<3.0.0) ; extra == "dev"
40
+ Requires-Dist: google-cloud-secret-manager (>=2.17.0,<3.0.0)
42
41
  Requires-Dist: isodate (>=0.6.1,<0.7.0)
43
42
  Requires-Dist: jsonref (>=0.2,<0.3)
44
43
  Requires-Dist: jsonschema (>=4.17.3,<4.18.0)
@@ -46,13 +45,14 @@ Requires-Dist: langchain (==0.1.16) ; extra == "vector-db-based"
46
45
  Requires-Dist: langchain_core (==0.1.42)
47
46
  Requires-Dist: markdown ; extra == "file-based"
48
47
  Requires-Dist: nltk (==3.9.1)
49
- Requires-Dist: numpy (<3.0)
48
+ Requires-Dist: numpy (<2)
50
49
  Requires-Dist: openai[embeddings] (==0.27.9) ; extra == "vector-db-based"
51
50
  Requires-Dist: orjson (>=3.10.7,<4.0.0)
52
51
  Requires-Dist: packaging
53
- Requires-Dist: pandas (>=2.2.2,<3.0.0)
52
+ Requires-Dist: pandas (==2.2.2)
54
53
  Requires-Dist: pdf2image (==1.16.3) ; extra == "file-based"
55
54
  Requires-Dist: pdfminer.six (==20221105) ; extra == "file-based"
55
+ Requires-Dist: psutil (==6.1.0)
56
56
  Requires-Dist: pyarrow (>=19.0.0,<20.0.0) ; extra == "file-based"
57
57
  Requires-Dist: pydantic (>=2.7,<3.0)
58
58
  Requires-Dist: pyjwt (>=2.8.0,<3.0.0)
@@ -63,12 +63,13 @@ Requires-Dist: python-calamine (==0.2.3) ; extra == "file-based"
63
63
  Requires-Dist: python-dateutil (>=2.9.0,<3.0.0)
64
64
  Requires-Dist: python-snappy (==0.7.3) ; extra == "file-based"
65
65
  Requires-Dist: python-ulid (>=3.0.0,<4.0.0)
66
- Requires-Dist: pytz (>=2024.2)
66
+ Requires-Dist: pytz (==2024.2)
67
+ Requires-Dist: rapidfuzz (>=3.10.1,<4.0.0)
67
68
  Requires-Dist: requests
68
69
  Requires-Dist: requests_cache
69
70
  Requires-Dist: rich
70
71
  Requires-Dist: rich-click (>=1.8.8,<2.0.0)
71
- Requires-Dist: serpyco-rs (>=1.10.2,<2.0.0) ; sys_platform != "emscripten"
72
+ Requires-Dist: serpyco-rs (>=1.10.2,<2.0.0)
72
73
  Requires-Dist: setuptools (>=80.9.0,<81.0.0)
73
74
  Requires-Dist: sqlalchemy (>=2.0,<3.0,!=2.0.36) ; extra == "sql"
74
75
  Requires-Dist: tiktoken (==0.8.0) ; extra == "vector-db-based"
@@ -77,7 +78,7 @@ Requires-Dist: unidecode (>=1.3.8,<2.0.0)
77
78
  Requires-Dist: unstructured.pytesseract (>=0.3.12) ; extra == "file-based"
78
79
  Requires-Dist: unstructured[docx,pptx] (==0.10.27) ; extra == "file-based"
79
80
  Requires-Dist: wcmatch (==10.0)
80
- Requires-Dist: whenever (>=0.6.16,<0.7.0) ; sys_platform != "emscripten"
81
+ Requires-Dist: whenever (>=0.6.16,<0.7.0)
81
82
  Requires-Dist: xmltodict (>=0.13,<0.15)
82
83
  Project-URL: Documentation, https://docs.airbyte.io/
83
84
  Project-URL: Repository, https://github.com/airbytehq/airbyte-python-cdk
@@ -9,22 +9,22 @@ airbyte_cdk/cli/airbyte_cdk/_version.py,sha256=ohZNIktLFk91sdzqFW5idaNrZAPX2dIRn
9
9
  airbyte_cdk/cli/airbyte_cdk/exceptions.py,sha256=bsGmlWN6cXL2jCD1WYAZMqFmK1OLg2xLrcC_60KHSeA,803
10
10
  airbyte_cdk/cli/source_declarative_manifest/README.md,sha256=aviNYFk1qKXGm33NQ2mJtJNyQ1MO0SPrm_fggUs0MVE,2460
11
11
  airbyte_cdk/cli/source_declarative_manifest/__init__.py,sha256=F-DFREvW6Sz71nSu0MwVALaybs9veg678tvsGFi2dYo,143
12
- airbyte_cdk/cli/source_declarative_manifest/_run.py,sha256=BSpHX4Ly9p65mgnv9LSdEgjSADqEWvyq0L68d0-OwnY,11021
12
+ airbyte_cdk/cli/source_declarative_manifest/_run.py,sha256=gaWQTMKGF9pe1VjNz2WCk_SclJX3gL31Eui0-jGxEqA,11274
13
13
  airbyte_cdk/cli/source_declarative_manifest/spec.json,sha256=Earc1L6ngcdIr514oFQlUoOxdF4RHqtUyStSIAquXdY,554
14
- airbyte_cdk/config_observation.py,sha256=HJznEy6WfwmskCAa_x6edK3z3x_GPbkqK0YL8AA4zr8,3950
15
- airbyte_cdk/connector.py,sha256=m8fWTbFkatmR0ID6DAuL75sb9gQPKGBjLqqROLq7BaY,4216
14
+ airbyte_cdk/config_observation.py,sha256=7SSPxtN0nXPkm4euGNcTTr1iLbwUL01jy-24V1Hzde0,3986
15
+ airbyte_cdk/connector.py,sha256=N6TUlrZOMjLAI85JrNAKkfyTqnO5xfBCw4oEfgjJd9o,4254
16
16
  airbyte_cdk/connector_builder/README.md,sha256=Hw3wvVewuHG9-QgsAq1jDiKuLlStDxKBz52ftyNRnBw,1665
17
17
  airbyte_cdk/connector_builder/__init__.py,sha256=4Hw-PX1-VgESLF16cDdvuYCzGJtHntThLF4qIiULWeo,61
18
- airbyte_cdk/connector_builder/connector_builder_handler.py,sha256=OFTzxyfAevI3Um8fXTOLTgoCc4Sx9NzF0boqYkAATfM,6590
19
- airbyte_cdk/connector_builder/main.py,sha256=Eh0W4gebKyz8w8Asw7jWvMQ6EPuh3uBUmNcVCbOYvB8,3894
18
+ airbyte_cdk/connector_builder/connector_builder_handler.py,sha256=ySszXKleG7IGtxkwu2q9jczcwAAhZziLVzNAKtUvGY8,6664
19
+ airbyte_cdk/connector_builder/main.py,sha256=j1pP5N8RsnvQZ4iYxhLdLEHsJ5Ui7IVFBUi6wYMGBkM,3839
20
20
  airbyte_cdk/connector_builder/models.py,sha256=9pIZ98LW_d6fRS39VdnUOf3cxGt4TkC5MJ0_OrzcCRk,1578
21
21
  airbyte_cdk/connector_builder/test_reader/__init__.py,sha256=iTwBMoI9vaJotEgpqZbFjlxRcbxXYypSVJ9YxeHk7wc,120
22
- airbyte_cdk/connector_builder/test_reader/helpers.py,sha256=Iczn-_iczS2CaIAunWwyFcX0uLTra8Wh9JVfzm1Gfxo,26765
23
- airbyte_cdk/connector_builder/test_reader/message_grouper.py,sha256=84BAEPIBHMq3WCfO14WNvh_q7OsjGgDt0q1FTu8eW-w,6918
24
- airbyte_cdk/connector_builder/test_reader/reader.py,sha256=mP1yHK5vG38KxoKoT2QQ7ZNbkdLA1rMAU3EKpucjHls,21098
22
+ airbyte_cdk/connector_builder/test_reader/helpers.py,sha256=vqoHpZeQ0BLIw2NiTNGXr0euA8gI_X0pcNRcHOv8sHM,27942
23
+ airbyte_cdk/connector_builder/test_reader/message_grouper.py,sha256=LDNl-xFQwA4RsUpn7684KbWaVH-SWWBIwhHvIgduLTE,7090
24
+ airbyte_cdk/connector_builder/test_reader/reader.py,sha256=3jLy3tUUHkG1rmGWrZuo4SmPYNVD9oiAqy8mdaUwzvo,21301
25
25
  airbyte_cdk/connector_builder/test_reader/types.py,sha256=hPZG3jO03kBaPyW94NI3JHRS1jxXGSNBcN1HFzOxo5Y,2528
26
26
  airbyte_cdk/destinations/__init__.py,sha256=FyDp28PT_YceJD5HDFhA-mrGfX9AONIyMQ4d68CHNxQ,213
27
- airbyte_cdk/destinations/destination.py,sha256=zymirizqFihspyPyXT9piHKYlnLXfMuxiUx7ORzlgeE,5845
27
+ airbyte_cdk/destinations/destination.py,sha256=CIq-yb8C_0QvcKCtmStaHfiqn53GEfRAIGGCkJhKP1Q,5880
28
28
  airbyte_cdk/destinations/vector_db_based/README.md,sha256=QAe8c_1Afme4r2TCE10cTSaxUE3zgCBuArSuRQqK8tA,2115
29
29
  airbyte_cdk/destinations/vector_db_based/__init__.py,sha256=eAkzwTjBbXBhJ5GfPO5I53Zgpv5xQFLRQS8n4nuyPt0,1006
30
30
  airbyte_cdk/destinations/vector_db_based/config.py,sha256=1u87eibIWLZ_wuaCvE3yp5ayguM9dGhGXbT8agmkUBg,12468
@@ -34,9 +34,9 @@ airbyte_cdk/destinations/vector_db_based/indexer.py,sha256=beiSi2Uu67EoTr7yQSaCJ
34
34
  airbyte_cdk/destinations/vector_db_based/test_utils.py,sha256=MkqLiOJ5QyKbV4rNiJhe-BHM7FD-ADHQ4bQGf4c5lRY,1932
35
35
  airbyte_cdk/destinations/vector_db_based/utils.py,sha256=FOyEo8Lc-fY8UyhpCivhZtIqBRyxf3cUt6anmK03fUY,1127
36
36
  airbyte_cdk/destinations/vector_db_based/writer.py,sha256=nZ00xPiohElJmYktEZZIhr0m5EDETCHGhg0Lb2S7A20,5095
37
- airbyte_cdk/entrypoint.py,sha256=74n08ZAudC1qWFcvnn_u0okQlULw1N2vyaHofGVHUu4,18923
37
+ airbyte_cdk/entrypoint.py,sha256=R2kAsAnCAI7eZCctQpMCImLhFFwo7PniJVA0e7RhJVI,19774
38
38
  airbyte_cdk/exception_handler.py,sha256=D_doVl3Dt60ASXlJsfviOCswxGyKF2q0RL6rif3fNks,2013
39
- airbyte_cdk/logger.py,sha256=NJq7p3KoRdcoSIQzJ73sfVZ8QlHW3RBC-nQaTjkLMk8,3708
39
+ airbyte_cdk/logger.py,sha256=1cURbvawbunCAV178q-XhTHcbAQZTSf07WhU7U9AXWU,3744
40
40
  airbyte_cdk/manifest_migrations/README.md,sha256=YX1h0xyc4jHdwH3I25ZHqB7R3hcUUCHMvnexpfzF2E8,3020
41
41
  airbyte_cdk/manifest_migrations/__init__.py,sha256=0eq9ic_6GGXMwzE31eAOSA7PLtBauMfgM9XshjYHF84,61
42
42
  airbyte_cdk/manifest_migrations/exceptions.py,sha256=mmMZaCVEkYSGykVL5jKA0xsDWWkybRdQwnh9pGb7VG0,300
@@ -48,11 +48,11 @@ airbyte_cdk/manifest_migrations/migrations/http_requester_request_body_json_data
48
48
  airbyte_cdk/manifest_migrations/migrations/http_requester_url_base_to_url.py,sha256=EX1MVYVpoWypA28qoH48wA0SYZjGdlR8bcSixTDzfgo,1346
49
49
  airbyte_cdk/manifest_migrations/migrations/registry.yaml,sha256=F-hdapvl_vZnsI7CQsV00Rb7g7j4Nt2zaM83-Tbwgbg,956
50
50
  airbyte_cdk/manifest_migrations/migrations_registry.py,sha256=zly2fwaOxDukqC7eowzrDlvhA2v71FjW74kDzvRXhSY,2619
51
- airbyte_cdk/models/__init__.py,sha256=S0_uDwV-S9U0DZyUKyITa_eLz1gxhy9ScgH1Aql8CR8,2128
52
- airbyte_cdk/models/airbyte_protocol.py,sha256=-JLm0bZtzk5Gn_e0TAin2qTUVGqppJhDzeQ-j3z2Pso,254
53
- airbyte_cdk/models/airbyte_protocol_serializers.py,sha256=qdaVBJtuSL_xm8oq_v2fs69KgCEW5x47IWAjVkBBuw4,4665
51
+ airbyte_cdk/models/__init__.py,sha256=Et9wJWs5VOWynGbb-3aJRhsdAHAiLkNNLxdwqJAuqkw,2114
52
+ airbyte_cdk/models/airbyte_protocol.py,sha256=oZdKsZ7yPjUt9hvxdWNpxCtgjSV2RWhf4R9Np03sqyY,3613
53
+ airbyte_cdk/models/airbyte_protocol_serializers.py,sha256=Dq4ry_Wwvzsos6neDiaOZkY6riQYC33ZlPNWpfIIB1E,1926
54
54
  airbyte_cdk/models/connector_metadata.py,sha256=BD6CO8c3mHavxRJAcwP29sHtNNVLVSNFNQLgHOVxrwA,3229
55
- airbyte_cdk/models/well_known_types.py,sha256=idL7n1qrW1VSLQbi1ZU2ITxTgiAZyEBN7KfO8Hpx3C4,144
55
+ airbyte_cdk/models/well_known_types.py,sha256=EquepbisGPuCSrs_D7YVVnMR9-ShhUr21wnFz3COiJs,156
56
56
  airbyte_cdk/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
57
57
  airbyte_cdk/sources/__init__.py,sha256=45J83QsFH3Wky3sVapZWg4C58R_i1thm61M06t2c1AQ,1156
58
58
  airbyte_cdk/sources/abstract_source.py,sha256=50vxEBRByiNhT4WJkiFvgM-C6PWqKSJgvuNC_aeg2cw,15547
@@ -86,7 +86,7 @@ airbyte_cdk/sources/declarative/checks/check_stream.py,sha256=QeExVmpSYjr_CnghHu
86
86
  airbyte_cdk/sources/declarative/checks/connection_checker.py,sha256=MBRJo6WJlZQHpIfOGaNOkkHUmgUl_4wDM6VPo41z5Ss,1383
87
87
  airbyte_cdk/sources/declarative/concurrency_level/__init__.py,sha256=5XUqrmlstYlMM0j6crktlKQwALek0uiz2D3WdM46MyA,191
88
88
  airbyte_cdk/sources/declarative/concurrency_level/concurrency_level.py,sha256=YIwCTCpOr_QSNW4ltQK0yUGWInI8PKNY216HOOegYLk,2101
89
- airbyte_cdk/sources/declarative/concurrent_declarative_source.py,sha256=woOxp9q2PNpPc3rLsLGrdoMFpkXPNcmLb04VxPgPRe8,28606
89
+ airbyte_cdk/sources/declarative/concurrent_declarative_source.py,sha256=rQz9gXp3m8M8E201EWnD7BfeefDXhW3233GG_JLpdOQ,28546
90
90
  airbyte_cdk/sources/declarative/datetime/__init__.py,sha256=4Hw-PX1-VgESLF16cDdvuYCzGJtHntThLF4qIiULWeo,61
91
91
  airbyte_cdk/sources/declarative/datetime/datetime_parser.py,sha256=_zGNGq31RNy_0QBLt_EcTvgPyhj7urPdx6oA3M5-r3o,3150
92
92
  airbyte_cdk/sources/declarative/datetime/min_max_datetime.py,sha256=0BHBtDNQZfvwM45-tY5pNlTcKAFSGGNxemoi0Jic-0E,5785
@@ -128,7 +128,7 @@ airbyte_cdk/sources/declarative/interpolation/interpolated_string.py,sha256=CQkH
128
128
  airbyte_cdk/sources/declarative/interpolation/interpolation.py,sha256=9IoeuWam3L6GyN10L6U8xNWXmkt9cnahSDNkez1OmFY,982
129
129
  airbyte_cdk/sources/declarative/interpolation/jinja.py,sha256=oFGKs3oX0xO6DOL4E9x8rhxwbEoRcgx4HJVIL1RQ9c4,7269
130
130
  airbyte_cdk/sources/declarative/interpolation/macros.py,sha256=RpsAYG75bW0js2fQCzAN1nf3oeGyXwyt0LhJCHnlaUA,6031
131
- airbyte_cdk/sources/declarative/manifest_declarative_source.py,sha256=uZAjGHrtXx9Tp0IXPoQbhtagzdx1KBEwQN1eVRsvFFY,26047
131
+ airbyte_cdk/sources/declarative/manifest_declarative_source.py,sha256=NNywOq7i0N0oEBvZWbKmo09jHEZVsrY_TAiYR-P4m5k,26558
132
132
  airbyte_cdk/sources/declarative/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
133
133
  airbyte_cdk/sources/declarative/migrations/legacy_to_per_partition_state_migration.py,sha256=V2lpYE9LJKvz6BUViHk4vaRGndxNABmPbDCtyYdkqaE,4013
134
134
  airbyte_cdk/sources/declarative/migrations/state_migration.py,sha256=KWPjealMLKSMtajXgkdGgKg7EmTLR-CqqD7UIh0-eDU,794
@@ -141,7 +141,7 @@ airbyte_cdk/sources/declarative/parsers/custom_exceptions.py,sha256=wnRUP0Xeru9R
141
141
  airbyte_cdk/sources/declarative/parsers/manifest_component_transformer.py,sha256=2UdpCz3yi7ISZTyqkQXSSy3dMxeyOWqV7OlAS5b9GVg,11568
142
142
  airbyte_cdk/sources/declarative/parsers/manifest_normalizer.py,sha256=EtKjS9c94yNp3AwQC8KUCQaAYW5T3zvFYxoWYjc_buI,19729
143
143
  airbyte_cdk/sources/declarative/parsers/manifest_reference_resolver.py,sha256=pJmg78vqE5VfUrF_KJnWjucQ4k9IWFULeAxHCowrHXE,6806
144
- airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py,sha256=kmteSTmgLsUwMkR6K2HQPTRgLZ4W_CZXsAraFg8IRQ4,178085
144
+ airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py,sha256=1Mb__NBxSt2m1xXRNv9V-Xvk2Dj1uTk21AK0QeuIpMo,178243
145
145
  airbyte_cdk/sources/declarative/partition_routers/__init__.py,sha256=TBC9AkGaUqHm2IKHMPN6punBIcY5tWGULowcLoAVkfw,1109
146
146
  airbyte_cdk/sources/declarative/partition_routers/async_job_partition_router.py,sha256=VelO7zKqKtzMJ35jyFeg0ypJLQC0plqqIBNXoBW1G2E,3001
147
147
  airbyte_cdk/sources/declarative/partition_routers/cartesian_product_stream_slicer.py,sha256=c5cuVFM6NFkuQqG8Z5IwkBuwDrvXZN1CunUOM_L0ezg,6892
@@ -218,7 +218,7 @@ airbyte_cdk/sources/declarative/schema/inline_schema_loader.py,sha256=bVETE10hRs
218
218
  airbyte_cdk/sources/declarative/schema/json_file_schema_loader.py,sha256=5Wl-fqW-pVf_dxJ4yGHMAFfC4JjKHYJhqFJT1xA57F4,4177
219
219
  airbyte_cdk/sources/declarative/schema/schema_loader.py,sha256=kjt8v0N5wWKA5zyLnrDLxf1PJKdUqvQq2RVnAOAzNSY,379
220
220
  airbyte_cdk/sources/declarative/spec/__init__.py,sha256=9FYO-fVOclrwjAW4qwRTbZRVopTc9rOaauAJfThdNCQ,177
221
- airbyte_cdk/sources/declarative/spec/spec.py,sha256=33b1tOAZuhkIDOzoiG5CwRjJb_qBkoUECtL3iq4M-XU,3654
221
+ airbyte_cdk/sources/declarative/spec/spec.py,sha256=SwL_pfXZgcLYLJY-MAeFMHug9oYh2tOWjgG0C3DoLOY,3602
222
222
  airbyte_cdk/sources/declarative/stream_slicers/__init__.py,sha256=UX-cP_C-9FIFFPL9z8nuxu_rglssRsMOqQmQHN8FLB8,341
223
223
  airbyte_cdk/sources/declarative/stream_slicers/declarative_partition_generator.py,sha256=cjKGm4r438dd1GxrFHJ4aYrdzG2bkncnwaWxAwlXR3M,3585
224
224
  airbyte_cdk/sources/declarative/stream_slicers/stream_slicer.py,sha256=SOkIPBi2Wu7yxIvA15yFzUAB95a3IzA8LPq5DEqHQQc,725
@@ -264,7 +264,7 @@ airbyte_cdk/sources/file_based/discovery_policy/__init__.py,sha256=gl3ey6mZbyfra
264
264
  airbyte_cdk/sources/file_based/discovery_policy/abstract_discovery_policy.py,sha256=dCfXX529Rd5rtopg4VeEgTPJjFtqjtjzPq6LCw18Wt0,605
265
265
  airbyte_cdk/sources/file_based/discovery_policy/default_discovery_policy.py,sha256=-xujTidtrq6HC00WKbjQh1CZdT5LMuzkp5BLjqDmfTY,1007
266
266
  airbyte_cdk/sources/file_based/exceptions.py,sha256=WP0qkG6fpWoBpOyyicgp5YNE393VWyegq5qSy0v4QtM,7362
267
- airbyte_cdk/sources/file_based/file_based_source.py,sha256=d5OGU_QY6PV3fRTQA2NmhMoXGFS8OmAfe3KL4umiYsc,20105
267
+ airbyte_cdk/sources/file_based/file_based_source.py,sha256=Xg8OYWnGc-OcVBglvS08uwAWGWHBhEqsBnyODIkOK-4,20051
268
268
  airbyte_cdk/sources/file_based/file_based_stream_permissions_reader.py,sha256=4e7FXqQ9hueacexC0SyrZyjF8oREYHza8pKF9CgKbD8,5050
269
269
  airbyte_cdk/sources/file_based/file_based_stream_reader.py,sha256=rwz8AhEIqYB9gBF7uW9eR--eUiHOntzuwLH8jFHNacE,7854
270
270
  airbyte_cdk/sources/file_based/file_record_data.py,sha256=Vkr5AyZzlsOezjVCLhFrm_WpymlQdolWCnFAwqLJ9Iw,453
@@ -301,7 +301,7 @@ airbyte_cdk/sources/http_config.py,sha256=OBZeuyFilm6NlDlBhFQvHhTWabEvZww6OHDIlZ
301
301
  airbyte_cdk/sources/http_logger.py,sha256=H93kPAujHhPmXNX0JSFG3D-SL6yEFA5PtKot9Hu3TYA,1690
302
302
  airbyte_cdk/sources/message/__init__.py,sha256=y98fzHsQBwXwp2zEa4K5mxGFqjnx9lDn9O0pTk-VS4U,395
303
303
  airbyte_cdk/sources/message/repository.py,sha256=SG7avgti_-dj8FcRHTTrhgLLGJbElv14_zIB0SH8AIc,4763
304
- airbyte_cdk/sources/source.py,sha256=G9G5pzuHnXgBchHJIbUj7TPMJJoIdbrcjpACybWoEnc,3536
304
+ airbyte_cdk/sources/source.py,sha256=KIBBH5VLEb8BZ8B9aROlfaI6OLoJqKDPMJ10jkAR7nk,3611
305
305
  airbyte_cdk/sources/specs/transfer_modes.py,sha256=sfSVO0yT6SaGKN5_TP0Nl_ftG0yPhecaBv0WkhAEXA8,932
306
306
  airbyte_cdk/sources/streams/__init__.py,sha256=8fzTKpRTnSx5PggXgQPKJzHNZUV2BCA40N-dI6JM1xI,256
307
307
  airbyte_cdk/sources/streams/availability_strategy.py,sha256=_RU4JITrxMEN36g1RDHMu0iSw0I_3yWGfo5N8_YRvOg,3247
@@ -349,14 +349,14 @@ airbyte_cdk/sources/streams/http/error_handlers/json_error_message_parser.py,sha
349
349
  airbyte_cdk/sources/streams/http/error_handlers/response_models.py,sha256=xGIVELBFY0TmH9aUq1ikoqJz8oHLr6di2JLvKWVEO-s,2236
350
350
  airbyte_cdk/sources/streams/http/exceptions.py,sha256=njC7MlMJoFYcSGz4mIp6-bqLFTr6vC8ej25X0oSeyjE,1824
351
351
  airbyte_cdk/sources/streams/http/http.py,sha256=0uariNq8OFnlX7iqOHwBhecxA-Hfd5hSY8_XCEgn3jI,28499
352
- airbyte_cdk/sources/streams/http/http_client.py,sha256=GGHWzelKKfV5T4vfpkEAr0JSjUMP9Jqc9FUpLIeSZUQ,22929
352
+ airbyte_cdk/sources/streams/http/http_client.py,sha256=tDE0ROtxjGMVphvsw8INvGMtZ97hIF-v47pZ3jIyiwc,23011
353
353
  airbyte_cdk/sources/streams/http/rate_limiting.py,sha256=IwdjrHKUnU97XO4qONgYRv4YYW51xQ8SJm4WLafXDB8,6351
354
354
  airbyte_cdk/sources/streams/http/requests_native_auth/__init__.py,sha256=RN0D3nOX1xLgwEwKWu6pkGy3XqBFzKSNZ8Lf6umU2eY,413
355
355
  airbyte_cdk/sources/streams/http/requests_native_auth/abstract_oauth.py,sha256=0WfnxuxDwRYeq-PIwdUjJujDnxuJPhNfHlX_8aNHtYU,19663
356
356
  airbyte_cdk/sources/streams/http/requests_native_auth/abstract_token.py,sha256=Y3n7J-sk5yGjv_OxtY6Z6k0PEsFZmtIRi-x0KCbaHdA,1010
357
357
  airbyte_cdk/sources/streams/http/requests_native_auth/oauth.py,sha256=gVLo7nU-ORJd413TZHMJQV4m_vaGnRqhoXGGWehFjDA,19253
358
358
  airbyte_cdk/sources/streams/http/requests_native_auth/token.py,sha256=h5PTzcdH-RQLeCg7xZ45w_484OPUDSwNWl_iMJQmZoI,2526
359
- airbyte_cdk/sources/streams/permissions/identities_stream.py,sha256=eAT4XsQ5zLuj8KWT6c5ITw6zZatxtvS7J48xcxgwPuM,2609
359
+ airbyte_cdk/sources/streams/permissions/identities_stream.py,sha256=9O9k6k18Xm3Zsiw_vnI_jsHXfMCQiek6V-jMkJJLxn8,2621
360
360
  airbyte_cdk/sources/streams/utils/__init__.py,sha256=4Hw-PX1-VgESLF16cDdvuYCzGJtHntThLF4qIiULWeo,61
361
361
  airbyte_cdk/sources/types.py,sha256=1oerHQpidFrIluUhWsM3-4Xst4wwUDqzkgtgZY0jjZU,5485
362
362
  airbyte_cdk/sources/utils/__init__.py,sha256=TTN6VUxVy6Is8BhYQZR5pxJGQh8yH4duXh4O1TiMiEY,118
@@ -376,11 +376,11 @@ airbyte_cdk/sql/exceptions.py,sha256=7_-K2c_trPy6kM89I2pwsrnVEtXqOspd9Eqrzf2KD2A
376
376
  airbyte_cdk/sql/secrets.py,sha256=FRIafU5YbWzoK8jtAcfExwzMGdswMbs0OOo1O7Y5i-g,4345
377
377
  airbyte_cdk/sql/shared/__init__.py,sha256=-BU9zpzwx7JxSlS7EmFuGmdB9jK_QhhEJUe5dxErrDw,334
378
378
  airbyte_cdk/sql/shared/catalog_providers.py,sha256=lUYtJkkpkIcWUdp4rcL15GUrFy2b8Mf4sQjJu_YjC3M,5772
379
- airbyte_cdk/sql/shared/sql_processor.py,sha256=C4HqaiTE8xAh7HN_nQtQ0d2Iy02GmHGw70Ko-PheEIk,28203
379
+ airbyte_cdk/sql/shared/sql_processor.py,sha256=jR-hdLZsPf2sNBa_wvWKLvys8ZJ-SQCIiJS71Rszc-w,28215
380
380
  airbyte_cdk/sql/types.py,sha256=XEIhRAo_ASd0kVLBkdLf5bHiRhNple-IJrC9TibcDdY,5880
381
381
  airbyte_cdk/test/__init__.py,sha256=f_XdkOg4_63QT2k3BbKY34209lppwgw-svzfZstQEq4,199
382
- airbyte_cdk/test/catalog_builder.py,sha256=2_tdbk5Jk8mUXtxAN3_vhGIzQawYOZ9kg39xgoJbtl4,2963
383
- airbyte_cdk/test/entrypoint_wrapper.py,sha256=jo-Y9j9BBStT4moPMYMylvitVov6grZS_5ze_gHnGkM,18223
382
+ airbyte_cdk/test/catalog_builder.py,sha256=-y05Cz1x0Dlk6oE9LSKhCozssV2gYBNtMdV5YYOPOtk,3015
383
+ airbyte_cdk/test/entrypoint_wrapper.py,sha256=0t76VgYLHO1W-s0bjZCutd3smp2DR44ahwTFo5ydkM8,17989
384
384
  airbyte_cdk/test/mock_http/__init__.py,sha256=jE5kC6CQ0OXkTqKhciDnNVZHesBFVIA2YvkdFGwva7k,322
385
385
  airbyte_cdk/test/mock_http/matcher.py,sha256=4Qj8UnJKZIs-eodshryce3SN1Ayc8GZpBETmP6hTEyc,1446
386
386
  airbyte_cdk/test/mock_http/mocker.py,sha256=XgsjMtVoeMpRELPyALgrkHFauH9H5irxrz1Kcxh2yFY,8013
@@ -411,7 +411,7 @@ airbyte_cdk/utils/analytics_message.py,sha256=bi3uugQ2NjecnwTnz63iD5D1M8ZR8mXPbd
411
411
  airbyte_cdk/utils/connector_paths.py,sha256=MXj0RBi3HpuvQTWH6-vc62BZZ3XguHMq0CVIkjhS3qs,8779
412
412
  airbyte_cdk/utils/constants.py,sha256=QzCi7j5SqpI5I06uRvQ8FC73JVJi7rXaRnR3E_gro5c,108
413
413
  airbyte_cdk/utils/datetime_format_inferrer.py,sha256=Ne2cpk7Tx3eZDEW2Q3O7jnNOY9g-w-AUMt3Ltvwg1tY,3989
414
- airbyte_cdk/utils/datetime_helpers.py,sha256=PwQq8LBpM9ZfTNZovUQGuk4D5JHXdrHP21afvdoo34Q,17980
414
+ airbyte_cdk/utils/datetime_helpers.py,sha256=8mqzZ67Or2PBp7tLtrhh6XFv4wFzYsjCL_DOQJRaftI,17751
415
415
  airbyte_cdk/utils/docker.py,sha256=ub6xurQHw6qIhzgDO3V9sXOG1jkZyDGbOSSDjcazEHo,17989
416
416
  airbyte_cdk/utils/event_timing.py,sha256=aiuFmPU80buLlNdKq4fDTEqqhEIelHPF6AalFGwY8as,2557
417
417
  airbyte_cdk/utils/is_cloud_environment.py,sha256=DayV32Irh-SdnJ0MnjvstwCJ66_l5oEsd8l85rZtHoc,574
@@ -423,10 +423,10 @@ airbyte_cdk/utils/schema_inferrer.py,sha256=_jLzL9PzE4gfR44OSavkIqZNFM9t08c3LuRr
423
423
  airbyte_cdk/utils/slice_hasher.py,sha256=EDxgROHDbfG-QKQb59m7h_7crN1tRiawdf5uU7GrKcg,1264
424
424
  airbyte_cdk/utils/spec_schema_transformations.py,sha256=-5HTuNsnDBAhj-oLeQXwpTGA0HdcjFOf2zTEMUTTg_Y,816
425
425
  airbyte_cdk/utils/stream_status_utils.py,sha256=ZmBoiy5HVbUEHAMrUONxZvxnvfV9CesmQJLDTAIWnWw,1171
426
- airbyte_cdk/utils/traced_exception.py,sha256=bc5jMk8Z3AnSL-vqsgPCNgHzWqGTKZODHSg7VHiUyj0,6256
427
- airbyte_cdk-6.60.0.post35.dev16509779638.dist-info/LICENSE.txt,sha256=Wfe61S4BaGPj404v8lrAbvhjYR68SHlkzeYrg3_bbuM,1051
428
- airbyte_cdk-6.60.0.post35.dev16509779638.dist-info/LICENSE_SHORT,sha256=aqF6D1NcESmpn-cqsxBtszTEnHKnlsp8L4x9wAh3Nxg,55
429
- airbyte_cdk-6.60.0.post35.dev16509779638.dist-info/METADATA,sha256=ikixxTUJkzVxAj6iNUXzfLrRFb11T2rtXK1j4Pc9tUM,6544
430
- airbyte_cdk-6.60.0.post35.dev16509779638.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
431
- airbyte_cdk-6.60.0.post35.dev16509779638.dist-info/entry_points.txt,sha256=AKWbEkHfpzzk9nF9tqBUaw1MbvTM4mGtEzmZQm0ZWvM,139
432
- airbyte_cdk-6.60.0.post35.dev16509779638.dist-info/RECORD,,
426
+ airbyte_cdk/utils/traced_exception.py,sha256=C8uIBuCL_E4WnBAOPSxBicD06JAldoN9fGsQDp463OY,6292
427
+ airbyte_cdk-6.60.1.dist-info/LICENSE.txt,sha256=Wfe61S4BaGPj404v8lrAbvhjYR68SHlkzeYrg3_bbuM,1051
428
+ airbyte_cdk-6.60.1.dist-info/LICENSE_SHORT,sha256=aqF6D1NcESmpn-cqsxBtszTEnHKnlsp8L4x9wAh3Nxg,55
429
+ airbyte_cdk-6.60.1.dist-info/METADATA,sha256=5EwrpWPTO4Mv4T4pHFBEcV-aNmvM1UdBh-VULLQwhCc,6477
430
+ airbyte_cdk-6.60.1.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
431
+ airbyte_cdk-6.60.1.dist-info/entry_points.txt,sha256=AKWbEkHfpzzk9nF9tqBUaw1MbvTM4mGtEzmZQm0ZWvM,139
432
+ airbyte_cdk-6.60.1.dist-info/RECORD,,