Skip to content

Commit 6991d8d

Browse files
committed
poe assemble and format
1 parent ba4d57f commit 6991d8d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

airbyte_cdk/sources/declarative/models/declarative_component_schema.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -477,19 +477,19 @@ class RefreshTokenUpdater(BaseModel):
477477
title="Refresh Token Property Name",
478478
)
479479
access_token_config_path: Optional[List[str]] = Field(
480-
["credentials", "access_token"],
480+
["access_token"],
481481
description="Config path to the access token. Make sure the field actually exists in the config.",
482482
examples=[["credentials", "access_token"], ["access_token"]],
483483
title="Config Path To Access Token",
484484
)
485485
refresh_token_config_path: Optional[List[str]] = Field(
486-
["credentials", "refresh_token"],
486+
["refresh_token"],
487487
description="Config path to the access token. Make sure the field actually exists in the config.",
488488
examples=[["credentials", "refresh_token"], ["refresh_token"]],
489489
title="Config Path To Refresh Token",
490490
)
491491
token_expiry_date_config_path: Optional[List[str]] = Field(
492-
["credentials", "token_expiry_date"],
492+
["token_expiry_date"],
493493
description="Config path to the expiry date. Make sure actually exists in the config.",
494494
examples=[["credentials", "token_expiry_date"]],
495495
title="Config Path To Expiry Date",
@@ -637,8 +637,8 @@ class OAuthAuthenticator(BaseModel):
637637
)
638638
refresh_token_updater: Optional[RefreshTokenUpdater] = Field(
639639
None,
640-
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.",
641+
title="Refresh Token Updater",
642642
)
643643
profile_assertion: Optional[JwtAuthenticator] = Field(
644644
None,

0 commit comments

Comments
 (0)