airbyte-cdk 6.61.5__py3-none-any.whl → 6.61.6.post3.dev17473738577__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 (38) hide show
  1. airbyte_cdk/connector_builder/connector_builder_handler.py +7 -7
  2. airbyte_cdk/connector_builder/main.py +2 -2
  3. airbyte_cdk/connector_builder/test_reader/reader.py +2 -2
  4. airbyte_cdk/legacy/sources/declarative/incremental/per_partition_cursor.py +4 -2
  5. airbyte_cdk/manifest_server/Dockerfile +2 -2
  6. airbyte_cdk/manifest_server/api_models/__init__.py +2 -0
  7. airbyte_cdk/manifest_server/api_models/manifest.py +12 -0
  8. airbyte_cdk/manifest_server/api_models/stream.py +2 -2
  9. airbyte_cdk/manifest_server/command_processor/processor.py +2 -4
  10. airbyte_cdk/manifest_server/command_processor/utils.py +1 -1
  11. airbyte_cdk/manifest_server/helpers/__init__.py +0 -0
  12. airbyte_cdk/manifest_server/helpers/tracing.py +36 -0
  13. airbyte_cdk/manifest_server/routers/manifest.py +38 -2
  14. airbyte_cdk/sources/declarative/concurrent_declarative_source.py +7 -6
  15. airbyte_cdk/sources/declarative/incremental/concurrent_partition_cursor.py +57 -7
  16. airbyte_cdk/sources/declarative/incremental/global_substream_cursor.py +4 -2
  17. airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py +229 -281
  18. airbyte_cdk/sources/declarative/partition_routers/cartesian_product_stream_slicer.py +0 -6
  19. airbyte_cdk/sources/declarative/partition_routers/grouping_partition_router.py +0 -5
  20. airbyte_cdk/sources/declarative/partition_routers/list_partition_router.py +0 -6
  21. airbyte_cdk/sources/declarative/partition_routers/partition_router.py +1 -23
  22. airbyte_cdk/sources/declarative/partition_routers/single_partition_router.py +0 -6
  23. airbyte_cdk/sources/declarative/partition_routers/substream_partition_router.py +88 -107
  24. airbyte_cdk/sources/declarative/requesters/request_options/per_partition_request_option_provider.py +95 -0
  25. airbyte_cdk/sources/declarative/resolvers/http_components_resolver.py +4 -1
  26. airbyte_cdk/sources/declarative/retrievers/retriever.py +5 -0
  27. airbyte_cdk/sources/declarative/yaml_declarative_source.py +1 -1
  28. airbyte_cdk/sources/message/repository.py +20 -0
  29. airbyte_cdk/sources/utils/schema_helpers.py +29 -9
  30. airbyte_cdk/sources/utils/transform.py +25 -13
  31. airbyte_cdk/utils/spec_schema_transformations.py +7 -5
  32. {airbyte_cdk-6.61.5.dist-info → airbyte_cdk-6.61.6.post3.dev17473738577.dist-info}/METADATA +3 -2
  33. {airbyte_cdk-6.61.5.dist-info → airbyte_cdk-6.61.6.post3.dev17473738577.dist-info}/RECORD +38 -35
  34. /airbyte_cdk/manifest_server/{auth.py → helpers/auth.py} +0 -0
  35. {airbyte_cdk-6.61.5.dist-info → airbyte_cdk-6.61.6.post3.dev17473738577.dist-info}/LICENSE.txt +0 -0
  36. {airbyte_cdk-6.61.5.dist-info → airbyte_cdk-6.61.6.post3.dev17473738577.dist-info}/LICENSE_SHORT +0 -0
  37. {airbyte_cdk-6.61.5.dist-info → airbyte_cdk-6.61.6.post3.dev17473738577.dist-info}/WHEEL +0 -0
  38. {airbyte_cdk-6.61.5.dist-info → airbyte_cdk-6.61.6.post3.dev17473738577.dist-info}/entry_points.txt +0 -0
@@ -3,10 +3,25 @@
3
3
  #
4
4
 
5
5
  import logging
6
+ from copy import deepcopy
6
7
  from enum import Flag, auto
7
- from typing import Any, Callable, Dict, Generator, Mapping, Optional, cast
8
+ from typing import TYPE_CHECKING, Any, Callable, Dict, Generator, Mapping, Optional, cast
9
+
10
+ from jsonschema import Draft7Validator, ValidationError, validators
11
+ from referencing import Registry, Resource
12
+ from referencing._core import Resolver
13
+ from referencing.exceptions import Unresolvable
14
+ from referencing.jsonschema import DRAFT7
15
+
16
+ from airbyte_cdk.sources.utils.schema_helpers import expand_refs
17
+
18
+ from .schema_helpers import get_ref_resolver_registry
19
+
20
+ try:
21
+ from jsonschema.validators import Validator
22
+ except:
23
+ from jsonschema import Validator
8
24
 
9
- from jsonschema import Draft7Validator, RefResolver, ValidationError, Validator, validators
10
25
 
11
26
  MAX_NESTING_DEPTH = 3
12
27
  json_to_python_simple = {
@@ -191,15 +206,14 @@ class TypeTransformer:
191
206
  validators parameter for detailed description.
192
207
  :
193
208
  """
209
+ # Very first step is to expand $refs in the schema itself:
210
+ expand_refs(schema)
211
+
212
+ # Now we can expand $refs in the property value:
213
+ if isinstance(property_value, dict):
214
+ expand_refs(property_value)
194
215
 
195
- def resolve(subschema: dict[str, Any]) -> dict[str, Any]:
196
- if "$ref" in subschema:
197
- _, resolved = cast(
198
- RefResolver,
199
- validator_instance.resolver,
200
- ).resolve(subschema["$ref"])
201
- return cast(dict[str, Any], resolved)
202
- return subschema
216
+ # Now we can validate and normalize the values:
203
217
 
204
218
  # Transform object and array values before running json schema type checking for each element.
205
219
  # Recursively normalize every value of the "instance" sub-object,
@@ -207,14 +221,12 @@ class TypeTransformer:
207
221
  if schema_key == "properties" and isinstance(instance, dict):
208
222
  for k, subschema in property_value.items():
209
223
  if k in instance:
210
- subschema = resolve(subschema)
211
224
  instance[k] = self.__normalize(instance[k], subschema)
212
225
  # Recursively normalize every item of the "instance" sub-array,
213
226
  # if "instance" is an incorrect type - skip recursive normalization of "instance"
214
227
  elif schema_key == "items" and isinstance(instance, list):
215
- subschema = resolve(property_value)
216
228
  for index, item in enumerate(instance):
217
- instance[index] = self.__normalize(item, subschema)
229
+ instance[index] = self.__normalize(item, property_value)
218
230
 
219
231
  # Running native jsonschema traverse algorithm after field normalization is done.
220
232
  yield from original_validator(
@@ -6,7 +6,8 @@ import json
6
6
  import re
7
7
  from typing import Any
8
8
 
9
- from jsonschema import RefResolver
9
+ from referencing import Registry, Resource
10
+ from referencing.jsonschema import DRAFT7
10
11
 
11
12
 
12
13
  def resolve_refs(schema: dict[str, Any]) -> dict[str, Any]:
@@ -14,13 +15,14 @@ def resolve_refs(schema: dict[str, Any]) -> dict[str, Any]:
14
15
  For spec schemas generated using Pydantic models, the resulting JSON schema can contain refs between object
15
16
  relationships.
16
17
  """
17
- json_schema_ref_resolver = RefResolver.from_schema(schema)
18
+ resource = Resource.from_contents(schema, default_specification=DRAFT7)
19
+ registry = Registry().with_resource("", resource)
20
+ resolver = registry.resolver()
18
21
  str_schema = json.dumps(schema)
19
22
  for ref_block in re.findall(r'{"\$ref": "#\/definitions\/.+?(?="})"}', str_schema):
20
23
  ref = json.loads(ref_block)["$ref"]
21
- str_schema = str_schema.replace(
22
- ref_block, json.dumps(json_schema_ref_resolver.resolve(ref)[1])
23
- )
24
+ resolved = resolver.lookup(ref).contents
25
+ str_schema = str_schema.replace(ref_block, json.dumps(resolved))
24
26
  pyschema: dict[str, Any] = json.loads(str_schema)
25
27
  del pyschema["definitions"]
26
28
  return pyschema
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: airbyte-cdk
3
- Version: 6.61.5
3
+ Version: 6.61.6.post3.dev17473738577
4
4
  Summary: A framework for writing Airbyte Connectors.
5
5
  Home-page: https://airbyte.com
6
6
  License: MIT
@@ -44,7 +44,7 @@ Requires-Dist: genson (==1.3.0)
44
44
  Requires-Dist: google-cloud-secret-manager (>=2.17.0,<3.0.0)
45
45
  Requires-Dist: isodate (>=0.6.1,<0.7.0)
46
46
  Requires-Dist: jsonref (>=0.2,<0.3)
47
- Requires-Dist: jsonschema (>=4.17.3,<4.18.0)
47
+ Requires-Dist: jsonschema (>=4.17.3,<5.0)
48
48
  Requires-Dist: langchain (==0.1.16) ; extra == "vector-db-based"
49
49
  Requires-Dist: langchain_core (==0.1.42)
50
50
  Requires-Dist: markdown ; extra == "file-based"
@@ -69,6 +69,7 @@ Requires-Dist: python-snappy (==0.7.3) ; extra == "file-based"
69
69
  Requires-Dist: python-ulid (>=3.0.0,<4.0.0)
70
70
  Requires-Dist: pytz (==2024.2)
71
71
  Requires-Dist: rapidfuzz (>=3.10.1,<4.0.0)
72
+ Requires-Dist: referencing (>=0.36.2)
72
73
  Requires-Dist: requests
73
74
  Requires-Dist: requests_cache
74
75
  Requires-Dist: rich
@@ -15,13 +15,13 @@ airbyte_cdk/config_observation.py,sha256=7SSPxtN0nXPkm4euGNcTTr1iLbwUL01jy-24V1H
15
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=B5Zpt9u81n8BJjRCF-EvUUk0Y4-tTp6mPx0dSPP-pFg,6330
19
- airbyte_cdk/connector_builder/main.py,sha256=IkudoYUvjFieB9RJaHPrKd95yC90f9jOb6EBl1PaO7M,3935
18
+ airbyte_cdk/connector_builder/connector_builder_handler.py,sha256=g3P7Ib27mOLEMH8tBIVhl3A-ZidothnXxevhNSuGHvM,6204
19
+ airbyte_cdk/connector_builder/main.py,sha256=dbVvNIFGIiAM9HKFsoB00lAHSvX16JY49dUImsGCpwQ,3920
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
22
  airbyte_cdk/connector_builder/test_reader/helpers.py,sha256=5GSrK9EVBDm5dwtudVbA-73EHh53-niRA-oj8eQVFHI,29236
23
23
  airbyte_cdk/connector_builder/test_reader/message_grouper.py,sha256=bFoQMKCXJob98O6F4tgMW81cCquNOqCx2tkNXP7lPqc,7062
24
- airbyte_cdk/connector_builder/test_reader/reader.py,sha256=Zuq0LCtrT-KHaELn2pVl7eQd39c_BwYbVeZBX7HEeeQ,21842
24
+ airbyte_cdk/connector_builder/test_reader/reader.py,sha256=QvIBtCJxcQhJqlHXOAHoFHGz_N7Z7ocpV2j5JO92XEU,21768
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
27
  airbyte_cdk/destinations/destination.py,sha256=CIq-yb8C_0QvcKCtmStaHfiqn53GEfRAIGGCkJhKP1Q,5880
@@ -41,7 +41,7 @@ airbyte_cdk/legacy/sources/__init__.py,sha256=952Q-F0w7H-z0JUR2ZOQjreGokdGQa9B-L
41
41
  airbyte_cdk/legacy/sources/declarative/__init__.py,sha256=952Q-F0w7H-z0JUR2ZOQjreGokdGQa9B-LPxWFvaac0,57
42
42
  airbyte_cdk/legacy/sources/declarative/declarative_source.py,sha256=qmyMnnet92eGc3C22yBtpvD5UZjqdhsAafP_zxI5wp8,1814
43
43
  airbyte_cdk/legacy/sources/declarative/incremental/__init__.py,sha256=952Q-F0w7H-z0JUR2ZOQjreGokdGQa9B-LPxWFvaac0,57
44
- airbyte_cdk/legacy/sources/declarative/incremental/per_partition_cursor.py,sha256=DW56OT7H6_lE2CZagXitaSv8B9pAB6P78Y5TSI5qHBg,16937
44
+ airbyte_cdk/legacy/sources/declarative/incremental/per_partition_cursor.py,sha256=XnsO0MI98g_AhDxmz0aNjjAmsjD8q9ArzWV9uclPYmY,17195
45
45
  airbyte_cdk/legacy/sources/declarative/manifest_declarative_source.py,sha256=pkAYkQ-FXyyrBfe5jLf4gbFstcG0q38h6H9XWhJoL10,27161
46
46
  airbyte_cdk/logger.py,sha256=V8E7yO4RerDkyELzFv-NCJx4vEp9dhMkGAbfOnn9Krc,5080
47
47
  airbyte_cdk/manifest_migrations/README.md,sha256=YX1h0xyc4jHdwH3I25ZHqB7R3hcUUCHMvnexpfzF2E8,3020
@@ -55,16 +55,15 @@ airbyte_cdk/manifest_migrations/migrations/http_requester_request_body_json_data
55
55
  airbyte_cdk/manifest_migrations/migrations/http_requester_url_base_to_url.py,sha256=EX1MVYVpoWypA28qoH48wA0SYZjGdlR8bcSixTDzfgo,1346
56
56
  airbyte_cdk/manifest_migrations/migrations/registry.yaml,sha256=F-hdapvl_vZnsI7CQsV00Rb7g7j4Nt2zaM83-Tbwgbg,956
57
57
  airbyte_cdk/manifest_migrations/migrations_registry.py,sha256=zly2fwaOxDukqC7eowzrDlvhA2v71FjW74kDzvRXhSY,2619
58
- airbyte_cdk/manifest_server/Dockerfile,sha256=hNgnUguE9jA5XFkpLmzvbsQbsZTuwOxJgE7qYNkPueo,1316
58
+ airbyte_cdk/manifest_server/Dockerfile,sha256=9I8HUDHkHggzyUiGg4Bqj7oZjrTSaWrZrWyA2FKD7u8,1317
59
59
  airbyte_cdk/manifest_server/README.md,sha256=bYzb3QAnkaM9mR9XgK7n4FKAvZkM4OWaBGcQb91f3vk,4341
60
60
  airbyte_cdk/manifest_server/__init__.py,sha256=EE54nk2dbtExIEEvLPCTUkJ_ESV5OYP4B2rBJlDpJ5g,33
61
- airbyte_cdk/manifest_server/api_models/__init__.py,sha256=1UFpMsJm1sjNBjgEasbOU98BgZxLthlPM1KdUpGfC4I,1015
61
+ airbyte_cdk/manifest_server/api_models/__init__.py,sha256=UOtYJNkR8_Nb5tDqSjSUhVM9Mv5EiyfD9Zh302GRzRA,1057
62
62
  airbyte_cdk/manifest_server/api_models/capabilities.py,sha256=eL88UxojIewHt97wMeCvyt92Hzh95UvLvVH6MSlsj5o,152
63
63
  airbyte_cdk/manifest_server/api_models/dicts.py,sha256=Rm10IeV745MY8bLyrYyG7a9NGNrZBlnfkXct8gi7OTI,467
64
- airbyte_cdk/manifest_server/api_models/manifest.py,sha256=cqxA4hU7Q29R8w6fqRDxtM7bVcFcADU2eQXZYKbib3M,1673
65
- airbyte_cdk/manifest_server/api_models/stream.py,sha256=Jtz4TbqLf6Xbnu1KtTEQhzi_1rqClB2n22pueK8xgrI,2001
64
+ airbyte_cdk/manifest_server/api_models/manifest.py,sha256=LlsBPuK8asIsFYh21WvtTgZB1e5dTrPKYM21unKTRaY,2080
65
+ airbyte_cdk/manifest_server/api_models/stream.py,sha256=WqAIfcrRiYjaR9DvwoYegv1JOvVd7W5cEefUYyWk9FI,2006
66
66
  airbyte_cdk/manifest_server/app.py,sha256=RrjV73qx_PBoYoO_IAxDNV5v-UZNwjSG4muxZ4kiMj8,602
67
- airbyte_cdk/manifest_server/auth.py,sha256=kKET6zg4olyf8p_UMcTnm7vkAtowxK6loSf8o83SdEM,1264
68
67
  airbyte_cdk/manifest_server/cli/__init__.py,sha256=YfCEfXq3Jr7z3GOKMA6vF-D-7Y66BNHUwBLNM9UQbiQ,273
69
68
  airbyte_cdk/manifest_server/cli/_common.py,sha256=_dV7Lq30-MFDAw4feNKJDnQkAaNpPnuHm4xcGJb9SvE,832
70
69
  airbyte_cdk/manifest_server/cli/_info.py,sha256=-h8U1bSD1umqLuoXfg4yDNWFR1BZuxcXxLhVKfLWB0Y,982
@@ -72,14 +71,17 @@ airbyte_cdk/manifest_server/cli/_openapi.py,sha256=rNghqbBMMT118auUIsxr89Mu6L6hq
72
71
  airbyte_cdk/manifest_server/cli/_start.py,sha256=SgkW_dQcpCIrXYNZ6qF95oYIVaCszm9tFEbYiAZo4EQ,876
73
72
  airbyte_cdk/manifest_server/cli/run.py,sha256=-Yv_Jv_hDeMBVZdzuyeJJ_JBT1WUhCyUQn4f4mA21Ds,1224
74
73
  airbyte_cdk/manifest_server/command_processor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
75
- airbyte_cdk/manifest_server/command_processor/processor.py,sha256=_YNJdP3H9IP_26m1S6j-ZfVK-EC9YppAV-Degd7yll0,3829
76
- airbyte_cdk/manifest_server/command_processor/utils.py,sha256=f_CkN2nURTTp07Twr9vZfFj5j-jTFtezoOUu2i402W4,3221
74
+ airbyte_cdk/manifest_server/command_processor/processor.py,sha256=BZPASuhPJix78NB7rD1xuxWfL1TmqdnOEa_8WR1R2FI,3741
75
+ airbyte_cdk/manifest_server/command_processor/utils.py,sha256=EbZAbX91n12g2TCqOWBUi8KKqdz2Ccrw2FAIN5JT2B8,3184
76
+ airbyte_cdk/manifest_server/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
77
+ airbyte_cdk/manifest_server/helpers/auth.py,sha256=kKET6zg4olyf8p_UMcTnm7vkAtowxK6loSf8o83SdEM,1264
78
+ airbyte_cdk/manifest_server/helpers/tracing.py,sha256=J-Yi5YP4ZrUfG1eN7jNVJR_eldfJBki3Sbke-uWpGe0,1021
77
79
  airbyte_cdk/manifest_server/main.py,sha256=iSgL7x8ifBpGpXi7Dq7017QjeC20l_CYBAIsumiyJn0,573
78
80
  airbyte_cdk/manifest_server/openapi.yaml,sha256=jwJXohDXP3BLL0JGZhkyhpNLWLZu6_iXEgMtM58F2Pc,16693
79
81
  airbyte_cdk/manifest_server/routers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
80
82
  airbyte_cdk/manifest_server/routers/capabilities.py,sha256=UeZQzbqEuDN23vizgDb_N7KEXR-YZUPnW5AkXeXy1hA,727
81
83
  airbyte_cdk/manifest_server/routers/health.py,sha256=akBUaHUGN-jmN82lQ3kj_3-wdS6gsZx3iSD2KMI5dW8,200
82
- airbyte_cdk/manifest_server/routers/manifest.py,sha256=6UT8bD-og-Eg-cfxuXkJXzzj0z3Kko6vOfsGjOAaPks,5570
84
+ airbyte_cdk/manifest_server/routers/manifest.py,sha256=igFMW2TO-u3Iw_rVY5gTBq4kJagt2PdcLFWQCd0lVO8,6741
83
85
  airbyte_cdk/models/__init__.py,sha256=Et9wJWs5VOWynGbb-3aJRhsdAHAiLkNNLxdwqJAuqkw,2114
84
86
  airbyte_cdk/models/airbyte_protocol.py,sha256=oZdKsZ7yPjUt9hvxdWNpxCtgjSV2RWhf4R9Np03sqyY,3613
85
87
  airbyte_cdk/models/airbyte_protocol_serializers.py,sha256=Dq4ry_Wwvzsos6neDiaOZkY6riQYC33ZlPNWpfIIB1E,1926
@@ -118,7 +120,7 @@ airbyte_cdk/sources/declarative/checks/check_stream.py,sha256=sV-ZY7dZ03V8GdAxPY
118
120
  airbyte_cdk/sources/declarative/checks/connection_checker.py,sha256=MBRJo6WJlZQHpIfOGaNOkkHUmgUl_4wDM6VPo41z5Ss,1383
119
121
  airbyte_cdk/sources/declarative/concurrency_level/__init__.py,sha256=5XUqrmlstYlMM0j6crktlKQwALek0uiz2D3WdM46MyA,191
120
122
  airbyte_cdk/sources/declarative/concurrency_level/concurrency_level.py,sha256=YIwCTCpOr_QSNW4ltQK0yUGWInI8PKNY216HOOegYLk,2101
121
- airbyte_cdk/sources/declarative/concurrent_declarative_source.py,sha256=3Trf6Qh5thzJM-NitcmbBGomQ06w_B_XCWDwenw4vvA,52912
123
+ airbyte_cdk/sources/declarative/concurrent_declarative_source.py,sha256=qrNfVNZq7bQCxYymIvYXZBJ2JB5RKySh8bgwymuJaQQ,52948
122
124
  airbyte_cdk/sources/declarative/datetime/__init__.py,sha256=4Hw-PX1-VgESLF16cDdvuYCzGJtHntThLF4qIiULWeo,61
123
125
  airbyte_cdk/sources/declarative/datetime/datetime_parser.py,sha256=_zGNGq31RNy_0QBLt_EcTvgPyhj7urPdx6oA3M5-r3o,3150
124
126
  airbyte_cdk/sources/declarative/datetime/min_max_datetime.py,sha256=0BHBtDNQZfvwM45-tY5pNlTcKAFSGGNxemoi0Jic-0E,5785
@@ -143,10 +145,10 @@ airbyte_cdk/sources/declarative/extractors/record_selector.py,sha256=vCpwX1PVRFP
143
145
  airbyte_cdk/sources/declarative/extractors/response_to_file_extractor.py,sha256=WJyA2OYIEgFpVP5Y3o0tIj69AV6IKkn9B16MeXaEItI,6513
144
146
  airbyte_cdk/sources/declarative/extractors/type_transformer.py,sha256=d6Y2Rfg8pMVEEnHllfVksWZdNVOU55yk34O03dP9muY,1626
145
147
  airbyte_cdk/sources/declarative/incremental/__init__.py,sha256=UVP6mMZXP1lb8y2iCNjyPwoVn67ricNZ0m3529HM5ng,1262
146
- airbyte_cdk/sources/declarative/incremental/concurrent_partition_cursor.py,sha256=LagQ5ON8zdsltOg81fmc7FX--C38gfdo4QLeT2E_Qas,23622
148
+ airbyte_cdk/sources/declarative/incremental/concurrent_partition_cursor.py,sha256=M599zcv_RX3BeNLKVmn1ArlTVXXLcsCOBiumc1wJPcU,25748
147
149
  airbyte_cdk/sources/declarative/incremental/datetime_based_cursor.py,sha256=AD5qJSryosA9p3rzdl_vX60uwG9_mOk5Q8sGD8XSTjE,21592
148
150
  airbyte_cdk/sources/declarative/incremental/declarative_cursor.py,sha256=5Bhw9VRPyIuCaD0wmmq_L3DZsa-rJgtKSEUzSd8YYD0,536
149
- airbyte_cdk/sources/declarative/incremental/global_substream_cursor.py,sha256=69XbGqqTHBCSXi4MV6qO7uTEsTUPRN7uML0VJDjl8qU,15809
151
+ airbyte_cdk/sources/declarative/incremental/global_substream_cursor.py,sha256=idbKmRaSe-qRwKALzkEefsDA5BJivx_T64KOtCtqnvs,16067
150
152
  airbyte_cdk/sources/declarative/incremental/per_partition_with_global.py,sha256=zVo1eSBbpVZEB5IrfgKwoo-HcJDQlVUmD5oucZZflVY,8217
151
153
  airbyte_cdk/sources/declarative/incremental/resumable_full_refresh_cursor.py,sha256=I8AwJkbl9AKbYYqwZUSP7hLoRMMuNkDQ90Zv5Z7CWdo,4609
152
154
  airbyte_cdk/sources/declarative/interpolation/__init__.py,sha256=Kh7FxhfetyNVDnAQ9zSxNe4oUbb8CvoW7Mqz7cs2iPg,437
@@ -170,15 +172,15 @@ airbyte_cdk/sources/declarative/parsers/custom_exceptions.py,sha256=wnRUP0Xeru9R
170
172
  airbyte_cdk/sources/declarative/parsers/manifest_component_transformer.py,sha256=2UdpCz3yi7ISZTyqkQXSSy3dMxeyOWqV7OlAS5b9GVg,11568
171
173
  airbyte_cdk/sources/declarative/parsers/manifest_normalizer.py,sha256=EtKjS9c94yNp3AwQC8KUCQaAYW5T3zvFYxoWYjc_buI,19729
172
174
  airbyte_cdk/sources/declarative/parsers/manifest_reference_resolver.py,sha256=pJmg78vqE5VfUrF_KJnWjucQ4k9IWFULeAxHCowrHXE,6806
173
- airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py,sha256=BTJ9CtBOukVrOhgkxejbXjpDvLgMVDt6nseR8K2k3xo,186944
175
+ airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py,sha256=zGZztuZ2dMSjdg4OcyKZPl9pNfX2zmjIAplTWDDAU6E,183320
174
176
  airbyte_cdk/sources/declarative/partition_routers/__init__.py,sha256=TBC9AkGaUqHm2IKHMPN6punBIcY5tWGULowcLoAVkfw,1109
175
177
  airbyte_cdk/sources/declarative/partition_routers/async_job_partition_router.py,sha256=VelO7zKqKtzMJ35jyFeg0ypJLQC0plqqIBNXoBW1G2E,3001
176
- airbyte_cdk/sources/declarative/partition_routers/cartesian_product_stream_slicer.py,sha256=mPCtBpxBVM_TbLZI2qexlQuayhz1JLZM3-92boHm8JI,7116
177
- airbyte_cdk/sources/declarative/partition_routers/grouping_partition_router.py,sha256=-W1CAg2NayCMDNj7QLWn7Nqipaz7av9sLjbMnyMGUek,6271
178
- airbyte_cdk/sources/declarative/partition_routers/list_partition_router.py,sha256=tmGGpMoOBmaMfhVZq53AEWxoHm2lmNVi6hA2_IVEnAA,4882
179
- airbyte_cdk/sources/declarative/partition_routers/partition_router.py,sha256=YyEIzdmLd1FjbVP3QbQ2VFCLW_P-OGbVh6VpZShp54k,2218
180
- airbyte_cdk/sources/declarative/partition_routers/single_partition_router.py,sha256=SKzKjSyfccq4dxGIh-J6ejrgkCHzaiTIazmbmeQiRD4,1942
181
- airbyte_cdk/sources/declarative/partition_routers/substream_partition_router.py,sha256=UohJB_mIeraEMH5dwTkeNR0tCNQopDbLv2aAdVQrPWU,19896
178
+ airbyte_cdk/sources/declarative/partition_routers/cartesian_product_stream_slicer.py,sha256=ocm4hZ4k-tEGs5HLrtI8ecWSK0hGqNH0Rvz2byx_HZk,6927
179
+ airbyte_cdk/sources/declarative/partition_routers/grouping_partition_router.py,sha256=Ars4PFk2lzHRixV4eGsvP8U2UW1TUA-5eBwDpOd7WA0,5975
180
+ airbyte_cdk/sources/declarative/partition_routers/list_partition_router.py,sha256=b73UzhLoyvOZ3k4IqDtG8c_elFY7fiCK0mhkYfbOaL0,4720
181
+ airbyte_cdk/sources/declarative/partition_routers/partition_router.py,sha256=v8C1farE9_UVnIN_PV7qnn2p3C_qK6DJ8b0-6JmsAPc,1288
182
+ airbyte_cdk/sources/declarative/partition_routers/single_partition_router.py,sha256=iP6eL6gYhGL8PuH9mXjL_PfqFyJ3xefmuFxf7yzy66s,1778
183
+ airbyte_cdk/sources/declarative/partition_routers/substream_partition_router.py,sha256=xV_xCTwlO2LiOBCrk9hiP1r6N3KatiAa9dRZUv27iWQ,18423
182
184
  airbyte_cdk/sources/declarative/requesters/README.md,sha256=DQll2qsIzzTiiP35kJp16ONpr7cFeUQNgPfhl5krB24,2675
183
185
  airbyte_cdk/sources/declarative/requesters/__init__.py,sha256=d7a3OoHbqaJDyyPli3nqqJ2yAW_SLX6XDaBAKOwvpxw,364
184
186
  airbyte_cdk/sources/declarative/requesters/error_handlers/__init__.py,sha256=SkEDcJxlT1683rNx93K9whoS0OyUukkuOfToGtgpF58,776
@@ -220,13 +222,14 @@ airbyte_cdk/sources/declarative/requesters/request_options/default_request_optio
220
222
  airbyte_cdk/sources/declarative/requesters/request_options/interpolated_nested_request_input_provider.py,sha256=STVopTmEZaxmE-w_2zL6CYXFxq-2K2wDKGtWj9OYZyU,2360
221
223
  airbyte_cdk/sources/declarative/requesters/request_options/interpolated_request_input_provider.py,sha256=-X_sncjnw3N5ZyhlLMOI6vnWy2CM8drqPFOKgzDXTQg,2975
222
224
  airbyte_cdk/sources/declarative/requesters/request_options/interpolated_request_options_provider.py,sha256=fdGNgFlN3gowThp-NXOMfa5NtW2choFWpSAQEeVRtcw,8281
225
+ airbyte_cdk/sources/declarative/requesters/request_options/per_partition_request_option_provider.py,sha256=DqY8iL2TWFvlBdD3j7zFGxpgdoJEqsMYXNx1P5KoxE8,4172
223
226
  airbyte_cdk/sources/declarative/requesters/request_options/request_options_provider.py,sha256=8YRiDzjYvqJ-aMmKFcjqzv_-e8OZ5QG_TbpZ-nuCu6s,2590
224
227
  airbyte_cdk/sources/declarative/requesters/request_path.py,sha256=S3MeFvcaQrMbOkSY2W2VbXLNomqt_3eXqVd9ZhgNwUs,299
225
228
  airbyte_cdk/sources/declarative/requesters/requester.py,sha256=T6tMx_Bx4iT-0YVjY7IzgRil-gaIu9n01b1iwpTh3Ek,5516
226
229
  airbyte_cdk/sources/declarative/resolvers/__init__.py,sha256=xVhOWLQW0wFBTAtRYu3GdFebPqKCDSt1uoP2TiBGrvs,1643
227
230
  airbyte_cdk/sources/declarative/resolvers/components_resolver.py,sha256=rkNatGGhPQhasor95CujY7StmVn5q2UDGAcEzMKueGE,2213
228
231
  airbyte_cdk/sources/declarative/resolvers/config_components_resolver.py,sha256=OqL3Xil-2905pNfGwE-uPtEu53ksnT99Aec91cu5eSM,8408
229
- airbyte_cdk/sources/declarative/resolvers/http_components_resolver.py,sha256=AiojNs8wItJFrENZBFUaDvau3sgwudO6Wkra36upSPo,4639
232
+ airbyte_cdk/sources/declarative/resolvers/http_components_resolver.py,sha256=Y3P2tViKhJaOPp7Zl-uiCn5RiHkVEkpBAMi50PVXfoI,4830
230
233
  airbyte_cdk/sources/declarative/resolvers/parametrized_components_resolver.py,sha256=BUmvbsMeIGusZSCd80NiTFcwcosq-uhXHGNheAFs-10,5147
231
234
  airbyte_cdk/sources/declarative/retrievers/__init__.py,sha256=LQQspOQS9oyOx9cGnRIz1mq-8DZCBysyDJDPqjy1HvM,449
232
235
  airbyte_cdk/sources/declarative/retrievers/async_retriever.py,sha256=6oZtnCHm9NdDvjTSrVwPQOXGSdETSIR7eWH2vFjM7jI,4855
@@ -237,7 +240,7 @@ airbyte_cdk/sources/declarative/retrievers/file_uploader/file_uploader.py,sha256
237
240
  airbyte_cdk/sources/declarative/retrievers/file_uploader/file_writer.py,sha256=V8gAFjQXkhX5mwj1NafdcUrMfMBNF1hi0mrdXIl5qEc,359
238
241
  airbyte_cdk/sources/declarative/retrievers/file_uploader/local_file_system_file_writer.py,sha256=jLpdonre1UHfbjGSD5AK_T0codLABJByTvbqepDZtEQ,422
239
242
  airbyte_cdk/sources/declarative/retrievers/file_uploader/noop_file_writer.py,sha256=1yfimzxm09d2j605cu_HhiYVDNVL1rUMi3vs_jYlIyY,330
240
- airbyte_cdk/sources/declarative/retrievers/retriever.py,sha256=mrwMbKU0t1_SGRuyID7Hf3GaGvhG4kqHaDWaEzRt6dA,1620
243
+ airbyte_cdk/sources/declarative/retrievers/retriever.py,sha256=os5psYh8z7ZdCAvbfZeTpmjvPa7Qpx0mblpKf47ZaZM,1876
241
244
  airbyte_cdk/sources/declarative/retrievers/simple_retriever.py,sha256=1-owE0r2RA8AsP8Yc6CVjNRNodMcOFl0RBCgCJY5MAY,27505
242
245
  airbyte_cdk/sources/declarative/schema/__init__.py,sha256=xU45UvM5O4c1PSM13UHpCdh5hpW3HXy9vRRGEiAC1rg,795
243
246
  airbyte_cdk/sources/declarative/schema/composite_schema_loader.py,sha256=ymGbvxS_QyGc4nnjEyRo5ch8bVedELO41PAUxKXZyMw,1113
@@ -273,7 +276,7 @@ airbyte_cdk/sources/declarative/validators/predicate_validator.py,sha256=Q4eVncl
273
276
  airbyte_cdk/sources/declarative/validators/validate_adheres_to_schema.py,sha256=kjcuKxWMJEzpF4GiESITGMxBAXw6YZCAsgOQMgeBo4g,1085
274
277
  airbyte_cdk/sources/declarative/validators/validation_strategy.py,sha256=LwqUX89cFdHTM1-h6c8vebBA9WC38HYoGBvJfCZHr0g,467
275
278
  airbyte_cdk/sources/declarative/validators/validator.py,sha256=MAwo8OievUsuzBuPxI9pbPu87yq0tJZkGbydcrHZyQc,382
276
- airbyte_cdk/sources/declarative/yaml_declarative_source.py,sha256=-pHwGO7ZW-x8lmsqSpbrN0pOgIyjJhFDGUNwB3kQWWc,2794
279
+ airbyte_cdk/sources/declarative/yaml_declarative_source.py,sha256=qDQXems3USwhapqzbcESeXyYAhTSp8PLBq47Hiw52PY,2767
277
280
  airbyte_cdk/sources/file_based/README.md,sha256=iMqww4VZ882jfNQIdljjDgqreKs-mkdtSrRKA94iX6A,11085
278
281
  airbyte_cdk/sources/file_based/__init__.py,sha256=EaxHv_9ot-eRlUCR47ZMZ0IOtB-n0HH24om7Bfn-uuQ,868
279
282
  airbyte_cdk/sources/file_based/availability_strategy/__init__.py,sha256=VY-0PcTaPttXU_mGf-7w7u5VKQD7iQWJbKMvIYAOhcQ,288
@@ -330,7 +333,7 @@ airbyte_cdk/sources/http_config.py,sha256=OBZeuyFilm6NlDlBhFQvHhTWabEvZww6OHDIlZ
330
333
  airbyte_cdk/sources/http_logger.py,sha256=H93kPAujHhPmXNX0JSFG3D-SL6yEFA5PtKot9Hu3TYA,1690
331
334
  airbyte_cdk/sources/message/__init__.py,sha256=y98fzHsQBwXwp2zEa4K5mxGFqjnx9lDn9O0pTk-VS4U,395
332
335
  airbyte_cdk/sources/message/concurrent_repository.py,sha256=HPMjhz5hEhjoaatjPL0Jo5VEI26B4fuo-ESIM0zIhGI,2113
333
- airbyte_cdk/sources/message/repository.py,sha256=SG7avgti_-dj8FcRHTTrhgLLGJbElv14_zIB0SH8AIc,4763
336
+ airbyte_cdk/sources/message/repository.py,sha256=kw8elh19AxuBy2KN-Tz3V-7MFm9pb0NS7bxGq5zaKRA,5583
334
337
  airbyte_cdk/sources/source.py,sha256=KIBBH5VLEb8BZ8B9aROlfaI6OLoJqKDPMJ10jkAR7nk,3611
335
338
  airbyte_cdk/sources/specs/transfer_modes.py,sha256=sfSVO0yT6SaGKN5_TP0Nl_ftG0yPhecaBv0WkhAEXA8,932
336
339
  airbyte_cdk/sources/streams/__init__.py,sha256=8fzTKpRTnSx5PggXgQPKJzHNZUV2BCA40N-dI6JM1xI,256
@@ -393,9 +396,9 @@ airbyte_cdk/sources/utils/__init__.py,sha256=TTN6VUxVy6Is8BhYQZR5pxJGQh8yH4duXh4
393
396
  airbyte_cdk/sources/utils/casing.py,sha256=QC-gV1O4e8DR4-bhdXieUPKm_JamzslVyfABLYYRSXA,256
394
397
  airbyte_cdk/sources/utils/files_directory.py,sha256=z8Dmr-wkL1sAqdwCST4MBUFAyMHPD2cJIzVdAuCynp8,391
395
398
  airbyte_cdk/sources/utils/record_helper.py,sha256=7wL-pDYrBpcmZHa8ORtiSOqBZJEZI5hdl2dA1RYiatk,2029
396
- airbyte_cdk/sources/utils/schema_helpers.py,sha256=bR3I70-e11S6B8r6VK-pthQXtcYrXojgXFvuK7lRrpg,8545
399
+ airbyte_cdk/sources/utils/schema_helpers.py,sha256=_SCOPalKoMW3SX9J-zK6UsAO0oHsfCyW-F2wQlPJ3PU,9145
397
400
  airbyte_cdk/sources/utils/slice_logger.py,sha256=M1TvcYGMftXR841XdJmeEpKpQqrdOD5X-qsspfAMKMs,2168
398
- airbyte_cdk/sources/utils/transform.py,sha256=0LOvIJg1vmg_70AiAVe-YHMr-LHrqEuxg9cm1BnYPDM,11725
401
+ airbyte_cdk/sources/utils/transform.py,sha256=49xcU97dZAO7FTQItrpN0mZ4qjz5d6huftF4DYbze6c,11971
399
402
  airbyte_cdk/sources/utils/types.py,sha256=41ZQR681t5TUnOScij58d088sb99klH_ZENFcaYro_g,175
400
403
  airbyte_cdk/sql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
401
404
  airbyte_cdk/sql/_util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -451,12 +454,12 @@ airbyte_cdk/utils/oneof_option_config.py,sha256=N8EmWdYdwt0FM7fuShh6H8nj_r4KEL9t
451
454
  airbyte_cdk/utils/print_buffer.py,sha256=PhMOi0C4Z91kWKrSvCQXcp8qRh1uCimpIdvrg6voZIA,2810
452
455
  airbyte_cdk/utils/schema_inferrer.py,sha256=_jLzL9PzE4gfR44OSavkIqZNFM9t08c3LuRrkR7PZbk,9861
453
456
  airbyte_cdk/utils/slice_hasher.py,sha256=EDxgROHDbfG-QKQb59m7h_7crN1tRiawdf5uU7GrKcg,1264
454
- airbyte_cdk/utils/spec_schema_transformations.py,sha256=-5HTuNsnDBAhj-oLeQXwpTGA0HdcjFOf2zTEMUTTg_Y,816
457
+ airbyte_cdk/utils/spec_schema_transformations.py,sha256=9YDJmnIGFsT51CVQf2tSSvTapGimITjEFGbUTSZAGTI,963
455
458
  airbyte_cdk/utils/stream_status_utils.py,sha256=ZmBoiy5HVbUEHAMrUONxZvxnvfV9CesmQJLDTAIWnWw,1171
456
459
  airbyte_cdk/utils/traced_exception.py,sha256=C8uIBuCL_E4WnBAOPSxBicD06JAldoN9fGsQDp463OY,6292
457
- airbyte_cdk-6.61.5.dist-info/LICENSE.txt,sha256=Wfe61S4BaGPj404v8lrAbvhjYR68SHlkzeYrg3_bbuM,1051
458
- airbyte_cdk-6.61.5.dist-info/LICENSE_SHORT,sha256=aqF6D1NcESmpn-cqsxBtszTEnHKnlsp8L4x9wAh3Nxg,55
459
- airbyte_cdk-6.61.5.dist-info/METADATA,sha256=zlQaW0NJTYCeg64XINJttXW9XxgcRjeCy0Rc-OfEDKQ,6765
460
- airbyte_cdk-6.61.5.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
461
- airbyte_cdk-6.61.5.dist-info/entry_points.txt,sha256=eLZ2UYvJZGm1s07Pplcs--1Gim60YhZWTb53j_dghwU,195
462
- airbyte_cdk-6.61.5.dist-info/RECORD,,
460
+ airbyte_cdk-6.61.6.post3.dev17473738577.dist-info/LICENSE.txt,sha256=Wfe61S4BaGPj404v8lrAbvhjYR68SHlkzeYrg3_bbuM,1051
461
+ airbyte_cdk-6.61.6.post3.dev17473738577.dist-info/LICENSE_SHORT,sha256=aqF6D1NcESmpn-cqsxBtszTEnHKnlsp8L4x9wAh3Nxg,55
462
+ airbyte_cdk-6.61.6.post3.dev17473738577.dist-info/METADATA,sha256=BK-bw7OQzVNJ3n3gJigUJtOv7THWV5xGOcCOdCSI-nI,6821
463
+ airbyte_cdk-6.61.6.post3.dev17473738577.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
464
+ airbyte_cdk-6.61.6.post3.dev17473738577.dist-info/entry_points.txt,sha256=eLZ2UYvJZGm1s07Pplcs--1Gim60YhZWTb53j_dghwU,195
465
+ airbyte_cdk-6.61.6.post3.dev17473738577.dist-info/RECORD,,