Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions workos/types/sso/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
"PingFederateSAML",
"PingOneSAML",
"RipplingSAML",
"SalesforceOAuth",
"SalesforceSAML",
"ShibbolethGenericSAML",
"ShibbolethSAML",
Expand Down
1 change: 1 addition & 0 deletions workos/types/sso/sso_provider_type.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@
"GitHubOAuth",
"GoogleOAuth",
"MicrosoftOAuth",
"SalesforceOAuth",
]
1 change: 1 addition & 0 deletions workos/types/user_management/authentication_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"GitHubOAuth",
"GoogleOAuth",
"MicrosoftOAuth",
"SalesforceOAuth",
"MagicAuth",
"Impersonation",
]
Expand Down
1 change: 1 addition & 0 deletions workos/types/user_management/oauth_tokens.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"GitHubOauth",
"GoogleOauth",
"MicrosoftOauth",
"SalesforceOauth",
Comment thread
antn marked this conversation as resolved.
]


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,10 @@


UserManagementProviderType = Literal[
"authkit", "AppleOAuth", "GitHubOAuth", "GoogleOAuth", "MicrosoftOAuth"
"authkit",
"AppleOAuth",
"GitHubOAuth",
"GoogleOAuth",
"MicrosoftOAuth",
"SalesforceOAuth",
]
2 changes: 1 addition & 1 deletion workos/user_management.py
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ def get_authorization_url(
organization_id (str): The organization_id connection selector is used to initiate SSO for an Organization.
The value of this parameter should be a WorkOS Organization ID. (Optional)
provider (UserManagementProviderType): The provider connection selector is used to initiate SSO using an OAuth-compatible provider.
Currently, the supported values for provider are 'authkit', 'AppleOAuth', 'GitHubOAuth, 'GoogleOAuth', and 'MicrosoftOAuth'. (Optional)
Currently, the supported values for provider are 'authkit', 'AppleOAuth', 'GitHubOAuth, 'GoogleOAuth', 'MicrosoftOAuth', and 'SalesforceOAuth'. (Optional)
provider_scopes (Sequence[str]): Can be used to specify additional scopes that will be requested when initiating SSO using an OAuth provider. (Optional)
domain_hint (str): Can be used to pre-fill the domain field when initiating authentication with Microsoft OAuth,
or with a GoogleSAML connection type. (Optional)
Expand Down