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
+15-15Lines changed: 15 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -1339,8 +1339,8 @@ definitions:
1339
1339
examples:
1340
1340
- "%Y-%m-%d %H:%M:%S.%f+00:00"
1341
1341
refresh_token_updater:
1342
-
title: Token Updater
1343
-
description: When the token updater is defined, new refresh tokens, access tokens and the access token expiry date are written back from the authentication response to the config object. This is important if the refresh token can only used once.
1342
+
title: Refresh Token Updater
1343
+
description: When the refresh token updater is defined, new refresh tokens, access tokens and the access token expiry date are written back from the authentication response to the config object. This is important if the refresh token can only used once.
1344
1344
properties:
1345
1345
refresh_token_name:
1346
1346
title: Refresh Token Property Name
@@ -3424,6 +3424,19 @@ definitions:
3424
3424
type:
3425
3425
type: string
3426
3426
enum: [RequestOption]
3427
+
inject_into:
3428
+
title: Inject Into
3429
+
description: Configures where the descriptor should be set on the HTTP requests. Note that request parameters that are already encoded in the URL path will not be duplicated.
3430
+
enum:
3431
+
- request_parameter
3432
+
- header
3433
+
- body_data
3434
+
- body_json
3435
+
examples:
3436
+
- request_parameter
3437
+
- header
3438
+
- body_data
3439
+
- body_json
3427
3440
field_name:
3428
3441
title: Field Name
3429
3442
description: Configures which key should be used in the location that the descriptor is being injected into. We hope to eventually deprecate this field in favor of `field_path` for all request_options, but must currently maintain it for backwards compatibility in the Builder.
@@ -3444,19 +3457,6 @@ definitions:
3444
3457
interpolation_context:
3445
3458
- config
3446
3459
- parameters
3447
-
inject_into:
3448
-
title: Inject Into
3449
-
description: Configures where the descriptor should be set on the HTTP requests. Note that request parameters that are already encoded in the URL path will not be duplicated.
3450
-
enum:
3451
-
- request_parameter
3452
-
- header
3453
-
- body_data
3454
-
- body_json
3455
-
examples:
3456
-
- request_parameter
3457
-
- header
3458
-
- body_data
3459
-
- body_json
3460
3460
Schemas:
3461
3461
title: Schemas
3462
3462
description: The stream schemas representing the shape of the data emitted by the stream.
description="When the token updater is defined, new refresh tokens, access tokens and the access token expiry date are written back from the authentication response to the config object. This is important if the refresh token can only used once.",
641
-
title="Token Updater",
640
+
description="When the refresh token updater is defined, new refresh tokens, access tokens and the access token expiry date are written back from the authentication response to the config object. This is important if the refresh token can only used once.",
description="Configures where the descriptor should be set on the HTTP requests. Note that request parameters that are already encoded in the URL path will not be duplicated.",
description="Configures which key should be used in the location that the descriptor is being injected into. We hope to eventually deprecate this field in favor of `field_path` for all request_options, but must currently maintain it for backwards compatibility in the Builder.",
@@ -1319,12 +1325,6 @@ class RequestOption(BaseModel):
1319
1325
examples=[["data", "viewer", "id"]],
1320
1326
title="Field Path",
1321
1327
)
1322
-
inject_into: InjectInto=Field(
1323
-
...,
1324
-
description="Configures where the descriptor should be set on the HTTP requests. Note that request parameters that are already encoded in the URL path will not be duplicated.",
0 commit comments