airbyte-cdk 6.56.7.post1.dev15934698385__py3-none-any.whl → 6.56.8__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.
airbyte_cdk/__init__.py CHANGED
@@ -32,6 +32,16 @@ The Airbyte CDK provides a set of classes that help you work with the Airbyte pr
32
32
  - `airbyte_cdk.models.airbyte_protocol`
33
33
  - `airbyte_cdk.models.airbyte_protocol_serializers`
34
34
 
35
+ ## Using the CLI (`airbyte_cdk.cli`)
36
+
37
+ The Airbyte CDK provides two command-line interfaces (CLIs) for interacting with the framework.
38
+
39
+ - `airbyte-cdk`: This is the main CLI for the Airbyte CDK. It provides commands for building
40
+ and testing connectors, as well as other utilities. See the `airbyte_cdk.cli.airbyte_cdk` module
41
+ for more details.
42
+ - `source-declarative-manifest`: This command allows you to run declarative manifests directly.
43
+ See the `airbyte_cdk.cli.source_declarative_manifest` module for more details.
44
+
35
45
  ---
36
46
 
37
47
  API Reference
@@ -129,7 +139,6 @@ from .sources.declarative.schema import JsonFileSchemaLoader
129
139
  from .sources.declarative.transformations.add_fields import AddedFieldDefinition, AddFields
130
140
  from .sources.declarative.transformations.transformation import RecordTransformation
131
141
  from .sources.declarative.types import FieldPointer
132
- from .sources.declarative.validators import DpathValidator, PredicateValidator, ValidateAdheresToSchema, ValidationStrategy, Validator
133
142
  from .sources.declarative.yaml_declarative_source import YamlDeclarativeSource
134
143
  from .sources.message import InMemoryMessageRepository, MessageRepository
135
144
  from .sources.source import TState
@@ -340,12 +349,6 @@ __all__ = [
340
349
  "Record",
341
350
  "Source",
342
351
  "StreamSlice",
343
- # Validators
344
- "Validator",
345
- "DpathValidator",
346
- "PredicateValidator",
347
- "ValidationStrategy",
348
- "ValidateAdheresToSchema",
349
352
  ]
350
353
 
351
354
  __version__: str
@@ -0,0 +1,65 @@
1
+ # Source Declarative Manifest CLI
2
+
3
+ The source-declarative-manifest CLI is included in the airbyte-cdk package.
4
+ This CLI enables connector interfaces to be run locally on manifest-only connectors,
5
+ much like we already do with Python connectors.
6
+
7
+ ## Installation
8
+
9
+ The airbyte-cdk library can be installed globally using pipx:
10
+
11
+ ```bash
12
+ pipx install airbyte-cdk
13
+ ```
14
+
15
+ If you are using a cloned airbyte-python-cdk repo locally,
16
+ you can also create a virtual environment to enable the CLI.
17
+ From the root directory of airbyte-python-cdk:
18
+
19
+ ```bash
20
+ python -m venv .venv
21
+ source .venv/bin/activate
22
+ pip install -e .
23
+ ```
24
+
25
+ ## Usage
26
+
27
+ ### Options
28
+
29
+ --help: displays the list of available commands
30
+
31
+ ### Commands
32
+
33
+ - spec: Outputs the JSON configuration specification. NOTE: This currently just outputs the base source-declarative-manifest spec
34
+ - check: Runs a connection_check to verify a connection can be made with the passed config
35
+ - discover: Outputs a catalog describing the source's schema
36
+ - read: Reads the source using the passed config and catalog, and outputs messages to STDOUT
37
+
38
+ ### Command options
39
+
40
+ - --config: The relative path to the config to inject into SDM.
41
+ - --catalog: The relative path to the configured catalog.
42
+ - --state: The relative path to the state object to pass. Only used when running an incremental read.
43
+ - --manifest-path: The relative path to the local YAML manifest to inject into SDM.
44
+ - --components-path: The relative path to the custom components to mount, if they exist.
45
+
46
+ | Option | spec | check | discover | read |
47
+ | ------------------- | ---- | -------- | -------- | -------- |
48
+ | `--config` | ❌ | required | required | required |
49
+ | `--catalog` | ❌ | ❌ | required | required |
50
+ | `--state` | ❌ | ❌ | ❌ | optional |
51
+ | `--manifest-path` | ❌ | required | required | required |
52
+ | `--components-path` | ❌ | optional | optional | optional |
53
+
54
+ ### Examples
55
+
56
+ Here are some basic examples of how to run source-declarative-manifest commands locally.
57
+ Note that the paths are relative. These examples assume the user is currently at the root level of a connector dir:
58
+
59
+ ```bash
60
+ source-declarative-manifest check --config secrets/config.json --manifest-path manifest.yaml
61
+ ```
62
+
63
+ ```bash
64
+ source-declarative-manifest read --config secrets/config.json --catalog integration_tests/configured_catalog.json --manifest-path manifest.yaml --components-path components.py
65
+ ```
@@ -1,3 +1,8 @@
1
+ """
2
+ .. include:: ./README.md
3
+ :start-line: 2
4
+ """
5
+
1
6
  from airbyte_cdk.cli.source_declarative_manifest._run import run
2
7
 
3
8
  __all__ = [
@@ -299,5 +299,9 @@ def _register_components_from_file(filepath: str) -> None:
299
299
 
300
300
 
301
301
  def run() -> None:
302
+ """Run the `source-declarative-manifest` CLI.
303
+
304
+ Args are detected from the command line, and the appropriate command is executed.
305
+ """
302
306
  args: list[str] = sys.argv[1:]
303
307
  handle_command(args)
@@ -54,7 +54,7 @@ class HttpRequesterRequestBodyJsonDataToRequestBody(ManifestMigration):
54
54
  if isinstance(manifest[key], str):
55
55
  self._migrate_value(manifest, key, text_type)
56
56
  elif isinstance(manifest[key], dict):
57
- if manifest[key].get(query_key) is not None:
57
+ if isinstance(manifest[key].get(query_key), str):
58
58
  self._migrate_value(manifest, key, graph_ql_type)
59
59
  else:
60
60
  self._migrate_value(manifest, key, json_object_type)
@@ -2140,30 +2140,6 @@ definitions:
2140
2140
  - stream_interval
2141
2141
  - stream_partition
2142
2142
  - stream_slice
2143
- examples:
2144
- - type: RequestBodyJsonObject
2145
- value:
2146
- sort_order: "ASC"
2147
- sort_field: "CREATED_AT"
2148
- - type: RequestBodyJsonObject
2149
- value:
2150
- key: "{{ config['value'] }}"
2151
- - type: RequestBodyJsonObject
2152
- value:
2153
- sort:
2154
- field: "updated_at"
2155
- order: "ascending"
2156
- - type: RequestBodyPlainText
2157
- value: "plain_text_body"
2158
- - type: RequestBodyUrlEncodedForm
2159
- value:
2160
- param1: "value1"
2161
- param2: "{{ config['param2_value'] }}"
2162
- - type: RequestBodyGraphQL
2163
- value:
2164
- query:
2165
- param1: "value1"
2166
- param2: "{{ config['param2_value'] }}"
2167
2143
  error_handler:
2168
2144
  title: Error Handler
2169
2145
  description: Error handler component that defines how to handle errors.
@@ -4326,10 +4302,9 @@ definitions:
4326
4302
  - query
4327
4303
  properties:
4328
4304
  query:
4329
- type: object
4330
- additionalProperties: true
4305
+ type: string
4331
4306
  description: The GraphQL query to be executed
4332
- default: {}
4307
+ default: "query {\n \n}"
4333
4308
  additionalProperties: true
4334
4309
  DpathValidator:
4335
4310
  title: Dpath Validator
@@ -1554,7 +1554,7 @@ class RequestBodyGraphQlQuery(BaseModel):
1554
1554
  class Config:
1555
1555
  extra = Extra.allow
1556
1556
 
1557
- query: Dict[str, Any] = Field(..., description="The GraphQL query to be executed")
1557
+ query: str = Field(..., description="The GraphQL query to be executed")
1558
1558
 
1559
1559
 
1560
1560
  class ValidateAdheresToSchema(BaseModel):
@@ -2595,34 +2595,6 @@ class HttpRequester(BaseModelWithDeprecations):
2595
2595
  ] = Field(
2596
2596
  None,
2597
2597
  description="Specifies how to populate the body of the request with a payload. Can contain nested objects.",
2598
- examples=[
2599
- {
2600
- "type": "RequestBodyJsonObject",
2601
- "value": {"sort_order": "ASC", "sort_field": "CREATED_AT"},
2602
- },
2603
- {
2604
- "type": "RequestBodyJsonObject",
2605
- "value": {"key": "{{ config['value'] }}"},
2606
- },
2607
- {
2608
- "type": "RequestBodyJsonObject",
2609
- "value": {"sort": {"field": "updated_at", "order": "ascending"}},
2610
- },
2611
- {"type": "RequestBodyPlainText", "value": "plain_text_body"},
2612
- {
2613
- "type": "RequestBodyUrlEncodedForm",
2614
- "value": {"param1": "value1", "param2": "{{ config['param2_value'] }}"},
2615
- },
2616
- {
2617
- "type": "RequestBodyGraphQL",
2618
- "value": {
2619
- "query": {
2620
- "param1": "value1",
2621
- "param2": "{{ config['param2_value'] }}",
2622
- }
2623
- },
2624
- },
2625
- ],
2626
2598
  title="Request Body",
2627
2599
  )
2628
2600
  error_handler: Optional[
@@ -100,7 +100,7 @@ class InterpolatedRequestOptionsProvider(RequestOptionsProvider):
100
100
  if self.request_body.type == "RequestBodyUrlEncodedForm":
101
101
  self.request_body_data = self.request_body.value
102
102
  elif self.request_body.type == "RequestBodyGraphQL":
103
- self.request_body_json = {"query": self.request_body.value.query}
103
+ self.request_body_json = self.request_body.value.dict(exclude_none=True)
104
104
  elif self.request_body.type in ("RequestBodyJsonObject", "RequestBodyPlainText"):
105
105
  self.request_body_json = self.request_body.value
106
106
  else:
@@ -53,7 +53,7 @@ class DpathValidator(Validator):
53
53
  for value in values:
54
54
  self.strategy.validate(value)
55
55
  except KeyError as e:
56
- logger.warning(f"Error validating path. Key not found: {e}")
56
+ logger.info(f"Validation skipped. Key not found: {e}")
57
57
  return
58
58
 
59
59
  else:
@@ -61,5 +61,5 @@ class DpathValidator(Validator):
61
61
  value = dpath.get(input_data, path)
62
62
  self.strategy.validate(value)
63
63
  except KeyError as e:
64
- logger.warning(f"Error validating path. Key not found: {e}")
64
+ logger.info(f"Validation skipped. Key not found: {e}")
65
65
  return
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: airbyte-cdk
3
- Version: 6.56.7.post1.dev15934698385
3
+ Version: 6.56.8
4
4
  Summary: A framework for writing Airbyte Connectors.
5
5
  Home-page: https://airbyte.com
6
6
  License: MIT
@@ -1,4 +1,4 @@
1
- airbyte_cdk/__init__.py,sha256=r2Kow-7clQUNUdsgY4Mo3z9CIOH52vJ6Nz8UJ2K8g9M,11981
1
+ airbyte_cdk/__init__.py,sha256=lZNgioD1bHnzRbPK-TXjo7JOVKEL8mz9b5uflj-wIFI,12232
2
2
  airbyte_cdk/cli/__init__.py,sha256=CXsai3MYMLZ_sqi2vPAIVcKDun8VRqlv0cKffBI0iSY,346
3
3
  airbyte_cdk/cli/airbyte_cdk/__init__.py,sha256=8IoEcbdYr7CMAh97Xut5__uHH9vV4LKUtSBNTk3qEWY,2031
4
4
  airbyte_cdk/cli/airbyte_cdk/_connector.py,sha256=u5T_puPDVIsI-jdaQRsPI-Hd4AGoaVY8no2zgMFVOXQ,6164
@@ -7,8 +7,9 @@ airbyte_cdk/cli/airbyte_cdk/_manifest.py,sha256=aFdeeWgek7oXR3YfZPxk7kBZ64Blmsr0
7
7
  airbyte_cdk/cli/airbyte_cdk/_secrets.py,sha256=zkO9bO5pfOA-EJb0HRdEdSiybMFkyiqiQ6MWXldAg0s,17630
8
8
  airbyte_cdk/cli/airbyte_cdk/_version.py,sha256=ohZNIktLFk91sdzqFW5idaNrZAPX2dIRnz---_fcKOE,352
9
9
  airbyte_cdk/cli/airbyte_cdk/exceptions.py,sha256=bsGmlWN6cXL2jCD1WYAZMqFmK1OLg2xLrcC_60KHSeA,803
10
- airbyte_cdk/cli/source_declarative_manifest/__init__.py,sha256=-0ST722Nj65bgRokzpzPkD1NBBW5CytEHFUe38cB86Q,91
11
- airbyte_cdk/cli/source_declarative_manifest/_run.py,sha256=jo4yydSDrB157GtTSZPWRfhZHYvFUD_btI5LW7wOrmY,11129
10
+ airbyte_cdk/cli/source_declarative_manifest/README.md,sha256=aviNYFk1qKXGm33NQ2mJtJNyQ1MO0SPrm_fggUs0MVE,2460
11
+ airbyte_cdk/cli/source_declarative_manifest/__init__.py,sha256=F-DFREvW6Sz71nSu0MwVALaybs9veg678tvsGFi2dYo,143
12
+ airbyte_cdk/cli/source_declarative_manifest/_run.py,sha256=gaWQTMKGF9pe1VjNz2WCk_SclJX3gL31Eui0-jGxEqA,11274
12
13
  airbyte_cdk/cli/source_declarative_manifest/spec.json,sha256=Earc1L6ngcdIr514oFQlUoOxdF4RHqtUyStSIAquXdY,554
13
14
  airbyte_cdk/config_observation.py,sha256=7SSPxtN0nXPkm4euGNcTTr1iLbwUL01jy-24V1Hzde0,3986
14
15
  airbyte_cdk/connector.py,sha256=N6TUlrZOMjLAI85JrNAKkfyTqnO5xfBCw4oEfgjJd9o,4254
@@ -43,7 +44,7 @@ airbyte_cdk/manifest_migrations/manifest_migration.py,sha256=4ohLfbj2PeuPSgCMVbC
43
44
  airbyte_cdk/manifest_migrations/migration_handler.py,sha256=xVTvGoSsTpSLd2mOXHL_D0MxQMGuumiAqW-YWJYfQdY,6716
44
45
  airbyte_cdk/manifest_migrations/migrations/__init__.py,sha256=HRN7fMMbTuM9W1vmycmw9GrXAHH2DYOaYKl3k3p98tw,592
45
46
  airbyte_cdk/manifest_migrations/migrations/http_requester_path_to_url.py,sha256=IIn2SjRh1v2yaSBFUCDyBHpX6mBhlckhvbsSg55mREI,2153
46
- airbyte_cdk/manifest_migrations/migrations/http_requester_request_body_json_data_to_request_body.py,sha256=4nX0oUcFytjpCFnz-oEf4JpeROP7_NBOEX9gCKFoBgg,2726
47
+ airbyte_cdk/manifest_migrations/migrations/http_requester_request_body_json_data_to_request_body.py,sha256=hwz2JZYSUibpoD983DMrOdcFYApiHkTVayBkeG2Kx9w,2731
47
48
  airbyte_cdk/manifest_migrations/migrations/http_requester_url_base_to_url.py,sha256=EX1MVYVpoWypA28qoH48wA0SYZjGdlR8bcSixTDzfgo,1346
48
49
  airbyte_cdk/manifest_migrations/migrations/registry.yaml,sha256=SITcsFFf0avFYZzEb4X2K4W_lXAHrXry9qoEhEVFQvg,957
49
50
  airbyte_cdk/manifest_migrations/migrations_registry.py,sha256=zly2fwaOxDukqC7eowzrDlvhA2v71FjW74kDzvRXhSY,2619
@@ -89,7 +90,7 @@ airbyte_cdk/sources/declarative/concurrent_declarative_source.py,sha256=rQz9gXp3
89
90
  airbyte_cdk/sources/declarative/datetime/__init__.py,sha256=4Hw-PX1-VgESLF16cDdvuYCzGJtHntThLF4qIiULWeo,61
90
91
  airbyte_cdk/sources/declarative/datetime/datetime_parser.py,sha256=_zGNGq31RNy_0QBLt_EcTvgPyhj7urPdx6oA3M5-r3o,3150
91
92
  airbyte_cdk/sources/declarative/datetime/min_max_datetime.py,sha256=0BHBtDNQZfvwM45-tY5pNlTcKAFSGGNxemoi0Jic-0E,5785
92
- airbyte_cdk/sources/declarative/declarative_component_schema.yaml,sha256=J7y_7HJdJMBhngGH3eprGQTlHv_eYGBpD8xe2su5KAs,181284
93
+ airbyte_cdk/sources/declarative/declarative_component_schema.yaml,sha256=kl0_g1yx8sdtDQ8dUQXXW3uHBLyjgM2DMFhimfmUNS4,180477
93
94
  airbyte_cdk/sources/declarative/declarative_source.py,sha256=qmyMnnet92eGc3C22yBtpvD5UZjqdhsAafP_zxI5wp8,1814
94
95
  airbyte_cdk/sources/declarative/declarative_stream.py,sha256=dCRlddBUSaJmBNBz1pSO1r2rTw8AP5d2_vlmIeGs2gg,10767
95
96
  airbyte_cdk/sources/declarative/decoders/__init__.py,sha256=JHb_0d3SE6kNY10mxA5YBEKPeSbsWYjByq1gUQxepoE,953
@@ -133,7 +134,7 @@ airbyte_cdk/sources/declarative/migrations/legacy_to_per_partition_state_migrati
133
134
  airbyte_cdk/sources/declarative/migrations/state_migration.py,sha256=KWPjealMLKSMtajXgkdGgKg7EmTLR-CqqD7UIh0-eDU,794
134
135
  airbyte_cdk/sources/declarative/models/__init__.py,sha256=nUFxNCiKeYRVXuZEKA7GD-lTHxsiKcQ8FitZjKhPIvE,100
135
136
  airbyte_cdk/sources/declarative/models/base_model_with_deprecations.py,sha256=Imnj3yef0aqRdLfaUxkIYISUb8YkiPrRH_wBd-x8HjM,5999
136
- airbyte_cdk/sources/declarative/models/declarative_component_schema.py,sha256=_vSttuYgevivyK3SJZjMvs7p4NP7pqS9F1c1ei3DJ7M,128009
137
+ airbyte_cdk/sources/declarative/models/declarative_component_schema.py,sha256=zNCb_E42naPkhWmUuquHRx8_7xXO6IbS3VZm-9pkqCc,126988
137
138
  airbyte_cdk/sources/declarative/parsers/__init__.py,sha256=ZnqYNxHsKCgO38IwB34RQyRMXTs4GTvlRi3ImKnIioo,61
138
139
  airbyte_cdk/sources/declarative/parsers/custom_code_compiler.py,sha256=nlVvHC511NUyDEEIRBkoeDTAvLqKNp-hRy8D19z8tdk,5941
139
140
  airbyte_cdk/sources/declarative/parsers/custom_exceptions.py,sha256=wnRUP0Xeru9Rbu5OexXSDN9QWDo8YU4tT9M2LDVOgGA,802
@@ -189,7 +190,7 @@ airbyte_cdk/sources/declarative/requesters/request_options/datetime_based_reques
189
190
  airbyte_cdk/sources/declarative/requesters/request_options/default_request_options_provider.py,sha256=SRROdPJZ5kuqHLOlkh115pWP9nDGfDxRYPgH9oD3hPo,1798
190
191
  airbyte_cdk/sources/declarative/requesters/request_options/interpolated_nested_request_input_provider.py,sha256=STVopTmEZaxmE-w_2zL6CYXFxq-2K2wDKGtWj9OYZyU,2360
191
192
  airbyte_cdk/sources/declarative/requesters/request_options/interpolated_request_input_provider.py,sha256=-X_sncjnw3N5ZyhlLMOI6vnWy2CM8drqPFOKgzDXTQg,2975
192
- airbyte_cdk/sources/declarative/requesters/request_options/interpolated_request_options_provider.py,sha256=ks4rCSdEKTX2bm8obDf-PzWggel1rQEwtu35-rQvqVk,8274
193
+ airbyte_cdk/sources/declarative/requesters/request_options/interpolated_request_options_provider.py,sha256=fdGNgFlN3gowThp-NXOMfa5NtW2choFWpSAQEeVRtcw,8281
193
194
  airbyte_cdk/sources/declarative/requesters/request_options/request_options_provider.py,sha256=8YRiDzjYvqJ-aMmKFcjqzv_-e8OZ5QG_TbpZ-nuCu6s,2590
194
195
  airbyte_cdk/sources/declarative/requesters/request_path.py,sha256=S3MeFvcaQrMbOkSY2W2VbXLNomqt_3eXqVd9ZhgNwUs,299
195
196
  airbyte_cdk/sources/declarative/requesters/requester.py,sha256=T6tMx_Bx4iT-0YVjY7IzgRil-gaIu9n01b1iwpTh3Ek,5516
@@ -238,7 +239,7 @@ airbyte_cdk/sources/declarative/transformations/remove_fields.py,sha256=EwUP0SZ2
238
239
  airbyte_cdk/sources/declarative/transformations/transformation.py,sha256=4sXtx9cNY2EHUPq-xHvDs8GQEBUy3Eo6TkRLKHPXx68,1161
239
240
  airbyte_cdk/sources/declarative/types.py,sha256=yqx0xlZv_76tkC7fqJKefmvl4GJJ8mXbeddwVV8XRJU,778
240
241
  airbyte_cdk/sources/declarative/validators/__init__.py,sha256=_xccLn4QKQqR3CAwmCVOA7l6QuJd_Isoh6NsR8crM2U,663
241
- airbyte_cdk/sources/declarative/validators/dpath_validator.py,sha256=MEehshc7YiqUhTNm7qN6mN6JBdkQcYsoLPqAQYIE_-0,2179
242
+ airbyte_cdk/sources/declarative/validators/dpath_validator.py,sha256=mo4eLir9aVLoZbi1v7_BP0u3yXFeRnDEAQSOZaSYM8s,2167
242
243
  airbyte_cdk/sources/declarative/validators/predicate_validator.py,sha256=Q4eVnclk1vYPvVF7XROG4MFEVkPYbYKEF8SUKs7P7-k,582
243
244
  airbyte_cdk/sources/declarative/validators/validate_adheres_to_schema.py,sha256=kjcuKxWMJEzpF4GiESITGMxBAXw6YZCAsgOQMgeBo4g,1085
244
245
  airbyte_cdk/sources/declarative/validators/validation_strategy.py,sha256=LwqUX89cFdHTM1-h6c8vebBA9WC38HYoGBvJfCZHr0g,467
@@ -423,9 +424,9 @@ airbyte_cdk/utils/slice_hasher.py,sha256=EDxgROHDbfG-QKQb59m7h_7crN1tRiawdf5uU7G
423
424
  airbyte_cdk/utils/spec_schema_transformations.py,sha256=-5HTuNsnDBAhj-oLeQXwpTGA0HdcjFOf2zTEMUTTg_Y,816
424
425
  airbyte_cdk/utils/stream_status_utils.py,sha256=ZmBoiy5HVbUEHAMrUONxZvxnvfV9CesmQJLDTAIWnWw,1171
425
426
  airbyte_cdk/utils/traced_exception.py,sha256=C8uIBuCL_E4WnBAOPSxBicD06JAldoN9fGsQDp463OY,6292
426
- airbyte_cdk-6.56.7.post1.dev15934698385.dist-info/LICENSE.txt,sha256=Wfe61S4BaGPj404v8lrAbvhjYR68SHlkzeYrg3_bbuM,1051
427
- airbyte_cdk-6.56.7.post1.dev15934698385.dist-info/LICENSE_SHORT,sha256=aqF6D1NcESmpn-cqsxBtszTEnHKnlsp8L4x9wAh3Nxg,55
428
- airbyte_cdk-6.56.7.post1.dev15934698385.dist-info/METADATA,sha256=XNRGPTDNL0yI3XUb481UieWDqg6UTjxyMNpsX_jTKhI,6413
429
- airbyte_cdk-6.56.7.post1.dev15934698385.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
430
- airbyte_cdk-6.56.7.post1.dev15934698385.dist-info/entry_points.txt,sha256=AKWbEkHfpzzk9nF9tqBUaw1MbvTM4mGtEzmZQm0ZWvM,139
431
- airbyte_cdk-6.56.7.post1.dev15934698385.dist-info/RECORD,,
427
+ airbyte_cdk-6.56.8.dist-info/LICENSE.txt,sha256=Wfe61S4BaGPj404v8lrAbvhjYR68SHlkzeYrg3_bbuM,1051
428
+ airbyte_cdk-6.56.8.dist-info/LICENSE_SHORT,sha256=aqF6D1NcESmpn-cqsxBtszTEnHKnlsp8L4x9wAh3Nxg,55
429
+ airbyte_cdk-6.56.8.dist-info/METADATA,sha256=-QMqJnVacR50jlwPgnpLNX4Rqnrn5AE4ykNkSXUI0l8,6392
430
+ airbyte_cdk-6.56.8.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
431
+ airbyte_cdk-6.56.8.dist-info/entry_points.txt,sha256=AKWbEkHfpzzk9nF9tqBUaw1MbvTM4mGtEzmZQm0ZWvM,139
432
+ airbyte_cdk-6.56.8.dist-info/RECORD,,