Skip to content

Commit ded5fcb

Browse files
committed
revert erroneous AI deletion
1 parent 1d908a4 commit ded5fcb

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
@@ -168,7 +168,7 @@ definitions:
168168
- X-Auth-Token
169169
inject_into:
170170
title: Inject API Key Into Outgoing HTTP Request
171-
description: Configure how the API Key will be sent in requests to the source API.
171+
description: Configure how the API Key will be sent in requests to the source API. Either inject_into or header has to be defined.
172172
"$ref": "#/definitions/RequestOption"
173173
examples:
174174
- inject_into: header

airbyte_cdk/sources/declarative/models/declarative_component_schema.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1654,7 +1654,7 @@ class ApiKeyAuthenticator(BaseModel):
16541654
)
16551655
inject_into: Optional[RequestOption] = Field(
16561656
None,
1657-
description="Configure how the API Key will be sent in requests to the source API.",
1657+
description="Configure how the API Key will be sent in requests to the source API. Either inject_into or header has to be defined.",
16581658
examples=[
16591659
{"inject_into": "header", "field_name": "Authorization"},
16601660
{"inject_into": "request_parameter", "field_name": "authKey"},

0 commit comments

Comments
 (0)