Skip to content

Commit 683b60b

Browse files
committed
update titles of inject on first request
1 parent 7732298 commit 683b60b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

airbyte_cdk/sources/declarative/declarative_component_schema.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3141,7 +3141,7 @@ definitions:
31413141
- 100
31423142
- "{{ config['page_size'] }}"
31433143
inject_on_first_request:
3144-
title: Inject Offset
3144+
title: Inject Offset on First Request
31453145
description: Using the `offset` with value `0` during the first request
31463146
type: boolean
31473147
default: false
@@ -3181,7 +3181,7 @@ definitions:
31813181
- 0
31823182
- 1
31833183
inject_on_first_request:
3184-
title: Inject Page Number
3184+
title: Inject Page Number on First Request
31853185
description: Using the `page number` with value defined by `start_from_page` during the first request
31863186
type: boolean
31873187
default: false

airbyte_cdk/sources/declarative/models/declarative_component_schema.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1200,7 +1200,7 @@ class OffsetIncrement(BaseModel):
12001200
inject_on_first_request: Optional[bool] = Field(
12011201
False,
12021202
description="Using the `offset` with value `0` during the first request",
1203-
title="Inject Offset",
1203+
title="Inject Offset on First Request",
12041204
)
12051205
parameters: Optional[Dict[str, Any]] = Field(None, alias="$parameters")
12061206

@@ -1222,7 +1222,7 @@ class PageIncrement(BaseModel):
12221222
inject_on_first_request: Optional[bool] = Field(
12231223
False,
12241224
description="Using the `page number` with value defined by `start_from_page` during the first request",
1225-
title="Inject Page Number",
1225+
title="Inject Page Number on First Request",
12261226
)
12271227
parameters: Optional[Dict[str, Any]] = Field(None, alias="$parameters")
12281228

0 commit comments

Comments
 (0)