airbyte-cdk 6.60.0.post35.dev16509779638__py3-none-any.whl → 6.60.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) 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/incremental/datetime_based_cursor.py +0 -11
  18. airbyte_cdk/sources/declarative/incremental/global_substream_cursor.py +0 -6
  19. airbyte_cdk/sources/declarative/incremental/per_partition_cursor.py +0 -15
  20. airbyte_cdk/sources/declarative/incremental/per_partition_with_global.py +0 -3
  21. airbyte_cdk/sources/declarative/incremental/resumable_full_refresh_cursor.py +0 -6
  22. airbyte_cdk/sources/declarative/manifest_declarative_source.py +15 -7
  23. airbyte_cdk/sources/declarative/parsers/model_to_component_factory.py +7 -4
  24. airbyte_cdk/sources/declarative/retrievers/simple_retriever.py +2 -25
  25. airbyte_cdk/sources/declarative/spec/spec.py +2 -2
  26. airbyte_cdk/sources/file_based/file_based_source.py +3 -3
  27. airbyte_cdk/sources/source.py +4 -2
  28. airbyte_cdk/sources/streams/checkpoint/cursor.py +0 -6
  29. airbyte_cdk/sources/streams/checkpoint/resumable_full_refresh_cursor.py +0 -6
  30. airbyte_cdk/sources/streams/checkpoint/substream_resumable_full_refresh_cursor.py +0 -6
  31. airbyte_cdk/sources/streams/http/http_client.py +7 -5
  32. airbyte_cdk/sources/streams/permissions/identities_stream.py +1 -1
  33. airbyte_cdk/sql/shared/sql_processor.py +1 -1
  34. airbyte_cdk/test/catalog_builder.py +2 -1
  35. airbyte_cdk/test/entrypoint_wrapper.py +16 -25
  36. airbyte_cdk/utils/datetime_helpers.py +5 -14
  37. airbyte_cdk/utils/traced_exception.py +2 -2
  38. {airbyte_cdk-6.60.0.post35.dev16509779638.dist-info → airbyte_cdk-6.60.2.dist-info}/METADATA +11 -10
  39. {airbyte_cdk-6.60.0.post35.dev16509779638.dist-info → airbyte_cdk-6.60.2.dist-info}/RECORD +43 -43
  40. {airbyte_cdk-6.60.0.post35.dev16509779638.dist-info → airbyte_cdk-6.60.2.dist-info}/LICENSE.txt +0 -0
  41. {airbyte_cdk-6.60.0.post35.dev16509779638.dist-info → airbyte_cdk-6.60.2.dist-info}/LICENSE_SHORT +0 -0
  42. {airbyte_cdk-6.60.0.post35.dev16509779638.dist-info → airbyte_cdk-6.60.2.dist-info}/WHEEL +0 -0
  43. {airbyte_cdk-6.60.0.post35.dev16509779638.dist-info → airbyte_cdk-6.60.2.dist-info}/entry_points.txt +0 -0
@@ -17,7 +17,6 @@ than that, there are integrations point that are annoying to integrate with usin
17
17
  import json
18
18
  import logging
19
19
  import re
20
- import sys
21
20
  import tempfile
22
21
  import traceback
23
22
  from collections import deque
@@ -29,6 +28,7 @@ from typing import Any, List, Literal, Optional, Union, final, overload
29
28
 
30
29
  import orjson
31
30
  from pydantic import ValidationError as V2ValidationError
31
+ from serpyco_rs import SchemaValidationError
32
32
 
33
33
  from airbyte_cdk.entrypoint import AirbyteEntrypoint
34
34
  from airbyte_cdk.exception_handler import assemble_uncaught_exception
@@ -36,31 +36,20 @@ from airbyte_cdk.logger import AirbyteLogFormatter
36
36
  from airbyte_cdk.models import (
37
37
  AirbyteLogMessage,
38
38
  AirbyteMessage,
39
+ AirbyteMessageSerializer,
39
40
  AirbyteStateMessage,
41
+ AirbyteStateMessageSerializer,
40
42
  AirbyteStreamState,
41
43
  AirbyteStreamStatus,
42
44
  ConfiguredAirbyteCatalog,
45
+ ConfiguredAirbyteCatalogSerializer,
43
46
  Level,
44
47
  TraceType,
45
48
  Type,
46
- ab_configured_catalog_from_string,
47
- ab_configured_catalog_to_string,
48
- ab_connector_spec_from_string,
49
- ab_connector_spec_to_string,
50
- ab_message_from_string,
51
- ab_message_to_string,
52
- ab_state_message_to_string,
53
49
  )
54
50
  from airbyte_cdk.sources import Source
55
51
  from airbyte_cdk.test.models.scenario import ExpectedOutcome
56
52
 
57
- JsonValidationErrors: tuple[type[Exception], ...] = (orjson.JSONDecodeError,)
58
- # Conditionally import and create a union type for exception handling
59
- if sys.platform != "emscripten":
60
- from serpyco_rs import SchemaValidationError
61
-
62
- JsonValidationErrors = (orjson.JSONDecodeError, SchemaValidationError)
63
-
64
53
 
65
54
  class AirbyteEntrypointException(Exception):
66
55
  """Exception raised for errors in the AirbyteEntrypoint execution.
@@ -128,8 +117,8 @@ class EntrypointOutput:
128
117
  @staticmethod
129
118
  def _parse_message(message: str) -> AirbyteMessage:
130
119
  try:
131
- return ab_message_from_string(message)
132
- except JsonValidationErrors:
120
+ return AirbyteMessageSerializer.load(orjson.loads(message))
121
+ except (orjson.JSONDecodeError, SchemaValidationError):
133
122
  # The platform assumes that logs that are not of AirbyteMessage format are log messages
134
123
  return AirbyteMessage(
135
124
  type=Type.LOG, log=AirbyteLogMessage(level=Level.INFO, message=message)
@@ -452,7 +441,7 @@ def read(
452
441
  config_file = make_file(tmp_directory_path / "config.json", config)
453
442
  catalog_file = make_file(
454
443
  tmp_directory_path / "catalog.json",
455
- ab_configured_catalog_to_string(catalog),
444
+ orjson.dumps(ConfiguredAirbyteCatalogSerializer.dump(catalog)).decode(),
456
445
  )
457
446
  args = [
458
447
  "read",
@@ -464,13 +453,15 @@ def read(
464
453
  if debug:
465
454
  args.append("--debug")
466
455
  if state is not None:
467
- args.extend([
468
- "--state",
469
- make_file(
470
- tmp_directory_path / "state.json",
471
- f"[{','.join([ab_state_message_to_string(stream_state) for stream_state in state])}]",
472
- ),
473
- ])
456
+ args.extend(
457
+ [
458
+ "--state",
459
+ make_file(
460
+ tmp_directory_path / "state.json",
461
+ f"[{','.join([orjson.dumps(AirbyteStateMessageSerializer.dump(stream_state)).decode() for stream_state in state])}]",
462
+ ),
463
+ ]
464
+ )
474
465
 
475
466
  return _run_command(
476
467
  source,
@@ -86,6 +86,7 @@ from typing import Any, Optional, Union, overload
86
86
 
87
87
  from dateutil import parser
88
88
  from typing_extensions import Never
89
+ from whenever import Instant, LocalDateTime, ZonedDateTime
89
90
 
90
91
 
91
92
  class AirbyteDateTime(datetime):
@@ -137,18 +138,6 @@ class AirbyteDateTime(datetime):
137
138
  dt.tzinfo or timezone.utc,
138
139
  )
139
140
 
140
- @classmethod
141
- def from_timestamp(cls, timestamp: float) -> "AirbyteDateTime":
142
- """Creates an AirbyteDateTime from a Unix timestamp in seconds.
143
-
144
- Args:
145
- timestamp: A Unix timestamp in seconds (float).
146
-
147
- Returns:
148
- AirbyteDateTime: A new timezone-aware datetime instance (UTC).
149
- """
150
- return AirbyteDateTime.from_datetime(datetime.fromtimestamp(timestamp, tz=timezone.utc))
151
-
152
141
  def to_datetime(self) -> datetime:
153
142
  """Converts this AirbyteDateTime to a standard datetime object.
154
143
 
@@ -411,7 +400,8 @@ def ab_datetime_parse(dt_str: str | int) -> AirbyteDateTime:
411
400
  raise ValueError("Timestamp cannot be negative")
412
401
  if len(str(abs(timestamp))) > 10:
413
402
  raise ValueError("Timestamp value too large")
414
- return AirbyteDateTime.from_timestamp(timestamp)
403
+ instant = Instant.from_timestamp(timestamp)
404
+ return AirbyteDateTime.from_datetime(instant.py_datetime())
415
405
 
416
406
  if not isinstance(dt_str, str):
417
407
  raise ValueError(
@@ -424,7 +414,8 @@ def ab_datetime_parse(dt_str: str | int) -> AirbyteDateTime:
424
414
  year, month, day = map(int, dt_str.split("-"))
425
415
  if not (1 <= month <= 12 and 1 <= day <= 31):
426
416
  raise ValueError(f"Invalid date format: {dt_str}")
427
- return AirbyteDateTime(year, month, day, 0, 0, 0)
417
+ instant = Instant.from_utc(year, month, day, 0, 0, 0)
418
+ return AirbyteDateTime.from_datetime(instant.py_datetime())
428
419
  except (ValueError, TypeError):
429
420
  raise ValueError(f"Invalid date format: {dt_str}")
430
421
 
@@ -11,12 +11,12 @@ from airbyte_cdk.models import (
11
11
  AirbyteConnectionStatus,
12
12
  AirbyteErrorTraceMessage,
13
13
  AirbyteMessage,
14
+ AirbyteMessageSerializer,
14
15
  AirbyteTraceMessage,
15
16
  FailureType,
16
17
  Status,
17
18
  StreamDescriptor,
18
19
  TraceType,
19
- ab_message_to_string,
20
20
  )
21
21
  from airbyte_cdk.models import Type as MessageType
22
22
  from airbyte_cdk.utils.airbyte_secrets_utils import filter_secrets
@@ -95,7 +95,7 @@ class AirbyteTracedException(Exception):
95
95
  Prints the exception as an AirbyteTraceMessage.
96
96
  Note that this will be called automatically on uncaught exceptions when using the airbyte_cdk entrypoint.
97
97
  """
98
- message = ab_message_to_string(self.as_airbyte_message())
98
+ message = orjson.dumps(AirbyteMessageSerializer.dump(self.as_airbyte_message())).decode()
99
99
  filtered_message = filter_secrets(message)
100
100
  print(filtered_message)
101
101
 
@@ -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.2
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
@@ -113,12 +113,12 @@ airbyte_cdk/sources/declarative/extractors/response_to_file_extractor.py,sha256=
113
113
  airbyte_cdk/sources/declarative/extractors/type_transformer.py,sha256=d6Y2Rfg8pMVEEnHllfVksWZdNVOU55yk34O03dP9muY,1626
114
114
  airbyte_cdk/sources/declarative/incremental/__init__.py,sha256=U1oZKtBaEC6IACmvziY9Wzg7Z8EgF4ZuR7NwvjlB_Sk,1255
115
115
  airbyte_cdk/sources/declarative/incremental/concurrent_partition_cursor.py,sha256=cmv_nV1G3HMf-YUKtm6Pb2pbisx3R0ZnP_B-8cTnn0I,22842
116
- airbyte_cdk/sources/declarative/incremental/datetime_based_cursor.py,sha256=Rbe6lJLTtZ5en33MwZiB9-H9-AwDMNHgwBZs8EqhYqk,22172
116
+ airbyte_cdk/sources/declarative/incremental/datetime_based_cursor.py,sha256=AD5qJSryosA9p3rzdl_vX60uwG9_mOk5Q8sGD8XSTjE,21592
117
117
  airbyte_cdk/sources/declarative/incremental/declarative_cursor.py,sha256=5Bhw9VRPyIuCaD0wmmq_L3DZsa-rJgtKSEUzSd8YYD0,536
118
- airbyte_cdk/sources/declarative/incremental/global_substream_cursor.py,sha256=2tsE6FgXzemf4fZZ4uGtd8QpRBl9GJ2CRqSNJE5p0EI,16077
119
- airbyte_cdk/sources/declarative/incremental/per_partition_cursor.py,sha256=9IAJTCiRUXvhFFz-IhZtYh_KfAjLHqthsYf2jErQRls,17728
120
- airbyte_cdk/sources/declarative/incremental/per_partition_with_global.py,sha256=2YBOA2NnwAeIKlIhSwUB_W-FaGnPcmrG_liY7b4mV2Y,8365
121
- airbyte_cdk/sources/declarative/incremental/resumable_full_refresh_cursor.py,sha256=10LFv1QPM-agVKl6eaANmEBOfd7gZgBrkoTcMggsieQ,4809
118
+ airbyte_cdk/sources/declarative/incremental/global_substream_cursor.py,sha256=69XbGqqTHBCSXi4MV6qO7uTEsTUPRN7uML0VJDjl8qU,15809
119
+ airbyte_cdk/sources/declarative/incremental/per_partition_cursor.py,sha256=DW56OT7H6_lE2CZagXitaSv8B9pAB6P78Y5TSI5qHBg,16937
120
+ airbyte_cdk/sources/declarative/incremental/per_partition_with_global.py,sha256=rjsH7XwrJON5lXVfU0FIrEGglNesVzlr8hfwS5_A9sY,8210
121
+ airbyte_cdk/sources/declarative/incremental/resumable_full_refresh_cursor.py,sha256=I8AwJkbl9AKbYYqwZUSP7hLoRMMuNkDQ90Zv5Z7CWdo,4609
122
122
  airbyte_cdk/sources/declarative/interpolation/__init__.py,sha256=Kh7FxhfetyNVDnAQ9zSxNe4oUbb8CvoW7Mqz7cs2iPg,437
123
123
  airbyte_cdk/sources/declarative/interpolation/filters.py,sha256=cYap5zzOxIJWCLIfbkNlpyfUhjZ8FklLroIG4WGzYVs,5537
124
124
  airbyte_cdk/sources/declarative/interpolation/interpolated_boolean.py,sha256=8F3ntT_Mfo8cO9n6dCq8rTfJIpfKmzRCsVtVdhzaoGc,1964
@@ -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
@@ -209,7 +209,7 @@ airbyte_cdk/sources/declarative/retrievers/file_uploader/file_writer.py,sha256=V
209
209
  airbyte_cdk/sources/declarative/retrievers/file_uploader/local_file_system_file_writer.py,sha256=jLpdonre1UHfbjGSD5AK_T0codLABJByTvbqepDZtEQ,422
210
210
  airbyte_cdk/sources/declarative/retrievers/file_uploader/noop_file_writer.py,sha256=1yfimzxm09d2j605cu_HhiYVDNVL1rUMi3vs_jYlIyY,330
211
211
  airbyte_cdk/sources/declarative/retrievers/retriever.py,sha256=XPLs593Xv8c5cKMc37XzUAYmzlXd1a7eSsspM-CMuWA,1696
212
- airbyte_cdk/sources/declarative/retrievers/simple_retriever.py,sha256=ma6ZkDdf89ECdT1Lg0Y5p0VjzjwJG4JVC_bz8KbfI7I,28431
212
+ airbyte_cdk/sources/declarative/retrievers/simple_retriever.py,sha256=1-owE0r2RA8AsP8Yc6CVjNRNodMcOFl0RBCgCJY5MAY,27505
213
213
  airbyte_cdk/sources/declarative/schema/__init__.py,sha256=xU45UvM5O4c1PSM13UHpCdh5hpW3HXy9vRRGEiAC1rg,795
214
214
  airbyte_cdk/sources/declarative/schema/composite_schema_loader.py,sha256=ymGbvxS_QyGc4nnjEyRo5ch8bVedELO41PAUxKXZyMw,1113
215
215
  airbyte_cdk/sources/declarative/schema/default_schema_loader.py,sha256=UnbzlExmwoQiVV8zDg4lhAEaqA_0pRfwbMRe8yqOuWk,1834
@@ -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,17 +301,17 @@ 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
308
308
  airbyte_cdk/sources/streams/call_rate.py,sha256=jRsGp1PDZBCDQNxzcGVnVmVzLk0wLHxS1JnJwMAgy9U,27568
309
309
  airbyte_cdk/sources/streams/checkpoint/__init__.py,sha256=3oy7Hd4ivVWTZlN6dKAf4Fv_G7U5iZrvhO9hT871UIo,712
310
310
  airbyte_cdk/sources/streams/checkpoint/checkpoint_reader.py,sha256=6HMT2NI-FQuaW0nt95NcyWrt5rZN4gF-Arx0sxdgbv4,15221
311
- airbyte_cdk/sources/streams/checkpoint/cursor.py,sha256=3e-3c-54k8U7Awno7DMmAD9ndbnl9OM48EnbEgeDUO0,3499
311
+ airbyte_cdk/sources/streams/checkpoint/cursor.py,sha256=FrfDRRzsBvpu9H9qgUUeULz1LTcWIeghf_rWpffTgWk,3239
312
312
  airbyte_cdk/sources/streams/checkpoint/per_partition_key_serializer.py,sha256=_mtH3_XcpASeu_z2WnAFrXqwKaPBMuXvZlVHSpLVqa8,1074
313
- airbyte_cdk/sources/streams/checkpoint/resumable_full_refresh_cursor.py,sha256=9si8btC8XQzHA9i2tv9vO1k-cBeyUhpfC-kePn0VNmc,1966
314
- airbyte_cdk/sources/streams/checkpoint/substream_resumable_full_refresh_cursor.py,sha256=qyTpIpVh7c1ptwZ9S-2sMoRHh4prpQAlzqjweQ5iCxM,4769
313
+ airbyte_cdk/sources/streams/checkpoint/resumable_full_refresh_cursor.py,sha256=GV9GIBbxwP1-_fy3qTRnNccFDRls_P0KnTVODF9C8_U,1766
314
+ airbyte_cdk/sources/streams/checkpoint/substream_resumable_full_refresh_cursor.py,sha256=qydclrks-hHJ9B9wOKvbu_FZXJOFiB3yD5U4KwsX80Y,4569
315
315
  airbyte_cdk/sources/streams/concurrent/README.md,sha256=0nvgnlCBfZJiPDAofT8yFmUhGc4L99RCb3fL_PI4sSY,1070
316
316
  airbyte_cdk/sources/streams/concurrent/__init__.py,sha256=4Hw-PX1-VgESLF16cDdvuYCzGJtHntThLF4qIiULWeo,61
317
317
  airbyte_cdk/sources/streams/concurrent/abstract_stream.py,sha256=3OB5VsvOkJmCxIMABKgdJAwvCdZtkxeaAVrUNIW3jMQ,3902
@@ -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.2.dist-info/LICENSE.txt,sha256=Wfe61S4BaGPj404v8lrAbvhjYR68SHlkzeYrg3_bbuM,1051
428
+ airbyte_cdk-6.60.2.dist-info/LICENSE_SHORT,sha256=aqF6D1NcESmpn-cqsxBtszTEnHKnlsp8L4x9wAh3Nxg,55
429
+ airbyte_cdk-6.60.2.dist-info/METADATA,sha256=2R0g94kHNGz_zqFekW1FmfAhdU3CAO2oATRK49i0av4,6477
430
+ airbyte_cdk-6.60.2.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
431
+ airbyte_cdk-6.60.2.dist-info/entry_points.txt,sha256=AKWbEkHfpzzk9nF9tqBUaw1MbvTM4mGtEzmZQm0ZWvM,139
432
+ airbyte_cdk-6.60.2.dist-info/RECORD,,