airbyte-cdk 6.61.6__py3-none-any.whl → 6.62.0.dev1__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 (36) 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/README.md +0 -22
  7. airbyte_cdk/manifest_server/app.py +0 -6
  8. airbyte_cdk/manifest_server/cli/_common.py +0 -1
  9. airbyte_cdk/manifest_server/command_processor/processor.py +5 -2
  10. airbyte_cdk/manifest_server/command_processor/utils.py +1 -1
  11. airbyte_cdk/manifest_server/routers/manifest.py +1 -1
  12. airbyte_cdk/sources/declarative/concurrent_declarative_source.py +6 -7
  13. airbyte_cdk/sources/declarative/incremental/concurrent_partition_cursor.py +57 -7
  14. airbyte_cdk/sources/declarative/incremental/global_substream_cursor.py +4 -2
  15. airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py +208 -278
  16. airbyte_cdk/sources/declarative/partition_routers/cartesian_product_stream_slicer.py +0 -6
  17. airbyte_cdk/sources/declarative/partition_routers/grouping_partition_router.py +0 -5
  18. airbyte_cdk/sources/declarative/partition_routers/list_partition_router.py +0 -6
  19. airbyte_cdk/sources/declarative/partition_routers/partition_router.py +1 -23
  20. airbyte_cdk/sources/declarative/partition_routers/single_partition_router.py +0 -6
  21. airbyte_cdk/sources/declarative/partition_routers/substream_partition_router.py +88 -107
  22. airbyte_cdk/sources/declarative/requesters/request_options/per_partition_request_option_provider.py +95 -0
  23. airbyte_cdk/sources/declarative/resolvers/http_components_resolver.py +4 -1
  24. airbyte_cdk/sources/declarative/retrievers/retriever.py +5 -0
  25. airbyte_cdk/sources/declarative/stream_slicers/declarative_partition_generator.py +7 -21
  26. airbyte_cdk/sources/declarative/yaml_declarative_source.py +1 -1
  27. airbyte_cdk/sources/message/repository.py +20 -0
  28. airbyte_cdk/sources/utils/schema_helpers.py +9 -29
  29. airbyte_cdk/sources/utils/transform.py +13 -25
  30. airbyte_cdk/utils/spec_schema_transformations.py +5 -7
  31. {airbyte_cdk-6.61.6.dist-info → airbyte_cdk-6.62.0.dev1.dist-info}/METADATA +2 -4
  32. {airbyte_cdk-6.61.6.dist-info → airbyte_cdk-6.62.0.dev1.dist-info}/RECORD +36 -35
  33. {airbyte_cdk-6.61.6.dist-info → airbyte_cdk-6.62.0.dev1.dist-info}/LICENSE.txt +0 -0
  34. {airbyte_cdk-6.61.6.dist-info → airbyte_cdk-6.62.0.dev1.dist-info}/LICENSE_SHORT +0 -0
  35. {airbyte_cdk-6.61.6.dist-info → airbyte_cdk-6.62.0.dev1.dist-info}/WHEEL +0 -0
  36. {airbyte_cdk-6.61.6.dist-info → airbyte_cdk-6.62.0.dev1.dist-info}/entry_points.txt +0 -0
@@ -7,16 +7,12 @@ import importlib
7
7
  import json
8
8
  import os
9
9
  import pkgutil
10
- from copy import deepcopy
11
- from typing import TYPE_CHECKING, Any, ClassVar, Dict, List, Mapping, MutableMapping, Tuple, cast
10
+ from typing import Any, ClassVar, Dict, List, Mapping, MutableMapping, Optional, Tuple
12
11
 
13
12
  import jsonref
14
- from jsonschema import validate
13
+ from jsonschema import RefResolver, validate
15
14
  from jsonschema.exceptions import ValidationError
16
15
  from pydantic.v1 import BaseModel, Field
17
- from referencing import Registry, Resource
18
- from referencing._core import Resolver # used for type hints
19
- from referencing.jsonschema import DRAFT7
20
16
 
21
17
  from airbyte_cdk.models import ConnectorSpecification, FailureType
22
18
  from airbyte_cdk.utils.traced_exception import AirbyteTracedException
@@ -67,30 +63,18 @@ def resolve_ref_links(obj: Any) -> Any:
67
63
  return obj
68
64
 
69
65
 
70
- def get_ref_resolver_registry(schema: dict[str, Any]) -> Registry:
71
- """Get a reference resolver registry for the given schema."""
72
- resource: Resource = Resource.from_contents(
73
- contents=schema,
74
- default_specification=DRAFT7,
75
- )
76
- return cast( # Mypy has a hard time detecting this return type.
77
- "Registry",
78
- Registry().with_resource(
79
- uri="",
80
- resource=resource,
81
- ),
82
- )
83
-
84
-
85
- def _expand_refs(schema: Any, ref_resolver: Resolver) -> None:
66
+ def _expand_refs(schema: Any, ref_resolver: Optional[RefResolver] = None) -> None:
86
67
  """Internal function to iterate over schema and replace all occurrences of $ref with their definitions. Recursive.
87
68
 
88
69
  :param schema: schema that will be patched
70
+ :param ref_resolver: resolver to get definition from $ref, if None pass it will be instantiated
89
71
  """
72
+ ref_resolver = ref_resolver or RefResolver.from_schema(schema)
73
+
90
74
  if isinstance(schema, MutableMapping):
91
75
  if "$ref" in schema:
92
76
  ref_url = schema.pop("$ref")
93
- definition = ref_resolver.lookup(ref_url).contents
77
+ _, definition = ref_resolver.resolve(ref_url)
94
78
  _expand_refs(
95
79
  definition, ref_resolver=ref_resolver
96
80
  ) # expand refs in definitions as well
@@ -106,14 +90,10 @@ def _expand_refs(schema: Any, ref_resolver: Resolver) -> None:
106
90
  def expand_refs(schema: Any) -> None:
107
91
  """Iterate over schema and replace all occurrences of $ref with their definitions.
108
92
 
109
- If a "definitions" section is present at the root of the schema, it will be removed
110
- after $ref resolution is complete.
111
-
112
93
  :param schema: schema that will be patched
113
94
  """
114
- ref_resolver = get_ref_resolver_registry(schema).resolver()
115
- _expand_refs(schema, ref_resolver)
116
- schema.pop("definitions", None)
95
+ _expand_refs(schema)
96
+ schema.pop("definitions", None) # remove definitions created by $ref
117
97
 
118
98
 
119
99
  def rename_key(schema: Any, old_key: str, new_key: str) -> None:
@@ -3,25 +3,10 @@
3
3
  #
4
4
 
5
5
  import logging
6
- from copy import deepcopy
7
6
  from enum import Flag, auto
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
7
+ from typing import Any, Callable, Dict, Generator, Mapping, Optional, cast
24
8
 
9
+ from jsonschema import Draft7Validator, RefResolver, ValidationError, Validator, validators
25
10
 
26
11
  MAX_NESTING_DEPTH = 3
27
12
  json_to_python_simple = {
@@ -206,14 +191,15 @@ class TypeTransformer:
206
191
  validators parameter for detailed description.
207
192
  :
208
193
  """
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)
215
194
 
216
- # Now we can validate and normalize the values:
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
217
203
 
218
204
  # Transform object and array values before running json schema type checking for each element.
219
205
  # Recursively normalize every value of the "instance" sub-object,
@@ -221,12 +207,14 @@ class TypeTransformer:
221
207
  if schema_key == "properties" and isinstance(instance, dict):
222
208
  for k, subschema in property_value.items():
223
209
  if k in instance:
210
+ subschema = resolve(subschema)
224
211
  instance[k] = self.__normalize(instance[k], subschema)
225
212
  # Recursively normalize every item of the "instance" sub-array,
226
213
  # if "instance" is an incorrect type - skip recursive normalization of "instance"
227
214
  elif schema_key == "items" and isinstance(instance, list):
215
+ subschema = resolve(property_value)
228
216
  for index, item in enumerate(instance):
229
- instance[index] = self.__normalize(item, property_value)
217
+ instance[index] = self.__normalize(item, subschema)
230
218
 
231
219
  # Running native jsonschema traverse algorithm after field normalization is done.
232
220
  yield from original_validator(
@@ -6,8 +6,7 @@ import json
6
6
  import re
7
7
  from typing import Any
8
8
 
9
- from referencing import Registry, Resource
10
- from referencing.jsonschema import DRAFT7
9
+ from jsonschema import RefResolver
11
10
 
12
11
 
13
12
  def resolve_refs(schema: dict[str, Any]) -> dict[str, Any]:
@@ -15,14 +14,13 @@ def resolve_refs(schema: dict[str, Any]) -> dict[str, Any]:
15
14
  For spec schemas generated using Pydantic models, the resulting JSON schema can contain refs between object
16
15
  relationships.
17
16
  """
18
- resource = Resource.from_contents(schema, default_specification=DRAFT7)
19
- registry = Registry().with_resource("", resource)
20
- resolver = registry.resolver()
17
+ json_schema_ref_resolver = RefResolver.from_schema(schema)
21
18
  str_schema = json.dumps(schema)
22
19
  for ref_block in re.findall(r'{"\$ref": "#\/definitions\/.+?(?="})"}', str_schema):
23
20
  ref = json.loads(ref_block)["$ref"]
24
- resolved = resolver.lookup(ref).contents
25
- str_schema = str_schema.replace(ref_block, json.dumps(resolved))
21
+ str_schema = str_schema.replace(
22
+ ref_block, json.dumps(json_schema_ref_resolver.resolve(ref)[1])
23
+ )
26
24
  pyschema: dict[str, Any] = json.loads(str_schema)
27
25
  del pyschema["definitions"]
28
26
  return pyschema
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: airbyte-cdk
3
- Version: 6.61.6
3
+ Version: 6.62.0.dev1
4
4
  Summary: A framework for writing Airbyte Connectors.
5
5
  Home-page: https://airbyte.com
6
6
  License: MIT
@@ -35,7 +35,6 @@ Requires-Dist: click (>=8.1.8,<9.0.0)
35
35
  Requires-Dist: cohere (>=4.21,<6.0.0) ; extra == "vector-db-based"
36
36
  Requires-Dist: cryptography (>=44.0.0,<45.0.0)
37
37
  Requires-Dist: dateparser (>=1.2.2,<2.0.0)
38
- Requires-Dist: ddtrace (>=3.12.3,<4.0.0) ; extra == "manifest-server"
39
38
  Requires-Dist: dpath (>=2.1.6,<3.0.0)
40
39
  Requires-Dist: dunamai (>=1.22.0,<2.0.0)
41
40
  Requires-Dist: fastapi (>=0.116.1) ; extra == "manifest-server"
@@ -44,7 +43,7 @@ Requires-Dist: genson (==1.3.0)
44
43
  Requires-Dist: google-cloud-secret-manager (>=2.17.0,<3.0.0)
45
44
  Requires-Dist: isodate (>=0.6.1,<0.7.0)
46
45
  Requires-Dist: jsonref (>=0.2,<0.3)
47
- Requires-Dist: jsonschema (>=4.17.3,<5.0)
46
+ Requires-Dist: jsonschema (>=4.17.3,<4.18.0)
48
47
  Requires-Dist: langchain (==0.1.16) ; extra == "vector-db-based"
49
48
  Requires-Dist: langchain_core (==0.1.42)
50
49
  Requires-Dist: markdown ; extra == "file-based"
@@ -69,7 +68,6 @@ Requires-Dist: python-snappy (==0.7.3) ; extra == "file-based"
69
68
  Requires-Dist: python-ulid (>=3.0.0,<4.0.0)
70
69
  Requires-Dist: pytz (==2024.2)
71
70
  Requires-Dist: rapidfuzz (>=3.10.1,<4.0.0)
72
- Requires-Dist: referencing (>=0.36.2)
73
71
  Requires-Dist: requests
74
72
  Requires-Dist: requests_cache
75
73
  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=g3P7Ib27mOLEMH8tBIVhl3A-ZidothnXxevhNSuGHvM,6204
19
- airbyte_cdk/connector_builder/main.py,sha256=dbVvNIFGIiAM9HKFsoB00lAHSvX16JY49dUImsGCpwQ,3920
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
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=QvIBtCJxcQhJqlHXOAHoFHGz_N7Z7ocpV2j5JO92XEU,21768
24
+ airbyte_cdk/connector_builder/test_reader/reader.py,sha256=Zuq0LCtrT-KHaELn2pVl7eQd39c_BwYbVeZBX7HEeeQ,21842
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,31 +55,31 @@ 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=9I8HUDHkHggzyUiGg4Bqj7oZjrTSaWrZrWyA2FKD7u8,1317
59
- airbyte_cdk/manifest_server/README.md,sha256=bYzb3QAnkaM9mR9XgK7n4FKAvZkM4OWaBGcQb91f3vk,4341
58
+ airbyte_cdk/manifest_server/Dockerfile,sha256=hNgnUguE9jA5XFkpLmzvbsQbsZTuwOxJgE7qYNkPueo,1316
59
+ airbyte_cdk/manifest_server/README.md,sha256=9rZBKu_GKq9xTDMJLHvy63eJ_Xor_9IhGNvjTPmc_Eo,3785
60
60
  airbyte_cdk/manifest_server/__init__.py,sha256=EE54nk2dbtExIEEvLPCTUkJ_ESV5OYP4B2rBJlDpJ5g,33
61
61
  airbyte_cdk/manifest_server/api_models/__init__.py,sha256=1UFpMsJm1sjNBjgEasbOU98BgZxLthlPM1KdUpGfC4I,1015
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
64
  airbyte_cdk/manifest_server/api_models/manifest.py,sha256=cqxA4hU7Q29R8w6fqRDxtM7bVcFcADU2eQXZYKbib3M,1673
65
65
  airbyte_cdk/manifest_server/api_models/stream.py,sha256=Jtz4TbqLf6Xbnu1KtTEQhzi_1rqClB2n22pueK8xgrI,2001
66
- airbyte_cdk/manifest_server/app.py,sha256=RrjV73qx_PBoYoO_IAxDNV5v-UZNwjSG4muxZ4kiMj8,602
66
+ airbyte_cdk/manifest_server/app.py,sha256=kPJVHIq8twI5KqlCuyV1fT01sFYQoSBdGBj87rfLcFE,429
67
67
  airbyte_cdk/manifest_server/auth.py,sha256=kKET6zg4olyf8p_UMcTnm7vkAtowxK6loSf8o83SdEM,1264
68
68
  airbyte_cdk/manifest_server/cli/__init__.py,sha256=YfCEfXq3Jr7z3GOKMA6vF-D-7Y66BNHUwBLNM9UQbiQ,273
69
- airbyte_cdk/manifest_server/cli/_common.py,sha256=_dV7Lq30-MFDAw4feNKJDnQkAaNpPnuHm4xcGJb9SvE,832
69
+ airbyte_cdk/manifest_server/cli/_common.py,sha256=5hfwKjkB5IQ4SGI54DBKMEbzLMsgN2Itv1wlQBzj8ts,799
70
70
  airbyte_cdk/manifest_server/cli/_info.py,sha256=-h8U1bSD1umqLuoXfg4yDNWFR1BZuxcXxLhVKfLWB0Y,982
71
71
  airbyte_cdk/manifest_server/cli/_openapi.py,sha256=rNghqbBMMT118auUIsxr89Mu6L6hqoQAifxyDbv1ZqQ,1445
72
72
  airbyte_cdk/manifest_server/cli/_start.py,sha256=SgkW_dQcpCIrXYNZ6qF95oYIVaCszm9tFEbYiAZo4EQ,876
73
73
  airbyte_cdk/manifest_server/cli/run.py,sha256=-Yv_Jv_hDeMBVZdzuyeJJ_JBT1WUhCyUQn4f4mA21Ds,1224
74
74
  airbyte_cdk/manifest_server/command_processor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
75
- airbyte_cdk/manifest_server/command_processor/processor.py,sha256=BZPASuhPJix78NB7rD1xuxWfL1TmqdnOEa_8WR1R2FI,3741
76
- airbyte_cdk/manifest_server/command_processor/utils.py,sha256=EbZAbX91n12g2TCqOWBUi8KKqdz2Ccrw2FAIN5JT2B8,3184
75
+ airbyte_cdk/manifest_server/command_processor/processor.py,sha256=qaQdmF1SaM7gr0B2D53eaooZ_cOv70hSlHL4c_iV8hg,3830
76
+ airbyte_cdk/manifest_server/command_processor/utils.py,sha256=f_CkN2nURTTp07Twr9vZfFj5j-jTFtezoOUu2i402W4,3221
77
77
  airbyte_cdk/manifest_server/main.py,sha256=iSgL7x8ifBpGpXi7Dq7017QjeC20l_CYBAIsumiyJn0,573
78
78
  airbyte_cdk/manifest_server/openapi.yaml,sha256=jwJXohDXP3BLL0JGZhkyhpNLWLZu6_iXEgMtM58F2Pc,16693
79
79
  airbyte_cdk/manifest_server/routers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
80
80
  airbyte_cdk/manifest_server/routers/capabilities.py,sha256=UeZQzbqEuDN23vizgDb_N7KEXR-YZUPnW5AkXeXy1hA,727
81
81
  airbyte_cdk/manifest_server/routers/health.py,sha256=akBUaHUGN-jmN82lQ3kj_3-wdS6gsZx3iSD2KMI5dW8,200
82
- airbyte_cdk/manifest_server/routers/manifest.py,sha256=JmL5eaw4mDyjP7-ufQ_F6h0kmjttivrvXkEjPzYccTg,5533
82
+ airbyte_cdk/manifest_server/routers/manifest.py,sha256=6UT8bD-og-Eg-cfxuXkJXzzj0z3Kko6vOfsGjOAaPks,5570
83
83
  airbyte_cdk/models/__init__.py,sha256=Et9wJWs5VOWynGbb-3aJRhsdAHAiLkNNLxdwqJAuqkw,2114
84
84
  airbyte_cdk/models/airbyte_protocol.py,sha256=oZdKsZ7yPjUt9hvxdWNpxCtgjSV2RWhf4R9Np03sqyY,3613
85
85
  airbyte_cdk/models/airbyte_protocol_serializers.py,sha256=Dq4ry_Wwvzsos6neDiaOZkY6riQYC33ZlPNWpfIIB1E,1926
@@ -118,7 +118,7 @@ airbyte_cdk/sources/declarative/checks/check_stream.py,sha256=sV-ZY7dZ03V8GdAxPY
118
118
  airbyte_cdk/sources/declarative/checks/connection_checker.py,sha256=MBRJo6WJlZQHpIfOGaNOkkHUmgUl_4wDM6VPo41z5Ss,1383
119
119
  airbyte_cdk/sources/declarative/concurrency_level/__init__.py,sha256=5XUqrmlstYlMM0j6crktlKQwALek0uiz2D3WdM46MyA,191
120
120
  airbyte_cdk/sources/declarative/concurrency_level/concurrency_level.py,sha256=YIwCTCpOr_QSNW4ltQK0yUGWInI8PKNY216HOOegYLk,2101
121
- airbyte_cdk/sources/declarative/concurrent_declarative_source.py,sha256=EpTpu7y8rK6QP9smRIXYi7NTjJwumTwI2FvoeFbigvc,52956
121
+ airbyte_cdk/sources/declarative/concurrent_declarative_source.py,sha256=w8UfQkgzN8JlXu8GqSJhx9eAgrhbCK52ucbraXV_h0g,52904
122
122
  airbyte_cdk/sources/declarative/datetime/__init__.py,sha256=4Hw-PX1-VgESLF16cDdvuYCzGJtHntThLF4qIiULWeo,61
123
123
  airbyte_cdk/sources/declarative/datetime/datetime_parser.py,sha256=_zGNGq31RNy_0QBLt_EcTvgPyhj7urPdx6oA3M5-r3o,3150
124
124
  airbyte_cdk/sources/declarative/datetime/min_max_datetime.py,sha256=0BHBtDNQZfvwM45-tY5pNlTcKAFSGGNxemoi0Jic-0E,5785
@@ -143,10 +143,10 @@ airbyte_cdk/sources/declarative/extractors/record_selector.py,sha256=vCpwX1PVRFP
143
143
  airbyte_cdk/sources/declarative/extractors/response_to_file_extractor.py,sha256=WJyA2OYIEgFpVP5Y3o0tIj69AV6IKkn9B16MeXaEItI,6513
144
144
  airbyte_cdk/sources/declarative/extractors/type_transformer.py,sha256=d6Y2Rfg8pMVEEnHllfVksWZdNVOU55yk34O03dP9muY,1626
145
145
  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
146
+ airbyte_cdk/sources/declarative/incremental/concurrent_partition_cursor.py,sha256=M599zcv_RX3BeNLKVmn1ArlTVXXLcsCOBiumc1wJPcU,25748
147
147
  airbyte_cdk/sources/declarative/incremental/datetime_based_cursor.py,sha256=AD5qJSryosA9p3rzdl_vX60uwG9_mOk5Q8sGD8XSTjE,21592
148
148
  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
149
+ airbyte_cdk/sources/declarative/incremental/global_substream_cursor.py,sha256=idbKmRaSe-qRwKALzkEefsDA5BJivx_T64KOtCtqnvs,16067
150
150
  airbyte_cdk/sources/declarative/incremental/per_partition_with_global.py,sha256=zVo1eSBbpVZEB5IrfgKwoo-HcJDQlVUmD5oucZZflVY,8217
151
151
  airbyte_cdk/sources/declarative/incremental/resumable_full_refresh_cursor.py,sha256=I8AwJkbl9AKbYYqwZUSP7hLoRMMuNkDQ90Zv5Z7CWdo,4609
152
152
  airbyte_cdk/sources/declarative/interpolation/__init__.py,sha256=Kh7FxhfetyNVDnAQ9zSxNe4oUbb8CvoW7Mqz7cs2iPg,437
@@ -170,15 +170,15 @@ airbyte_cdk/sources/declarative/parsers/custom_exceptions.py,sha256=wnRUP0Xeru9R
170
170
  airbyte_cdk/sources/declarative/parsers/manifest_component_transformer.py,sha256=2UdpCz3yi7ISZTyqkQXSSy3dMxeyOWqV7OlAS5b9GVg,11568
171
171
  airbyte_cdk/sources/declarative/parsers/manifest_normalizer.py,sha256=EtKjS9c94yNp3AwQC8KUCQaAYW5T3zvFYxoWYjc_buI,19729
172
172
  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
173
+ airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py,sha256=B87vl-AjuBLMhZf8LWm82i382PWilDsm1W_KKtVe9eg,182647
174
174
  airbyte_cdk/sources/declarative/partition_routers/__init__.py,sha256=TBC9AkGaUqHm2IKHMPN6punBIcY5tWGULowcLoAVkfw,1109
175
175
  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
176
+ airbyte_cdk/sources/declarative/partition_routers/cartesian_product_stream_slicer.py,sha256=ocm4hZ4k-tEGs5HLrtI8ecWSK0hGqNH0Rvz2byx_HZk,6927
177
+ airbyte_cdk/sources/declarative/partition_routers/grouping_partition_router.py,sha256=Ars4PFk2lzHRixV4eGsvP8U2UW1TUA-5eBwDpOd7WA0,5975
178
+ airbyte_cdk/sources/declarative/partition_routers/list_partition_router.py,sha256=b73UzhLoyvOZ3k4IqDtG8c_elFY7fiCK0mhkYfbOaL0,4720
179
+ airbyte_cdk/sources/declarative/partition_routers/partition_router.py,sha256=v8C1farE9_UVnIN_PV7qnn2p3C_qK6DJ8b0-6JmsAPc,1288
180
+ airbyte_cdk/sources/declarative/partition_routers/single_partition_router.py,sha256=iP6eL6gYhGL8PuH9mXjL_PfqFyJ3xefmuFxf7yzy66s,1778
181
+ airbyte_cdk/sources/declarative/partition_routers/substream_partition_router.py,sha256=xV_xCTwlO2LiOBCrk9hiP1r6N3KatiAa9dRZUv27iWQ,18423
182
182
  airbyte_cdk/sources/declarative/requesters/README.md,sha256=DQll2qsIzzTiiP35kJp16ONpr7cFeUQNgPfhl5krB24,2675
183
183
  airbyte_cdk/sources/declarative/requesters/__init__.py,sha256=d7a3OoHbqaJDyyPli3nqqJ2yAW_SLX6XDaBAKOwvpxw,364
184
184
  airbyte_cdk/sources/declarative/requesters/error_handlers/__init__.py,sha256=SkEDcJxlT1683rNx93K9whoS0OyUukkuOfToGtgpF58,776
@@ -220,13 +220,14 @@ airbyte_cdk/sources/declarative/requesters/request_options/default_request_optio
220
220
  airbyte_cdk/sources/declarative/requesters/request_options/interpolated_nested_request_input_provider.py,sha256=STVopTmEZaxmE-w_2zL6CYXFxq-2K2wDKGtWj9OYZyU,2360
221
221
  airbyte_cdk/sources/declarative/requesters/request_options/interpolated_request_input_provider.py,sha256=-X_sncjnw3N5ZyhlLMOI6vnWy2CM8drqPFOKgzDXTQg,2975
222
222
  airbyte_cdk/sources/declarative/requesters/request_options/interpolated_request_options_provider.py,sha256=fdGNgFlN3gowThp-NXOMfa5NtW2choFWpSAQEeVRtcw,8281
223
+ airbyte_cdk/sources/declarative/requesters/request_options/per_partition_request_option_provider.py,sha256=DqY8iL2TWFvlBdD3j7zFGxpgdoJEqsMYXNx1P5KoxE8,4172
223
224
  airbyte_cdk/sources/declarative/requesters/request_options/request_options_provider.py,sha256=8YRiDzjYvqJ-aMmKFcjqzv_-e8OZ5QG_TbpZ-nuCu6s,2590
224
225
  airbyte_cdk/sources/declarative/requesters/request_path.py,sha256=S3MeFvcaQrMbOkSY2W2VbXLNomqt_3eXqVd9ZhgNwUs,299
225
226
  airbyte_cdk/sources/declarative/requesters/requester.py,sha256=T6tMx_Bx4iT-0YVjY7IzgRil-gaIu9n01b1iwpTh3Ek,5516
226
227
  airbyte_cdk/sources/declarative/resolvers/__init__.py,sha256=xVhOWLQW0wFBTAtRYu3GdFebPqKCDSt1uoP2TiBGrvs,1643
227
228
  airbyte_cdk/sources/declarative/resolvers/components_resolver.py,sha256=rkNatGGhPQhasor95CujY7StmVn5q2UDGAcEzMKueGE,2213
228
229
  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
230
+ airbyte_cdk/sources/declarative/resolvers/http_components_resolver.py,sha256=Y3P2tViKhJaOPp7Zl-uiCn5RiHkVEkpBAMi50PVXfoI,4830
230
231
  airbyte_cdk/sources/declarative/resolvers/parametrized_components_resolver.py,sha256=BUmvbsMeIGusZSCd80NiTFcwcosq-uhXHGNheAFs-10,5147
231
232
  airbyte_cdk/sources/declarative/retrievers/__init__.py,sha256=LQQspOQS9oyOx9cGnRIz1mq-8DZCBysyDJDPqjy1HvM,449
232
233
  airbyte_cdk/sources/declarative/retrievers/async_retriever.py,sha256=6oZtnCHm9NdDvjTSrVwPQOXGSdETSIR7eWH2vFjM7jI,4855
@@ -237,7 +238,7 @@ airbyte_cdk/sources/declarative/retrievers/file_uploader/file_uploader.py,sha256
237
238
  airbyte_cdk/sources/declarative/retrievers/file_uploader/file_writer.py,sha256=V8gAFjQXkhX5mwj1NafdcUrMfMBNF1hi0mrdXIl5qEc,359
238
239
  airbyte_cdk/sources/declarative/retrievers/file_uploader/local_file_system_file_writer.py,sha256=jLpdonre1UHfbjGSD5AK_T0codLABJByTvbqepDZtEQ,422
239
240
  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
241
+ airbyte_cdk/sources/declarative/retrievers/retriever.py,sha256=os5psYh8z7ZdCAvbfZeTpmjvPa7Qpx0mblpKf47ZaZM,1876
241
242
  airbyte_cdk/sources/declarative/retrievers/simple_retriever.py,sha256=1-owE0r2RA8AsP8Yc6CVjNRNodMcOFl0RBCgCJY5MAY,27505
242
243
  airbyte_cdk/sources/declarative/schema/__init__.py,sha256=xU45UvM5O4c1PSM13UHpCdh5hpW3HXy9vRRGEiAC1rg,795
243
244
  airbyte_cdk/sources/declarative/schema/composite_schema_loader.py,sha256=ymGbvxS_QyGc4nnjEyRo5ch8bVedELO41PAUxKXZyMw,1113
@@ -249,7 +250,7 @@ airbyte_cdk/sources/declarative/schema/schema_loader.py,sha256=kjt8v0N5wWKA5zyLn
249
250
  airbyte_cdk/sources/declarative/spec/__init__.py,sha256=9FYO-fVOclrwjAW4qwRTbZRVopTc9rOaauAJfThdNCQ,177
250
251
  airbyte_cdk/sources/declarative/spec/spec.py,sha256=SwL_pfXZgcLYLJY-MAeFMHug9oYh2tOWjgG0C3DoLOY,3602
251
252
  airbyte_cdk/sources/declarative/stream_slicers/__init__.py,sha256=UX-cP_C-9FIFFPL9z8nuxu_rglssRsMOqQmQHN8FLB8,341
252
- airbyte_cdk/sources/declarative/stream_slicers/declarative_partition_generator.py,sha256=LLr5U_6UI3zp4i9gvP8dawIcdE-UYTSa-B0l5qkDW3Q,6161
253
+ airbyte_cdk/sources/declarative/stream_slicers/declarative_partition_generator.py,sha256=P3LqmgprbkW-Fy7c57meWny7D66XHY1EFjDw0ZzZLJk,5704
253
254
  airbyte_cdk/sources/declarative/stream_slicers/stream_slicer.py,sha256=SOkIPBi2Wu7yxIvA15yFzUAB95a3IzA8LPq5DEqHQQc,725
254
255
  airbyte_cdk/sources/declarative/stream_slicers/stream_slicer_test_read_decorator.py,sha256=4vit5ADyhoZnd1psRVeM5jdySYzhjwspLVXxh8vt1M8,944
255
256
  airbyte_cdk/sources/declarative/transformations/__init__.py,sha256=CPJ8TlMpiUmvG3624VYu_NfTzxwKcfBjM2Q2wJ7fkSA,919
@@ -273,7 +274,7 @@ airbyte_cdk/sources/declarative/validators/predicate_validator.py,sha256=Q4eVncl
273
274
  airbyte_cdk/sources/declarative/validators/validate_adheres_to_schema.py,sha256=kjcuKxWMJEzpF4GiESITGMxBAXw6YZCAsgOQMgeBo4g,1085
274
275
  airbyte_cdk/sources/declarative/validators/validation_strategy.py,sha256=LwqUX89cFdHTM1-h6c8vebBA9WC38HYoGBvJfCZHr0g,467
275
276
  airbyte_cdk/sources/declarative/validators/validator.py,sha256=MAwo8OievUsuzBuPxI9pbPu87yq0tJZkGbydcrHZyQc,382
276
- airbyte_cdk/sources/declarative/yaml_declarative_source.py,sha256=qDQXems3USwhapqzbcESeXyYAhTSp8PLBq47Hiw52PY,2767
277
+ airbyte_cdk/sources/declarative/yaml_declarative_source.py,sha256=-pHwGO7ZW-x8lmsqSpbrN0pOgIyjJhFDGUNwB3kQWWc,2794
277
278
  airbyte_cdk/sources/file_based/README.md,sha256=iMqww4VZ882jfNQIdljjDgqreKs-mkdtSrRKA94iX6A,11085
278
279
  airbyte_cdk/sources/file_based/__init__.py,sha256=EaxHv_9ot-eRlUCR47ZMZ0IOtB-n0HH24om7Bfn-uuQ,868
279
280
  airbyte_cdk/sources/file_based/availability_strategy/__init__.py,sha256=VY-0PcTaPttXU_mGf-7w7u5VKQD7iQWJbKMvIYAOhcQ,288
@@ -330,7 +331,7 @@ airbyte_cdk/sources/http_config.py,sha256=OBZeuyFilm6NlDlBhFQvHhTWabEvZww6OHDIlZ
330
331
  airbyte_cdk/sources/http_logger.py,sha256=H93kPAujHhPmXNX0JSFG3D-SL6yEFA5PtKot9Hu3TYA,1690
331
332
  airbyte_cdk/sources/message/__init__.py,sha256=y98fzHsQBwXwp2zEa4K5mxGFqjnx9lDn9O0pTk-VS4U,395
332
333
  airbyte_cdk/sources/message/concurrent_repository.py,sha256=HPMjhz5hEhjoaatjPL0Jo5VEI26B4fuo-ESIM0zIhGI,2113
333
- airbyte_cdk/sources/message/repository.py,sha256=SG7avgti_-dj8FcRHTTrhgLLGJbElv14_zIB0SH8AIc,4763
334
+ airbyte_cdk/sources/message/repository.py,sha256=kw8elh19AxuBy2KN-Tz3V-7MFm9pb0NS7bxGq5zaKRA,5583
334
335
  airbyte_cdk/sources/source.py,sha256=KIBBH5VLEb8BZ8B9aROlfaI6OLoJqKDPMJ10jkAR7nk,3611
335
336
  airbyte_cdk/sources/specs/transfer_modes.py,sha256=sfSVO0yT6SaGKN5_TP0Nl_ftG0yPhecaBv0WkhAEXA8,932
336
337
  airbyte_cdk/sources/streams/__init__.py,sha256=8fzTKpRTnSx5PggXgQPKJzHNZUV2BCA40N-dI6JM1xI,256
@@ -393,9 +394,9 @@ airbyte_cdk/sources/utils/__init__.py,sha256=TTN6VUxVy6Is8BhYQZR5pxJGQh8yH4duXh4
393
394
  airbyte_cdk/sources/utils/casing.py,sha256=QC-gV1O4e8DR4-bhdXieUPKm_JamzslVyfABLYYRSXA,256
394
395
  airbyte_cdk/sources/utils/files_directory.py,sha256=z8Dmr-wkL1sAqdwCST4MBUFAyMHPD2cJIzVdAuCynp8,391
395
396
  airbyte_cdk/sources/utils/record_helper.py,sha256=7wL-pDYrBpcmZHa8ORtiSOqBZJEZI5hdl2dA1RYiatk,2029
396
- airbyte_cdk/sources/utils/schema_helpers.py,sha256=_SCOPalKoMW3SX9J-zK6UsAO0oHsfCyW-F2wQlPJ3PU,9145
397
+ airbyte_cdk/sources/utils/schema_helpers.py,sha256=bR3I70-e11S6B8r6VK-pthQXtcYrXojgXFvuK7lRrpg,8545
397
398
  airbyte_cdk/sources/utils/slice_logger.py,sha256=M1TvcYGMftXR841XdJmeEpKpQqrdOD5X-qsspfAMKMs,2168
398
- airbyte_cdk/sources/utils/transform.py,sha256=49xcU97dZAO7FTQItrpN0mZ4qjz5d6huftF4DYbze6c,11971
399
+ airbyte_cdk/sources/utils/transform.py,sha256=0LOvIJg1vmg_70AiAVe-YHMr-LHrqEuxg9cm1BnYPDM,11725
399
400
  airbyte_cdk/sources/utils/types.py,sha256=41ZQR681t5TUnOScij58d088sb99klH_ZENFcaYro_g,175
400
401
  airbyte_cdk/sql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
401
402
  airbyte_cdk/sql/_util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -451,12 +452,12 @@ airbyte_cdk/utils/oneof_option_config.py,sha256=N8EmWdYdwt0FM7fuShh6H8nj_r4KEL9t
451
452
  airbyte_cdk/utils/print_buffer.py,sha256=PhMOi0C4Z91kWKrSvCQXcp8qRh1uCimpIdvrg6voZIA,2810
452
453
  airbyte_cdk/utils/schema_inferrer.py,sha256=_jLzL9PzE4gfR44OSavkIqZNFM9t08c3LuRrkR7PZbk,9861
453
454
  airbyte_cdk/utils/slice_hasher.py,sha256=EDxgROHDbfG-QKQb59m7h_7crN1tRiawdf5uU7GrKcg,1264
454
- airbyte_cdk/utils/spec_schema_transformations.py,sha256=9YDJmnIGFsT51CVQf2tSSvTapGimITjEFGbUTSZAGTI,963
455
+ airbyte_cdk/utils/spec_schema_transformations.py,sha256=-5HTuNsnDBAhj-oLeQXwpTGA0HdcjFOf2zTEMUTTg_Y,816
455
456
  airbyte_cdk/utils/stream_status_utils.py,sha256=ZmBoiy5HVbUEHAMrUONxZvxnvfV9CesmQJLDTAIWnWw,1171
456
457
  airbyte_cdk/utils/traced_exception.py,sha256=C8uIBuCL_E4WnBAOPSxBicD06JAldoN9fGsQDp463OY,6292
457
- airbyte_cdk-6.61.6.dist-info/LICENSE.txt,sha256=Wfe61S4BaGPj404v8lrAbvhjYR68SHlkzeYrg3_bbuM,1051
458
- airbyte_cdk-6.61.6.dist-info/LICENSE_SHORT,sha256=aqF6D1NcESmpn-cqsxBtszTEnHKnlsp8L4x9wAh3Nxg,55
459
- airbyte_cdk-6.61.6.dist-info/METADATA,sha256=2CK9PaFLE8ebRfYDTjK5S1dxFO-jlr3fD-wHPzVe4pY,6800
460
- airbyte_cdk-6.61.6.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
461
- airbyte_cdk-6.61.6.dist-info/entry_points.txt,sha256=eLZ2UYvJZGm1s07Pplcs--1Gim60YhZWTb53j_dghwU,195
462
- airbyte_cdk-6.61.6.dist-info/RECORD,,
458
+ airbyte_cdk-6.62.0.dev1.dist-info/LICENSE.txt,sha256=Wfe61S4BaGPj404v8lrAbvhjYR68SHlkzeYrg3_bbuM,1051
459
+ airbyte_cdk-6.62.0.dev1.dist-info/LICENSE_SHORT,sha256=aqF6D1NcESmpn-cqsxBtszTEnHKnlsp8L4x9wAh3Nxg,55
460
+ airbyte_cdk-6.62.0.dev1.dist-info/METADATA,sha256=7VT5Fx33XrGXzZsxmLK7CAMOmiSFuEDjZ-_zboMOGLQ,6700
461
+ airbyte_cdk-6.62.0.dev1.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
462
+ airbyte_cdk-6.62.0.dev1.dist-info/entry_points.txt,sha256=eLZ2UYvJZGm1s07Pplcs--1Gim60YhZWTb53j_dghwU,195
463
+ airbyte_cdk-6.62.0.dev1.dist-info/RECORD,,