Skip to content

Commit aa57c43

Browse files
authored
Update low-code docs to reflect new inject_into parameter renaming (#16556)
1 parent 787e87d commit aa57c43

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/connector-development/config-based/pagination.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ paginator:
3232
type: "LimitPaginator"
3333
page_size: 5
3434
limit_option:
35-
option_type: request_parameter
35+
inject_into: request_parameter
3636
field_name: page_size
3737
pagination_strategy:
3838
type: "PageIncrement"
3939
page_token:
40-
option_type: "request_parameter"
40+
inject_into: "request_parameter"
4141
field_name: "page"
4242
```
4343
@@ -59,7 +59,7 @@ paginator:
5959
type: "LimitPaginator"
6060
page_size: 5
6161
limit_option:
62-
option_type: request_parameter
62+
inject_into: request_parameter
6363
field_name: page_size
6464
pagination_strategy:
6565
type: "OffsetIncrement"
@@ -124,4 +124,4 @@ Assuming the endpoint to fetch data from is `https://cloud.airbyte.com/api/get_d
124124
the first request will be sent as `https://cloud.airbyte.com/api/get_data`
125125

126126
Assuming the response's next url is `https://cloud.airbyte.com/api/get_data?page=1&page_size=100`,
127-
the next request will be sent as `https://cloud.airbyte.com/api/get_data?page=1&page_size=100`
127+
the next request will be sent as `https://cloud.airbyte.com/api/get_data?page=1&page_size=100`

docs/connector-development/config-based/request-options.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,12 @@ paginator:
5454
type: "LimitPaginator"
5555
page_size: 5
5656
limit_option:
57-
option_type: request_parameter
57+
inject_into: request_parameter
5858
field_name: page_size
5959
pagination_strategy:
6060
type: "PageIncrement"
6161
page_token:
62-
option_type: "request_parameter"
62+
inject_into: "request_parameter"
6363
field_name: "page"
6464
```
6565

0 commit comments

Comments
 (0)