auth0-python 6.2.0__tar.gz → 6.3.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.
- {auth0_python-6.2.0 → auth0_python-6.3.0}/PKG-INFO +1 -1
- {auth0_python-6.2.0 → auth0_python-6.3.0}/pyproject.toml +1 -1
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/__init__.py +36 -4
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/clients/client.py +4 -4
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/clients/raw_client.py +4 -4
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/connection_profiles/client.py +17 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/connection_profiles/raw_client.py +33 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/connections/client.py +2 -2
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/connections/raw_client.py +2 -2
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/flows/executions/raw_client.py +45 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/flows/raw_client.py +45 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/forms/raw_client.py +56 -12
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/keys/network_acls/client.py +134 -0
- auth0_python-6.3.0/src/auth0/management/keys/network_acls/raw_client.py +654 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/self_service_profiles/raw_client.py +2 -2
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/__init__.py +50 -0
- auth0_python-6.3.0/src/auth0/management/types/client_my_organization_configuration_third_party_client_access_allowed_values_enum.py +7 -0
- auth0_python-6.3.0/src/auth0/management/types/client_my_organization_configuration_third_party_client_access_default_value_enum.py +7 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_my_organization_patch_configuration.py +4 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_my_organization_post_configuration.py +4 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_my_organization_response_configuration.py +4 -0
- auth0_python-6.3.0/src/auth0/management/types/client_my_organization_third_party_client_access_configuration.py +35 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_common_oidc.py +8 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_profile.py +2 -0
- auth0_python-6.3.0/src/auth0/management/types/connection_profile_cross_app_access_resource_app.py +24 -0
- auth0_python-6.3.0/src/auth0/management/types/connection_profile_cross_app_access_resource_app_status.py +30 -0
- auth0_python-6.3.0/src/auth0/management/types/connection_profile_cross_app_access_resource_app_status_allowed_values_enum.py +14 -0
- auth0_python-6.3.0/src/auth0/management/types/connection_profile_cross_app_access_resource_app_status_default_value_enum.py +7 -0
- auth0_python-6.3.0/src/auth0/management/types/connection_profile_cross_app_access_resource_app_status_value_enum.py +7 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_properties_options.py +6 -0
- auth0_python-6.3.0/src/auth0/management/types/connection_use_oauth_spec_scope.py +6 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_profile_response_content.py +2 -0
- auth0_python-6.3.0/src/auth0/management/types/get_all_keys_network_acls_response_content.py +23 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_connection_profile_response_content.py +2 -0
- auth0_python-6.3.0/src/auth0/management/types/network_acl_key.py +44 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/network_acl_rule.py +2 -0
- auth0_python-6.3.0/src/auth0/management/types/network_acl_rule_match_all_enum.py +6 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/oauth_scope.py +1 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_options.py +6 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_profile_response_content.py +2 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/user_attribute_profiles/raw_client.py +2 -2
- auth0_python-6.2.0/src/auth0/management/keys/network_acls/raw_client.py +0 -266
- {auth0_python-6.2.0 → auth0_python-6.3.0}/LICENSE +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/README.md +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/authentication/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/authentication/async_token_verifier.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/authentication/back_channel_login.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/authentication/base.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/authentication/client_authentication.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/authentication/database.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/authentication/delegated.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/authentication/enterprise.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/authentication/exceptions.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/authentication/get_token.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/authentication/passwordless.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/authentication/pushed_authorization_requests.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/authentication/rest.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/authentication/rest_async.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/authentication/revoke_token.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/authentication/social.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/authentication/token_verifier.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/authentication/types.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/authentication/users.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/_default_clients.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/actions/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/actions/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/actions/executions/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/actions/executions/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/actions/executions/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/actions/modules/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/actions/modules/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/actions/modules/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/actions/modules/versions/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/actions/modules/versions/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/actions/modules/versions/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/actions/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/actions/triggers/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/actions/triggers/bindings/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/actions/triggers/bindings/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/actions/triggers/bindings/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/actions/triggers/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/actions/triggers/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/actions/versions/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/actions/versions/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/actions/versions/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/agents/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/agents/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/agents/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/anomaly/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/anomaly/blocks/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/anomaly/blocks/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/anomaly/blocks/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/anomaly/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/anomaly/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/attack_protection/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/attack_protection/bot_detection/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/attack_protection/bot_detection/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/attack_protection/bot_detection/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/attack_protection/breached_password_detection/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/attack_protection/breached_password_detection/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/attack_protection/breached_password_detection/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/attack_protection/brute_force_protection/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/attack_protection/brute_force_protection/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/attack_protection/brute_force_protection/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/attack_protection/captcha/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/attack_protection/captcha/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/attack_protection/captcha/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/attack_protection/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/attack_protection/phone_provider_protection/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/attack_protection/phone_provider_protection/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/attack_protection/phone_provider_protection/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/attack_protection/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/attack_protection/suspicious_ip_throttling/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/attack_protection/suspicious_ip_throttling/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/attack_protection/suspicious_ip_throttling/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/branding/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/branding/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/branding/phone/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/branding/phone/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/branding/phone/providers/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/branding/phone/providers/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/branding/phone/providers/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/branding/phone/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/branding/phone/templates/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/branding/phone/templates/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/branding/phone/templates/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/branding/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/branding/templates/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/branding/templates/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/branding/templates/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/branding/themes/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/branding/themes/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/branding/themes/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/client_grants/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/client_grants/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/client_grants/organizations/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/client_grants/organizations/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/client_grants/organizations/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/client_grants/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/clients/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/clients/connections/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/clients/connections/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/clients/connections/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/clients/credentials/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/clients/credentials/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/clients/credentials/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/connection_profiles/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/connections/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/connections/clients/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/connections/clients/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/connections/clients/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/connections/directory_provisioning/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/connections/directory_provisioning/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/connections/directory_provisioning/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/connections/directory_provisioning/synchronizations/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/connections/directory_provisioning/synchronizations/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/connections/directory_provisioning/synchronizations/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/connections/keys/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/connections/keys/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/connections/keys/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/connections/scim_configuration/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/connections/scim_configuration/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/connections/scim_configuration/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/connections/scim_configuration/tokens/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/connections/scim_configuration/tokens/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/connections/scim_configuration/tokens/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/connections/users/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/connections/users/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/connections/users/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/core/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/core/api_error.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/core/client_wrapper.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/core/datetime_utils.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/core/file.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/core/force_multipart.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/core/http_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/core/http_response.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/core/http_sse/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/core/http_sse/_api.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/core/http_sse/_decoders.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/core/http_sse/_exceptions.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/core/http_sse/_models.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/core/jsonable_encoder.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/core/logging.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/core/pagination.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/core/parse_error.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/core/pydantic_utilities.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/core/query_encoder.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/core/remove_none_from_dict.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/core/request_options.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/core/serialization.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/custom_domains/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/custom_domains/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/custom_domains/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/device_credentials/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/device_credentials/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/device_credentials/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/email_templates/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/email_templates/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/email_templates/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/emails/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/emails/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/emails/provider/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/emails/provider/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/emails/provider/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/emails/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/environment.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/errors/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/errors/bad_request_error.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/errors/conflict_error.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/errors/content_too_large_error.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/errors/forbidden_error.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/errors/gone_error.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/errors/internal_server_error.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/errors/not_found_error.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/errors/payment_required_error.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/errors/precondition_failed_error.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/errors/service_unavailable_error.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/errors/too_many_requests_error.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/errors/unauthorized_error.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/event_streams/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/event_streams/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/event_streams/deliveries/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/event_streams/deliveries/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/event_streams/deliveries/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/event_streams/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/event_streams/redeliveries/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/event_streams/redeliveries/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/event_streams/redeliveries/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/event_streams/types/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/event_streams/types/event_streams_create_request.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/events/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/events/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/events/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/flows/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/flows/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/flows/executions/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/flows/executions/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/flows/vault/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/flows/vault/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/flows/vault/connections/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/flows/vault/connections/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/flows/vault/connections/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/flows/vault/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/forms/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/forms/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/groups/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/groups/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/groups/members/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/groups/members/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/groups/members/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/groups/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/groups/roles/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/groups/roles/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/groups/roles/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/guardian/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/guardian/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/guardian/enrollments/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/guardian/enrollments/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/guardian/enrollments/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/guardian/factors/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/guardian/factors/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/guardian/factors/duo/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/guardian/factors/duo/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/guardian/factors/duo/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/guardian/factors/duo/settings/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/guardian/factors/duo/settings/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/guardian/factors/duo/settings/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/guardian/factors/phone/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/guardian/factors/phone/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/guardian/factors/phone/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/guardian/factors/push_notification/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/guardian/factors/push_notification/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/guardian/factors/push_notification/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/guardian/factors/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/guardian/factors/sms/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/guardian/factors/sms/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/guardian/factors/sms/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/guardian/policies/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/guardian/policies/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/guardian/policies/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/guardian/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/hooks/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/hooks/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/hooks/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/hooks/secrets/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/hooks/secrets/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/hooks/secrets/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/jobs/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/jobs/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/jobs/errors/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/jobs/errors/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/jobs/errors/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/jobs/errors/types/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/jobs/errors/types/errors_get_response.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/jobs/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/jobs/users_exports/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/jobs/users_exports/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/jobs/users_exports/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/jobs/users_imports/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/jobs/users_imports/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/jobs/users_imports/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/jobs/verification_email/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/jobs/verification_email/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/jobs/verification_email/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/keys/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/keys/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/keys/custom_signing/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/keys/custom_signing/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/keys/custom_signing/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/keys/encryption/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/keys/encryption/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/keys/encryption/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/keys/network_acls/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/keys/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/keys/signing/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/keys/signing/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/keys/signing/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/log_streams/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/log_streams/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/log_streams/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/logs/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/logs/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/logs/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/management_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/network_acls/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/network_acls/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/network_acls/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/client_grants/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/client_grants/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/client_grants/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/clients/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/clients/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/clients/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/connections/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/connections/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/connections/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/discovery_domains/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/discovery_domains/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/discovery_domains/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/enabled_connections/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/enabled_connections/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/enabled_connections/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/groups/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/groups/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/groups/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/groups/roles/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/groups/roles/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/groups/roles/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/invitations/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/invitations/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/invitations/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/members/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/members/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/members/effective_roles/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/members/effective_roles/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/members/effective_roles/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/members/effective_roles/sources/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/members/effective_roles/sources/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/members/effective_roles/sources/groups/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/members/effective_roles/sources/groups/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/members/effective_roles/sources/groups/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/members/effective_roles/sources/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/members/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/members/roles/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/members/roles/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/members/roles/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/roles/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/roles/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/roles/groups/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/roles/groups/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/roles/groups/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/roles/members/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/roles/members/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/roles/members/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/organizations/roles/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/prompts/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/prompts/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/prompts/custom_text/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/prompts/custom_text/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/prompts/custom_text/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/prompts/partials/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/prompts/partials/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/prompts/partials/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/prompts/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/prompts/rendering/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/prompts/rendering/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/prompts/rendering/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/py.typed +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/rate_limit_policies/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/rate_limit_policies/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/rate_limit_policies/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/refresh_tokens/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/refresh_tokens/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/refresh_tokens/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/resource_servers/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/resource_servers/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/resource_servers/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/risk_assessments/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/risk_assessments/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/risk_assessments/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/risk_assessments/settings/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/risk_assessments/settings/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/risk_assessments/settings/new_device/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/risk_assessments/settings/new_device/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/risk_assessments/settings/new_device/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/risk_assessments/settings/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/roles/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/roles/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/roles/groups/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/roles/groups/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/roles/groups/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/roles/permissions/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/roles/permissions/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/roles/permissions/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/roles/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/roles/users/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/roles/users/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/roles/users/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/rules/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/rules/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/rules/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/rules_configs/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/rules_configs/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/rules_configs/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/self_service_profiles/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/self_service_profiles/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/self_service_profiles/custom_text/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/self_service_profiles/custom_text/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/self_service_profiles/custom_text/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/self_service_profiles/sso_ticket/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/self_service_profiles/sso_ticket/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/self_service_profiles/sso_ticket/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/sessions/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/sessions/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/sessions/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/stats/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/stats/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/stats/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/supplemental_signals/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/supplemental_signals/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/supplemental_signals/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/tenants/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/tenants/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/tenants/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/tenants/settings/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/tenants/settings/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/tenants/settings/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/tickets/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/tickets/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/tickets/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/token_exchange_profiles/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/token_exchange_profiles/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/token_exchange_profiles/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/token_provider.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/action_base.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/action_binding.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/action_binding_ref.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/action_binding_ref_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/action_binding_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/action_binding_with_ref.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/action_build_status_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/action_deployed_version.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/action_error.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/action_execution_result.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/action_execution_status_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/action_module_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/action_module_dependency.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/action_module_dependency_request.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/action_module_list_item.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/action_module_reference.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/action_module_secret.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/action_module_secret_request.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/action_module_version.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/action_module_version_reference.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/action_secret_request.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/action_secret_response.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/action_trigger.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/action_trigger_compatible_trigger.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/action_trigger_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/action_version.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/action_version_build_status_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/action_version_dependency.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/acul_client_filter.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/acul_client_filter_by_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/acul_client_filter_by_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/acul_client_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/acul_configs.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/acul_configs_item.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/acul_context_configuration.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/acul_context_configuration_item.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/acul_context_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/acul_domain_filter.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/acul_domain_filter_by_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/acul_domain_filter_by_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/acul_domain_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/acul_filters.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/acul_head_tag.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/acul_head_tag_attributes.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/acul_head_tag_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/acul_match_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/acul_organization_filter.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/acul_organization_filter_by_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/acul_organization_filter_by_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/acul_organization_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/acul_rendering_mode_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/add_organization_connection_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/agent_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/agent_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/anomaly_ip_format.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/app_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/assessors_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/associate_organization_client_grant_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/async_approval_notifications_channels_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/attack_protection_captcha_arkose_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/attack_protection_captcha_auth_challenge_request.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/attack_protection_captcha_auth_challenge_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/attack_protection_captcha_friendly_captcha_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/attack_protection_captcha_hcaptcha_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/attack_protection_captcha_provider_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/attack_protection_captcha_recaptcha_enterprise_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/attack_protection_captcha_recaptcha_v_2_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/attack_protection_captcha_simple_captcha_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/attack_protection_update_captcha_arkose.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/attack_protection_update_captcha_friendly_captcha.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/attack_protection_update_captcha_hcaptcha.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/attack_protection_update_captcha_recaptcha_enterprise.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/attack_protection_update_captcha_recaptcha_v_2.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/authentication_method_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/authentication_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/bad_request_schema.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/bad_request_schema_error.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/bot_detection_allowlist.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/bot_detection_challenge_policy_password_flow_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/bot_detection_challenge_policy_password_reset_flow_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/bot_detection_challenge_policy_passwordless_flow_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/bot_detection_cidr_block.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/bot_detection_i_pv_4.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/bot_detection_i_pv_6.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/bot_detection_i_pv_6_cidr_block.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/bot_detection_ip_address_or_cidr_block.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/bot_detection_level_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/bot_detection_monitoring_mode_enabled.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/branding_colors.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/branding_font.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/branding_page_background.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/branding_theme_borders.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/branding_theme_borders_buttons_style_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/branding_theme_borders_inputs_style_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/branding_theme_colors.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/branding_theme_colors_captcha_widget_theme_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/branding_theme_font_body_text.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/branding_theme_font_buttons_text.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/branding_theme_font_input_labels.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/branding_theme_font_links.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/branding_theme_font_links_style_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/branding_theme_font_subtitle.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/branding_theme_font_title.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/branding_theme_fonts.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/branding_theme_identifiers.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/branding_theme_identifiers_login_display_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/branding_theme_identifiers_phone_display.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/branding_theme_identifiers_phone_display_formatting_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/branding_theme_identifiers_phone_display_masking_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/branding_theme_page_background.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/branding_theme_page_background_page_layout_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/branding_theme_widget.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/branding_theme_widget_header_text_alignment_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/branding_theme_widget_logo_position_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/branding_theme_widget_social_buttons_layout_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/breached_password_detection_admin_notification_frequency_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/breached_password_detection_method_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/breached_password_detection_pre_change_password_shields_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/breached_password_detection_pre_change_password_stage.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/breached_password_detection_pre_user_registration_shields_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/breached_password_detection_pre_user_registration_stage.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/breached_password_detection_shields_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/breached_password_detection_stage.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/brute_force_protection_mode_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/brute_force_protection_shields_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/bulk_update_acul_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/certificate_subject_dn_credential.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/certificate_subject_dn_credential_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/change_password_ticket_identity.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/change_password_ticket_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/cimd_mapped_client_authentication_methods.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/cimd_mapped_client_authentication_methods_private_key_jwt.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/cimd_mapped_client_fields.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/cimd_mapped_private_key_jwt_credential.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/cimd_validation_result.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_addon_aws.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_addon_azure_blob.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_addon_azure_sb.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_addon_box.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_addon_cloud_bees.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_addon_concur.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_addon_dropbox.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_addon_echo_sign.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_addon_egnyte.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_addon_firebase.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_addon_layer.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_addon_mscrm.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_addon_new_relic.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_addon_oag.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_addon_office_365.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_addon_rms.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_addon_salesforce.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_addon_salesforce_api.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_addon_salesforce_sandbox_api.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_addon_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_addon_saml_mapping.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_addon_sapapi.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_addon_sentry.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_addon_share_point.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_addon_share_point_external_url.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_addon_slack.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_addon_spring_cm.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_addon_sso_integration.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_addon_wams.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_addon_ws_fed.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_addon_zendesk.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_addon_zoom.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_addons.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_app_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_async_approval_notifications_channels_api_patch_configuration.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_async_approval_notifications_channels_api_post_configuration.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_authentication_method.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_authentication_method_private_key_jwt.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_authentication_method_private_key_jwt_credentials.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_authentication_method_self_signed_tls_client_auth.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_authentication_method_self_signed_tls_client_auth_credentials.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_authentication_method_tls_client_auth.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_authentication_method_tls_client_auth_credentials.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_compliance_level_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_create_authentication_method.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_create_authentication_method_private_key_jwt.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_create_authentication_method_private_key_jwt_credentials.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_create_authentication_method_tls_client_auth.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_create_authentication_method_tls_client_auth_credentials.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_credential.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_credential_algorithm_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_credential_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_default_organization.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_default_organization_flows_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_encryption_key.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_external_metadata_created_by_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_external_metadata_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_grant_allow_any_organization_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_grant_default_for_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_grant_organization_nullable_usage_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_grant_organization_usage_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_grant_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_grant_subject_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_jwt_configuration.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_jwt_configuration_scopes.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_mobile.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_mobile_android.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_mobilei_os.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_my_organization_configuration_allowed_strategies_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_my_organization_deletion_behavior_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_oidc_backchannel_logout_initiators.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_oidc_backchannel_logout_initiators_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_oidc_backchannel_logout_initiators_mode_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_oidc_backchannel_logout_session_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_oidc_backchannel_logout_settings.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_organization_discovery_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_organization_require_behavior_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_organization_require_behavior_patch_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_organization_usage_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_organization_usage_patch_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_redirection_policy_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_refresh_token_configuration.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_refresh_token_policy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_session_transfer_allowed_authentication_methods_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_session_transfer_configuration.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_session_transfer_delegation_configuration.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_session_transfer_delegation_device_binding_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_session_transfer_device_binding_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_signed_request_object_with_credential_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_signed_request_object_with_public_key.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_signing_key.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_signing_keys.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_third_party_security_mode_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_token_endpoint_auth_method_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_token_endpoint_auth_method_or_null_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_token_exchange_configuration.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_token_exchange_configuration_or_null.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_token_exchange_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_token_vault_privileged_access_with_credential_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/client_token_vault_privileged_access_with_public_key.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/conflict_schema.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/conflict_schema_error.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connected_account.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connected_account_access_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_access_token_urlo_auth_1.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_acr_values_supported.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_admin_access_token_expires_in_google_apps.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_admin_access_token_google_apps.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_admin_refresh_token_google_apps.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_agent_ipad.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_agent_mode_ad.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_agent_version_ad.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_allowed_audiences_google_o_auth_2.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_api_behavior_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_api_enable_groups.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_api_enable_groups_google_apps.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_api_enable_users.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_api_enable_users_google_apps.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_app_domain_azure_ad.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_assertion_decryption_algorithm_profile_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_assertion_decryption_settings.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_attribute_map_attributes.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_attribute_map_oidc.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_attribute_map_okta.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_attribute_map_userinfo_scope.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_attributes.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_auth_params_additional_properties_o_auth_2.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_auth_params_email.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_auth_params_map.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_auth_params_o_auth_2.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_authentication_methods.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_authentication_purpose.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_authorization_endpoint.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_base_url_exact.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_brute_force_protection.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_calculated_thumbprint_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_certs_ad.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_claim_types_supported.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_claims_locales_supported.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_claims_parameter_supported.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_claims_supported.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_client_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_client_id_amazon.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_client_id_azure_ad.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_client_id_bitbucket.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_client_id_exact.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_client_id_facebook.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_client_id_google_apps.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_client_id_google_o_auth_2.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_client_id_line.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_client_id_linkedin.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_client_id_o_auth_1.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_client_id_o_auth_2.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_client_id_oidc.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_client_id_paypal.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_client_id_salesforce.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_client_id_windows_live.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_client_protocol_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_client_secret.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_client_secret_amazon.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_client_secret_azure_ad.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_client_secret_bitbucket.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_client_secret_exact.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_client_secret_facebook.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_client_secret_google_apps.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_client_secret_google_o_auth_2.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_client_secret_line.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_client_secret_linkedin.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_client_secret_o_auth_1.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_client_secret_o_auth_2.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_client_secret_oidc.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_client_secret_paypal.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_client_secret_salesforce.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_client_secret_windows_live.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_common.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_community_base_url_salesforce.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_configuration.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_connected_accounts_purpose.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_connected_accounts_purpose_xaa.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_connection_settings.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_connection_settings_pkce_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_cross_app_access_resource_app.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_cross_app_access_resource_app_status_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_custom_headers_o_auth_2.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_custom_scripts.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_debug_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_decryption_key_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_decryption_key_saml_cert.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_destination_url_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_digest_algorithm_enum_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_digest_algorithm_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_disable_self_service_change_password.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_disable_signup.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_disable_signup_sms.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_discovery_url.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_display_name.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_display_values_supported.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_domain_aliases.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_domain_aliases_ad.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_domain_aliases_azure_ad.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_domain_aliases_items_one.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_domain_aliases_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_domain_google_apps.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_domain_okta.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_dpop_signing_alg_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_dpop_signing_alg_values_supported.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_email_body_email.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_email_email.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_email_email_syntax.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_email_from_email.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_email_otp_authentication_method.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_email_subject_email.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_enable_script_context.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_enabled_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_enabled_clients.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_enabled_database_customization.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_end_session_endpoint.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_entity_id_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_ext_admin.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_ext_agreed_terms.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_ext_agreed_terms_google_apps.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_ext_assigned_plans.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_ext_groups.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_ext_groups_azure_ad.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_ext_groups_google_apps.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_ext_is_admin_google_apps.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_ext_is_suspended.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_ext_is_suspended_google_apps.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_ext_profile.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_fields_map.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_fields_map_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_fields_map_saml_value.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_for_list.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_for_organization.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_forward_req_info_sms.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_freeform_scopes_amazon.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_freeform_scopes_google_o_auth_2.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_freeform_scopes_linkedin.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_freeform_scopes_paypal.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_freeform_scopes_salesforce.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_freeform_scopes_windows_live.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_from_sms.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_gateway_authentication.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_gateway_authentication_audience_sms.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_gateway_authentication_method_sms.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_gateway_authentication_sms.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_gateway_authentication_subject_sms.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_gateway_url_sms.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_global_token_revocation_jwt_iss_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_global_token_revocation_jwt_sub_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_grant_types_supported.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_handle_login_from_social_google_apps.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_https_url_with_http_fallback.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_https_url_with_http_fallback_2048.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_https_url_with_http_fallback_255.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_icon_url.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_icon_url_adfs.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_icon_url_azure_ad.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_icon_url_google_apps.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_icon_url_google_o_auth_2.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_icon_url_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_id_token_encryption_alg_values_supported.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_id_token_encryption_enc_values_supported.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_id_token_session_expiry_supported.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_id_token_signed_response_alg_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_id_token_signed_response_algs.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_id_token_signing_alg_values_supported.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_identifier_precedence.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_identifier_precedence_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_identity_api_azure_ad.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_identity_api_enum_azure_ad.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_identity_provider_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_import_mode.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_ips_ad.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_is_domain_connection.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_issuer.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_jwks_uri.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_key.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_key_use_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_mapping_mode_enum_oidc.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_mapping_mode_enum_okta.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_max_groups_to_retrieve.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_messaging_service_sid_sms.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_metadata_url_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_metadata_xml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_metadata_xml_adfs.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_metadata_xml_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_mfa.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_name.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_name_prefix_template.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_non_persistent_attrs.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_op_policy_uri.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_op_tos_uri.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_ad.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_adfs.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_amazon.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_apple.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_auth_0.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_auth_0_oidc.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_azure_ad.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_baidu.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_bitbucket.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_bitly.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_box.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_client_id_github.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_client_id_twitter.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_client_secret_github.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_client_secret_twitter.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_common.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_common_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_custom.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_daccount.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_deflate_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_dropbox.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_dwolla.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_email.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_evernote.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_exact.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_facebook.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_fitbit.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_freeform_scopes_github.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_git_hub.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_google_apps.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_google_o_auth_2.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_idp_initiated_client_protocol_enum_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_idpinitiated_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_instagram.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_ip.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_line.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_linkedin.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_o_auth_1.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_o_auth_1_common.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_o_auth_2.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_o_auth_2_common.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_office_365.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_oidc.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_oidc_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_okta.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_paypal.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_ping_federate.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_planning_center.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_protocol_enum_twitter.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_salesforce.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_salesforce_community.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_scope_github.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_scope_twitter.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_sharepoint.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_shop.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_shopify.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_sms.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_soundcloud.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_thirty_seven_signals.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_twitter.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_untappd.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_vkontakte.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_weibo.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_windows_live.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_wordpress.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_yahoo.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_options_yandex.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_passkey_authentication_method.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_passkey_challenge_ui_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_passkey_options.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_password_authentication_method.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_password_complexity_options.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_password_dictionary_options.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_password_history_options.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_password_no_personal_info_options.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_password_options.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_password_options_complexity.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_password_options_dictionary.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_password_options_history.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_password_options_profile_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_password_policy_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_phone_otp_authentication_method.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_ping_federate_base_url.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_ping_federate_base_url_ping_federate.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_profile_bitbucket.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_profile_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_profile_enabled_features.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_profile_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_profile_name.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_profile_organization.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_profile_organization_assign_membership_on_login_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_profile_organization_show_as_button_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_profile_strategy_override.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_profile_strategy_overrides.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_profile_strategy_overrides_connection_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_profile_strategy_overrides_enabled_features.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_profile_template.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_profile_template_item.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_protocol_binding_enum_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_protocol_binding_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_provider_enum_sms.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_provider_sms.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_provisioning_ticket_url.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_purposes.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_realm_fallback.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_realms.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_recipient_url_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_registration_endpoint.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_request_object_encryption_alg_values_supported.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_request_object_encryption_enc_values_supported.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_request_object_signing_alg_values_supported.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_request_parameter_supported.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_request_template_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_request_token_urlo_auth_1.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_request_uri_parameter_supported.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_require_request_uri_registration.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_requires_username.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_common.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_ad.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_ad_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_adfs.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_adfs_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_amazon.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_amazon_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_apple.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_apple_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_auth_0.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_auth_0_oidc.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_auth_0_oidc_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_auth_0_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_azure_ad.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_azure_ad_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_baidu.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_baidu_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_bitbucket.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_bitbucket_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_bitly.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_bitly_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_box.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_box_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_custom.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_custom_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_daccount.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_daccount_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_dropbox.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_dropbox_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_dwolla.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_dwolla_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_email.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_email_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_evernote.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_evernote_sandbox.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_evernote_sandbox_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_evernote_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_exact.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_exact_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_facebook.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_facebook_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_fitbit.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_fitbit_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_git_hub.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_git_hub_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_google_apps.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_google_apps_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_google_o_auth_2.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_google_o_auth_2_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_instagram.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_instagram_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_ip.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_ip_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_line.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_line_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_linkedin.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_linkedin_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_o_auth_1.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_o_auth_1_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_o_auth_2.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_o_auth_2_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_office_365.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_office_365_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_oidc.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_oidc_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_okta.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_okta_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_paypal.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_paypal_sandbox.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_paypal_sandbox_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_paypal_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_ping_federate.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_ping_federate_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_planning_center.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_planning_center_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_salesforce.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_salesforce_community.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_salesforce_community_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_salesforce_sandbox.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_salesforce_sandbox_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_salesforce_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_saml_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_sharepoint.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_sharepoint_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_shop.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_shop_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_shopify.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_shopify_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_sms.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_sms_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_soundcloud.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_soundcloud_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_thirty_seven_signals.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_thirty_seven_signals_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_twitter.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_twitter_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_untappd.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_untappd_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_vkontakte.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_vkontakte_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_weibo.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_weibo_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_windows_live.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_windows_live_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_wordpress.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_wordpress_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_yahoo.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_yahoo_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_yandex.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_content_yandex_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_modes_supported.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_response_types_supported.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_scope_amazon.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_scope_array.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_scope_array_facebook.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_scope_array_windows_live.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_scope_azure_ad.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_scope_facebook.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_scope_google_apps.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_scope_google_o_auth_2.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_scope_item.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_scope_item_google_apps.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_scope_linkedin.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_scope_o_auth_2.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_scope_oidc.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_scope_paypal.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_scope_salesforce.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_scopes_supported.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_scripts_o_auth_1.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_scripts_o_auth_2.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_send_back_channel_nonce.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_service_documentation.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_set_user_root_attributes_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_sha_1_thumbprint.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_should_trust_email_verified_connection_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_show_as_button.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_sign_in_endpoint_ad.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_sign_in_endpoint_adfs.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_sign_in_endpoint_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_sign_out_endpoint_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_sign_saml_request_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_signature_algorithm_enum_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_signature_algorithm_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_signature_method_o_auth_1.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_signing_cert_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_signing_certificate_der_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_signing_certificate_pem_ping_federate.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_signing_certificate_pem_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_signing_key_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_signup_behavior_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_strategy_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_strategy_version_enum_linkedin.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_strategy_version_enum_windows_live.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_subject_types_supported.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_template_sms.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_template_syntax_enum_sms.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_tenant_domain.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_tenant_domain_ad.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_tenant_domain_azure_ad_one.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_tenant_domain_google_apps.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_tenant_domain_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_tenant_id_azure_ad.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_thumbprints.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_thumbprints_ad.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_thumbprints_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_token_endpoint.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_token_endpoint_auth_method_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_token_endpoint_auth_methods_supported.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_token_endpoint_auth_signing_alg_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_token_endpoint_auth_signing_alg_values_supported.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_token_endpoint_jwtca_aud_format_enum_oidc.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_totp_email.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_totp_length_email.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_totp_length_passwordless.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_totp_length_sms.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_totp_sms.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_totp_time_step_email.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_totp_time_step_passwordless.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_totp_time_step_sms.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_twilio_sid_sms.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_twilio_token_sms.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_type_enum_oidc.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_type_enum_okta.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_ui_locales_supported.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_upstream_additional_properties.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_upstream_alias.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_upstream_alias_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_upstream_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_upstream_params_facebook.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_upstream_value.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_use_common_endpoint_azure_ad.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_user_authorization_urlo_auth_1.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_user_id_attribute_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_userid_attribute_azure_ad.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_userid_attribute_enum_azure_ad.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_userinfo_encryption_alg_values_supported.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_userinfo_encryption_enc_values_supported.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_userinfo_endpoint.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_userinfo_signing_alg_values_supported.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_username_validation_options.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_validation_options.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_waad_protocol.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connection_waad_protocol_enum_azure_ad.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connections_discovery_url.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connections_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/connections_oidc_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/content_security_policy_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_action_module_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_action_module_version_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_action_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_branding_phone_provider_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_branding_theme_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_client_authentication_method_self_signed_tls_client_auth.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_client_authentication_method_self_signed_tls_client_auth_credentials.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_client_grant_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_client_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_common.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_ad.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_ad_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_adfs.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_adfs_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_amazon.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_amazon_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_apple.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_apple_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_auth_0.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_auth_0_oidc.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_auth_0_oidc_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_auth_0_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_azure_ad.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_azure_ad_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_baidu.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_baidu_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_bitbucket.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_bitbucket_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_bitly.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_bitly_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_box.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_box_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_custom.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_custom_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_daccount.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_daccount_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_dropbox.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_dropbox_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_dwolla.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_dwolla_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_email.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_email_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_evernote.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_evernote_sandbox.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_evernote_sandbox_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_evernote_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_exact.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_exact_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_facebook.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_facebook_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_fitbit.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_fitbit_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_git_hub.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_git_hub_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_google_apps.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_google_apps_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_google_o_auth_2.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_google_o_auth_2_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_instagram.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_instagram_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_ip.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_ip_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_line.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_line_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_linkedin.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_linkedin_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_o_auth_1.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_o_auth_1_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_o_auth_2.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_o_auth_2_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_office_365.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_office_365_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_oidc.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_oidc_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_okta.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_okta_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_paypal.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_paypal_sandbox.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_paypal_sandbox_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_paypal_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_ping_federate.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_ping_federate_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_planning_center.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_planning_center_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_salesforce.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_salesforce_community.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_salesforce_community_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_salesforce_sandbox.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_salesforce_sandbox_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_salesforce_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_saml_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_sharepoint.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_sharepoint_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_shop.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_shop_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_shopify.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_shopify_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_sms.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_sms_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_soundcloud.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_soundcloud_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_thirty_seven_signals.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_thirty_seven_signals_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_twitter.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_twitter_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_untappd.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_untappd_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_vkontakte.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_vkontakte_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_weibo.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_weibo_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_windows_live.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_windows_live_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_wordpress.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_wordpress_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_yahoo.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_yahoo_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_yandex.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_request_content_yandex_strategy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_connection_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_cross_app_access_resource_app.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_custom_domain_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_directory_provisioning_request_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_directory_provisioning_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_directory_synchronization_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_email_provider_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_email_template_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_encryption_key_public_wrapping_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_encryption_key_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_encryption_key_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_event_stream_action_request_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_event_stream_event_bridge_request_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_event_stream_redelivery_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_event_stream_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_event_stream_test_event_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_event_stream_web_hook_request_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_export_users_fields.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_export_users_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flow_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_activecampaign.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_activecampaign_api_key.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_activecampaign_uninitialized.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_airtable.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_airtable_api_key.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_airtable_uninitialized.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_auth_0.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_auth_0_oauth_app.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_auth_0_uninitialized.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_bigquery.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_bigquery_jwt.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_bigquery_uninitialized.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_clearbit.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_clearbit_api_key.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_clearbit_uninitialized.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_docusign.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_docusign_oauth_code.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_docusign_uninitialized.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_google_sheets.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_google_sheets_oauth_code.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_google_sheets_uninitialized.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_http.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_http_api_key.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_http_basic_auth.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_http_bearer.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_http_oauth_client_credentials.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_http_uninitialized.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_hubspot.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_hubspot_api_key.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_hubspot_oauth_code.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_hubspot_uninitialized.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_jwt.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_jwt_jwt.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_jwt_uninitialized.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_mailchimp.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_mailchimp_api_key.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_mailchimp_oauth_code.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_mailchimp_uninitialized.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_mailjet.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_mailjet_api_key.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_mailjet_uninitialized.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_pipedrive.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_pipedrive_oauth_code.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_pipedrive_token.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_pipedrive_uninitialized.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_request_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_salesforce.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_salesforce_oauth_code.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_salesforce_uninitialized.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_sendgrid.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_sendgrid_api_key.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_sendgrid_uninitialized.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_slack.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_slack_oauth_code.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_slack_uninitialized.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_slack_webhook.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_stripe.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_stripe_key_pair.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_stripe_oauth_code.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_stripe_uninitialized.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_telegram.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_telegram_token.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_telegram_uninitialized.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_twilio.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_twilio_api_key.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_twilio_uninitialized.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_whatsapp.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_whatsapp_token.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_whatsapp_uninitialized.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_zapier.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_zapier_uninitialized.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_flows_vault_connection_zapier_webhook.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_form_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_guardian_enrollment_ticket_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_hook_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_hook_secret_request_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_identity_assertion_authorization_grant.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_import_users_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_keys_network_acls_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_log_stream_datadog_request_body.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_log_stream_event_bridge_request_body.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_log_stream_event_grid_request_body.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_log_stream_http_request_body.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_log_stream_mixpanel_request_body.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_log_stream_request_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_log_stream_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_log_stream_segment_request_body.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_log_stream_splunk_request_body.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_log_stream_sumo_request_body.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_organization_all_connection_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_organization_client_request_item.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_organization_clients_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_organization_discovery_domain_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_organization_invitation_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_organization_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_phone_provider_send_test_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_phone_template_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_phone_template_test_notification_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_public_key_device_credential_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_rate_limit_policy_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_resource_server_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_role_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_rule_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_scim_configuration_request_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_scim_configuration_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_scim_token_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_self_service_profile_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_self_service_profile_sso_ticket_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_token_exchange_profile_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_token_quota.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_user_attribute_profile_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_user_authentication_method_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_user_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_verifiable_credential_template_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/create_verification_email_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/created_authentication_method_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/created_user_authentication_method_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/credential_device_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/credential_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/cross_app_access_requesting_app.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/cross_app_access_resource_app.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/cross_app_access_resource_app_status_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/csp_directives.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/csp_flag.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/csp_flags.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/csp_policies.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/csp_policy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/csp_policy_mode.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/csp_policy_reporting.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/csp_report_to.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/csp_report_to_endpoint.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/csp_report_to_endpoints.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/csp_reporting_endpoints.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/csp_reporting_infrastructure.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/custom_domain.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/custom_domain_custom_client_ip_header.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/custom_domain_custom_client_ip_header_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/custom_domain_provisioning_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/custom_domain_status_filter_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/custom_domain_tls_policy_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/custom_domain_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/custom_domain_verification_method_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/custom_provider_configuration.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/custom_provider_credentials.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/custom_provider_delivery_method_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/custom_signing_key_algorithm_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/custom_signing_key_curve_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/custom_signing_key_jwk.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/custom_signing_key_operation_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/custom_signing_key_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/custom_signing_key_use_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/daily_stats.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/default_method_email_identifier_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/default_method_phone_number_identifier_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/default_token_quota.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/delete_hook_secret_request_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/delete_user_identity_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/delete_user_identity_response_content_item.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/deploy_action_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/deploy_action_version_request_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/deploy_action_version_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/device_credential.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/device_credential_public_key_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/device_credential_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/directory_provisioning.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/directory_provisioning_mapping_item.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/domain_certificate.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/domain_certificate_authority_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/domain_certificate_status_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/domain_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/domain_verification.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/domain_verification_method.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/domain_verification_method_name_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/domain_verification_status_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/email_attribute.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/email_attribute_identifier.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/email_mailgun_region_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/email_provider_credentials.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/email_provider_credentials_schema.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/email_provider_credentials_schema_access_key_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/email_provider_credentials_schema_api_key.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/email_provider_credentials_schema_client_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/email_provider_credentials_schema_connection_string.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/email_provider_credentials_schema_smtp_host.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/email_provider_credentials_schema_three.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/email_provider_credentials_schema_zero.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/email_provider_name_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/email_provider_settings.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/email_smtp_host.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/email_spark_post_region_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/email_specific_provider_settings_with_additional_properties.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/email_template_name_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/enabled_features_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/encryption_key.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/encryption_key_public_wrapping_algorithm.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/encryption_key_state.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/encryption_key_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_action_configuration.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_action_destination.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_action_destination_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_action_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_a_0_purpose_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_cloud_event.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_cloud_event_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_0.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_0_authentication.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_0_connected_accounts.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_0_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_0_options.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_0_options_attribute_map.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_0_options_attribute_map_attributes.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_0_options_attribute_map_mapping_mode_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_0_options_connection_settings.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_0_options_connection_settings_pkce_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_0_options_dpop_signing_alg_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_0_options_federated_connections_access_tokens.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_0_options_id_token_signed_response_algs_item_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_0_options_oidc_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_0_options_schema_version_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_0_options_set_user_root_attributes_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_0_options_token_endpoint_auth_method_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_0_options_token_endpoint_auth_signing_alg_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_0_options_token_endpoint_jwtca_aud_format_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_0_options_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_0_options_upstream_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_0_strategy_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_1.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_1_authentication.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_1_connected_accounts.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_1_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_1_options.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_1_options_attribute_map.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_1_options_attribute_map_attributes.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_1_options_attribute_map_mapping_mode_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_1_options_connection_settings.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_1_options_connection_settings_pkce_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_1_options_dpop_signing_alg_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_1_options_federated_connections_access_tokens.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_1_options_id_token_signed_response_algs_item_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_1_options_oidc_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_1_options_schema_version_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_1_options_set_user_root_attributes_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_1_options_token_endpoint_auth_method_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_1_options_token_endpoint_auth_signing_alg_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_1_options_token_endpoint_jwtca_aud_format_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_1_options_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_1_options_upstream_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_1_strategy_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_2.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_2_authentication.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_2_connected_accounts.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_2_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_2_options.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_2_options_assertion_decryption_settings.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_2_options_assertion_decryption_settings_algorithm_profile_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_2_options_digest_algorithm_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_2_options_fields_map.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_2_options_idpinitiated.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_2_options_idpinitiated_client_protocol_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_2_options_protocol_binding_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_2_options_set_user_root_attributes_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_2_options_signature_algorithm_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_2_options_subject.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_2_options_upstream_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_2_strategy_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_3.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_3_authentication.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_3_connected_accounts.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_3_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_3_options.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_3_options_assertion_decryption_settings.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_3_options_assertion_decryption_settings_algorithm_profile_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_3_options_digest_algorithm_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_3_options_idpinitiated.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_3_options_idpinitiated_client_protocol_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_3_options_protocol_binding_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_3_options_set_user_root_attributes_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_3_options_signature_algorithm_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_3_options_subject.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_3_options_upstream_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_3_strategy_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_4.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_4_authentication.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_4_connected_accounts.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_4_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_4_options.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_4_options_set_user_root_attributes_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_4_options_should_trust_email_verified_connection_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_4_options_upstream_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_4_strategy_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_5.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_5_authentication.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_5_connected_accounts.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_5_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_5_options.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_5_options_set_user_root_attributes_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_5_options_upstream_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_5_strategy_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_6.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_6_authentication.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_6_connected_accounts.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_6_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_6_options.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_6_options_federated_connections_access_tokens.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_6_options_set_user_root_attributes_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_6_options_upstream_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_6_strategy_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_7.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_7_authentication.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_7_connected_accounts.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_7_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_7_options.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_7_options_federated_connections_access_tokens.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_7_options_identity_api_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_7_options_set_user_root_attributes_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_7_options_should_trust_email_verified_connection_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_7_options_tenant_domain_one.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_7_options_upstream_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_7_options_userid_attribute_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_7_options_waad_protocol_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_object_7_strategy_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_created_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_cloud_event.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_cloud_event_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_0.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_0_authentication.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_0_connected_accounts.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_0_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_0_options.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_0_options_attribute_map.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_0_options_attribute_map_attributes.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_0_options_attribute_map_mapping_mode_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_0_options_connection_settings.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_0_options_connection_settings_pkce_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_0_options_dpop_signing_alg_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_0_options_federated_connections_access_tokens.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_0_options_id_token_signed_response_algs_item_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_0_options_oidc_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_0_options_schema_version_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_0_options_set_user_root_attributes_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_0_options_token_endpoint_auth_method_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_0_options_token_endpoint_auth_signing_alg_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_0_options_token_endpoint_jwtca_aud_format_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_0_options_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_0_options_upstream_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_0_strategy_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_1.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_1_authentication.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_1_connected_accounts.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_1_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_1_options.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_1_options_attribute_map.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_1_options_attribute_map_attributes.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_1_options_attribute_map_mapping_mode_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_1_options_connection_settings.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_1_options_connection_settings_pkce_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_1_options_dpop_signing_alg_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_1_options_federated_connections_access_tokens.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_1_options_id_token_signed_response_algs_item_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_1_options_oidc_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_1_options_schema_version_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_1_options_set_user_root_attributes_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_1_options_token_endpoint_auth_method_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_1_options_token_endpoint_auth_signing_alg_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_1_options_token_endpoint_jwtca_aud_format_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_1_options_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_1_options_upstream_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_1_strategy_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_2.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_2_authentication.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_2_connected_accounts.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_2_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_2_options.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_2_options_assertion_decryption_settings.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_2_options_assertion_decryption_settings_algorithm_profile_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_2_options_digest_algorithm_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_2_options_fields_map.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_2_options_idpinitiated.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_2_options_idpinitiated_client_protocol_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_2_options_protocol_binding_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_2_options_set_user_root_attributes_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_2_options_signature_algorithm_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_2_options_subject.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_2_options_upstream_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_2_strategy_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_3.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_3_authentication.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_3_connected_accounts.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_3_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_3_options.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_3_options_assertion_decryption_settings.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_3_options_assertion_decryption_settings_algorithm_profile_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_3_options_digest_algorithm_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_3_options_idpinitiated.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_3_options_idpinitiated_client_protocol_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_3_options_protocol_binding_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_3_options_set_user_root_attributes_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_3_options_signature_algorithm_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_3_options_subject.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_3_options_upstream_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_3_strategy_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_4.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_4_authentication.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_4_connected_accounts.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_4_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_4_options.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_4_options_set_user_root_attributes_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_4_options_should_trust_email_verified_connection_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_4_options_upstream_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_4_strategy_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_5.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_5_authentication.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_5_connected_accounts.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_5_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_5_options.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_5_options_set_user_root_attributes_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_5_options_upstream_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_5_strategy_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_6.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_6_authentication.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_6_connected_accounts.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_6_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_6_options.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_6_options_federated_connections_access_tokens.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_6_options_set_user_root_attributes_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_6_options_upstream_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_6_strategy_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_7.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_7_authentication.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_7_connected_accounts.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_7_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_7_options.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_7_options_federated_connections_access_tokens.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_7_options_identity_api_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_7_options_set_user_root_attributes_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_7_options_should_trust_email_verified_connection_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_7_options_tenant_domain_one.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_7_options_upstream_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_7_options_userid_attribute_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_7_options_waad_protocol_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_object_7_strategy_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_deleted_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_cloud_event.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_cloud_event_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_0.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_0_authentication.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_0_connected_accounts.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_0_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_0_options.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_0_options_attribute_map.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_0_options_attribute_map_attributes.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_0_options_attribute_map_mapping_mode_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_0_options_connection_settings.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_0_options_connection_settings_pkce_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_0_options_dpop_signing_alg_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_0_options_federated_connections_access_tokens.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_0_options_id_token_signed_response_algs_item_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_0_options_oidc_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_0_options_schema_version_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_0_options_set_user_root_attributes_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_0_options_token_endpoint_auth_method_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_0_options_token_endpoint_auth_signing_alg_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_0_options_token_endpoint_jwtca_aud_format_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_0_options_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_0_options_upstream_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_0_strategy_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_1.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_1_authentication.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_1_connected_accounts.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_1_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_1_options.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_1_options_attribute_map.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_1_options_attribute_map_attributes.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_1_options_attribute_map_mapping_mode_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_1_options_connection_settings.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_1_options_connection_settings_pkce_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_1_options_dpop_signing_alg_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_1_options_federated_connections_access_tokens.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_1_options_id_token_signed_response_algs_item_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_1_options_oidc_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_1_options_schema_version_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_1_options_set_user_root_attributes_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_1_options_token_endpoint_auth_method_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_1_options_token_endpoint_auth_signing_alg_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_1_options_token_endpoint_jwtca_aud_format_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_1_options_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_1_options_upstream_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_1_strategy_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_2.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_2_authentication.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_2_connected_accounts.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_2_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_2_options.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_2_options_assertion_decryption_settings.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_2_options_assertion_decryption_settings_algorithm_profile_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_2_options_digest_algorithm_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_2_options_fields_map.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_2_options_idpinitiated.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_2_options_idpinitiated_client_protocol_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_2_options_protocol_binding_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_2_options_set_user_root_attributes_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_2_options_signature_algorithm_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_2_options_subject.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_2_options_upstream_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_2_strategy_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_3.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_3_authentication.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_3_connected_accounts.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_3_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_3_options.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_3_options_assertion_decryption_settings.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_3_options_assertion_decryption_settings_algorithm_profile_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_3_options_digest_algorithm_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_3_options_idpinitiated.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_3_options_idpinitiated_client_protocol_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_3_options_protocol_binding_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_3_options_set_user_root_attributes_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_3_options_signature_algorithm_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_3_options_subject.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_3_options_upstream_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_3_strategy_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_4.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_4_authentication.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_4_connected_accounts.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_4_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_4_options.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_4_options_set_user_root_attributes_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_4_options_should_trust_email_verified_connection_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_4_options_upstream_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_4_strategy_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_5.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_5_authentication.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_5_connected_accounts.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_5_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_5_options.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_5_options_set_user_root_attributes_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_5_options_upstream_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_5_strategy_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_6.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_6_authentication.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_6_connected_accounts.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_6_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_6_options.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_6_options_federated_connections_access_tokens.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_6_options_set_user_root_attributes_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_6_options_upstream_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_6_strategy_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_7.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_7_authentication.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_7_connected_accounts.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_7_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_7_options.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_7_options_federated_connections_access_tokens.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_7_options_identity_api_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_7_options_set_user_root_attributes_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_7_options_should_trust_email_verified_connection_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_7_options_tenant_domain_one.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_7_options_upstream_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_7_options_userid_attribute_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_7_options_waad_protocol_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_object_7_strategy_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_connection_updated_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_context.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_context_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_context_client_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_context_connection.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_context_request.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_context_request_geo.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_context_tenant.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_error_code_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_error_detail.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_error_message.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_error_message_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_created.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_created_cloud_event.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_created_cloud_event_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_created_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_created_object.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_created_object_0.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_created_object_0_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_created_object_1.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_created_object_1_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_created_object_2.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_created_object_2_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_created_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_deleted.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_deleted_cloud_event.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_deleted_cloud_event_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_deleted_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_deleted_object.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_deleted_object_0.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_deleted_object_0_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_deleted_object_1.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_deleted_object_1_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_deleted_object_2.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_deleted_object_2_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_deleted_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_member_added.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_member_added_cloud_event.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_member_added_cloud_event_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_member_added_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_member_added_object.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_member_added_object_group.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_member_added_object_group_0.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_member_added_object_group_0_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_member_added_object_group_1.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_member_added_object_group_1_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_member_added_object_group_2.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_member_added_object_group_2_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_member_added_object_member.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_member_added_object_member_0.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_member_added_object_member_0_member_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_member_added_object_member_1.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_member_added_object_member_1_member_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_member_added_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_member_deleted.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_member_deleted_cloud_event.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_member_deleted_cloud_event_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_member_deleted_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_member_deleted_object.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_member_deleted_object_group.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_member_deleted_object_group_0.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_member_deleted_object_group_0_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_member_deleted_object_group_1.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_member_deleted_object_group_1_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_member_deleted_object_group_2.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_member_deleted_object_group_2_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_member_deleted_object_member.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_member_deleted_object_member_0.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_member_deleted_object_member_0_member_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_member_deleted_object_member_1.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_member_deleted_object_member_1_member_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_member_deleted_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_role_assigned.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_role_assigned_cloud_event.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_role_assigned_cloud_event_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_role_assigned_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_role_assigned_object.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_role_assigned_object_group.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_role_assigned_object_group_0.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_role_assigned_object_group_0_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_role_assigned_object_group_1.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_role_assigned_object_group_1_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_role_assigned_object_group_2.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_role_assigned_object_group_2_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_role_assigned_object_role.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_role_assigned_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_role_deleted.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_role_deleted_cloud_event.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_role_deleted_cloud_event_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_role_deleted_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_role_deleted_object.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_role_deleted_object_group.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_role_deleted_object_group_0.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_role_deleted_object_group_0_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_role_deleted_object_group_1.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_role_deleted_object_group_1_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_role_deleted_object_group_2.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_role_deleted_object_group_2_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_role_deleted_object_role.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_role_deleted_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_updated.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_updated_cloud_event.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_updated_cloud_event_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_updated_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_updated_object.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_updated_object_0.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_updated_object_0_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_updated_object_1.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_updated_object_1_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_updated_object_2.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_updated_object_2_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_group_updated_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_offset_only_message.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_offset_only_message_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_connection_added.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_connection_added_cloud_event.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_connection_added_cloud_event_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_connection_added_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_connection_added_object.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_connection_added_object_connection.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_connection_added_object_organization.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_connection_added_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_connection_removed.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_connection_removed_cloud_event.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_connection_removed_cloud_event_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_connection_removed_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_connection_removed_object.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_connection_removed_object_connection.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_connection_removed_object_organization.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_connection_removed_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_connection_updated.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_connection_updated_cloud_event.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_connection_updated_cloud_event_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_connection_updated_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_connection_updated_object.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_connection_updated_object_connection.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_connection_updated_object_organization.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_connection_updated_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_created.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_created_cloud_event.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_created_cloud_event_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_created_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_created_object.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_created_object_branding.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_created_object_branding_colors.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_created_object_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_created_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_deleted.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_deleted_cloud_event.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_deleted_cloud_event_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_deleted_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_deleted_object.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_deleted_object_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_deleted_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_group_role_assigned.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_group_role_assigned_cloud_event.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_group_role_assigned_cloud_event_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_group_role_assigned_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_group_role_assigned_object.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_group_role_assigned_object_group.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_group_role_assigned_object_group_0.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_group_role_assigned_object_group_0_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_group_role_assigned_object_group_1.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_group_role_assigned_object_group_1_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_group_role_assigned_object_group_2.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_group_role_assigned_object_group_2_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_group_role_assigned_object_organization.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_group_role_assigned_object_role.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_group_role_assigned_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_group_role_deleted.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_group_role_deleted_cloud_event.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_group_role_deleted_cloud_event_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_group_role_deleted_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_group_role_deleted_object.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_group_role_deleted_object_group.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_group_role_deleted_object_group_0.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_group_role_deleted_object_group_0_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_group_role_deleted_object_group_1.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_group_role_deleted_object_group_1_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_group_role_deleted_object_group_2.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_group_role_deleted_object_group_2_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_group_role_deleted_object_organization.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_group_role_deleted_object_role.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_group_role_deleted_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_member_added.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_member_added_cloud_event.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_member_added_cloud_event_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_member_added_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_member_added_object.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_member_added_object_organization.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_member_added_object_user.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_member_added_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_member_deleted.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_member_deleted_cloud_event.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_member_deleted_cloud_event_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_member_deleted_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_member_deleted_object.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_member_deleted_object_organization.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_member_deleted_object_user.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_member_deleted_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_member_role_assigned.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_member_role_assigned_cloud_event.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_member_role_assigned_cloud_event_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_member_role_assigned_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_member_role_assigned_object.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_member_role_assigned_object_organization.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_member_role_assigned_object_role.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_member_role_assigned_object_user.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_member_role_assigned_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_member_role_deleted.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_member_role_deleted_cloud_event.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_member_role_deleted_cloud_event_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_member_role_deleted_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_member_role_deleted_object.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_member_role_deleted_object_organization.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_member_role_deleted_object_role.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_member_role_deleted_object_user.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_member_role_deleted_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_updated.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_updated_cloud_event.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_updated_cloud_event_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_updated_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_updated_object.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_updated_object_branding.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_updated_object_branding_colors.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_updated_object_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_org_updated_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_spec_version_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_created.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_created_cloud_event.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_created_cloud_event_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_created_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_created_object.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_created_object_app_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_created_object_identities_item.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_created_object_identities_item_custom.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_created_object_identities_item_custom_is_social_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_created_object_identities_item_custom_profile_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_created_object_identities_item_custom_provider_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_created_object_identities_item_custom_user_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_created_object_identities_item_database.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_created_object_identities_item_database_is_social_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_created_object_identities_item_database_profile_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_created_object_identities_item_database_provider_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_created_object_identities_item_database_user_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_created_object_identities_item_enterprise.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_created_object_identities_item_enterprise_is_social_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_created_object_identities_item_enterprise_profile_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_created_object_identities_item_enterprise_provider_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_created_object_identities_item_enterprise_user_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_created_object_identities_item_passwordless.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_created_object_identities_item_passwordless_is_social_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_created_object_identities_item_passwordless_profile_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_created_object_identities_item_passwordless_provider_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_created_object_identities_item_passwordless_user_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_created_object_identities_item_social.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_created_object_identities_item_social_is_social_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_created_object_identities_item_social_profile_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_created_object_identities_item_social_provider_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_created_object_identities_item_social_user_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_created_object_user_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_created_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_deleted.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_deleted_cloud_event.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_deleted_cloud_event_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_deleted_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_deleted_object.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_deleted_object_app_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_deleted_object_identities_item.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_deleted_object_identities_item_custom.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_deleted_object_identities_item_custom_is_social_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_deleted_object_identities_item_custom_profile_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_deleted_object_identities_item_custom_provider_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_deleted_object_identities_item_custom_user_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_deleted_object_identities_item_database.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_deleted_object_identities_item_database_is_social_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_deleted_object_identities_item_database_profile_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_deleted_object_identities_item_database_provider_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_deleted_object_identities_item_database_user_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_deleted_object_identities_item_enterprise.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_deleted_object_identities_item_enterprise_is_social_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_deleted_object_identities_item_enterprise_profile_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_deleted_object_identities_item_enterprise_provider_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_deleted_object_identities_item_enterprise_user_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_deleted_object_identities_item_passwordless.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_deleted_object_identities_item_passwordless_is_social_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_deleted_object_identities_item_passwordless_profile_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_deleted_object_identities_item_passwordless_provider_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_deleted_object_identities_item_passwordless_user_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_deleted_object_identities_item_social.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_deleted_object_identities_item_social_is_social_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_deleted_object_identities_item_social_profile_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_deleted_object_identities_item_social_provider_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_deleted_object_identities_item_social_user_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_deleted_object_user_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_deleted_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_updated.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_updated_cloud_event.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_updated_cloud_event_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_updated_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_updated_object.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_updated_object_app_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_updated_object_identities_item.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_updated_object_identities_item_custom.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_updated_object_identities_item_custom_is_social_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_updated_object_identities_item_custom_profile_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_updated_object_identities_item_custom_provider_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_updated_object_identities_item_custom_user_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_updated_object_identities_item_database.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_updated_object_identities_item_database_is_social_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_updated_object_identities_item_database_profile_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_updated_object_identities_item_database_provider_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_updated_object_identities_item_database_user_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_updated_object_identities_item_enterprise.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_updated_object_identities_item_enterprise_is_social_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_updated_object_identities_item_enterprise_profile_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_updated_object_identities_item_enterprise_provider_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_updated_object_identities_item_enterprise_user_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_updated_object_identities_item_passwordless.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_updated_object_identities_item_passwordless_is_social_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_updated_object_identities_item_passwordless_profile_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_updated_object_identities_item_passwordless_provider_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_updated_object_identities_item_passwordless_user_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_updated_object_identities_item_social.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_updated_object_identities_item_social_is_social_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_updated_object_identities_item_social_profile_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_updated_object_identities_item_social_provider_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_updated_object_identities_item_social_user_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_updated_object_user_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_cloud_event_user_updated_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_delivery.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_delivery_attempt.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_delivery_event_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_delivery_status_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_destination_patch.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_event_bridge_aws_region_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_event_bridge_configuration.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_event_bridge_destination.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_event_bridge_destination_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_event_bridge_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_event_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_status_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_subscribe_events_event_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_subscribe_events_event_type_param.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_subscribe_events_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_subscription.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_test_event_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_webhook_authorization_response.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_webhook_basic_auth.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_webhook_basic_auth_method_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_webhook_bearer_auth.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_webhook_bearer_auth_method_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_webhook_configuration.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_webhook_custom_header_auth.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_webhook_custom_header_auth_method_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_webhook_destination.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_webhook_destination_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/event_stream_webhook_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/express_configuration.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/express_configuration_or_null.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/extensibility_email_provider_credentials.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/fed_cm_login.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/fed_cm_login_google.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/fed_cm_login_google_patch.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/fed_cm_login_patch.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_activecampaign.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_activecampaign_list_contacts.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_activecampaign_list_contacts_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_activecampaign_list_contacts_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_activecampaign_list_contacts_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_activecampaign_upsert_contact.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_activecampaign_upsert_contact_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_activecampaign_upsert_contact_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_activecampaign_upsert_contact_params_custom_fields.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_activecampaign_upsert_contact_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_airtable.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_airtable_create_record.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_airtable_create_record_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_airtable_create_record_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_airtable_create_record_params_fields.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_airtable_create_record_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_airtable_list_records.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_airtable_list_records_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_airtable_list_records_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_airtable_list_records_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_airtable_update_record.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_airtable_update_record_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_airtable_update_record_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_airtable_update_record_params_fields.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_airtable_update_record_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_create_user.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_create_user_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_create_user_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_create_user_params_payload.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_create_user_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_get_user.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_get_user_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_get_user_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_get_user_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_make_call.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_make_call_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_make_call_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_make_call_params_custom_vars.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_make_call_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_send_email.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_send_email_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_send_email_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_send_email_params_from.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_send_email_params_from_email.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_send_email_params_to.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_send_email_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_send_request.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_send_request_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_send_request_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_send_request_params_custom_vars.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_send_request_params_headers.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_send_request_params_method.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_send_request_params_payload.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_send_request_params_payload_object.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_send_request_params_query_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_send_request_params_query_params_value.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_send_request_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_send_sms.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_send_sms_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_send_sms_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_send_sms_params_custom_vars.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_send_sms_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_update_user.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_update_user_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_update_user_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_update_user_params_changes.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_auth_0_update_user_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_bigquery.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_bigquery_insert_rows.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_bigquery_insert_rows_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_bigquery_insert_rows_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_bigquery_insert_rows_params_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_bigquery_insert_rows_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_clearbit.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_clearbit_find_company.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_clearbit_find_company_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_clearbit_find_company_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_clearbit_find_company_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_clearbit_find_person.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_clearbit_find_person_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_clearbit_find_person_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_clearbit_find_person_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_email.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_email_verify_email.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_email_verify_email_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_email_verify_email_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_email_verify_email_params_rules.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_email_verify_email_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_flow.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_flow_boolean_condition.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_flow_boolean_condition_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_flow_boolean_condition_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_flow_boolean_condition_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_flow_delay_flow.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_flow_delay_flow_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_flow_delay_flow_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_flow_delay_flow_params_number.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_flow_delay_flow_params_units.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_flow_delay_flow_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_flow_do_nothing.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_flow_do_nothing_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_flow_do_nothing_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_flow_do_nothing_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_flow_error_message.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_flow_error_message_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_flow_error_message_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_flow_error_message_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_flow_map_value.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_flow_map_value_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_flow_map_value_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_flow_map_value_params_cases.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_flow_map_value_params_fallback.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_flow_map_value_params_fallback_object.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_flow_map_value_params_input.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_flow_map_value_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_flow_return_json.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_flow_return_json_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_flow_return_json_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_flow_return_json_params_payload.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_flow_return_json_params_payload_object.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_flow_return_json_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_flow_store_vars.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_flow_store_vars_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_flow_store_vars_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_flow_store_vars_params_vars.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_flow_store_vars_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_google_sheets.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_google_sheets_add_row.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_google_sheets_add_row_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_google_sheets_add_row_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_google_sheets_add_row_params_sheet_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_google_sheets_add_row_params_values.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_google_sheets_add_row_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_http.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_http_send_request.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_http_send_request_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_http_send_request_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_http_send_request_params_basic_auth.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_http_send_request_params_content_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_http_send_request_params_headers.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_http_send_request_params_method.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_http_send_request_params_payload.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_http_send_request_params_payload_object.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_http_send_request_params_query_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_http_send_request_params_query_params_value.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_http_send_request_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_hubspot.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_hubspot_enroll_contact.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_hubspot_enroll_contact_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_hubspot_enroll_contact_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_hubspot_enroll_contact_params_workflow_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_hubspot_enroll_contact_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_hubspot_get_contact.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_hubspot_get_contact_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_hubspot_get_contact_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_hubspot_get_contact_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_hubspot_upsert_contact.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_hubspot_upsert_contact_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_hubspot_upsert_contact_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_hubspot_upsert_contact_params_property.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_hubspot_upsert_contact_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_json.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_json_create_json.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_json_create_json_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_json_create_json_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_json_create_json_params_object.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_json_create_json_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_json_parse_json.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_json_parse_json_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_json_parse_json_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_json_parse_json_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_json_serialize_json.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_json_serialize_json_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_json_serialize_json_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_json_serialize_json_params_object.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_json_serialize_json_params_object_object.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_json_serialize_json_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_jwt.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_jwt_decode_jwt.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_jwt_decode_jwt_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_jwt_decode_jwt_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_jwt_decode_jwt_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_jwt_sign_jwt.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_jwt_sign_jwt_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_jwt_sign_jwt_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_jwt_sign_jwt_params_payload.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_jwt_sign_jwt_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_jwt_verify_jwt.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_jwt_verify_jwt_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_jwt_verify_jwt_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_jwt_verify_jwt_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_mailchimp.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_mailchimp_upsert_member.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_mailchimp_upsert_member_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_mailchimp_upsert_member_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_mailchimp_upsert_member_params_member.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_mailchimp_upsert_member_params_member_merge_fields.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_mailchimp_upsert_member_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_mailjet.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_mailjet_send_email.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_mailjet_send_email_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_mailjet_send_email_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_mailjet_send_email_params_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_mailjet_send_email_params_template_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_mailjet_send_email_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_otp.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_otp_generate_code.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_otp_generate_code_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_otp_generate_code_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_otp_generate_code_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_otp_verify_code.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_otp_verify_code_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_otp_verify_code_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_otp_verify_code_params_code.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_otp_verify_code_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_pipedrive.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_pipedrive_add_deal.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_pipedrive_add_deal_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_pipedrive_add_deal_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_pipedrive_add_deal_params_fields.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_pipedrive_add_deal_params_organization_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_pipedrive_add_deal_params_person_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_pipedrive_add_deal_params_stage_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_pipedrive_add_deal_params_user_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_pipedrive_add_deal_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_pipedrive_add_organization.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_pipedrive_add_organization_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_pipedrive_add_organization_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_pipedrive_add_organization_params_fields.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_pipedrive_add_organization_params_owner_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_pipedrive_add_organization_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_pipedrive_add_person.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_pipedrive_add_person_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_pipedrive_add_person_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_pipedrive_add_person_params_fields.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_pipedrive_add_person_params_organization_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_pipedrive_add_person_params_owner_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_pipedrive_add_person_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_salesforce.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_salesforce_create_lead.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_salesforce_create_lead_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_salesforce_create_lead_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_salesforce_create_lead_params_payload.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_salesforce_create_lead_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_salesforce_get_lead.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_salesforce_get_lead_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_salesforce_get_lead_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_salesforce_get_lead_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_salesforce_search_leads.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_salesforce_search_leads_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_salesforce_search_leads_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_salesforce_search_leads_params_search_field.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_salesforce_search_leads_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_salesforce_update_lead.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_salesforce_update_lead_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_salesforce_update_lead_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_salesforce_update_lead_params_payload.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_salesforce_update_lead_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_sendgrid.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_sendgrid_send_email.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_sendgrid_send_email_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_sendgrid_send_email_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_sendgrid_send_email_params_person.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_sendgrid_send_email_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_slack.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_slack_post_message.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_slack_post_message_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_slack_post_message_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_slack_post_message_params_attachment.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_slack_post_message_params_attachment_color.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_slack_post_message_params_attachment_field.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_slack_post_message_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_stripe.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_stripe_add_tax_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_stripe_add_tax_id_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_stripe_add_tax_id_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_stripe_add_tax_id_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_stripe_address.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_stripe_create_customer.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_stripe_create_customer_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_stripe_create_customer_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_stripe_create_customer_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_stripe_create_portal_session.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_stripe_create_portal_session_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_stripe_create_portal_session_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_stripe_create_portal_session_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_stripe_delete_tax_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_stripe_delete_tax_id_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_stripe_delete_tax_id_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_stripe_delete_tax_id_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_stripe_find_customers.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_stripe_find_customers_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_stripe_find_customers_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_stripe_find_customers_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_stripe_get_customer.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_stripe_get_customer_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_stripe_get_customer_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_stripe_get_customer_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_stripe_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_stripe_tax_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_stripe_update_customer.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_stripe_update_customer_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_stripe_update_customer_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_stripe_update_customer_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_telegram.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_telegram_send_message.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_telegram_send_message_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_telegram_send_message_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_telegram_send_message_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_twilio.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_twilio_make_call.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_twilio_make_call_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_twilio_make_call_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_twilio_make_call_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_twilio_send_sms.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_twilio_send_sms_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_twilio_send_sms_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_twilio_send_sms_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_whatsapp.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_whatsapp_send_message.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_whatsapp_send_message_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_whatsapp_send_message_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_whatsapp_send_message_params_payload.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_whatsapp_send_message_params_payload_object.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_whatsapp_send_message_params_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_whatsapp_send_message_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_xml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_xml_parse_xml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_xml_parse_xml_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_xml_parse_xml_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_xml_parse_xml_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_xml_serialize_xml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_xml_serialize_xml_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_xml_serialize_xml_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_xml_serialize_xml_params_object.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_xml_serialize_xml_params_object_object.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_xml_serialize_xml_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_zapier.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_zapier_trigger_webhook.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_zapier_trigger_webhook_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_zapier_trigger_webhook_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_zapier_trigger_webhook_params_method.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_action_zapier_trigger_webhook_type.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_execution_debug.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_execution_summary.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flow_summary.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connectio_setup_api_key.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connectio_setup_api_key_with_base_url.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connectio_setup_bigquery_oauth_jwt.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connectio_setup_http_bearer.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connectio_setup_jwt.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connectio_setup_jwt_algorithm_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connectio_setup_mailjet_api_key.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connectio_setup_oauth_app.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connectio_setup_oauth_code.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connectio_setup_secret_api_key.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connectio_setup_stripe_key_pair.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connectio_setup_token.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connectio_setup_twilio_api_key.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connectio_setup_type_api_key_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connectio_setup_type_bearer_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connectio_setup_type_jwt_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connectio_setup_type_key_pair_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connectio_setup_type_oauth_app_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connectio_setup_type_oauth_code_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connectio_setup_type_oauth_jwt_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connectio_setup_type_token_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connectio_setup_type_webhook_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connectio_setup_webhook.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connection_app_id_activecampaign_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connection_app_id_airtable_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connection_app_id_auth_0_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connection_app_id_bigquery_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connection_app_id_clearbit_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connection_app_id_docusign_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connection_app_id_google_sheets_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connection_app_id_http_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connection_app_id_hubspot_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connection_app_id_jwt_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connection_app_id_mailchimp_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connection_app_id_mailjet_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connection_app_id_pipedrive_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connection_app_id_salesforce_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connection_app_id_sendgrid_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connection_app_id_slack_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connection_app_id_stripe_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connection_app_id_telegram_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connection_app_id_twilio_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connection_app_id_whatsapp_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connection_app_id_zapier_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connection_http_api_key_setup.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connection_http_api_key_setup_in_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connection_http_basic_auth_setup.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connection_http_oauth_client_credentials_setup.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connection_setup_type_api_key_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connection_setup_type_basic_auth_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connection_setup_type_oauth_client_credentials_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/flows_vault_connection_summary.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/forbidden_schema.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/forbidden_schema_error.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_block.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_block_divider.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_block_divider_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_block_html.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_block_html_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_block_image.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_block_image_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_block_image_config_position_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_block_jump_button.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_block_jump_button_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_block_jump_button_config_style.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_block_next_button.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_block_next_button_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_block_previous_button.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_block_previous_button_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_block_resend_button.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_block_resend_button_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_block_resend_button_config_text_alignment_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_block_rich_text.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_block_rich_text_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_block_type_divider_const.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_block_type_html_const.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_block_type_image_const.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_block_type_jump_button_const.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_block_type_next_button_const.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_block_type_previous_button_const.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_block_type_resend_button_const.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_block_type_rich_text_const.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_component.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_component_category_block_const.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_component_category_field_const.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_component_category_widget_const.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_ending_node.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_ending_node_after_submit.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_ending_node_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_ending_node_nullable.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_ending_node_redirection.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_ending_node_resume_flow_true_const.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_boolean.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_boolean_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_boolean_config_options.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_cards.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_cards_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_cards_config_option.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_choice.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_choice_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_choice_config_allow_other.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_choice_config_allow_other_enabled_true_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_choice_config_option.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_custom.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_custom_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_custom_config_params.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_custom_config_schema.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_date.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_date_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_date_config_format_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_dropdown.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_dropdown_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_dropdown_config_option.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_email.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_email_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_file.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_file_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_file_config_category_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_file_config_storage.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_file_config_storage_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_legal.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_legal_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_number.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_number_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_password.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_password_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_password_config_hash_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_payment.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_payment_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_payment_config_charge.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_payment_config_charge_one_off.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_payment_config_charge_one_off_currency_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_payment_config_charge_one_off_one_off.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_payment_config_charge_one_off_one_off_amount.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_payment_config_charge_subscription.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_payment_config_charge_type_one_off_const.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_payment_config_charge_type_subscription_const.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_payment_config_credentials.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_payment_config_customer.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_payment_config_field_properties.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_payment_config_fields.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_payment_config_provider_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_payment_config_subscription.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_social.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_social_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_tel.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_tel_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_tel_config_strings.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_text.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_text_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_type_boolean_const.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_type_cards_const.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_type_choice_const.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_type_custom_const.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_type_date_const.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_type_dropdown_const.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_type_email_const.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_type_file_const.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_type_legal_const.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_type_number_const.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_type_password_const.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_type_payment_const.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_type_social_const.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_type_tel_const.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_type_text_const.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_type_url_const.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_url.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_field_url_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_flow.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_flow_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_hidden_field.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_languages.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_languages_nullable.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_messages.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_messages_custom.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_messages_error.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_messages_nullable.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_node.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_node_coordinates.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_node_list.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_node_list_nullable.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_node_pointer.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_node_type_flow_const.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_node_type_router_const.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_node_type_step_const.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_router.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_router_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_router_rule.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_start_node.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_start_node_nullable.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_step.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_step_component_list.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_step_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_style.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_style_nullable.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_summary.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_translations.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_translations_nullable.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_widget.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_widget_auth_0_verifiable_credentials.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_widget_auth_0_verifiable_credentials_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_widget_g_maps_address.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_widget_g_maps_address_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_widget_recaptcha.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_widget_recaptcha_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_widget_type_auth_0_verifiable_credentials_const.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_widget_type_g_maps_address_const.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/form_widget_type_recaptcha_const.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/forms_request_parameters_hydrate_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_action_execution_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_action_module_actions_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_action_module_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_action_module_version_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_action_module_versions_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_action_modules_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_action_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_action_version_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_active_users_count_stats_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_acul_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_attack_protection_captcha_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_bot_detection_settings_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_branding_default_theme_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_branding_phone_provider_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_branding_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_branding_theme_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_breached_password_detection_settings_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_brute_force_settings_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_client_credential_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_client_grant_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_client_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_connection_enabled_clients_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_connection_profile_template_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_connection_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_custom_domain_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_custom_signing_keys_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_custom_texts_by_language_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_default_canonical_domain_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_default_custom_domain_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_default_domain_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_directory_provisioning_default_mapping_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_directory_provisioning_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_email_provider_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_email_template_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_encryption_key_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_event_stream_delivery_history_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_event_stream_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_flow_execution_request_parameters_hydrate_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_flow_execution_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_flow_request_parameters_hydrate_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_flow_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_flows_vault_connection_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_form_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_group_members_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_group_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_guardian_enrollment_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_guardian_factor_duo_settings_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_guardian_factor_phone_message_types_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_guardian_factor_phone_templates_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_guardian_factor_sms_templates_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_guardian_factors_provider_apns_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_guardian_factors_provider_phone_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_guardian_factors_provider_phone_twilio_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_guardian_factors_provider_push_notification_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_guardian_factors_provider_sms_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_guardian_factors_provider_sms_twilio_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_guardian_factors_provider_sns_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_hook_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_hook_secret_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_job_error_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_job_generic_error_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_job_import_user_error.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_job_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_job_summary.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_job_user_error.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_log_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_log_stream_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_network_acls_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_organization_all_connection_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_organization_by_name_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_organization_client_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_organization_connection_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_organization_discovery_domain_by_name_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_organization_discovery_domain_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_organization_invitation_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_organization_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_partials_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_phone_provider_protection_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_phone_template_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_rate_limit_policy_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_refresh_token_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_refresh_tokens_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_resource_server_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_risk_assessments_settings_new_device_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_risk_assessments_settings_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_role_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_rule_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_scim_configuration_default_mapping_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_scim_configuration_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_scim_tokens_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_self_service_profile_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_session_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_settings_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_signing_keys_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_supplemental_signals_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_suspicious_ip_throttling_settings_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_tenant_settings_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_token_exchange_profile_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_universal_login_template.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_universal_login_template_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_user_attribute_profile_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_user_attribute_profile_template_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_user_authentication_method_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_user_groups_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_user_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/get_verifiable_credential_template_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/group.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/group_member.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/group_member_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/group_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/guardian_enrollment_date.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/guardian_enrollment_factor_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/guardian_enrollment_status.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/guardian_factor.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/guardian_factor_name_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/guardian_factor_phone_factor_message_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/guardian_factor_settings.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/guardian_factors_provider_push_notification_provider_data_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/guardian_factors_provider_sms_provider_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/hook.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/hook_dependencies.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/hook_trigger_id_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/http_custom_header.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/identity.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/identity_assertion_authorization_grant.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/identity_provider_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/identity_provider_only_auth_0_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/import_encryption_key_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/integration.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/integration_feature_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/integration_release.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/integration_required_param.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/integration_required_param_option.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/integration_required_param_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/integration_sem_ver.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/job_file_format_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/linked_client_configuration.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_action_bindings_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_action_triggers_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_action_versions_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_actions_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_aculs_offset_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_aculs_response_content_item.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_agents_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_branding_phone_providers_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_client_connections_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_client_grant_organizations_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_client_grant_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_clients_offset_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_connection_profile_template_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_connection_profiles_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_connections_checkpoint_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_custom_domains_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_device_credentials_offset_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_directory_provisionings_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_encryption_key_offset_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_event_stream_deliveries_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_event_streams_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_flow_executions_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_flows_offset_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_flows_request_parameters_hydrate_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_flows_vault_connections_offset_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_forms_offset_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_group_roles_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_groups_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_guardian_policies_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_hooks_offset_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_log_offset_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_network_acls_offset_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_organization_all_connections_offset_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_organization_client_grants_offset_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_organization_clients_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_organization_connections_offset_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_organization_discovery_domains_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_organization_group_roles_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_organization_groups_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_organization_invitations_offset_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_organization_member_effective_roles_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_organization_member_role_source_groups_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_organization_member_roles_offset_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_organization_members_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_organization_role_groups_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_organization_role_members_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_organizations_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_phone_templates_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_rate_limit_policies_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_refresh_tokens_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_resource_server_offset_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_role_groups_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_role_permissions_offset_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_role_users_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_roles_offset_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_rules_offset_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_scim_configurations_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_self_service_profile_custom_text_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_self_service_profiles_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_synchronized_groups_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_token_exchange_profile_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_user_attribute_profile_template_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_user_attribute_profiles_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_user_authentication_methods_offset_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_user_blocks_by_identifier_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_user_blocks_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_user_connected_accounts_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_user_effective_permission_role_sources_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_user_effective_permissions_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_user_effective_roles_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_user_grants_offset_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_user_organizations_offset_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_user_permissions_offset_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_user_role_source_groups_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_user_roles_offset_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_user_sessions_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_users_offset_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/list_verifiable_credential_templates_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_date.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_date_object.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_details.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_location_info.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_security_context.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_datadog_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_datadog_region_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_datadog_response_schema.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_datadog_sink.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_event_bridge_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_event_bridge_response_schema.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_event_bridge_sink.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_event_bridge_sink_region_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_event_grid_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_event_grid_region_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_event_grid_response_schema.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_event_grid_sink.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_filter.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_filter_group_name_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_filter_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_http_content_format_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_http_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_http_response_schema.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_http_sink.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_mixpanel_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_mixpanel_region_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_mixpanel_response_schema.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_mixpanel_sink.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_mixpanel_sink_patch.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_pii_algorithm_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_pii_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_pii_log_fields_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_pii_method_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_response_schema.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_segment_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_segment_response_schema.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_segment_sink.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_segment_sink_write_key.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_sink_patch.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_splunk_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_splunk_response_schema.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_splunk_sink.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_status_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_sumo_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_sumo_response_schema.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/log_stream_sumo_sink.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/mdl_presentation_properties.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/mdl_presentation_request.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/mdl_presentation_request_properties.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/mfa_policy_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/native_social_login.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/native_social_login_apple.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/native_social_login_apple_patch.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/native_social_login_facebook.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/native_social_login_facebook_patch.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/native_social_login_google.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/native_social_login_google_patch.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/native_social_login_patch.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/network_acl_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/network_acl_action_allow_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/network_acl_action_block_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/network_acl_action_log_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/network_acl_action_redirect_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/network_acl_key_algorithm_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/network_acl_match.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/network_acl_match_connecting_ipv_4_cidr.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/network_acl_match_connecting_ipv_6_cidr.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/network_acl_match_ipv_4_cidr.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/network_acl_match_ipv_6_cidr.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/network_acl_rule_scope_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/network_acls_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/not_found_error_body.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/not_found_error_body_error.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/not_found_schema.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/not_found_schema_error.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/organization.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/organization_access_level_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/organization_access_level_enum_with_null.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/organization_all_connection_post.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/organization_branding.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/organization_branding_colors.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/organization_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/organization_client_association.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/organization_client_grant.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/organization_client_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/organization_client_metadata_organization_usage_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/organization_connection.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/organization_connection_information.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/organization_discovery_domain.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/organization_discovery_domain_status.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/organization_enabled_connection.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/organization_invitation.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/organization_invitation_invitee.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/organization_invitation_inviter.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/organization_member.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/organization_member_effective_role.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/organization_member_effective_role_source.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/organization_member_role.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/organization_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/organization_third_party_client_access_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/organization_usage_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/partial_groups_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/partial_phone_template_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/password_character_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/password_character_type_rule_policy_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/password_default_dictionaries_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/password_identical_characters_policy_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/password_max_length_exceeded_policy_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/password_sequential_characters_policy_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/patch_client_credential_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/patch_phone_provider_protection_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/patch_rate_limit_policy_configuration_request_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/patch_rate_limit_policy_configuration_request_content_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/patch_rate_limit_policy_configuration_request_content_action_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/patch_rate_limit_policy_configuration_request_content_one.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/patch_rate_limit_policy_configuration_request_content_one_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/patch_rate_limit_policy_configuration_request_content_zero.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/patch_rate_limit_policy_configuration_request_content_zero_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/patch_supplemental_signals_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/permission_request_payload.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/permissions_response_payload.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/phone_attribute.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/phone_attribute_identifier.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/phone_provider_channel_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/phone_provider_configuration.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/phone_provider_credentials.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/phone_provider_delivery_method_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/phone_provider_name_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/phone_provider_protection_backoff_strategy_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/phone_provider_schema_masked.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/phone_template.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/phone_template_body.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/phone_template_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/phone_template_notification_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/post_client_credential_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/post_connection_keys_alg_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/post_connection_keys_request_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/post_connections_keys_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/post_connections_keys_response_content_item.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/preferred_authentication_method_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/preview_cimd_metadata_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/prompt_group_name_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/prompt_language_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/public_key_credential.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/public_key_credential_algorithm_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/public_key_credential_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/rate_limit_policy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/rate_limit_policy_configuration.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/rate_limit_policy_configuration_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/rate_limit_policy_configuration_action_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/rate_limit_policy_configuration_one.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/rate_limit_policy_configuration_one_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/rate_limit_policy_configuration_zero.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/rate_limit_policy_configuration_zero_action.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/rate_limit_policy_consumer_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/rate_limit_policy_resource_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/refresh_token_date.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/refresh_token_date_object.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/refresh_token_device.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/refresh_token_expiration_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/refresh_token_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/refresh_token_resource_server.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/refresh_token_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/refresh_token_rotation_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/refresh_token_session_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/regenerate_users_recovery_code_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/register_cimd_client_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/reset_phone_template_request_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/reset_phone_template_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/resource_server.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/resource_server_authorization_policy.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/resource_server_consent_policy_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/resource_server_proof_of_possession.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/resource_server_proof_of_possession_mechanism_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/resource_server_proof_of_possession_required_for_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/resource_server_scope.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/resource_server_subject_type_authorization.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/resource_server_subject_type_authorization_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/resource_server_subject_type_authorization_client_policy_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/resource_server_subject_type_authorization_user.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/resource_server_subject_type_authorization_user_policy_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/resource_server_token_dialect_response_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/resource_server_token_dialect_schema_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/resource_server_token_encryption.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/resource_server_token_encryption_algorithm_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/resource_server_token_encryption_format_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/resource_server_token_encryption_key.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/resource_server_verification_key_pem_certificate.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/revoked_signing_keys_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/role.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/role_group.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/role_member.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/role_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/role_user.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/rollback_action_module_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/rotate_client_secret_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/rotate_connection_keys_request_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/rotate_connection_keys_signing_alg_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/rotate_connections_keys_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/rotate_signing_keys_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/rule.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/rules_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/scim_configuration.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/scim_mapping_item.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/scim_token_item.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/screen_group_name_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/search_engine_versions_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/self_service_profile.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/self_service_profile_allowed_strategy_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/self_service_profile_branding.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/self_service_profile_branding_colors.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/self_service_profile_branding_properties.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/self_service_profile_custom_text_language_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/self_service_profile_custom_text_page_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/self_service_profile_description.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/self_service_profile_sso_ticket_connection_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/self_service_profile_sso_ticket_connection_options.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/self_service_profile_sso_ticket_domain_aliases_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/self_service_profile_sso_ticket_domain_verification_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/self_service_profile_sso_ticket_enabled_features.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/self_service_profile_sso_ticket_enabled_organization.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/self_service_profile_sso_ticket_google_workspace_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/self_service_profile_sso_ticket_idp_initiated_client_protocol_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/self_service_profile_sso_ticket_idp_initiated_options.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/self_service_profile_sso_ticket_provisioning_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/self_service_profile_sso_ticket_provisioning_scope_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/self_service_profile_user_attribute.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/self_service_profile_user_attributes.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/session_actor_claim_value.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/session_actor_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/session_authentication_signal.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/session_authentication_signals.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/session_client_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/session_cookie_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/session_cookie_metadata_mode_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/session_cookie_mode_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/session_cookie_schema.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/session_date.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/session_device_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/session_ip.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/session_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/session_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/set_custom_signing_keys_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/set_email_template_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/set_guardian_factor_duo_settings_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/set_guardian_factor_phone_message_types_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/set_guardian_factor_phone_templates_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/set_guardian_factor_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/set_guardian_factor_sms_templates_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/set_guardian_factors_provider_phone_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/set_guardian_factors_provider_phone_twilio_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/set_guardian_factors_provider_push_notification_apns_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/set_guardian_factors_provider_push_notification_fcm_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/set_guardian_factors_provider_push_notification_fcmv_1_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/set_guardian_factors_provider_push_notification_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/set_guardian_factors_provider_push_notification_sns_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/set_guardian_factors_provider_sms_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/set_guardian_factors_provider_sms_twilio_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/set_guardian_policies_request_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/set_guardian_policies_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/set_network_acls_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/set_partials_request_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/set_rules_config_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/set_self_service_profile_custom_text_request_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/set_self_service_profile_custom_text_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/set_user_authentication_method_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/set_user_authentication_methods.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/set_user_authentication_methods_request_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/sets_custom_texts_by_language_request_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/signing_algorithm_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/signing_keys.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/signing_keys_date.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/signup_schema.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/signup_status_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/signup_verification.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/signup_verified.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/supported_locales.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/suspicious_ip_throttling_allowlist.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/suspicious_ip_throttling_allowlist_item.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/suspicious_ip_throttling_pre_custom_token_exchange_stage.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/suspicious_ip_throttling_pre_login_stage.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/suspicious_ip_throttling_pre_user_registration_stage.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/suspicious_ip_throttling_shields_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/suspicious_ip_throttling_stage.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/synchronize_groups_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/synchronized_group_payload.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/synchronized_group_selection_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/tenant_oidc_logout_settings.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/tenant_settings_country_codes.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/tenant_settings_country_codes_mode.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/tenant_settings_country_codes_mode_response.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/tenant_settings_country_codes_response.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/tenant_settings_device_flow.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/tenant_settings_device_flow_charset.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/tenant_settings_dynamic_client_registration_security_mode.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/tenant_settings_error_page.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/tenant_settings_flags.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/tenant_settings_guardian_page.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/tenant_settings_mtls.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/tenant_settings_nullable_security_headers.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/tenant_settings_password_page.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/tenant_settings_resource_parameter_profile.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/tenant_settings_sessions.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/tenant_settings_supported_locales_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/test_action_payload.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/test_action_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/test_action_result_payload.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/test_custom_domain_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/test_event_data_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/third_party_client_access_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/token_exchange_profile_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/token_exchange_profile_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/token_quota.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/token_quota_client_credentials.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/token_quota_configuration.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/token_vault_privileged_access_grant.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/token_vault_privileged_access_ip_allowlist_entry.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/too_many_requests_error_body.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/too_many_requests_error_body_error.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/too_many_requests_schema.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/too_many_requests_schema_error.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/twilio_provider_configuration.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/twilio_provider_credentials.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/twilio_provider_delivery_method_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/unauthorized_schema.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/unauthorized_schema_error.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/universal_login_experience_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_action_bindings_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_action_module_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_action_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_acul_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_attack_protection_captcha_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_bot_detection_settings_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_branding_colors.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_branding_font.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_branding_page_background.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_branding_phone_provider_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_branding_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_branding_theme_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_breached_password_detection_settings_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_brute_force_settings_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_client_grant_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_client_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_ad.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_adfs.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_amazon.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_apple.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_auth_0.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_auth_0_oidc.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_azure_ad.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_baidu.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_bitbucket.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_bitly.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_box.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_custom.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_daccount.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_dropbox.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_dwolla.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_email.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_evernote.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_evernote_sandbox.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_exact.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_facebook.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_fitbit.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_git_hub.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_google_apps.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_google_o_auth_2.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_instagram.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_ip.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_line.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_linkedin.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_o_auth_1.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_o_auth_2.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_office_365.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_oidc.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_okta.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_paypal.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_paypal_sandbox.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_ping_federate.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_planning_center.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_salesforce.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_salesforce_community.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_salesforce_sandbox.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_saml.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_sharepoint.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_shop.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_shopify.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_sms.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_soundcloud.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_thirty_seven_signals.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_twitter.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_untappd.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_vkontakte.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_weibo.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_windows_live.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_wordpress.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_yahoo.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_request_content_yandex.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_connection_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_cross_app_access_resource_app.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_custom_domain_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_default_canonical_domain_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_default_custom_domain_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_default_domain_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_directory_provisioning_request_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_directory_provisioning_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_email_provider_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_email_template_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_enabled_client_connections_request_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_enabled_client_connections_request_content_item.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_event_stream_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_flow_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_flows_vault_connection_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_flows_vault_connection_setup.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_form_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_guardian_factor_duo_settings_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_guardian_factors_provider_push_notification_apns_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_guardian_factors_provider_push_notification_fcm_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_guardian_factors_provider_push_notification_fcmv_1_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_guardian_factors_provider_push_notification_sns_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_hook_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_hook_secret_request_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_identity_assertion_authorization_grant.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_log_stream_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_network_acl_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_organization_all_connection_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_organization_client_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_organization_connection_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_organization_discovery_domain_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_organization_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_phone_template_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_rate_limit_policy_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_refresh_token_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_resource_server_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_risk_assessments_settings_new_device_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_risk_assessments_settings_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_role_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_rule_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_scim_configuration_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_self_service_profile_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_session_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_settings_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_suspicious_ip_throttling_settings_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_tenant_settings_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_token_quota.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_universal_login_template_request_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_universal_login_template_request_content_template.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_user_attribute_profile_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_user_authentication_method_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_user_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/update_verifiable_credential_template_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_app_metadata_schema.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_attribute_profile.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_attribute_profile_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_attribute_profile_name.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_attribute_profile_oidc_mapping.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_attribute_profile_patch_user_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_attribute_profile_saml_mapping.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_attribute_profile_strategy_overrides.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_attribute_profile_strategy_overrides_mapping.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_attribute_profile_strategy_overrides_user_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_attribute_profile_strategy_overrides_user_id_mapping.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_attribute_profile_template.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_attribute_profile_template_item.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_attribute_profile_user_attribute_additional_properties.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_attribute_profile_user_attributes.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_attribute_profile_user_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_attribute_profile_user_id_oidc_mapping_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_attribute_profile_user_id_oidc_strategy_override_mapping.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_attribute_profile_user_id_saml_mapping.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_authentication_method.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_authentication_method_properties.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_authentication_method_properties_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_block_identifier.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_effective_permission_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_effective_permission_role_source_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_effective_permission_role_source_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_effective_permission_source_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_effective_role.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_effective_role_source.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_enrollment_auth_method_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_enrollment_status_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_grant.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_groups_response_schema.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_id.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_identity.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_identity_provider_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_identity_schema.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_list_log_offset_paginated_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_metadata.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_metadata_schema.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_multifactor_provider_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_permission_schema.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_profile_data.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/user_response_schema.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/username_allowed_types.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/username_attribute.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/username_attribute_identifier.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/username_validation.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/users_enrollment.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/verifiable_credential_template_response.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/verification_method_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/verify_custom_domain_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/verify_email_ticket_response_content.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/x_509_certificate_credential.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/x_509_certificate_credential_type_enum.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/xss_protection_config.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/types/xss_protection_mode.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/user_attribute_profiles/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/user_attribute_profiles/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/user_blocks/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/user_blocks/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/user_blocks/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/user_grants/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/user_grants/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/user_grants/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/authentication_methods/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/authentication_methods/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/authentication_methods/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/authenticators/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/authenticators/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/authenticators/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/connected_accounts/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/connected_accounts/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/connected_accounts/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/effective_permissions/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/effective_permissions/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/effective_permissions/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/effective_permissions/sources/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/effective_permissions/sources/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/effective_permissions/sources/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/effective_permissions/sources/roles/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/effective_permissions/sources/roles/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/effective_permissions/sources/roles/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/effective_roles/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/effective_roles/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/effective_roles/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/effective_roles/sources/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/effective_roles/sources/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/effective_roles/sources/groups/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/effective_roles/sources/groups/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/effective_roles/sources/groups/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/effective_roles/sources/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/enrollments/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/enrollments/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/enrollments/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/groups/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/groups/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/groups/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/identities/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/identities/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/identities/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/logs/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/logs/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/logs/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/multifactor/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/multifactor/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/multifactor/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/organizations/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/organizations/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/organizations/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/permissions/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/permissions/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/permissions/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/refresh_token/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/refresh_token/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/refresh_token/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/risk_assessments/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/risk_assessments/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/risk_assessments/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/roles/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/roles/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/roles/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/sessions/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/sessions/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/users/sessions/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/verifiable_credentials/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/verifiable_credentials/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/verifiable_credentials/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/verifiable_credentials/verification/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/verifiable_credentials/verification/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/verifiable_credentials/verification/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/verifiable_credentials/verification/templates/__init__.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/verifiable_credentials/verification/templates/client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/verifiable_credentials/verification/templates/raw_client.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/version.py +0 -0
- {auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/py.typed +0 -0
|
@@ -214,10 +214,13 @@ if typing.TYPE_CHECKING:
|
|
|
214
214
|
ClientMobileAndroid,
|
|
215
215
|
ClientMobileiOs,
|
|
216
216
|
ClientMyOrganizationConfigurationAllowedStrategiesEnum,
|
|
217
|
+
ClientMyOrganizationConfigurationThirdPartyClientAccessAllowedValuesEnum,
|
|
218
|
+
ClientMyOrganizationConfigurationThirdPartyClientAccessDefaultValueEnum,
|
|
217
219
|
ClientMyOrganizationDeletionBehaviorEnum,
|
|
218
220
|
ClientMyOrganizationPatchConfiguration,
|
|
219
221
|
ClientMyOrganizationPostConfiguration,
|
|
220
222
|
ClientMyOrganizationResponseConfiguration,
|
|
223
|
+
ClientMyOrganizationThirdPartyClientAccessConfiguration,
|
|
221
224
|
ClientOidcBackchannelLogoutInitiators,
|
|
222
225
|
ClientOidcBackchannelLogoutInitiatorsEnum,
|
|
223
226
|
ClientOidcBackchannelLogoutInitiatorsModeEnum,
|
|
@@ -532,6 +535,11 @@ if typing.TYPE_CHECKING:
|
|
|
532
535
|
ConnectionProfile,
|
|
533
536
|
ConnectionProfileBitbucket,
|
|
534
537
|
ConnectionProfileConfig,
|
|
538
|
+
ConnectionProfileCrossAppAccessResourceApp,
|
|
539
|
+
ConnectionProfileCrossAppAccessResourceAppStatus,
|
|
540
|
+
ConnectionProfileCrossAppAccessResourceAppStatusAllowedValuesEnum,
|
|
541
|
+
ConnectionProfileCrossAppAccessResourceAppStatusDefaultValueEnum,
|
|
542
|
+
ConnectionProfileCrossAppAccessResourceAppStatusValueEnum,
|
|
535
543
|
ConnectionProfileEnabledFeatures,
|
|
536
544
|
ConnectionProfileId,
|
|
537
545
|
ConnectionProfileName,
|
|
@@ -756,6 +764,7 @@ if typing.TYPE_CHECKING:
|
|
|
756
764
|
ConnectionUpstreamParamsFacebook,
|
|
757
765
|
ConnectionUpstreamValue,
|
|
758
766
|
ConnectionUseCommonEndpointAzureAd,
|
|
767
|
+
ConnectionUseOauthSpecScope,
|
|
759
768
|
ConnectionUserAuthorizationUrloAuth1,
|
|
760
769
|
ConnectionUserIdAttributeSaml,
|
|
761
770
|
ConnectionUseridAttributeAzureAd,
|
|
@@ -2447,6 +2456,7 @@ if typing.TYPE_CHECKING:
|
|
|
2447
2456
|
GetActionVersionResponseContent,
|
|
2448
2457
|
GetActiveUsersCountStatsResponseContent,
|
|
2449
2458
|
GetAculResponseContent,
|
|
2459
|
+
GetAllKeysNetworkAclsResponseContent,
|
|
2450
2460
|
GetAttackProtectionCaptchaResponseContent,
|
|
2451
2461
|
GetBotDetectionSettingsResponseContent,
|
|
2452
2462
|
GetBrandingDefaultThemeResponseContent,
|
|
@@ -2717,6 +2727,7 @@ if typing.TYPE_CHECKING:
|
|
|
2717
2727
|
NetworkAclActionBlockEnum,
|
|
2718
2728
|
NetworkAclActionLogEnum,
|
|
2719
2729
|
NetworkAclActionRedirectEnum,
|
|
2730
|
+
NetworkAclKey,
|
|
2720
2731
|
NetworkAclKeyAlgorithmEnum,
|
|
2721
2732
|
NetworkAclMatch,
|
|
2722
2733
|
NetworkAclMatchConnectingIpv4Cidr,
|
|
@@ -2724,6 +2735,7 @@ if typing.TYPE_CHECKING:
|
|
|
2724
2735
|
NetworkAclMatchIpv4Cidr,
|
|
2725
2736
|
NetworkAclMatchIpv6Cidr,
|
|
2726
2737
|
NetworkAclRule,
|
|
2738
|
+
NetworkAclRuleMatchAllEnum,
|
|
2727
2739
|
NetworkAclRuleScopeEnum,
|
|
2728
2740
|
NetworkAclsResponseContent,
|
|
2729
2741
|
NotFoundErrorBody,
|
|
@@ -3236,8 +3248,6 @@ if typing.TYPE_CHECKING:
|
|
|
3236
3248
|
from .management_client import AsyncManagementClient, CustomDomainHeader, ManagementClient
|
|
3237
3249
|
from .token_provider import AsyncTokenProvider, TokenProvider
|
|
3238
3250
|
from .version import __version__
|
|
3239
|
-
from .management_client import AsyncManagementClient, CustomDomainHeader, ManagementClient
|
|
3240
|
-
from .token_provider import AsyncTokenProvider, TokenProvider
|
|
3241
3251
|
_dynamic_imports: typing.Dict[str, str] = {
|
|
3242
3252
|
"Action": ".types",
|
|
3243
3253
|
"ActionBase": ".types",
|
|
@@ -3452,10 +3462,13 @@ _dynamic_imports: typing.Dict[str, str] = {
|
|
|
3452
3462
|
"ClientMobileAndroid": ".types",
|
|
3453
3463
|
"ClientMobileiOs": ".types",
|
|
3454
3464
|
"ClientMyOrganizationConfigurationAllowedStrategiesEnum": ".types",
|
|
3465
|
+
"ClientMyOrganizationConfigurationThirdPartyClientAccessAllowedValuesEnum": ".types",
|
|
3466
|
+
"ClientMyOrganizationConfigurationThirdPartyClientAccessDefaultValueEnum": ".types",
|
|
3455
3467
|
"ClientMyOrganizationDeletionBehaviorEnum": ".types",
|
|
3456
3468
|
"ClientMyOrganizationPatchConfiguration": ".types",
|
|
3457
3469
|
"ClientMyOrganizationPostConfiguration": ".types",
|
|
3458
3470
|
"ClientMyOrganizationResponseConfiguration": ".types",
|
|
3471
|
+
"ClientMyOrganizationThirdPartyClientAccessConfiguration": ".types",
|
|
3459
3472
|
"ClientOidcBackchannelLogoutInitiators": ".types",
|
|
3460
3473
|
"ClientOidcBackchannelLogoutInitiatorsEnum": ".types",
|
|
3461
3474
|
"ClientOidcBackchannelLogoutInitiatorsModeEnum": ".types",
|
|
@@ -3771,6 +3784,11 @@ _dynamic_imports: typing.Dict[str, str] = {
|
|
|
3771
3784
|
"ConnectionProfile": ".types",
|
|
3772
3785
|
"ConnectionProfileBitbucket": ".types",
|
|
3773
3786
|
"ConnectionProfileConfig": ".types",
|
|
3787
|
+
"ConnectionProfileCrossAppAccessResourceApp": ".types",
|
|
3788
|
+
"ConnectionProfileCrossAppAccessResourceAppStatus": ".types",
|
|
3789
|
+
"ConnectionProfileCrossAppAccessResourceAppStatusAllowedValuesEnum": ".types",
|
|
3790
|
+
"ConnectionProfileCrossAppAccessResourceAppStatusDefaultValueEnum": ".types",
|
|
3791
|
+
"ConnectionProfileCrossAppAccessResourceAppStatusValueEnum": ".types",
|
|
3774
3792
|
"ConnectionProfileEnabledFeatures": ".types",
|
|
3775
3793
|
"ConnectionProfileId": ".types",
|
|
3776
3794
|
"ConnectionProfileName": ".types",
|
|
@@ -3995,6 +4013,7 @@ _dynamic_imports: typing.Dict[str, str] = {
|
|
|
3995
4013
|
"ConnectionUpstreamParamsFacebook": ".types",
|
|
3996
4014
|
"ConnectionUpstreamValue": ".types",
|
|
3997
4015
|
"ConnectionUseCommonEndpointAzureAd": ".types",
|
|
4016
|
+
"ConnectionUseOauthSpecScope": ".types",
|
|
3998
4017
|
"ConnectionUserAuthorizationUrloAuth1": ".types",
|
|
3999
4018
|
"ConnectionUserIdAttributeSaml": ".types",
|
|
4000
4019
|
"ConnectionUseridAttributeAzureAd": ".types",
|
|
@@ -4289,7 +4308,6 @@ _dynamic_imports: typing.Dict[str, str] = {
|
|
|
4289
4308
|
"CspReportingEndpoints": ".types",
|
|
4290
4309
|
"CspReportingInfrastructure": ".types",
|
|
4291
4310
|
"CustomDomain": ".types",
|
|
4292
|
-
"CustomDomainHeader": ".management_client",
|
|
4293
4311
|
"CustomDomainCustomClientIpHeader": ".types",
|
|
4294
4312
|
"CustomDomainCustomClientIpHeaderEnum": ".types",
|
|
4295
4313
|
"CustomDomainHeader": ".management_client",
|
|
@@ -5693,6 +5711,7 @@ _dynamic_imports: typing.Dict[str, str] = {
|
|
|
5693
5711
|
"GetActionVersionResponseContent": ".types",
|
|
5694
5712
|
"GetActiveUsersCountStatsResponseContent": ".types",
|
|
5695
5713
|
"GetAculResponseContent": ".types",
|
|
5714
|
+
"GetAllKeysNetworkAclsResponseContent": ".types",
|
|
5696
5715
|
"GetAttackProtectionCaptchaResponseContent": ".types",
|
|
5697
5716
|
"GetBotDetectionSettingsResponseContent": ".types",
|
|
5698
5717
|
"GetBrandingDefaultThemeResponseContent": ".types",
|
|
@@ -5966,6 +5985,7 @@ _dynamic_imports: typing.Dict[str, str] = {
|
|
|
5966
5985
|
"NetworkAclActionBlockEnum": ".types",
|
|
5967
5986
|
"NetworkAclActionLogEnum": ".types",
|
|
5968
5987
|
"NetworkAclActionRedirectEnum": ".types",
|
|
5988
|
+
"NetworkAclKey": ".types",
|
|
5969
5989
|
"NetworkAclKeyAlgorithmEnum": ".types",
|
|
5970
5990
|
"NetworkAclMatch": ".types",
|
|
5971
5991
|
"NetworkAclMatchConnectingIpv4Cidr": ".types",
|
|
@@ -5973,6 +5993,7 @@ _dynamic_imports: typing.Dict[str, str] = {
|
|
|
5973
5993
|
"NetworkAclMatchIpv4Cidr": ".types",
|
|
5974
5994
|
"NetworkAclMatchIpv6Cidr": ".types",
|
|
5975
5995
|
"NetworkAclRule": ".types",
|
|
5996
|
+
"NetworkAclRuleMatchAllEnum": ".types",
|
|
5976
5997
|
"NetworkAclRuleScopeEnum": ".types",
|
|
5977
5998
|
"NetworkAclsResponseContent": ".types",
|
|
5978
5999
|
"NotFoundError": ".errors",
|
|
@@ -6707,10 +6728,13 @@ __all__ = [
|
|
|
6707
6728
|
"ClientMobileAndroid",
|
|
6708
6729
|
"ClientMobileiOs",
|
|
6709
6730
|
"ClientMyOrganizationConfigurationAllowedStrategiesEnum",
|
|
6731
|
+
"ClientMyOrganizationConfigurationThirdPartyClientAccessAllowedValuesEnum",
|
|
6732
|
+
"ClientMyOrganizationConfigurationThirdPartyClientAccessDefaultValueEnum",
|
|
6710
6733
|
"ClientMyOrganizationDeletionBehaviorEnum",
|
|
6711
6734
|
"ClientMyOrganizationPatchConfiguration",
|
|
6712
6735
|
"ClientMyOrganizationPostConfiguration",
|
|
6713
6736
|
"ClientMyOrganizationResponseConfiguration",
|
|
6737
|
+
"ClientMyOrganizationThirdPartyClientAccessConfiguration",
|
|
6714
6738
|
"ClientOidcBackchannelLogoutInitiators",
|
|
6715
6739
|
"ClientOidcBackchannelLogoutInitiatorsEnum",
|
|
6716
6740
|
"ClientOidcBackchannelLogoutInitiatorsModeEnum",
|
|
@@ -7026,6 +7050,11 @@ __all__ = [
|
|
|
7026
7050
|
"ConnectionProfile",
|
|
7027
7051
|
"ConnectionProfileBitbucket",
|
|
7028
7052
|
"ConnectionProfileConfig",
|
|
7053
|
+
"ConnectionProfileCrossAppAccessResourceApp",
|
|
7054
|
+
"ConnectionProfileCrossAppAccessResourceAppStatus",
|
|
7055
|
+
"ConnectionProfileCrossAppAccessResourceAppStatusAllowedValuesEnum",
|
|
7056
|
+
"ConnectionProfileCrossAppAccessResourceAppStatusDefaultValueEnum",
|
|
7057
|
+
"ConnectionProfileCrossAppAccessResourceAppStatusValueEnum",
|
|
7029
7058
|
"ConnectionProfileEnabledFeatures",
|
|
7030
7059
|
"ConnectionProfileId",
|
|
7031
7060
|
"ConnectionProfileName",
|
|
@@ -7250,6 +7279,7 @@ __all__ = [
|
|
|
7250
7279
|
"ConnectionUpstreamParamsFacebook",
|
|
7251
7280
|
"ConnectionUpstreamValue",
|
|
7252
7281
|
"ConnectionUseCommonEndpointAzureAd",
|
|
7282
|
+
"ConnectionUseOauthSpecScope",
|
|
7253
7283
|
"ConnectionUserAuthorizationUrloAuth1",
|
|
7254
7284
|
"ConnectionUserIdAttributeSaml",
|
|
7255
7285
|
"ConnectionUseridAttributeAzureAd",
|
|
@@ -7544,7 +7574,6 @@ __all__ = [
|
|
|
7544
7574
|
"CspReportingEndpoints",
|
|
7545
7575
|
"CspReportingInfrastructure",
|
|
7546
7576
|
"CustomDomain",
|
|
7547
|
-
"CustomDomainHeader",
|
|
7548
7577
|
"CustomDomainCustomClientIpHeader",
|
|
7549
7578
|
"CustomDomainCustomClientIpHeaderEnum",
|
|
7550
7579
|
"CustomDomainHeader",
|
|
@@ -8948,6 +8977,7 @@ __all__ = [
|
|
|
8948
8977
|
"GetActionVersionResponseContent",
|
|
8949
8978
|
"GetActiveUsersCountStatsResponseContent",
|
|
8950
8979
|
"GetAculResponseContent",
|
|
8980
|
+
"GetAllKeysNetworkAclsResponseContent",
|
|
8951
8981
|
"GetAttackProtectionCaptchaResponseContent",
|
|
8952
8982
|
"GetBotDetectionSettingsResponseContent",
|
|
8953
8983
|
"GetBrandingDefaultThemeResponseContent",
|
|
@@ -9221,6 +9251,7 @@ __all__ = [
|
|
|
9221
9251
|
"NetworkAclActionBlockEnum",
|
|
9222
9252
|
"NetworkAclActionLogEnum",
|
|
9223
9253
|
"NetworkAclActionRedirectEnum",
|
|
9254
|
+
"NetworkAclKey",
|
|
9224
9255
|
"NetworkAclKeyAlgorithmEnum",
|
|
9225
9256
|
"NetworkAclMatch",
|
|
9226
9257
|
"NetworkAclMatchConnectingIpv4Cidr",
|
|
@@ -9228,6 +9259,7 @@ __all__ = [
|
|
|
9228
9259
|
"NetworkAclMatchIpv4Cidr",
|
|
9229
9260
|
"NetworkAclMatchIpv6Cidr",
|
|
9230
9261
|
"NetworkAclRule",
|
|
9262
|
+
"NetworkAclRuleMatchAllEnum",
|
|
9231
9263
|
"NetworkAclRuleScopeEnum",
|
|
9232
9264
|
"NetworkAclsResponseContent",
|
|
9233
9265
|
"NotFoundError",
|
|
@@ -119,7 +119,7 @@ class ClientsClient:
|
|
|
119
119
|
`jwt_configuration.lifetime_in_seconds`, `jwt_configuration.secret_encoded`,
|
|
120
120
|
`jwt_configuration.scopes`, `jwt_configuration.alg`, `api_type`,
|
|
121
121
|
`logo_uri`, `allowed_clients`, `owners`, `custom_login_page`,
|
|
122
|
-
`
|
|
122
|
+
`custom_login_page_on`, `sso`, `addons`, `form_template`,
|
|
123
123
|
`custom_login_page_codeview`, `resource_servers`, `client_metadata`,
|
|
124
124
|
`mobile`, `mobile.android`, `mobile.ios`, `allowed_logout_urls`,
|
|
125
125
|
`token_endpoint_auth_method`, `is_first_party`, `oidc_conformant`,
|
|
@@ -621,7 +621,7 @@ class ClientsClient:
|
|
|
621
621
|
`jwt_configuration.lifetime_in_seconds`, `jwt_configuration.secret_encoded`,
|
|
622
622
|
`jwt_configuration.scopes`, `jwt_configuration.alg`, `api_type`,
|
|
623
623
|
`logo_uri`, `allowed_clients`, `owners`, `custom_login_page`,
|
|
624
|
-
`
|
|
624
|
+
`custom_login_page_on`, `sso`, `addons`, `form_template`,
|
|
625
625
|
`custom_login_page_codeview`, `resource_servers`, `client_metadata`,
|
|
626
626
|
`mobile`, `mobile.android`, `mobile.ios`, `allowed_logout_urls`,
|
|
627
627
|
`token_endpoint_auth_method`, `is_first_party`, `oidc_conformant`,
|
|
@@ -1107,7 +1107,7 @@ class AsyncClientsClient:
|
|
|
1107
1107
|
`jwt_configuration.lifetime_in_seconds`, `jwt_configuration.secret_encoded`,
|
|
1108
1108
|
`jwt_configuration.scopes`, `jwt_configuration.alg`, `api_type`,
|
|
1109
1109
|
`logo_uri`, `allowed_clients`, `owners`, `custom_login_page`,
|
|
1110
|
-
`
|
|
1110
|
+
`custom_login_page_on`, `sso`, `addons`, `form_template`,
|
|
1111
1111
|
`custom_login_page_codeview`, `resource_servers`, `client_metadata`,
|
|
1112
1112
|
`mobile`, `mobile.android`, `mobile.ios`, `allowed_logout_urls`,
|
|
1113
1113
|
`token_endpoint_auth_method`, `is_first_party`, `oidc_conformant`,
|
|
@@ -1642,7 +1642,7 @@ class AsyncClientsClient:
|
|
|
1642
1642
|
`jwt_configuration.lifetime_in_seconds`, `jwt_configuration.secret_encoded`,
|
|
1643
1643
|
`jwt_configuration.scopes`, `jwt_configuration.alg`, `api_type`,
|
|
1644
1644
|
`logo_uri`, `allowed_clients`, `owners`, `custom_login_page`,
|
|
1645
|
-
`
|
|
1645
|
+
`custom_login_page_on`, `sso`, `addons`, `form_template`,
|
|
1646
1646
|
`custom_login_page_codeview`, `resource_servers`, `client_metadata`,
|
|
1647
1647
|
`mobile`, `mobile.android`, `mobile.ios`, `allowed_logout_urls`,
|
|
1648
1648
|
`token_endpoint_auth_method`, `is_first_party`, `oidc_conformant`,
|
|
@@ -114,7 +114,7 @@ class RawClientsClient:
|
|
|
114
114
|
`jwt_configuration.lifetime_in_seconds`, `jwt_configuration.secret_encoded`,
|
|
115
115
|
`jwt_configuration.scopes`, `jwt_configuration.alg`, `api_type`,
|
|
116
116
|
`logo_uri`, `allowed_clients`, `owners`, `custom_login_page`,
|
|
117
|
-
`
|
|
117
|
+
`custom_login_page_on`, `sso`, `addons`, `form_template`,
|
|
118
118
|
`custom_login_page_codeview`, `resource_servers`, `client_metadata`,
|
|
119
119
|
`mobile`, `mobile.android`, `mobile.ios`, `allowed_logout_urls`,
|
|
120
120
|
`token_endpoint_auth_method`, `is_first_party`, `oidc_conformant`,
|
|
@@ -946,7 +946,7 @@ class RawClientsClient:
|
|
|
946
946
|
`jwt_configuration.lifetime_in_seconds`, `jwt_configuration.secret_encoded`,
|
|
947
947
|
`jwt_configuration.scopes`, `jwt_configuration.alg`, `api_type`,
|
|
948
948
|
`logo_uri`, `allowed_clients`, `owners`, `custom_login_page`,
|
|
949
|
-
`
|
|
949
|
+
`custom_login_page_on`, `sso`, `addons`, `form_template`,
|
|
950
950
|
`custom_login_page_codeview`, `resource_servers`, `client_metadata`,
|
|
951
951
|
`mobile`, `mobile.android`, `mobile.ios`, `allowed_logout_urls`,
|
|
952
952
|
`token_endpoint_auth_method`, `is_first_party`, `oidc_conformant`,
|
|
@@ -1705,7 +1705,7 @@ class AsyncRawClientsClient:
|
|
|
1705
1705
|
`jwt_configuration.lifetime_in_seconds`, `jwt_configuration.secret_encoded`,
|
|
1706
1706
|
`jwt_configuration.scopes`, `jwt_configuration.alg`, `api_type`,
|
|
1707
1707
|
`logo_uri`, `allowed_clients`, `owners`, `custom_login_page`,
|
|
1708
|
-
`
|
|
1708
|
+
`custom_login_page_on`, `sso`, `addons`, `form_template`,
|
|
1709
1709
|
`custom_login_page_codeview`, `resource_servers`, `client_metadata`,
|
|
1710
1710
|
`mobile`, `mobile.android`, `mobile.ios`, `allowed_logout_urls`,
|
|
1711
1711
|
`token_endpoint_auth_method`, `is_first_party`, `oidc_conformant`,
|
|
@@ -2540,7 +2540,7 @@ class AsyncRawClientsClient:
|
|
|
2540
2540
|
`jwt_configuration.lifetime_in_seconds`, `jwt_configuration.secret_encoded`,
|
|
2541
2541
|
`jwt_configuration.scopes`, `jwt_configuration.alg`, `api_type`,
|
|
2542
2542
|
`logo_uri`, `allowed_clients`, `owners`, `custom_login_page`,
|
|
2543
|
-
`
|
|
2543
|
+
`custom_login_page_on`, `sso`, `addons`, `form_template`,
|
|
2544
2544
|
`custom_login_page_codeview`, `resource_servers`, `client_metadata`,
|
|
2545
2545
|
`mobile`, `mobile.android`, `mobile.ios`, `allowed_logout_urls`,
|
|
2546
2546
|
`token_endpoint_auth_method`, `is_first_party`, `oidc_conformant`,
|
{auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/connection_profiles/client.py
RENAMED
|
@@ -8,6 +8,7 @@ from ..core.request_options import RequestOptions
|
|
|
8
8
|
from ..types.connection_name_prefix_template import ConnectionNamePrefixTemplate
|
|
9
9
|
from ..types.connection_profile import ConnectionProfile
|
|
10
10
|
from ..types.connection_profile_config import ConnectionProfileConfig
|
|
11
|
+
from ..types.connection_profile_cross_app_access_resource_app import ConnectionProfileCrossAppAccessResourceApp
|
|
11
12
|
from ..types.connection_profile_enabled_features import ConnectionProfileEnabledFeatures
|
|
12
13
|
from ..types.connection_profile_name import ConnectionProfileName
|
|
13
14
|
from ..types.connection_profile_organization import ConnectionProfileOrganization
|
|
@@ -93,6 +94,7 @@ class ConnectionProfilesClient:
|
|
|
93
94
|
enabled_features: typing.Optional[ConnectionProfileEnabledFeatures] = OMIT,
|
|
94
95
|
connection_config: typing.Optional[ConnectionProfileConfig] = OMIT,
|
|
95
96
|
strategy_overrides: typing.Optional[ConnectionProfileStrategyOverrides] = OMIT,
|
|
97
|
+
cross_app_access_resource_app: typing.Optional[ConnectionProfileCrossAppAccessResourceApp] = OMIT,
|
|
96
98
|
request_options: typing.Optional[RequestOptions] = None,
|
|
97
99
|
) -> CreateConnectionProfileResponseContent:
|
|
98
100
|
"""
|
|
@@ -112,6 +114,8 @@ class ConnectionProfilesClient:
|
|
|
112
114
|
|
|
113
115
|
strategy_overrides : typing.Optional[ConnectionProfileStrategyOverrides]
|
|
114
116
|
|
|
117
|
+
cross_app_access_resource_app : typing.Optional[ConnectionProfileCrossAppAccessResourceApp]
|
|
118
|
+
|
|
115
119
|
request_options : typing.Optional[RequestOptions]
|
|
116
120
|
Request-specific configuration.
|
|
117
121
|
|
|
@@ -138,6 +142,7 @@ class ConnectionProfilesClient:
|
|
|
138
142
|
enabled_features=enabled_features,
|
|
139
143
|
connection_config=connection_config,
|
|
140
144
|
strategy_overrides=strategy_overrides,
|
|
145
|
+
cross_app_access_resource_app=cross_app_access_resource_app,
|
|
141
146
|
request_options=request_options,
|
|
142
147
|
)
|
|
143
148
|
return _response.data
|
|
@@ -276,6 +281,7 @@ class ConnectionProfilesClient:
|
|
|
276
281
|
enabled_features: typing.Optional[ConnectionProfileEnabledFeatures] = OMIT,
|
|
277
282
|
connection_config: typing.Optional[ConnectionProfileConfig] = OMIT,
|
|
278
283
|
strategy_overrides: typing.Optional[ConnectionProfileStrategyOverrides] = OMIT,
|
|
284
|
+
cross_app_access_resource_app: typing.Optional[ConnectionProfileCrossAppAccessResourceApp] = OMIT,
|
|
279
285
|
request_options: typing.Optional[RequestOptions] = None,
|
|
280
286
|
) -> UpdateConnectionProfileResponseContent:
|
|
281
287
|
"""
|
|
@@ -298,6 +304,8 @@ class ConnectionProfilesClient:
|
|
|
298
304
|
|
|
299
305
|
strategy_overrides : typing.Optional[ConnectionProfileStrategyOverrides]
|
|
300
306
|
|
|
307
|
+
cross_app_access_resource_app : typing.Optional[ConnectionProfileCrossAppAccessResourceApp]
|
|
308
|
+
|
|
301
309
|
request_options : typing.Optional[RequestOptions]
|
|
302
310
|
Request-specific configuration.
|
|
303
311
|
|
|
@@ -325,6 +333,7 @@ class ConnectionProfilesClient:
|
|
|
325
333
|
enabled_features=enabled_features,
|
|
326
334
|
connection_config=connection_config,
|
|
327
335
|
strategy_overrides=strategy_overrides,
|
|
336
|
+
cross_app_access_resource_app=cross_app_access_resource_app,
|
|
328
337
|
request_options=request_options,
|
|
329
338
|
)
|
|
330
339
|
return _response.data
|
|
@@ -408,6 +417,7 @@ class AsyncConnectionProfilesClient:
|
|
|
408
417
|
enabled_features: typing.Optional[ConnectionProfileEnabledFeatures] = OMIT,
|
|
409
418
|
connection_config: typing.Optional[ConnectionProfileConfig] = OMIT,
|
|
410
419
|
strategy_overrides: typing.Optional[ConnectionProfileStrategyOverrides] = OMIT,
|
|
420
|
+
cross_app_access_resource_app: typing.Optional[ConnectionProfileCrossAppAccessResourceApp] = OMIT,
|
|
411
421
|
request_options: typing.Optional[RequestOptions] = None,
|
|
412
422
|
) -> CreateConnectionProfileResponseContent:
|
|
413
423
|
"""
|
|
@@ -427,6 +437,8 @@ class AsyncConnectionProfilesClient:
|
|
|
427
437
|
|
|
428
438
|
strategy_overrides : typing.Optional[ConnectionProfileStrategyOverrides]
|
|
429
439
|
|
|
440
|
+
cross_app_access_resource_app : typing.Optional[ConnectionProfileCrossAppAccessResourceApp]
|
|
441
|
+
|
|
430
442
|
request_options : typing.Optional[RequestOptions]
|
|
431
443
|
Request-specific configuration.
|
|
432
444
|
|
|
@@ -461,6 +473,7 @@ class AsyncConnectionProfilesClient:
|
|
|
461
473
|
enabled_features=enabled_features,
|
|
462
474
|
connection_config=connection_config,
|
|
463
475
|
strategy_overrides=strategy_overrides,
|
|
476
|
+
cross_app_access_resource_app=cross_app_access_resource_app,
|
|
464
477
|
request_options=request_options,
|
|
465
478
|
)
|
|
466
479
|
return _response.data
|
|
@@ -631,6 +644,7 @@ class AsyncConnectionProfilesClient:
|
|
|
631
644
|
enabled_features: typing.Optional[ConnectionProfileEnabledFeatures] = OMIT,
|
|
632
645
|
connection_config: typing.Optional[ConnectionProfileConfig] = OMIT,
|
|
633
646
|
strategy_overrides: typing.Optional[ConnectionProfileStrategyOverrides] = OMIT,
|
|
647
|
+
cross_app_access_resource_app: typing.Optional[ConnectionProfileCrossAppAccessResourceApp] = OMIT,
|
|
634
648
|
request_options: typing.Optional[RequestOptions] = None,
|
|
635
649
|
) -> UpdateConnectionProfileResponseContent:
|
|
636
650
|
"""
|
|
@@ -653,6 +667,8 @@ class AsyncConnectionProfilesClient:
|
|
|
653
667
|
|
|
654
668
|
strategy_overrides : typing.Optional[ConnectionProfileStrategyOverrides]
|
|
655
669
|
|
|
670
|
+
cross_app_access_resource_app : typing.Optional[ConnectionProfileCrossAppAccessResourceApp]
|
|
671
|
+
|
|
656
672
|
request_options : typing.Optional[RequestOptions]
|
|
657
673
|
Request-specific configuration.
|
|
658
674
|
|
|
@@ -688,6 +704,7 @@ class AsyncConnectionProfilesClient:
|
|
|
688
704
|
enabled_features=enabled_features,
|
|
689
705
|
connection_config=connection_config,
|
|
690
706
|
strategy_overrides=strategy_overrides,
|
|
707
|
+
cross_app_access_resource_app=cross_app_access_resource_app,
|
|
691
708
|
request_options=request_options,
|
|
692
709
|
)
|
|
693
710
|
return _response.data
|
{auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/connection_profiles/raw_client.py
RENAMED
|
@@ -21,6 +21,7 @@ from ..errors.unauthorized_error import UnauthorizedError
|
|
|
21
21
|
from ..types.connection_name_prefix_template import ConnectionNamePrefixTemplate
|
|
22
22
|
from ..types.connection_profile import ConnectionProfile
|
|
23
23
|
from ..types.connection_profile_config import ConnectionProfileConfig
|
|
24
|
+
from ..types.connection_profile_cross_app_access_resource_app import ConnectionProfileCrossAppAccessResourceApp
|
|
24
25
|
from ..types.connection_profile_enabled_features import ConnectionProfileEnabledFeatures
|
|
25
26
|
from ..types.connection_profile_name import ConnectionProfileName
|
|
26
27
|
from ..types.connection_profile_organization import ConnectionProfileOrganization
|
|
@@ -156,6 +157,7 @@ class RawConnectionProfilesClient:
|
|
|
156
157
|
enabled_features: typing.Optional[ConnectionProfileEnabledFeatures] = OMIT,
|
|
157
158
|
connection_config: typing.Optional[ConnectionProfileConfig] = OMIT,
|
|
158
159
|
strategy_overrides: typing.Optional[ConnectionProfileStrategyOverrides] = OMIT,
|
|
160
|
+
cross_app_access_resource_app: typing.Optional[ConnectionProfileCrossAppAccessResourceApp] = OMIT,
|
|
159
161
|
request_options: typing.Optional[RequestOptions] = None,
|
|
160
162
|
) -> HttpResponse[CreateConnectionProfileResponseContent]:
|
|
161
163
|
"""
|
|
@@ -175,6 +177,8 @@ class RawConnectionProfilesClient:
|
|
|
175
177
|
|
|
176
178
|
strategy_overrides : typing.Optional[ConnectionProfileStrategyOverrides]
|
|
177
179
|
|
|
180
|
+
cross_app_access_resource_app : typing.Optional[ConnectionProfileCrossAppAccessResourceApp]
|
|
181
|
+
|
|
178
182
|
request_options : typing.Optional[RequestOptions]
|
|
179
183
|
Request-specific configuration.
|
|
180
184
|
|
|
@@ -199,6 +203,11 @@ class RawConnectionProfilesClient:
|
|
|
199
203
|
"strategy_overrides": convert_and_respect_annotation_metadata(
|
|
200
204
|
object_=strategy_overrides, annotation=ConnectionProfileStrategyOverrides, direction="write"
|
|
201
205
|
),
|
|
206
|
+
"cross_app_access_resource_app": convert_and_respect_annotation_metadata(
|
|
207
|
+
object_=cross_app_access_resource_app,
|
|
208
|
+
annotation=ConnectionProfileCrossAppAccessResourceApp,
|
|
209
|
+
direction="write",
|
|
210
|
+
),
|
|
202
211
|
},
|
|
203
212
|
headers={
|
|
204
213
|
"content-type": "application/json",
|
|
@@ -603,6 +612,7 @@ class RawConnectionProfilesClient:
|
|
|
603
612
|
enabled_features: typing.Optional[ConnectionProfileEnabledFeatures] = OMIT,
|
|
604
613
|
connection_config: typing.Optional[ConnectionProfileConfig] = OMIT,
|
|
605
614
|
strategy_overrides: typing.Optional[ConnectionProfileStrategyOverrides] = OMIT,
|
|
615
|
+
cross_app_access_resource_app: typing.Optional[ConnectionProfileCrossAppAccessResourceApp] = OMIT,
|
|
606
616
|
request_options: typing.Optional[RequestOptions] = None,
|
|
607
617
|
) -> HttpResponse[UpdateConnectionProfileResponseContent]:
|
|
608
618
|
"""
|
|
@@ -625,6 +635,8 @@ class RawConnectionProfilesClient:
|
|
|
625
635
|
|
|
626
636
|
strategy_overrides : typing.Optional[ConnectionProfileStrategyOverrides]
|
|
627
637
|
|
|
638
|
+
cross_app_access_resource_app : typing.Optional[ConnectionProfileCrossAppAccessResourceApp]
|
|
639
|
+
|
|
628
640
|
request_options : typing.Optional[RequestOptions]
|
|
629
641
|
Request-specific configuration.
|
|
630
642
|
|
|
@@ -649,6 +661,11 @@ class RawConnectionProfilesClient:
|
|
|
649
661
|
"strategy_overrides": convert_and_respect_annotation_metadata(
|
|
650
662
|
object_=strategy_overrides, annotation=ConnectionProfileStrategyOverrides, direction="write"
|
|
651
663
|
),
|
|
664
|
+
"cross_app_access_resource_app": convert_and_respect_annotation_metadata(
|
|
665
|
+
object_=cross_app_access_resource_app,
|
|
666
|
+
annotation=ConnectionProfileCrossAppAccessResourceApp,
|
|
667
|
+
direction="write",
|
|
668
|
+
),
|
|
652
669
|
},
|
|
653
670
|
headers={
|
|
654
671
|
"content-type": "application/json",
|
|
@@ -853,6 +870,7 @@ class AsyncRawConnectionProfilesClient:
|
|
|
853
870
|
enabled_features: typing.Optional[ConnectionProfileEnabledFeatures] = OMIT,
|
|
854
871
|
connection_config: typing.Optional[ConnectionProfileConfig] = OMIT,
|
|
855
872
|
strategy_overrides: typing.Optional[ConnectionProfileStrategyOverrides] = OMIT,
|
|
873
|
+
cross_app_access_resource_app: typing.Optional[ConnectionProfileCrossAppAccessResourceApp] = OMIT,
|
|
856
874
|
request_options: typing.Optional[RequestOptions] = None,
|
|
857
875
|
) -> AsyncHttpResponse[CreateConnectionProfileResponseContent]:
|
|
858
876
|
"""
|
|
@@ -872,6 +890,8 @@ class AsyncRawConnectionProfilesClient:
|
|
|
872
890
|
|
|
873
891
|
strategy_overrides : typing.Optional[ConnectionProfileStrategyOverrides]
|
|
874
892
|
|
|
893
|
+
cross_app_access_resource_app : typing.Optional[ConnectionProfileCrossAppAccessResourceApp]
|
|
894
|
+
|
|
875
895
|
request_options : typing.Optional[RequestOptions]
|
|
876
896
|
Request-specific configuration.
|
|
877
897
|
|
|
@@ -896,6 +916,11 @@ class AsyncRawConnectionProfilesClient:
|
|
|
896
916
|
"strategy_overrides": convert_and_respect_annotation_metadata(
|
|
897
917
|
object_=strategy_overrides, annotation=ConnectionProfileStrategyOverrides, direction="write"
|
|
898
918
|
),
|
|
919
|
+
"cross_app_access_resource_app": convert_and_respect_annotation_metadata(
|
|
920
|
+
object_=cross_app_access_resource_app,
|
|
921
|
+
annotation=ConnectionProfileCrossAppAccessResourceApp,
|
|
922
|
+
direction="write",
|
|
923
|
+
),
|
|
899
924
|
},
|
|
900
925
|
headers={
|
|
901
926
|
"content-type": "application/json",
|
|
@@ -1302,6 +1327,7 @@ class AsyncRawConnectionProfilesClient:
|
|
|
1302
1327
|
enabled_features: typing.Optional[ConnectionProfileEnabledFeatures] = OMIT,
|
|
1303
1328
|
connection_config: typing.Optional[ConnectionProfileConfig] = OMIT,
|
|
1304
1329
|
strategy_overrides: typing.Optional[ConnectionProfileStrategyOverrides] = OMIT,
|
|
1330
|
+
cross_app_access_resource_app: typing.Optional[ConnectionProfileCrossAppAccessResourceApp] = OMIT,
|
|
1305
1331
|
request_options: typing.Optional[RequestOptions] = None,
|
|
1306
1332
|
) -> AsyncHttpResponse[UpdateConnectionProfileResponseContent]:
|
|
1307
1333
|
"""
|
|
@@ -1324,6 +1350,8 @@ class AsyncRawConnectionProfilesClient:
|
|
|
1324
1350
|
|
|
1325
1351
|
strategy_overrides : typing.Optional[ConnectionProfileStrategyOverrides]
|
|
1326
1352
|
|
|
1353
|
+
cross_app_access_resource_app : typing.Optional[ConnectionProfileCrossAppAccessResourceApp]
|
|
1354
|
+
|
|
1327
1355
|
request_options : typing.Optional[RequestOptions]
|
|
1328
1356
|
Request-specific configuration.
|
|
1329
1357
|
|
|
@@ -1348,6 +1376,11 @@ class AsyncRawConnectionProfilesClient:
|
|
|
1348
1376
|
"strategy_overrides": convert_and_respect_annotation_metadata(
|
|
1349
1377
|
object_=strategy_overrides, annotation=ConnectionProfileStrategyOverrides, direction="write"
|
|
1350
1378
|
),
|
|
1379
|
+
"cross_app_access_resource_app": convert_and_respect_annotation_metadata(
|
|
1380
|
+
object_=cross_app_access_resource_app,
|
|
1381
|
+
annotation=ConnectionProfileCrossAppAccessResourceApp,
|
|
1382
|
+
direction="write",
|
|
1383
|
+
),
|
|
1351
1384
|
},
|
|
1352
1385
|
headers={
|
|
1353
1386
|
"content-type": "application/json",
|
|
@@ -347,7 +347,7 @@ class ConnectionsClient:
|
|
|
347
347
|
"""
|
|
348
348
|
Update details for a specific [connection](https://auth0.com/docs/authenticate/identity-providers), including option properties for identity provider configuration.
|
|
349
349
|
|
|
350
|
-
**Note**: If you use the `options` parameter, the entire `options` object is overridden. To avoid partial data or other issues, ensure all parameters are present when using this option.
|
|
350
|
+
**Note**: If you use the `options` parameter, the entire `options` object is overridden. To avoid partial data or other issues, ensure all parameters are present when using this option. If any options are unspecified, the default will be used, even if it differs from the existing value.
|
|
351
351
|
|
|
352
352
|
Parameters
|
|
353
353
|
----------
|
|
@@ -832,7 +832,7 @@ class AsyncConnectionsClient:
|
|
|
832
832
|
"""
|
|
833
833
|
Update details for a specific [connection](https://auth0.com/docs/authenticate/identity-providers), including option properties for identity provider configuration.
|
|
834
834
|
|
|
835
|
-
**Note**: If you use the `options` parameter, the entire `options` object is overridden. To avoid partial data or other issues, ensure all parameters are present when using this option.
|
|
835
|
+
**Note**: If you use the `options` parameter, the entire `options` object is overridden. To avoid partial data or other issues, ensure all parameters are present when using this option. If any options are unspecified, the default will be used, even if it differs from the existing value.
|
|
836
836
|
|
|
837
837
|
Parameters
|
|
838
838
|
----------
|
|
@@ -582,7 +582,7 @@ class RawConnectionsClient:
|
|
|
582
582
|
"""
|
|
583
583
|
Update details for a specific [connection](https://auth0.com/docs/authenticate/identity-providers), including option properties for identity provider configuration.
|
|
584
584
|
|
|
585
|
-
**Note**: If you use the `options` parameter, the entire `options` object is overridden. To avoid partial data or other issues, ensure all parameters are present when using this option.
|
|
585
|
+
**Note**: If you use the `options` parameter, the entire `options` object is overridden. To avoid partial data or other issues, ensure all parameters are present when using this option. If any options are unspecified, the default will be used, even if it differs from the existing value.
|
|
586
586
|
|
|
587
587
|
Parameters
|
|
588
588
|
----------
|
|
@@ -1378,7 +1378,7 @@ class AsyncRawConnectionsClient:
|
|
|
1378
1378
|
"""
|
|
1379
1379
|
Update details for a specific [connection](https://auth0.com/docs/authenticate/identity-providers), including option properties for identity provider configuration.
|
|
1380
1380
|
|
|
1381
|
-
**Note**: If you use the `options` parameter, the entire `options` object is overridden. To avoid partial data or other issues, ensure all parameters are present when using this option.
|
|
1381
|
+
**Note**: If you use the `options` parameter, the entire `options` object is overridden. To avoid partial data or other issues, ensure all parameters are present when using this option. If any options are unspecified, the default will be used, even if it differs from the existing value.
|
|
1382
1382
|
|
|
1383
1383
|
Parameters
|
|
1384
1384
|
----------
|
{auth0_python-6.2.0 → auth0_python-6.3.0}/src/auth0/management/flows/executions/raw_client.py
RENAMED
|
@@ -13,6 +13,7 @@ from ...core.pydantic_utilities import parse_obj_as
|
|
|
13
13
|
from ...core.request_options import RequestOptions
|
|
14
14
|
from ...errors.bad_request_error import BadRequestError
|
|
15
15
|
from ...errors.forbidden_error import ForbiddenError
|
|
16
|
+
from ...errors.not_found_error import NotFoundError
|
|
16
17
|
from ...errors.too_many_requests_error import TooManyRequestsError
|
|
17
18
|
from ...errors.unauthorized_error import UnauthorizedError
|
|
18
19
|
from ...types.flow_execution_summary import FlowExecutionSummary
|
|
@@ -121,6 +122,17 @@ class RawExecutionsClient:
|
|
|
121
122
|
),
|
|
122
123
|
),
|
|
123
124
|
)
|
|
125
|
+
if _response.status_code == 404:
|
|
126
|
+
raise NotFoundError(
|
|
127
|
+
headers=dict(_response.headers),
|
|
128
|
+
body=typing.cast(
|
|
129
|
+
typing.Any,
|
|
130
|
+
parse_obj_as(
|
|
131
|
+
type_=typing.Any, # type: ignore
|
|
132
|
+
object_=_response.json(),
|
|
133
|
+
),
|
|
134
|
+
),
|
|
135
|
+
)
|
|
124
136
|
if _response.status_code == 429:
|
|
125
137
|
raise TooManyRequestsError(
|
|
126
138
|
headers=dict(_response.headers),
|
|
@@ -225,6 +237,17 @@ class RawExecutionsClient:
|
|
|
225
237
|
),
|
|
226
238
|
),
|
|
227
239
|
)
|
|
240
|
+
if _response.status_code == 404:
|
|
241
|
+
raise NotFoundError(
|
|
242
|
+
headers=dict(_response.headers),
|
|
243
|
+
body=typing.cast(
|
|
244
|
+
typing.Any,
|
|
245
|
+
parse_obj_as(
|
|
246
|
+
type_=typing.Any, # type: ignore
|
|
247
|
+
object_=_response.json(),
|
|
248
|
+
),
|
|
249
|
+
),
|
|
250
|
+
)
|
|
228
251
|
if _response.status_code == 429:
|
|
229
252
|
raise TooManyRequestsError(
|
|
230
253
|
headers=dict(_response.headers),
|
|
@@ -428,6 +451,17 @@ class AsyncRawExecutionsClient:
|
|
|
428
451
|
),
|
|
429
452
|
),
|
|
430
453
|
)
|
|
454
|
+
if _response.status_code == 404:
|
|
455
|
+
raise NotFoundError(
|
|
456
|
+
headers=dict(_response.headers),
|
|
457
|
+
body=typing.cast(
|
|
458
|
+
typing.Any,
|
|
459
|
+
parse_obj_as(
|
|
460
|
+
type_=typing.Any, # type: ignore
|
|
461
|
+
object_=_response.json(),
|
|
462
|
+
),
|
|
463
|
+
),
|
|
464
|
+
)
|
|
431
465
|
if _response.status_code == 429:
|
|
432
466
|
raise TooManyRequestsError(
|
|
433
467
|
headers=dict(_response.headers),
|
|
@@ -532,6 +566,17 @@ class AsyncRawExecutionsClient:
|
|
|
532
566
|
),
|
|
533
567
|
),
|
|
534
568
|
)
|
|
569
|
+
if _response.status_code == 404:
|
|
570
|
+
raise NotFoundError(
|
|
571
|
+
headers=dict(_response.headers),
|
|
572
|
+
body=typing.cast(
|
|
573
|
+
typing.Any,
|
|
574
|
+
parse_obj_as(
|
|
575
|
+
type_=typing.Any, # type: ignore
|
|
576
|
+
object_=_response.json(),
|
|
577
|
+
),
|
|
578
|
+
),
|
|
579
|
+
)
|
|
535
580
|
if _response.status_code == 429:
|
|
536
581
|
raise TooManyRequestsError(
|
|
537
582
|
headers=dict(_response.headers),
|