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
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1883,6 +1883,7 @@ definitions:
1883
1883
enum: [HttpRequester]
1884
1884
url_base:
1885
1885
deprecated: true
1886
+
deprecation_message: "Use `url` field instead."
1886
1887
sharable: true
1887
1888
title: API Base URL
1888
1889
description: Deprecated, use the `url` instead. 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: Deprecated, use the `url` instead. 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.
description="Deprecated, use the `url` instead. Base URL of the API source. Do not put sensitive information (e.g. API tokens) into this field - Use the Authentication component for this.",
2154
2159
examples=[
2155
2160
"https://connect.squareup.com/v2",
@@ -2173,6 +2178,7 @@ class HttpRequester(BaseModel):
2173
2178
path: Optional[str] =Field(
2174
2179
None,
2175
2180
deprecated=True,
2181
+
deprecation_message="Use `url` field instead.",
2176
2182
description="Deprecated, use the `url` instead. 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