airbyte-cdk 6.59.0__py3-none-any.whl → 6.59.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- airbyte_cdk/sources/declarative/declarative_component_schema.yaml +2 -0
- airbyte_cdk/sources/declarative/models/declarative_component_schema.py +26 -18
- {airbyte_cdk-6.59.0.dist-info → airbyte_cdk-6.59.1.dist-info}/METADATA +1 -1
- {airbyte_cdk-6.59.0.dist-info → airbyte_cdk-6.59.1.dist-info}/RECORD +8 -8
- {airbyte_cdk-6.59.0.dist-info → airbyte_cdk-6.59.1.dist-info}/LICENSE.txt +0 -0
- {airbyte_cdk-6.59.0.dist-info → airbyte_cdk-6.59.1.dist-info}/LICENSE_SHORT +0 -0
- {airbyte_cdk-6.59.0.dist-info → airbyte_cdk-6.59.1.dist-info}/WHEEL +0 -0
- {airbyte_cdk-6.59.0.dist-info → airbyte_cdk-6.59.1.dist-info}/entry_points.txt +0 -0
@@ -3398,6 +3398,7 @@ definitions:
|
|
3398
3398
|
description: Array of paths defining the field to remove. Each item is an array whose field describe the path of a field to remove.
|
3399
3399
|
type: array
|
3400
3400
|
items:
|
3401
|
+
type: array
|
3401
3402
|
items:
|
3402
3403
|
type: string
|
3403
3404
|
examples:
|
@@ -4546,6 +4547,7 @@ definitions:
|
|
4546
4547
|
description: A list of field pointers to be removed from the config.
|
4547
4548
|
type: array
|
4548
4549
|
items:
|
4550
|
+
type: array
|
4549
4551
|
items:
|
4550
4552
|
type: string
|
4551
4553
|
examples:
|
@@ -1,5 +1,3 @@
|
|
1
|
-
# Copyright (c) 2025 Airbyte, Inc., all rights reserved.
|
2
|
-
|
3
1
|
# generated by datamodel-codegen:
|
4
2
|
# filename: declarative_component_schema.yaml
|
5
3
|
|
@@ -160,20 +158,6 @@ class CustomBackoffStrategy(BaseModel):
|
|
160
158
|
parameters: Optional[Dict[str, Any]] = Field(None, alias="$parameters")
|
161
159
|
|
162
160
|
|
163
|
-
class CustomConfigTransformation(BaseModel):
|
164
|
-
class Config:
|
165
|
-
extra = Extra.allow
|
166
|
-
|
167
|
-
type: Literal["CustomConfigTransformation"]
|
168
|
-
class_name: str = Field(
|
169
|
-
...,
|
170
|
-
description="Fully-qualified name of the class that will be implementing the custom config transformation. The format is `source_<name>.<package>.<class_name>`.",
|
171
|
-
examples=["source_declarative_manifest.components.MyCustomConfigTransformation"],
|
172
|
-
title="Class Name",
|
173
|
-
)
|
174
|
-
parameters: Optional[Dict[str, Any]] = Field(None, alias="$parameters")
|
175
|
-
|
176
|
-
|
177
161
|
class CustomErrorHandler(BaseModel):
|
178
162
|
class Config:
|
179
163
|
extra = Extra.allow
|
@@ -1657,6 +1641,20 @@ class ConfigRemoveFields(BaseModel):
|
|
1657
1641
|
)
|
1658
1642
|
|
1659
1643
|
|
1644
|
+
class CustomConfigTransformation(BaseModel):
|
1645
|
+
type: Literal["CustomConfigTransformation"]
|
1646
|
+
class_name: str = Field(
|
1647
|
+
...,
|
1648
|
+
description="Fully-qualified name of the class that will be implementing the custom config transformation. The format is `source_<name>.<package>.<class_name>`.",
|
1649
|
+
examples=["source_declarative_manifest.components.MyCustomConfigTransformation"],
|
1650
|
+
)
|
1651
|
+
parameters: Optional[Dict[str, Any]] = Field(
|
1652
|
+
None,
|
1653
|
+
alias="$parameters",
|
1654
|
+
description="Additional parameters to be passed to the custom config transformation.",
|
1655
|
+
)
|
1656
|
+
|
1657
|
+
|
1660
1658
|
class AddedFieldDefinition(BaseModel):
|
1661
1659
|
type: Literal["AddedFieldDefinition"]
|
1662
1660
|
path: List[str] = Field(
|
@@ -2164,7 +2162,12 @@ class ConfigMigration(BaseModel):
|
|
2164
2162
|
None, description="The description/purpose of the config migration."
|
2165
2163
|
)
|
2166
2164
|
transformations: List[
|
2167
|
-
Union[
|
2165
|
+
Union[
|
2166
|
+
ConfigRemapField,
|
2167
|
+
ConfigAddFields,
|
2168
|
+
ConfigRemoveFields,
|
2169
|
+
CustomConfigTransformation,
|
2170
|
+
]
|
2168
2171
|
] = Field(
|
2169
2172
|
...,
|
2170
2173
|
description="The list of transformations that will attempt to be applied on an incoming unmigrated config. The transformations will be applied in the order they are defined.",
|
@@ -2184,7 +2187,12 @@ class ConfigNormalizationRules(BaseModel):
|
|
2184
2187
|
)
|
2185
2188
|
transformations: Optional[
|
2186
2189
|
List[
|
2187
|
-
Union[
|
2190
|
+
Union[
|
2191
|
+
ConfigRemapField,
|
2192
|
+
ConfigAddFields,
|
2193
|
+
ConfigRemoveFields,
|
2194
|
+
CustomConfigTransformation,
|
2195
|
+
]
|
2188
2196
|
]
|
2189
2197
|
] = Field(
|
2190
2198
|
[],
|
@@ -90,7 +90,7 @@ airbyte_cdk/sources/declarative/concurrent_declarative_source.py,sha256=rQz9gXp3
|
|
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
|
93
|
-
airbyte_cdk/sources/declarative/declarative_component_schema.yaml,sha256=
|
93
|
+
airbyte_cdk/sources/declarative/declarative_component_schema.yaml,sha256=2-o4Lj-a-9maW6E3ilzrbww11r13feTlzRDEp9SMz9Q,182419
|
94
94
|
airbyte_cdk/sources/declarative/declarative_source.py,sha256=qmyMnnet92eGc3C22yBtpvD5UZjqdhsAafP_zxI5wp8,1814
|
95
95
|
airbyte_cdk/sources/declarative/declarative_stream.py,sha256=dCRlddBUSaJmBNBz1pSO1r2rTw8AP5d2_vlmIeGs2gg,10767
|
96
96
|
airbyte_cdk/sources/declarative/decoders/__init__.py,sha256=JHb_0d3SE6kNY10mxA5YBEKPeSbsWYjByq1gUQxepoE,953
|
@@ -134,7 +134,7 @@ airbyte_cdk/sources/declarative/migrations/legacy_to_per_partition_state_migrati
|
|
134
134
|
airbyte_cdk/sources/declarative/migrations/state_migration.py,sha256=KWPjealMLKSMtajXgkdGgKg7EmTLR-CqqD7UIh0-eDU,794
|
135
135
|
airbyte_cdk/sources/declarative/models/__init__.py,sha256=nUFxNCiKeYRVXuZEKA7GD-lTHxsiKcQ8FitZjKhPIvE,100
|
136
136
|
airbyte_cdk/sources/declarative/models/base_model_with_deprecations.py,sha256=Imnj3yef0aqRdLfaUxkIYISUb8YkiPrRH_wBd-x8HjM,5999
|
137
|
-
airbyte_cdk/sources/declarative/models/declarative_component_schema.py,sha256=
|
137
|
+
airbyte_cdk/sources/declarative/models/declarative_component_schema.py,sha256=jH-UWVRMRscB6dMkB9I_ooBrOpntbWeybMid73vLx10,128684
|
138
138
|
airbyte_cdk/sources/declarative/parsers/__init__.py,sha256=ZnqYNxHsKCgO38IwB34RQyRMXTs4GTvlRi3ImKnIioo,61
|
139
139
|
airbyte_cdk/sources/declarative/parsers/custom_code_compiler.py,sha256=nlVvHC511NUyDEEIRBkoeDTAvLqKNp-hRy8D19z8tdk,5941
|
140
140
|
airbyte_cdk/sources/declarative/parsers/custom_exceptions.py,sha256=wnRUP0Xeru9Rbu5OexXSDN9QWDo8YU4tT9M2LDVOgGA,802
|
@@ -424,9 +424,9 @@ airbyte_cdk/utils/slice_hasher.py,sha256=EDxgROHDbfG-QKQb59m7h_7crN1tRiawdf5uU7G
|
|
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
426
|
airbyte_cdk/utils/traced_exception.py,sha256=C8uIBuCL_E4WnBAOPSxBicD06JAldoN9fGsQDp463OY,6292
|
427
|
-
airbyte_cdk-6.59.
|
428
|
-
airbyte_cdk-6.59.
|
429
|
-
airbyte_cdk-6.59.
|
430
|
-
airbyte_cdk-6.59.
|
431
|
-
airbyte_cdk-6.59.
|
432
|
-
airbyte_cdk-6.59.
|
427
|
+
airbyte_cdk-6.59.1.dist-info/LICENSE.txt,sha256=Wfe61S4BaGPj404v8lrAbvhjYR68SHlkzeYrg3_bbuM,1051
|
428
|
+
airbyte_cdk-6.59.1.dist-info/LICENSE_SHORT,sha256=aqF6D1NcESmpn-cqsxBtszTEnHKnlsp8L4x9wAh3Nxg,55
|
429
|
+
airbyte_cdk-6.59.1.dist-info/METADATA,sha256=ywBFGY1vYWXqxOKxPhw16UZDmpiwmbUYDW3LFrPDPXU,6477
|
430
|
+
airbyte_cdk-6.59.1.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
431
|
+
airbyte_cdk-6.59.1.dist-info/entry_points.txt,sha256=AKWbEkHfpzzk9nF9tqBUaw1MbvTM4mGtEzmZQm0ZWvM,139
|
432
|
+
airbyte_cdk-6.59.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|