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
@@ -2242,7 +2240,7 @@ class HttpRequester(BaseModelWithDeprecations):
2242
2240
None,
2243
2241
deprecated=True,
2244
2242
deprecation_message="Use `url` field instead.",
2245
-
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.",
2243
+
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 Authenticator component for this.",
2246
2244
examples=[
2247
2245
"https://connect.squareup.com/v2",
2248
2246
"{{ config['base_url'] or 'https://app.posthog.com'}}/api",
@@ -2253,20 +2251,20 @@ class HttpRequester(BaseModelWithDeprecations):
2253
2251
)
2254
2252
url: Optional[str] =Field(
2255
2253
None,
2256
-
description="The URL of the API source. Do not put sensitive information (e.g. API tokens) into this field - Use the Authentication component for this.",
2254
+
description="The URL of the source API endpoint. Do not put sensitive information (e.g. API tokens) into this field - Use the Authenticator component for this.",
2257
2255
examples=[
2258
2256
"https://connect.squareup.com/v2",
2259
2257
"{{ config['url'] or 'https://app.posthog.com'}}/api",
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.",
2267
+
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 Authenticator component for this.",
@@ -2282,7 +2280,6 @@ class HttpRequester(BaseModelWithDeprecations):
2282
2280
)
2283
2281
authenticator: Optional[
2284
2282
Union[
2285
-
NoAuth,
2286
2283
ApiKeyAuthenticator,
2287
2284
BasicHttpAuthenticator,
2288
2285
BearerAuthenticator,
@@ -2291,6 +2288,7 @@ class HttpRequester(BaseModelWithDeprecations):
2291
2288
SessionTokenAuthenticator,
2292
2289
SelectiveAuthenticator,
2293
2290
CustomAuthenticator,
2291
+
NoAuth,
2294
2292
LegacySessionTokenAuthenticator,
2295
2293
]
2296
2294
] =Field(
@@ -2303,6 +2301,25 @@ class HttpRequester(BaseModelWithDeprecations):
2303
2301
description="Allows for retrieving a dynamic set of properties from an API endpoint which can be injected into outbound request using the stream_partition.extra_fields.",
0 commit comments