You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: airbyte_cdk/sources/declarative/declarative_component_schema.yaml
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1917,8 +1917,9 @@ definitions:
1917
1917
type: string
1918
1918
enum: [HttpRequester]
1919
1919
url_base:
1920
+
linkable: true
1920
1921
title: API Base URL
1921
-
description: Base URL of the API source. Do not put sensitive information (e.g. API tokens) into this field - Use the Authentication component for this.
1922
+
description: The Base URL of the API source. Do not put sensitive information (e.g. API tokens) into this field - Use the Authentication component for this.
description: Path the specific API endpoint that this stream represents. Do not put sensitive information (e.g. API tokens) into this field - Use the Authentication component for this.
1940
+
description: The Path the specific API endpoint that this stream represents. Do not put sensitive information (e.g. API tokens) into this field - Use the Authentication component for this.
1940
1941
type: string
1941
1942
interpolation_context:
1942
1943
- config
@@ -1964,6 +1965,7 @@ definitions:
1964
1965
- POST
1965
1966
authenticator:
1966
1967
title: Authenticator
1968
+
linkable: true
1967
1969
description: Authentication method to use for requests sent to the API.
Copy file name to clipboardExpand all lines: airbyte_cdk/sources/declarative/models/declarative_component_schema.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -2209,7 +2209,7 @@ class HttpRequester(BaseModel):
2209
2209
type: Literal["HttpRequester"]
2210
2210
url_base: str=Field(
2211
2211
...,
2212
-
description="Base URL of the API source. Do not put sensitive information (e.g. API tokens) into this field - Use the Authentication component for this.",
2212
+
description="The Base URL of the API source. Do not put sensitive information (e.g. API tokens) into this field - Use the Authentication component for this.",
2213
2213
examples=[
2214
2214
"https://connect.squareup.com/v2",
2215
2215
"{{ config['base_url'] or 'https://app.posthog.com'}}/api",
@@ -2220,7 +2220,7 @@ class HttpRequester(BaseModel):
2220
2220
)
2221
2221
path: Optional[str] =Field(
2222
2222
None,
2223
-
description="Path the specific API endpoint that this stream represents. Do not put sensitive information (e.g. API tokens) into this field - Use the Authentication component for this.",
2223
+
description="The Path the specific API endpoint that this stream represents. Do not put sensitive information (e.g. API tokens) into this field - Use the Authentication component for this.",
0 commit comments