workos 5.21.0__tar.gz → 5.23.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {workos-5.21.0 → workos-5.23.0}/PKG-INFO +1 -1
- {workos-5.21.0 → workos-5.23.0}/tests/test_user_management.py +23 -0
- {workos-5.21.0 → workos-5.23.0}/workos/__about__.py +1 -1
- {workos-5.21.0 → workos-5.23.0}/workos/user_management.py +10 -0
- {workos-5.21.0 → workos-5.23.0}/workos.egg-info/PKG-INFO +1 -1
- {workos-5.21.0 → workos-5.23.0}/LICENSE +0 -0
- {workos-5.21.0 → workos-5.23.0}/README.md +0 -0
- {workos-5.21.0 → workos-5.23.0}/setup.cfg +0 -0
- {workos-5.21.0 → workos-5.23.0}/setup.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/tests/test_async_http_client.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/tests/test_audit_logs.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/tests/test_client.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/tests/test_directory_sync.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/tests/test_events.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/tests/test_fga.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/tests/test_mfa.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/tests/test_organizations.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/tests/test_passwordless.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/tests/test_portal.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/tests/test_session.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/tests/test_sso.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/tests/test_sync_http_client.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/tests/test_webhooks.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/tests/test_widgets.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/__init__.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/_base_client.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/_client_configuration.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/async_client.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/audit_logs.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/client.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/directory_sync.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/events.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/exceptions.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/fga.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/mfa.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/organizations.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/passwordless.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/portal.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/py.typed +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/session.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/sso.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/__init__.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/audit_logs/__init__.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/audit_logs/audit_log_event.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/audit_logs/audit_log_event_actor.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/audit_logs/audit_log_event_context.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/audit_logs/audit_log_event_target.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/audit_logs/audit_log_export.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/audit_logs/audit_log_metadata.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/directory_sync/__init__.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/directory_sync/directory.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/directory_sync/directory_group.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/directory_sync/directory_state.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/directory_sync/directory_type.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/directory_sync/directory_user.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/directory_sync/list_filters.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/events/__init__.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/events/authentication_payload.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/events/connection_payload_with_legacy_fields.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/events/directory_group_membership_payload.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/events/directory_group_with_previous_attributes.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/events/directory_payload.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/events/directory_payload_with_legacy_fields.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/events/directory_user_with_previous_attributes.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/events/event.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/events/event_model.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/events/event_type.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/events/list_filters.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/events/organization_domain_verification_failed_payload.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/events/previous_attributes.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/events/session_created_payload.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/fga/__init__.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/fga/authorization_resource_types.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/fga/authorization_resources.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/fga/check.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/fga/list_filters.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/fga/warnings.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/fga/warrant.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/list_resource.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/metadata.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/mfa/__init__.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/mfa/authentication_challenge.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/mfa/authentication_challenge_verification_response.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/mfa/authentication_factor.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/mfa/authentication_factor_totp_and_challenge_response.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/mfa/enroll_authentication_factor_type.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/organizations/__init__.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/organizations/domain_data_input.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/organizations/list_filters.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/organizations/organization.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/organizations/organization_common.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/organizations/organization_domain.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/passwordless/__init__.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/passwordless/passwordless_session.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/passwordless/passwordless_session_type.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/portal/__init__.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/portal/portal_link.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/portal/portal_link_intent.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/portal/portal_link_intent_options.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/roles/__init__.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/roles/role.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/sso/__init__.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/sso/connection.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/sso/connection_domain.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/sso/profile.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/sso/sso_provider_type.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/user_management/__init__.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/user_management/authenticate_with_common.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/user_management/authentication_response.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/user_management/email_verification.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/user_management/impersonator.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/user_management/invitation.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/user_management/list_filters.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/user_management/magic_auth.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/user_management/oauth_tokens.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/user_management/organization_membership.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/user_management/password_hash_type.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/user_management/password_reset.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/user_management/screen_hint.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/user_management/session.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/user_management/user.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/user_management/user_management_provider_type.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/webhooks/__init__.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/webhooks/webhook.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/webhooks/webhook_model.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/webhooks/webhook_payload.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/widgets/__init__.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/widgets/widget_scope.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/widgets/widget_token_response.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/types/workos_model.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/typing/__init__.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/typing/literals.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/typing/sync_or_async.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/typing/untyped_literal.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/typing/webhooks.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/utils/__init__.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/utils/_base_http_client.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/utils/http_client.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/utils/pagination_order.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/utils/request_helper.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/webhooks.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos/widgets.py +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos.egg-info/SOURCES.txt +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos.egg-info/dependency_links.txt +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos.egg-info/not-zip-safe +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos.egg-info/requires.txt +0 -0
- {workos-5.21.0 → workos-5.23.0}/workos.egg-info/top_level.txt +0 -0
|
@@ -344,6 +344,29 @@ class TestUserManagementBase(UserManagementFixtures):
|
|
|
344
344
|
"provider": "authkit",
|
|
345
345
|
}
|
|
346
346
|
|
|
347
|
+
def test_authorization_url_has_expected_query_params_with_provider_scopes(self):
|
|
348
|
+
provider = "GoogleOAuth"
|
|
349
|
+
provider_scopes = [
|
|
350
|
+
"https://www.googleapis.com/auth/calendar",
|
|
351
|
+
"https://www.googleapis.com/auth/admin.directory.group",
|
|
352
|
+
]
|
|
353
|
+
redirect_uri = "https://localhost/auth/callback"
|
|
354
|
+
authorization_url = self.user_management.get_authorization_url(
|
|
355
|
+
provider=provider,
|
|
356
|
+
provider_scopes=provider_scopes,
|
|
357
|
+
redirect_uri=redirect_uri,
|
|
358
|
+
)
|
|
359
|
+
|
|
360
|
+
parsed_url = urlparse(authorization_url)
|
|
361
|
+
assert parsed_url.path == "/user_management/authorize"
|
|
362
|
+
assert dict(parse_qsl(str(parsed_url.query))) == {
|
|
363
|
+
"provider": provider,
|
|
364
|
+
"provider_scopes": ",".join(provider_scopes),
|
|
365
|
+
"client_id": self.http_client.client_id,
|
|
366
|
+
"redirect_uri": redirect_uri,
|
|
367
|
+
"response_type": RESPONSE_TYPE_CODE,
|
|
368
|
+
}
|
|
369
|
+
|
|
347
370
|
def test_get_jwks_url(self):
|
|
348
371
|
expected = "%ssso/jwks/%s" % (
|
|
349
372
|
self.http_client.base_url,
|
|
@@ -207,6 +207,7 @@ class UserManagementModule(Protocol):
|
|
|
207
207
|
self,
|
|
208
208
|
*,
|
|
209
209
|
user_id: str,
|
|
210
|
+
email: Optional[str] = None,
|
|
210
211
|
first_name: Optional[str] = None,
|
|
211
212
|
last_name: Optional[str] = None,
|
|
212
213
|
email_verified: Optional[bool] = None,
|
|
@@ -222,6 +223,7 @@ class UserManagementModule(Protocol):
|
|
|
222
223
|
user_id (str): The User unique identifier
|
|
223
224
|
first_name (str): The user's first name. (Optional)
|
|
224
225
|
last_name (str): The user's last name. (Optional)
|
|
226
|
+
email (str): The user's email. (Optional)
|
|
225
227
|
email_verified (bool): Whether the user's email address was previously verified. (Optional)
|
|
226
228
|
password (str): The password to set for the user. (Optional)
|
|
227
229
|
password_hash (str): The hashed password to set for the user, used when migrating from another user store. Mutually exclusive with password. (Optional)
|
|
@@ -356,6 +358,7 @@ class UserManagementModule(Protocol):
|
|
|
356
358
|
login_hint: Optional[str] = None,
|
|
357
359
|
state: Optional[str] = None,
|
|
358
360
|
provider: Optional[UserManagementProviderType] = None,
|
|
361
|
+
provider_scopes: Optional[Sequence[str]] = None,
|
|
359
362
|
connection_id: Optional[str] = None,
|
|
360
363
|
organization_id: Optional[str] = None,
|
|
361
364
|
code_challenge: Optional[str] = None,
|
|
@@ -377,6 +380,7 @@ class UserManagementModule(Protocol):
|
|
|
377
380
|
The value of this parameter should be a WorkOS Organization ID. (Optional)
|
|
378
381
|
provider (UserManagementProviderType): The provider connection selector is used to initiate SSO using an OAuth-compatible provider.
|
|
379
382
|
Currently, the supported values for provider are 'authkit', 'AppleOAuth', 'GitHubOAuth, 'GoogleOAuth', and 'MicrosoftOAuth'. (Optional)
|
|
383
|
+
provider_scopes (Sequence[str]): Can be used to specify additional scopes that will be requested when initiating SSO using an OAuth provider. (Optional)
|
|
380
384
|
domain_hint (str): Can be used to pre-fill the domain field when initiating authentication with Microsoft OAuth,
|
|
381
385
|
or with a GoogleSAML connection type. (Optional)
|
|
382
386
|
login_hint (str): Can be used to pre-fill the username/email address field of the IdP sign-in page for the user,
|
|
@@ -410,6 +414,8 @@ class UserManagementModule(Protocol):
|
|
|
410
414
|
params["organization_id"] = organization_id
|
|
411
415
|
if provider is not None:
|
|
412
416
|
params["provider"] = provider
|
|
417
|
+
if provider_scopes is not None:
|
|
418
|
+
params["provider_scopes"] = ",".join(provider_scopes)
|
|
413
419
|
if domain_hint is not None:
|
|
414
420
|
params["domain_hint"] = domain_hint
|
|
415
421
|
if login_hint is not None:
|
|
@@ -949,6 +955,7 @@ class UserManagement(UserManagementModule):
|
|
|
949
955
|
user_id: str,
|
|
950
956
|
first_name: Optional[str] = None,
|
|
951
957
|
last_name: Optional[str] = None,
|
|
958
|
+
email: Optional[str] = None,
|
|
952
959
|
email_verified: Optional[bool] = None,
|
|
953
960
|
password: Optional[str] = None,
|
|
954
961
|
password_hash: Optional[str] = None,
|
|
@@ -959,6 +966,7 @@ class UserManagement(UserManagementModule):
|
|
|
959
966
|
json = {
|
|
960
967
|
"first_name": first_name,
|
|
961
968
|
"last_name": last_name,
|
|
969
|
+
"email": email,
|
|
962
970
|
"email_verified": email_verified,
|
|
963
971
|
"password": password,
|
|
964
972
|
"password_hash": password_hash,
|
|
@@ -1574,6 +1582,7 @@ class AsyncUserManagement(UserManagementModule):
|
|
|
1574
1582
|
user_id: str,
|
|
1575
1583
|
first_name: Optional[str] = None,
|
|
1576
1584
|
last_name: Optional[str] = None,
|
|
1585
|
+
email: Optional[str] = None,
|
|
1577
1586
|
email_verified: Optional[bool] = None,
|
|
1578
1587
|
password: Optional[str] = None,
|
|
1579
1588
|
password_hash: Optional[str] = None,
|
|
@@ -1584,6 +1593,7 @@ class AsyncUserManagement(UserManagementModule):
|
|
|
1584
1593
|
json = {
|
|
1585
1594
|
"first_name": first_name,
|
|
1586
1595
|
"last_name": last_name,
|
|
1596
|
+
"email": email,
|
|
1587
1597
|
"email_verified": email_verified,
|
|
1588
1598
|
"password": password,
|
|
1589
1599
|
"password_hash": password_hash,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{workos-5.21.0 → workos-5.23.0}/workos/types/events/connection_payload_with_legacy_fields.py
RENAMED
|
File without changes
|
|
File without changes
|
{workos-5.21.0 → workos-5.23.0}/workos/types/events/directory_group_with_previous_attributes.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{workos-5.21.0 → workos-5.23.0}/workos/types/events/directory_user_with_previous_attributes.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{workos-5.21.0 → workos-5.23.0}/workos/types/mfa/authentication_challenge_verification_response.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{workos-5.21.0 → workos-5.23.0}/workos/types/user_management/user_management_provider_type.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|