Skip to content

Commit 0c28494

Browse files
committed
update description for partition router to be more helpful to users
1 parent a44f1d6 commit 0c28494

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

airbyte_cdk/sources/declarative/declarative_component_schema.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3616,7 +3616,7 @@ definitions:
36163616
default: false
36173617
partition_router:
36183618
title: Partition Router
3619-
description: PartitionRouter component that describes how to partition the stream, enabling incremental syncs and checkpointing.
3619+
description: Used to iteratively execute requests over a set of values, such as a parent stream's records or a list of constant values.
36203620
anyOf:
36213621
- "$ref": "#/definitions/SubstreamPartitionRouter"
36223622
- "$ref": "#/definitions/ListPartitionRouter"

airbyte_cdk/sources/declarative/models/declarative_component_schema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2837,7 +2837,7 @@ class SimpleRetriever(BaseModel):
28372837
]
28382838
] = Field(
28392839
None,
2840-
description="PartitionRouter component that describes how to partition the stream, enabling incremental syncs and checkpointing.",
2840+
description="Used to iteratively execute requests over a set of values, such as a parent stream's records or a list of constant values.",
28412841
title="Partition Router",
28422842
)
28432843
parameters: Optional[Dict[str, Any]] = Field(None, alias="$parameters")

0 commit comments

Comments
 (0)