From eb9af61976022c27b89c807adff5a5a47695b673 Mon Sep 17 00:00:00 2001 From: fern-api <115122769+fern-api[bot]@users.noreply.github.com> Date: Mon, 18 May 2026 05:04:12 +0000 Subject: [PATCH 1/6] [fern-generated] Update SDK Generated by Fern CLI Version: unknown Generators: - fernapi/fern-python-sdk: 5.12.10 --- CONTRIBUTING.md | 125 ++++++++++++++++++ reference.md | 101 +++++++++++++- src/auth0/management/__init__.py | 39 ++++-- src/auth0/management/client.py | 12 ++ src/auth0/management/clients/client.py | 64 +++++---- src/auth0/management/clients/raw_client.py | 46 +++++-- src/auth0/management/refresh_tokens/client.py | 12 +- .../management/refresh_tokens/raw_client.py | 10 ++ .../management/resource_servers/client.py | 20 +++ .../management/resource_servers/raw_client.py | 20 +++ src/auth0/management/tickets/client.py | 4 +- src/auth0/management/tickets/raw_client.py | 4 +- src/auth0/management/types/__init__.py | 27 ++++ .../management/types/bad_request_schema.py | 28 ++++ .../types/bad_request_schema_error.py | 5 + .../types/connection_base_url_exact.py | 4 +- .../types/connection_client_id_amazon.py | 6 +- .../types/connection_client_id_azure_ad.py | 7 +- .../types/connection_client_id_exact.py | 6 +- .../types/connection_client_id_facebook.py | 6 +- .../types/connection_client_id_google_apps.py | 6 +- .../types/connection_client_id_o_auth_1.py | 6 +- .../types/connection_client_id_o_auth_2.py | 7 +- .../types/connection_client_id_oidc.py | 7 +- .../types/connection_client_id_paypal.py | 6 +- .../types/connection_client_secret_amazon.py | 6 +- .../connection_client_secret_bitbucket.py | 7 +- .../types/connection_client_secret_exact.py | 6 +- .../connection_client_secret_facebook.py | 6 +- .../connection_client_secret_google_apps.py | 6 +- .../connection_client_secret_o_auth_1.py | 6 +- .../connection_client_secret_o_auth_2.py | 7 +- .../types/connection_client_secret_oidc.py | 7 +- .../types/connection_client_secret_paypal.py | 6 +- .../connection_client_secret_windows_live.py | 7 +- .../types/connection_dpop_signing_alg_enum.py | 2 +- ...ction_https_url_with_http_fallback_2048.py | 4 +- ...ection_https_url_with_http_fallback_255.py | 4 +- .../management/types/connection_issuer.py | 7 +- .../management/types/connection_jwks_uri.py | 7 +- .../types/connection_op_policy_uri.py | 7 +- .../management/types/connection_op_tos_uri.py | 7 +- ...on_ping_federate_base_url_ping_federate.py | 4 +- .../types/connection_registration_endpoint.py | 7 +- .../types/connection_response_common.py | 2 +- .../types/connection_service_documentation.py | 7 +- .../types/connection_tenant_domain_saml.py | 7 +- .../types/connection_token_endpoint.py | 7 +- .../types/connection_userinfo_endpoint.py | 7 +- .../types/create_connection_common.py | 2 +- ...create_resource_server_response_content.py | 5 + ..._authentication_method_response_content.py | 27 ++++ .../types/credential_device_type_enum.py | 5 + .../management/types/forbidden_schema.py | 28 ++++ .../types/forbidden_schema_error.py | 5 + .../get_resource_server_response_content.py | 5 + ..._authentication_method_response_content.py | 10 ++ src/auth0/management/types/resource_server.py | 5 + .../types/too_many_requests_schema.py | 28 ++++ .../types/too_many_requests_schema_error.py | 5 + .../management/types/unauthorized_schema.py | 28 ++++ .../types/unauthorized_schema_error.py | 5 + ...update_resource_server_response_content.py | 5 + .../types/user_authentication_method.py | 10 ++ .../users/authentication_methods/client.py | 77 ++++++++++- .../authentication_methods/raw_client.py | 77 ++++++++++- .../management/users/roles/raw_client.py | 45 +++++++ wiremock/docker-compose.test.yml | 2 +- wiremock/wiremock-mappings.json | 14 +- 69 files changed, 921 insertions(+), 188 deletions(-) create mode 100644 CONTRIBUTING.md create mode 100644 src/auth0/management/types/bad_request_schema.py create mode 100644 src/auth0/management/types/bad_request_schema_error.py create mode 100644 src/auth0/management/types/credential_device_type_enum.py create mode 100644 src/auth0/management/types/forbidden_schema.py create mode 100644 src/auth0/management/types/forbidden_schema_error.py create mode 100644 src/auth0/management/types/too_many_requests_schema.py create mode 100644 src/auth0/management/types/too_many_requests_schema_error.py create mode 100644 src/auth0/management/types/unauthorized_schema.py create mode 100644 src/auth0/management/types/unauthorized_schema_error.py diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000..af948ce7 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,125 @@ +# Contributing + +Thanks for your interest in contributing to this SDK! This document provides guidelines for contributing to the project. + +## Getting Started + +### Prerequisites + +- Python 3.9+ +- pip +- poetry + +### Installation + +Install the project dependencies: + +```bash +poetry install +``` + +### Building + +Build the project: + +```bash +poetry build +``` + +### Testing + +Run the test suite: + +```bash +poetry run pytest +``` + +### Linting and Formatting + +Check code style: + +```bash +poetry run ruff check . +poetry run ruff format . +``` + +### Type Checking + +Run the type checker: + +```bash +poetry run mypy . +``` + +## About Generated Code + +**Important**: Most files in this SDK are automatically generated by [Fern](https://buildwithfern.com) from the API definition. Direct modifications to generated files will be overwritten the next time the SDK is generated. + +### Generated Files + +The following directories contain generated code: +- `src/` - API client classes and types +- Most Python files in the project + +### How to Customize + +If you need to customize the SDK, you have two options: + +#### Option 1: Use `.fernignore` + +For custom code that should persist across SDK regenerations: + +1. Create a `.fernignore` file in the project root +2. Add file patterns for files you want to preserve (similar to `.gitignore` syntax) +3. Add your custom code to those files + +Files listed in `.fernignore` will not be overwritten when the SDK is regenerated. + +For more information, see the [Fern documentation on custom code](https://buildwithfern.com/learn/sdks/overview/custom-code). + +#### Option 2: Contribute to the Generator + +If you want to change how code is generated for all users of this SDK: + +1. The Python SDK generator lives in the [Fern repository](https://github.com/fern-api/fern) +2. Generator code is located at `generators/python-v2/` +3. Follow the [Fern contributing guidelines](https://github.com/fern-api/fern/blob/main/CONTRIBUTING.md) +4. Submit a pull request with your changes to the generator + +This approach is best for: +- Bug fixes in generated code +- New features that would benefit all users +- Improvements to code generation patterns + +## Making Changes + +### Workflow + +1. Create a new branch for your changes +2. Make your modifications +3. Run tests to ensure nothing breaks: `poetry run pytest` +4. Run linting and formatting: `poetry run ruff check .` and `poetry run ruff format .` +5. Run type checking: `poetry run mypy .` +6. Build the project: `poetry build` +7. Commit your changes with a clear commit message +8. Push your branch and create a pull request + +### Commit Messages + +Write clear, descriptive commit messages that explain what changed and why. + +### Code Style + +This project uses automated code formatting and linting. Run `poetry run ruff format .` and `poetry run ruff check .` before committing to ensure your code meets the project's style guidelines. + +## Questions or Issues? + +If you have questions or run into issues: + +1. Check the [Fern documentation](https://buildwithfern.com) +2. Search existing [GitHub issues](https://github.com/fern-api/fern/issues) +3. Open a new issue if your question hasn't been addressed + +## License + +By contributing to this project, you agree that your contributions will be licensed under the same license as the project. diff --git a/reference.md b/reference.md index 01dfba13..422c88b5 100644 --- a/reference.md +++ b/reference.md @@ -2167,10 +2167,19 @@ client.clients.preview_cimd_metadata(
+Idempotent registration for Client ID Metadata Document (CIMD) clients. +Uses external_client_id as the unique identifier for upsert operations. - Idempotent registration for Client ID Metadata Document (CIMD) clients. - Uses external_client_id as the unique identifier for upsert operations. - **Create:** Returns 201 when a new client is created (requires \ +Create: Returns 201 when a new client is created (requires create:clients scope). +Update: Returns 200 when an existing client is updated (requires update:clients scope). + +This endpoint automatically: +
@@ -10953,6 +10962,14 @@ client.refresh_tokens.revoke()
+**audience:** `typing.Optional[str]` — Resource server identifier (audience) to scope the revocation. Must be used with both `user_id` and `client_id`. + +
+
+ +
+
+ **request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.
@@ -11413,6 +11430,14 @@ client.resource_servers.create(
+**allow_online_access_with_ephemeral_sessions:** `typing.Optional[bool]` — Whether Online Refresh Tokens can be issued even when sessions are configured as ephemeral (true) or not (false). + +
+
+ +
+
+ **token_lifetime:** `typing.Optional[int]` — Expiration value (in seconds) for access tokens issued for this API from the token endpoint.
@@ -11777,6 +11802,14 @@ client.resource_servers.update(
+**allow_online_access_with_ephemeral_sessions:** `typing.Optional[bool]` — Whether Online Refresh Tokens can be issued even when sessions are configured as ephemeral (true) or not (false). + +
+
+ +
+
+ **token_lifetime:** `typing.Optional[int]` — Expiration value (in seconds) for access tokens issued for this API from the token endpoint.
@@ -14222,7 +14255,7 @@ client.tickets.change_password()
-**result_url:** `typing.Optional[str]` — URL the user will be redirected to in the classic Universal Login experience once the ticket is used. Cannot be specified when using client_id or organization_id. +**result_url:** `typing.Optional[str]` — URL the user will be redirected to in the classic Universal Login experience once the ticket is used. Cannot be specified when using organization_id. May be specified together with client_id when the tenant has a custom password reset page enabled and a password-reset-post-challenge Action bound.
@@ -34782,7 +34815,15 @@ client.users.authentication_methods.create(
-**key_id:** `typing.Optional[str]` — Applies to webauthn authentication methods only. The id of the credential. +**key_id:** `typing.Optional[str]` — Applies to webauthn/passkey authentication methods only. The id of the credential. + +
+
+ +
+
+ +**public_key:** `typing.Optional[str]` — Applies to webauthn/passkey authentication methods only. The public key, which is encoded as base64.
@@ -34790,7 +34831,7 @@ client.users.authentication_methods.create(
-**public_key:** `typing.Optional[str]` — Applies to webauthn authentication methods only. The public key, which is encoded as base64. +**aaguid:** `typing.Optional[str]` — Applies to passkeys only. Authenticator Attestation Globally Unique Identifier
@@ -34806,6 +34847,54 @@ client.users.authentication_methods.create(
+**credential_device_type:** `typing.Optional[CredentialDeviceTypeEnum]` + +
+
+ +
+
+ +**credential_backed_up:** `typing.Optional[bool]` — Applies to passkeys only. Whether the credential was backed up. + +
+
+ +
+
+ +**identity_user_id:** `typing.Optional[str]` — Applies to passkeys only. The ID of the user identity linked with the authentication method. + +
+
+ +
+
+ +**user_agent:** `typing.Optional[str]` — Applies to passkeys only. The user-agent of the browser used to create the passkey. + +
+
+ +
+
+ +**user_handle:** `typing.Optional[str]` — Applies to passkeys only. The user handle of the user identity. + +
+
+ +
+
+ +**transports:** `typing.Optional[typing.List[str]]` — Applies to passkeys only. The transports used by clients to communicate with the authenticator. + +
+
+ +
+
+ **request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.
diff --git a/src/auth0/management/__init__.py b/src/auth0/management/__init__.py index e20a000e..2822ff36 100644 --- a/src/auth0/management/__init__.py +++ b/src/auth0/management/__init__.py @@ -81,6 +81,8 @@ AttackProtectionUpdateCaptchaRecaptchaV2, AuthenticationMethodTypeEnum, AuthenticationTypeEnum, + BadRequestSchema, + BadRequestSchemaError, BotDetectionAllowlist, BotDetectionChallengePolicyPasswordFlowEnum, BotDetectionChallengePolicyPasswordResetFlowEnum, @@ -1013,6 +1015,7 @@ CreateVerificationEmailResponseContent, CreatedAuthenticationMethodTypeEnum, CreatedUserAuthenticationMethodTypeEnum, + CredentialDeviceTypeEnum, CredentialId, CustomDomain, CustomDomainCustomClientIpHeader, @@ -1866,6 +1869,8 @@ FlowsVaultConnectionSetupTypeBasicAuthEnum, FlowsVaultConnectionSetupTypeOauthClientCredentialsEnum, FlowsVaultConnectionSummary, + ForbiddenSchema, + ForbiddenSchemaError, FormBlock, FormBlockDivider, FormBlockDividerConfig, @@ -2486,9 +2491,13 @@ TokenQuota, TokenQuotaClientCredentials, TokenQuotaConfiguration, + TooManyRequestsSchema, + TooManyRequestsSchemaError, TwilioProviderConfiguration, TwilioProviderCredentials, TwilioProviderDeliveryMethodEnum, + UnauthorizedSchema, + UnauthorizedSchemaError, UniversalLoginExperienceEnum, UpdateActionBindingsResponseContent, UpdateActionModuleResponseContent, @@ -2732,8 +2741,6 @@ from .environment import Auth0Environment from .event_streams import EventStreamsCreateRequest from .version import __version__ - from .management_client import AsyncManagementClient, CustomDomainHeader, ManagementClient - from .token_provider import AsyncTokenProvider, TokenProvider _dynamic_imports: typing.Dict[str, str] = { "Action": ".types", "ActionBase": ".types", @@ -2794,8 +2801,6 @@ "AssociateOrganizationClientGrantResponseContent": ".types", "AsyncApprovalNotificationsChannelsEnum": ".types", "AsyncAuth0": ".client", - "AsyncManagementClient": ".management_client", - "AsyncTokenProvider": ".token_provider", "AttackProtectionCaptchaArkoseResponseContent": ".types", "AttackProtectionCaptchaAuthChallengeRequest": ".types", "AttackProtectionCaptchaAuthChallengeResponseContent": ".types", @@ -2815,6 +2820,8 @@ "AuthenticationMethodTypeEnum": ".types", "AuthenticationTypeEnum": ".types", "BadRequestError": ".errors", + "BadRequestSchema": ".types", + "BadRequestSchemaError": ".types", "BotDetectionAllowlist": ".types", "BotDetectionChallengePolicyPasswordFlowEnum": ".types", "BotDetectionChallengePolicyPasswordResetFlowEnum": ".types", @@ -3749,9 +3756,9 @@ "CreateVerificationEmailResponseContent": ".types", "CreatedAuthenticationMethodTypeEnum": ".types", "CreatedUserAuthenticationMethodTypeEnum": ".types", + "CredentialDeviceTypeEnum": ".types", "CredentialId": ".types", "CustomDomain": ".types", - "CustomDomainHeader": ".management_client", "CustomDomainCustomClientIpHeader": ".types", "CustomDomainCustomClientIpHeaderEnum": ".types", "CustomDomainProvisioningTypeEnum": ".types", @@ -4607,6 +4614,8 @@ "FlowsVaultConnectionSetupTypeOauthClientCredentialsEnum": ".types", "FlowsVaultConnectionSummary": ".types", "ForbiddenError": ".errors", + "ForbiddenSchema": ".types", + "ForbiddenSchemaError": ".types", "FormBlock": ".types", "FormBlockDivider": ".types", "FormBlockDividerConfig": ".types", @@ -5007,7 +5016,6 @@ "LogStreamSumoEnum": ".types", "LogStreamSumoResponseSchema": ".types", "LogStreamSumoSink": ".types", - "ManagementClient": ".management_client", "MdlPresentationProperties": ".types", "MdlPresentationRequest": ".types", "MdlPresentationRequestProperties": ".types", @@ -5234,12 +5242,15 @@ "TokenQuota": ".types", "TokenQuotaClientCredentials": ".types", "TokenQuotaConfiguration": ".types", - "TokenProvider": ".token_provider", "TooManyRequestsError": ".errors", + "TooManyRequestsSchema": ".types", + "TooManyRequestsSchemaError": ".types", "TwilioProviderConfiguration": ".types", "TwilioProviderCredentials": ".types", "TwilioProviderDeliveryMethodEnum": ".types", "UnauthorizedError": ".errors", + "UnauthorizedSchema": ".types", + "UnauthorizedSchemaError": ".types", "UniversalLoginExperienceEnum": ".types", "UpdateActionBindingsResponseContent": ".types", "UpdateActionModuleResponseContent": ".types", @@ -5546,8 +5557,6 @@ def __dir__(): "AssociateOrganizationClientGrantResponseContent", "AsyncApprovalNotificationsChannelsEnum", "AsyncAuth0", - "AsyncManagementClient", - "AsyncTokenProvider", "AttackProtectionCaptchaArkoseResponseContent", "AttackProtectionCaptchaAuthChallengeRequest", "AttackProtectionCaptchaAuthChallengeResponseContent", @@ -5567,6 +5576,8 @@ def __dir__(): "AuthenticationMethodTypeEnum", "AuthenticationTypeEnum", "BadRequestError", + "BadRequestSchema", + "BadRequestSchemaError", "BotDetectionAllowlist", "BotDetectionChallengePolicyPasswordFlowEnum", "BotDetectionChallengePolicyPasswordResetFlowEnum", @@ -6501,9 +6512,9 @@ def __dir__(): "CreateVerificationEmailResponseContent", "CreatedAuthenticationMethodTypeEnum", "CreatedUserAuthenticationMethodTypeEnum", + "CredentialDeviceTypeEnum", "CredentialId", "CustomDomain", - "CustomDomainHeader", "CustomDomainCustomClientIpHeader", "CustomDomainCustomClientIpHeaderEnum", "CustomDomainProvisioningTypeEnum", @@ -7359,6 +7370,8 @@ def __dir__(): "FlowsVaultConnectionSetupTypeOauthClientCredentialsEnum", "FlowsVaultConnectionSummary", "ForbiddenError", + "ForbiddenSchema", + "ForbiddenSchemaError", "FormBlock", "FormBlockDivider", "FormBlockDividerConfig", @@ -7759,7 +7772,6 @@ def __dir__(): "LogStreamSumoEnum", "LogStreamSumoResponseSchema", "LogStreamSumoSink", - "ManagementClient", "MdlPresentationProperties", "MdlPresentationRequest", "MdlPresentationRequestProperties", @@ -7983,15 +7995,18 @@ def __dir__(): "TestEventDataContent", "TokenExchangeProfileResponseContent", "TokenExchangeProfileTypeEnum", - "TokenProvider", "TokenQuota", "TokenQuotaClientCredentials", "TokenQuotaConfiguration", "TooManyRequestsError", + "TooManyRequestsSchema", + "TooManyRequestsSchemaError", "TwilioProviderConfiguration", "TwilioProviderCredentials", "TwilioProviderDeliveryMethodEnum", "UnauthorizedError", + "UnauthorizedSchema", + "UnauthorizedSchemaError", "UniversalLoginExperienceEnum", "UpdateActionBindingsResponseContent", "UpdateActionModuleResponseContent", diff --git a/src/auth0/management/client.py b/src/auth0/management/client.py index 8783d6e5..b5c3ebec 100644 --- a/src/auth0/management/client.py +++ b/src/auth0/management/client.py @@ -84,6 +84,9 @@ class Auth0: timeout : typing.Optional[float] The timeout to be used, in seconds, for requests. By default the timeout is 60 seconds, unless a custom httpx client is used, in which case this default is not enforced. + max_retries : typing.Optional[int] + The default maximum number of retries for failed requests. Defaults to 2. Per-request `max_retries` in `request_options` takes precedence over this value. + follow_redirects : typing.Optional[bool] Whether the default httpx client follows redirects or not, this is irrelevant if a custom httpx client is passed in. @@ -111,6 +114,7 @@ def __init__( token: typing.Union[str, typing.Callable[[], str]], headers: typing.Optional[typing.Dict[str, str]] = None, timeout: typing.Optional[float] = None, + max_retries: typing.Optional[int] = None, follow_redirects: typing.Optional[bool] = True, httpx_client: typing.Optional[httpx.Client] = None, logging: typing.Optional[typing.Union[LogConfig, Logger]] = None, @@ -118,6 +122,7 @@ def __init__( _defaulted_timeout = ( timeout if timeout is not None else 60 if httpx_client is None else httpx_client.timeout.read ) + _defaulted_max_retries = max_retries if max_retries is not None else 2 if tenant_domain is not None: _tenant_domain = tenant_domain if tenant_domain is not None else "{TENANT}.auth0.com" base_url = "https://{tenantDomain}/api/v2".format(tenantDomain=_tenant_domain) @@ -131,6 +136,7 @@ def __init__( if follow_redirects is not None else httpx.Client(timeout=_defaulted_timeout), timeout=_defaulted_timeout, + max_retries=_defaulted_max_retries, logging=logging, ) self._actions: typing.Optional[ActionsClient] = None @@ -580,6 +586,9 @@ class AsyncAuth0: timeout : typing.Optional[float] The timeout to be used, in seconds, for requests. By default the timeout is 60 seconds, unless a custom httpx client is used, in which case this default is not enforced. + max_retries : typing.Optional[int] + The default maximum number of retries for failed requests. Defaults to 2. Per-request `max_retries` in `request_options` takes precedence over this value. + follow_redirects : typing.Optional[bool] Whether the default httpx client follows redirects or not, this is irrelevant if a custom httpx client is passed in. @@ -608,6 +617,7 @@ def __init__( headers: typing.Optional[typing.Dict[str, str]] = None, async_token: typing.Optional[typing.Callable[[], typing.Awaitable[str]]] = None, timeout: typing.Optional[float] = None, + max_retries: typing.Optional[int] = None, follow_redirects: typing.Optional[bool] = True, httpx_client: typing.Optional[httpx.AsyncClient] = None, logging: typing.Optional[typing.Union[LogConfig, Logger]] = None, @@ -615,6 +625,7 @@ def __init__( _defaulted_timeout = ( timeout if timeout is not None else 60 if httpx_client is None else httpx_client.timeout.read ) + _defaulted_max_retries = max_retries if max_retries is not None else 2 if tenant_domain is not None: _tenant_domain = tenant_domain if tenant_domain is not None else "{TENANT}.auth0.com" base_url = "https://{tenantDomain}/api/v2".format(tenantDomain=_tenant_domain) @@ -627,6 +638,7 @@ def __init__( if httpx_client is not None else _make_default_async_client(timeout=_defaulted_timeout, follow_redirects=follow_redirects), timeout=_defaulted_timeout, + max_retries=_defaulted_max_retries, logging=logging, ) self._actions: typing.Optional[AsyncActionsClient] = None diff --git a/src/auth0/management/clients/client.py b/src/auth0/management/clients/client.py index b44ca81c..4a570ee1 100644 --- a/src/auth0/management/clients/client.py +++ b/src/auth0/management/clients/client.py @@ -545,28 +545,37 @@ def register_cimd_client( self, *, external_client_id: str, request_options: typing.Optional[RequestOptions] = None ) -> RegisterCimdClientResponseContent: """ - - Idempotent registration for Client ID Metadata Document (CIMD) clients. - Uses external_client_id as the unique identifier for upsert operations. - **Create:** Returns 201 when a new client is created (requires \\ - + Idempotent registration for Client ID Metadata Document (CIMD) clients. + Uses external_client_id as the unique identifier for upsert operations. + + Create: Returns 201 when a new client is created (requires create:clients scope). + Update: Returns 200 when an existing client is updated (requires update:clients scope). + + This endpoint automatically: +
    +
  • Fetches and validates the metadata document
  • +
  • Maps CIMD fields to Auth0 client configuration
  • +
  • Creates/rotates credentials from the JWKS
  • +
  • Enforces CIMD security policies (HTTPS-only, no shared secrets)
  • +
+ Parameters ---------- external_client_id : str URL to the Client ID Metadata Document. Acts as the unique identifier for upsert operations. - + request_options : typing.Optional[RequestOptions] Request-specific configuration. - + Returns ------- RegisterCimdClientResponseContent CIMD client successfully updated (idempotent). - + Examples -------- from auth0 import Auth0 - + client = Auth0( token="YOUR_TOKEN", ) @@ -1542,41 +1551,50 @@ async def register_cimd_client( self, *, external_client_id: str, request_options: typing.Optional[RequestOptions] = None ) -> RegisterCimdClientResponseContent: """ - - Idempotent registration for Client ID Metadata Document (CIMD) clients. - Uses external_client_id as the unique identifier for upsert operations. - **Create:** Returns 201 when a new client is created (requires \\ - + Idempotent registration for Client ID Metadata Document (CIMD) clients. + Uses external_client_id as the unique identifier for upsert operations. + + Create: Returns 201 when a new client is created (requires create:clients scope). + Update: Returns 200 when an existing client is updated (requires update:clients scope). + + This endpoint automatically: +
    +
  • Fetches and validates the metadata document
  • +
  • Maps CIMD fields to Auth0 client configuration
  • +
  • Creates/rotates credentials from the JWKS
  • +
  • Enforces CIMD security policies (HTTPS-only, no shared secrets)
  • +
+ Parameters ---------- external_client_id : str URL to the Client ID Metadata Document. Acts as the unique identifier for upsert operations. - + request_options : typing.Optional[RequestOptions] Request-specific configuration. - + Returns ------- RegisterCimdClientResponseContent CIMD client successfully updated (idempotent). - + Examples -------- import asyncio - + from auth0 import AsyncAuth0 - + client = AsyncAuth0( token="YOUR_TOKEN", ) - - + + async def main() -> None: await client.clients.register_cimd_client( external_client_id="external_client_id", ) - - + + asyncio.run(main()) """ _response = await self._raw_client.register_cimd_client( diff --git a/src/auth0/management/clients/raw_client.py b/src/auth0/management/clients/raw_client.py index 97e9ebeb..1a190b89 100644 --- a/src/auth0/management/clients/raw_client.py +++ b/src/auth0/management/clients/raw_client.py @@ -779,19 +779,28 @@ def register_cimd_client( self, *, external_client_id: str, request_options: typing.Optional[RequestOptions] = None ) -> HttpResponse[RegisterCimdClientResponseContent]: """ - - Idempotent registration for Client ID Metadata Document (CIMD) clients. - Uses external_client_id as the unique identifier for upsert operations. - **Create:** Returns 201 when a new client is created (requires \\ - + Idempotent registration for Client ID Metadata Document (CIMD) clients. + Uses external_client_id as the unique identifier for upsert operations. + + Create: Returns 201 when a new client is created (requires create:clients scope). + Update: Returns 200 when an existing client is updated (requires update:clients scope). + + This endpoint automatically: +
    +
  • Fetches and validates the metadata document
  • +
  • Maps CIMD fields to Auth0 client configuration
  • +
  • Creates/rotates credentials from the JWKS
  • +
  • Enforces CIMD security policies (HTTPS-only, no shared secrets)
  • +
+ Parameters ---------- external_client_id : str URL to the Client ID Metadata Document. Acts as the unique identifier for upsert operations. - + request_options : typing.Optional[RequestOptions] Request-specific configuration. - + Returns ------- HttpResponse[RegisterCimdClientResponseContent] @@ -2326,19 +2335,28 @@ async def register_cimd_client( self, *, external_client_id: str, request_options: typing.Optional[RequestOptions] = None ) -> AsyncHttpResponse[RegisterCimdClientResponseContent]: """ - - Idempotent registration for Client ID Metadata Document (CIMD) clients. - Uses external_client_id as the unique identifier for upsert operations. - **Create:** Returns 201 when a new client is created (requires \\ - + Idempotent registration for Client ID Metadata Document (CIMD) clients. + Uses external_client_id as the unique identifier for upsert operations. + + Create: Returns 201 when a new client is created (requires create:clients scope). + Update: Returns 200 when an existing client is updated (requires update:clients scope). + + This endpoint automatically: +
    +
  • Fetches and validates the metadata document
  • +
  • Maps CIMD fields to Auth0 client configuration
  • +
  • Creates/rotates credentials from the JWKS
  • +
  • Enforces CIMD security policies (HTTPS-only, no shared secrets)
  • +
+ Parameters ---------- external_client_id : str URL to the Client ID Metadata Document. Acts as the unique identifier for upsert operations. - + request_options : typing.Optional[RequestOptions] Request-specific configuration. - + Returns ------- AsyncHttpResponse[RegisterCimdClientResponseContent] diff --git a/src/auth0/management/refresh_tokens/client.py b/src/auth0/management/refresh_tokens/client.py index e999cfff..a0456c14 100644 --- a/src/auth0/management/refresh_tokens/client.py +++ b/src/auth0/management/refresh_tokens/client.py @@ -110,6 +110,7 @@ def revoke( ids: typing.Optional[typing.Sequence[str]] = OMIT, user_id: typing.Optional[str] = OMIT, client_id: typing.Optional[str] = OMIT, + audience: typing.Optional[str] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> None: """ @@ -126,6 +127,9 @@ def revoke( client_id : typing.Optional[str] Revoke all refresh tokens for this client. + audience : typing.Optional[str] + Resource server identifier (audience) to scope the revocation. Must be used with both `user_id` and `client_id`. + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -143,7 +147,7 @@ def revoke( client.refresh_tokens.revoke() """ _response = self._raw_client.revoke( - ids=ids, user_id=user_id, client_id=client_id, request_options=request_options + ids=ids, user_id=user_id, client_id=client_id, audience=audience, request_options=request_options ) return _response.data @@ -356,6 +360,7 @@ async def revoke( ids: typing.Optional[typing.Sequence[str]] = OMIT, user_id: typing.Optional[str] = OMIT, client_id: typing.Optional[str] = OMIT, + audience: typing.Optional[str] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> None: """ @@ -372,6 +377,9 @@ async def revoke( client_id : typing.Optional[str] Revoke all refresh tokens for this client. + audience : typing.Optional[str] + Resource server identifier (audience) to scope the revocation. Must be used with both `user_id` and `client_id`. + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -397,7 +405,7 @@ async def main() -> None: asyncio.run(main()) """ _response = await self._raw_client.revoke( - ids=ids, user_id=user_id, client_id=client_id, request_options=request_options + ids=ids, user_id=user_id, client_id=client_id, audience=audience, request_options=request_options ) return _response.data diff --git a/src/auth0/management/refresh_tokens/raw_client.py b/src/auth0/management/refresh_tokens/raw_client.py index a9541ba1..d1ad621b 100644 --- a/src/auth0/management/refresh_tokens/raw_client.py +++ b/src/auth0/management/refresh_tokens/raw_client.py @@ -178,6 +178,7 @@ def revoke( ids: typing.Optional[typing.Sequence[str]] = OMIT, user_id: typing.Optional[str] = OMIT, client_id: typing.Optional[str] = OMIT, + audience: typing.Optional[str] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> HttpResponse[None]: """ @@ -194,6 +195,9 @@ def revoke( client_id : typing.Optional[str] Revoke all refresh tokens for this client. + audience : typing.Optional[str] + Resource server identifier (audience) to scope the revocation. Must be used with both `user_id` and `client_id`. + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -208,6 +212,7 @@ def revoke( "ids": ids, "user_id": user_id, "client_id": client_id, + "audience": audience, }, headers={ "content-type": "application/json", @@ -713,6 +718,7 @@ async def revoke( ids: typing.Optional[typing.Sequence[str]] = OMIT, user_id: typing.Optional[str] = OMIT, client_id: typing.Optional[str] = OMIT, + audience: typing.Optional[str] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> AsyncHttpResponse[None]: """ @@ -729,6 +735,9 @@ async def revoke( client_id : typing.Optional[str] Revoke all refresh tokens for this client. + audience : typing.Optional[str] + Resource server identifier (audience) to scope the revocation. Must be used with both `user_id` and `client_id`. + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -743,6 +752,7 @@ async def revoke( "ids": ids, "user_id": user_id, "client_id": client_id, + "audience": audience, }, headers={ "content-type": "application/json", diff --git a/src/auth0/management/resource_servers/client.py b/src/auth0/management/resource_servers/client.py index 5812bf76..438082d8 100644 --- a/src/auth0/management/resource_servers/client.py +++ b/src/auth0/management/resource_servers/client.py @@ -118,6 +118,7 @@ def create( signing_secret: typing.Optional[str] = OMIT, allow_offline_access: typing.Optional[bool] = OMIT, allow_online_access: typing.Optional[bool] = OMIT, + allow_online_access_with_ephemeral_sessions: typing.Optional[bool] = OMIT, token_lifetime: typing.Optional[int] = OMIT, token_dialect: typing.Optional[ResourceServerTokenDialectSchemaEnum] = OMIT, skip_consent_for_verifiable_first_party_clients: typing.Optional[bool] = OMIT, @@ -155,6 +156,9 @@ def create( allow_online_access : typing.Optional[bool] Whether Online Refresh Tokens can be issued for this API (true) or not (false). + allow_online_access_with_ephemeral_sessions : typing.Optional[bool] + Whether Online Refresh Tokens can be issued even when sessions are configured as ephemeral (true) or not (false). + token_lifetime : typing.Optional[int] Expiration value (in seconds) for access tokens issued for this API from the token endpoint. @@ -205,6 +209,7 @@ def create( signing_secret=signing_secret, allow_offline_access=allow_offline_access, allow_online_access=allow_online_access, + allow_online_access_with_ephemeral_sessions=allow_online_access_with_ephemeral_sessions, token_lifetime=token_lifetime, token_dialect=token_dialect, skip_consent_for_verifiable_first_party_clients=skip_consent_for_verifiable_first_party_clients, @@ -301,6 +306,7 @@ def update( skip_consent_for_verifiable_first_party_clients: typing.Optional[bool] = OMIT, allow_offline_access: typing.Optional[bool] = OMIT, allow_online_access: typing.Optional[bool] = OMIT, + allow_online_access_with_ephemeral_sessions: typing.Optional[bool] = OMIT, token_lifetime: typing.Optional[int] = OMIT, token_dialect: typing.Optional[ResourceServerTokenDialectSchemaEnum] = OMIT, enforce_policies: typing.Optional[bool] = OMIT, @@ -340,6 +346,9 @@ def update( allow_online_access : typing.Optional[bool] Whether Online Refresh Tokens can be issued for this API (true) or not (false). + allow_online_access_with_ephemeral_sessions : typing.Optional[bool] + Whether Online Refresh Tokens can be issued even when sessions are configured as ephemeral (true) or not (false). + token_lifetime : typing.Optional[int] Expiration value (in seconds) for access tokens issued for this API from the token endpoint. @@ -388,6 +397,7 @@ def update( skip_consent_for_verifiable_first_party_clients=skip_consent_for_verifiable_first_party_clients, allow_offline_access=allow_offline_access, allow_online_access=allow_online_access, + allow_online_access_with_ephemeral_sessions=allow_online_access_with_ephemeral_sessions, token_lifetime=token_lifetime, token_dialect=token_dialect, enforce_policies=enforce_policies, @@ -503,6 +513,7 @@ async def create( signing_secret: typing.Optional[str] = OMIT, allow_offline_access: typing.Optional[bool] = OMIT, allow_online_access: typing.Optional[bool] = OMIT, + allow_online_access_with_ephemeral_sessions: typing.Optional[bool] = OMIT, token_lifetime: typing.Optional[int] = OMIT, token_dialect: typing.Optional[ResourceServerTokenDialectSchemaEnum] = OMIT, skip_consent_for_verifiable_first_party_clients: typing.Optional[bool] = OMIT, @@ -540,6 +551,9 @@ async def create( allow_online_access : typing.Optional[bool] Whether Online Refresh Tokens can be issued for this API (true) or not (false). + allow_online_access_with_ephemeral_sessions : typing.Optional[bool] + Whether Online Refresh Tokens can be issued even when sessions are configured as ephemeral (true) or not (false). + token_lifetime : typing.Optional[int] Expiration value (in seconds) for access tokens issued for this API from the token endpoint. @@ -598,6 +612,7 @@ async def main() -> None: signing_secret=signing_secret, allow_offline_access=allow_offline_access, allow_online_access=allow_online_access, + allow_online_access_with_ephemeral_sessions=allow_online_access_with_ephemeral_sessions, token_lifetime=token_lifetime, token_dialect=token_dialect, skip_consent_for_verifiable_first_party_clients=skip_consent_for_verifiable_first_party_clients, @@ -710,6 +725,7 @@ async def update( skip_consent_for_verifiable_first_party_clients: typing.Optional[bool] = OMIT, allow_offline_access: typing.Optional[bool] = OMIT, allow_online_access: typing.Optional[bool] = OMIT, + allow_online_access_with_ephemeral_sessions: typing.Optional[bool] = OMIT, token_lifetime: typing.Optional[int] = OMIT, token_dialect: typing.Optional[ResourceServerTokenDialectSchemaEnum] = OMIT, enforce_policies: typing.Optional[bool] = OMIT, @@ -749,6 +765,9 @@ async def update( allow_online_access : typing.Optional[bool] Whether Online Refresh Tokens can be issued for this API (true) or not (false). + allow_online_access_with_ephemeral_sessions : typing.Optional[bool] + Whether Online Refresh Tokens can be issued even when sessions are configured as ephemeral (true) or not (false). + token_lifetime : typing.Optional[int] Expiration value (in seconds) for access tokens issued for this API from the token endpoint. @@ -805,6 +824,7 @@ async def main() -> None: skip_consent_for_verifiable_first_party_clients=skip_consent_for_verifiable_first_party_clients, allow_offline_access=allow_offline_access, allow_online_access=allow_online_access, + allow_online_access_with_ephemeral_sessions=allow_online_access_with_ephemeral_sessions, token_lifetime=token_lifetime, token_dialect=token_dialect, enforce_policies=enforce_policies, diff --git a/src/auth0/management/resource_servers/raw_client.py b/src/auth0/management/resource_servers/raw_client.py index 79446922..1fc6b25e 100644 --- a/src/auth0/management/resource_servers/raw_client.py +++ b/src/auth0/management/resource_servers/raw_client.py @@ -178,6 +178,7 @@ def create( signing_secret: typing.Optional[str] = OMIT, allow_offline_access: typing.Optional[bool] = OMIT, allow_online_access: typing.Optional[bool] = OMIT, + allow_online_access_with_ephemeral_sessions: typing.Optional[bool] = OMIT, token_lifetime: typing.Optional[int] = OMIT, token_dialect: typing.Optional[ResourceServerTokenDialectSchemaEnum] = OMIT, skip_consent_for_verifiable_first_party_clients: typing.Optional[bool] = OMIT, @@ -215,6 +216,9 @@ def create( allow_online_access : typing.Optional[bool] Whether Online Refresh Tokens can be issued for this API (true) or not (false). + allow_online_access_with_ephemeral_sessions : typing.Optional[bool] + Whether Online Refresh Tokens can be issued even when sessions are configured as ephemeral (true) or not (false). + token_lifetime : typing.Optional[int] Expiration value (in seconds) for access tokens issued for this API from the token endpoint. @@ -259,6 +263,7 @@ def create( "signing_secret": signing_secret, "allow_offline_access": allow_offline_access, "allow_online_access": allow_online_access, + "allow_online_access_with_ephemeral_sessions": allow_online_access_with_ephemeral_sessions, "token_lifetime": token_lifetime, "token_dialect": token_dialect, "skip_consent_for_verifiable_first_party_clients": skip_consent_for_verifiable_first_party_clients, @@ -562,6 +567,7 @@ def update( skip_consent_for_verifiable_first_party_clients: typing.Optional[bool] = OMIT, allow_offline_access: typing.Optional[bool] = OMIT, allow_online_access: typing.Optional[bool] = OMIT, + allow_online_access_with_ephemeral_sessions: typing.Optional[bool] = OMIT, token_lifetime: typing.Optional[int] = OMIT, token_dialect: typing.Optional[ResourceServerTokenDialectSchemaEnum] = OMIT, enforce_policies: typing.Optional[bool] = OMIT, @@ -601,6 +607,9 @@ def update( allow_online_access : typing.Optional[bool] Whether Online Refresh Tokens can be issued for this API (true) or not (false). + allow_online_access_with_ephemeral_sessions : typing.Optional[bool] + Whether Online Refresh Tokens can be issued even when sessions are configured as ephemeral (true) or not (false). + token_lifetime : typing.Optional[int] Expiration value (in seconds) for access tokens issued for this API from the token endpoint. @@ -642,6 +651,7 @@ def update( "skip_consent_for_verifiable_first_party_clients": skip_consent_for_verifiable_first_party_clients, "allow_offline_access": allow_offline_access, "allow_online_access": allow_online_access, + "allow_online_access_with_ephemeral_sessions": allow_online_access_with_ephemeral_sessions, "token_lifetime": token_lifetime, "token_dialect": token_dialect, "enforce_policies": enforce_policies, @@ -891,6 +901,7 @@ async def create( signing_secret: typing.Optional[str] = OMIT, allow_offline_access: typing.Optional[bool] = OMIT, allow_online_access: typing.Optional[bool] = OMIT, + allow_online_access_with_ephemeral_sessions: typing.Optional[bool] = OMIT, token_lifetime: typing.Optional[int] = OMIT, token_dialect: typing.Optional[ResourceServerTokenDialectSchemaEnum] = OMIT, skip_consent_for_verifiable_first_party_clients: typing.Optional[bool] = OMIT, @@ -928,6 +939,9 @@ async def create( allow_online_access : typing.Optional[bool] Whether Online Refresh Tokens can be issued for this API (true) or not (false). + allow_online_access_with_ephemeral_sessions : typing.Optional[bool] + Whether Online Refresh Tokens can be issued even when sessions are configured as ephemeral (true) or not (false). + token_lifetime : typing.Optional[int] Expiration value (in seconds) for access tokens issued for this API from the token endpoint. @@ -972,6 +986,7 @@ async def create( "signing_secret": signing_secret, "allow_offline_access": allow_offline_access, "allow_online_access": allow_online_access, + "allow_online_access_with_ephemeral_sessions": allow_online_access_with_ephemeral_sessions, "token_lifetime": token_lifetime, "token_dialect": token_dialect, "skip_consent_for_verifiable_first_party_clients": skip_consent_for_verifiable_first_party_clients, @@ -1277,6 +1292,7 @@ async def update( skip_consent_for_verifiable_first_party_clients: typing.Optional[bool] = OMIT, allow_offline_access: typing.Optional[bool] = OMIT, allow_online_access: typing.Optional[bool] = OMIT, + allow_online_access_with_ephemeral_sessions: typing.Optional[bool] = OMIT, token_lifetime: typing.Optional[int] = OMIT, token_dialect: typing.Optional[ResourceServerTokenDialectSchemaEnum] = OMIT, enforce_policies: typing.Optional[bool] = OMIT, @@ -1316,6 +1332,9 @@ async def update( allow_online_access : typing.Optional[bool] Whether Online Refresh Tokens can be issued for this API (true) or not (false). + allow_online_access_with_ephemeral_sessions : typing.Optional[bool] + Whether Online Refresh Tokens can be issued even when sessions are configured as ephemeral (true) or not (false). + token_lifetime : typing.Optional[int] Expiration value (in seconds) for access tokens issued for this API from the token endpoint. @@ -1357,6 +1376,7 @@ async def update( "skip_consent_for_verifiable_first_party_clients": skip_consent_for_verifiable_first_party_clients, "allow_offline_access": allow_offline_access, "allow_online_access": allow_online_access, + "allow_online_access_with_ephemeral_sessions": allow_online_access_with_ephemeral_sessions, "token_lifetime": token_lifetime, "token_dialect": token_dialect, "enforce_policies": enforce_policies, diff --git a/src/auth0/management/tickets/client.py b/src/auth0/management/tickets/client.py index 0c1096d4..0a5a69d0 100644 --- a/src/auth0/management/tickets/client.py +++ b/src/auth0/management/tickets/client.py @@ -120,7 +120,7 @@ def change_password( Parameters ---------- result_url : typing.Optional[str] - URL the user will be redirected to in the classic Universal Login experience once the ticket is used. Cannot be specified when using client_id or organization_id. + URL the user will be redirected to in the classic Universal Login experience once the ticket is used. Cannot be specified when using organization_id. May be specified together with client_id when the tenant has a custom password reset page enabled and a password-reset-post-challenge Action bound. user_id : typing.Optional[str] user_id of for whom the ticket should be created. @@ -295,7 +295,7 @@ async def change_password( Parameters ---------- result_url : typing.Optional[str] - URL the user will be redirected to in the classic Universal Login experience once the ticket is used. Cannot be specified when using client_id or organization_id. + URL the user will be redirected to in the classic Universal Login experience once the ticket is used. Cannot be specified when using organization_id. May be specified together with client_id when the tenant has a custom password reset page enabled and a password-reset-post-challenge Action bound. user_id : typing.Optional[str] user_id of for whom the ticket should be created. diff --git a/src/auth0/management/tickets/raw_client.py b/src/auth0/management/tickets/raw_client.py index 66876512..df7dcbfe 100644 --- a/src/auth0/management/tickets/raw_client.py +++ b/src/auth0/management/tickets/raw_client.py @@ -191,7 +191,7 @@ def change_password( Parameters ---------- result_url : typing.Optional[str] - URL the user will be redirected to in the classic Universal Login experience once the ticket is used. Cannot be specified when using client_id or organization_id. + URL the user will be redirected to in the classic Universal Login experience once the ticket is used. Cannot be specified when using organization_id. May be specified together with client_id when the tenant has a custom password reset page enabled and a password-reset-post-challenge Action bound. user_id : typing.Optional[str] user_id of for whom the ticket should be created. @@ -491,7 +491,7 @@ async def change_password( Parameters ---------- result_url : typing.Optional[str] - URL the user will be redirected to in the classic Universal Login experience once the ticket is used. Cannot be specified when using client_id or organization_id. + URL the user will be redirected to in the classic Universal Login experience once the ticket is used. Cannot be specified when using organization_id. May be specified together with client_id when the tenant has a custom password reset page enabled and a password-reset-post-challenge Action bound. user_id : typing.Optional[str] user_id of for whom the ticket should be created. diff --git a/src/auth0/management/types/__init__.py b/src/auth0/management/types/__init__.py index 8ee3fc2d..33d2200c 100644 --- a/src/auth0/management/types/__init__.py +++ b/src/auth0/management/types/__init__.py @@ -90,6 +90,8 @@ from .attack_protection_update_captcha_recaptcha_v_2 import AttackProtectionUpdateCaptchaRecaptchaV2 from .authentication_method_type_enum import AuthenticationMethodTypeEnum from .authentication_type_enum import AuthenticationTypeEnum + from .bad_request_schema import BadRequestSchema + from .bad_request_schema_error import BadRequestSchemaError from .bot_detection_allowlist import BotDetectionAllowlist from .bot_detection_challenge_policy_password_flow_enum import BotDetectionChallengePolicyPasswordFlowEnum from .bot_detection_challenge_policy_password_reset_flow_enum import ( @@ -1114,6 +1116,7 @@ from .create_verification_email_response_content import CreateVerificationEmailResponseContent from .created_authentication_method_type_enum import CreatedAuthenticationMethodTypeEnum from .created_user_authentication_method_type_enum import CreatedUserAuthenticationMethodTypeEnum + from .credential_device_type_enum import CredentialDeviceTypeEnum from .credential_id import CredentialId from .custom_domain import CustomDomain from .custom_domain_custom_client_ip_header import CustomDomainCustomClientIpHeader @@ -2395,6 +2398,8 @@ FlowsVaultConnectionSetupTypeOauthClientCredentialsEnum, ) from .flows_vault_connection_summary import FlowsVaultConnectionSummary + from .forbidden_schema import ForbiddenSchema + from .forbidden_schema_error import ForbiddenSchemaError from .form_block import FormBlock from .form_block_divider import FormBlockDivider from .form_block_divider_config import FormBlockDividerConfig @@ -3097,9 +3102,13 @@ from .token_quota import TokenQuota from .token_quota_client_credentials import TokenQuotaClientCredentials from .token_quota_configuration import TokenQuotaConfiguration + from .too_many_requests_schema import TooManyRequestsSchema + from .too_many_requests_schema_error import TooManyRequestsSchemaError from .twilio_provider_configuration import TwilioProviderConfiguration from .twilio_provider_credentials import TwilioProviderCredentials from .twilio_provider_delivery_method_enum import TwilioProviderDeliveryMethodEnum + from .unauthorized_schema import UnauthorizedSchema + from .unauthorized_schema_error import UnauthorizedSchemaError from .universal_login_experience_enum import UniversalLoginExperienceEnum from .update_action_bindings_response_content import UpdateActionBindingsResponseContent from .update_action_module_response_content import UpdateActionModuleResponseContent @@ -3378,6 +3387,8 @@ "AttackProtectionUpdateCaptchaRecaptchaV2": ".attack_protection_update_captcha_recaptcha_v_2", "AuthenticationMethodTypeEnum": ".authentication_method_type_enum", "AuthenticationTypeEnum": ".authentication_type_enum", + "BadRequestSchema": ".bad_request_schema", + "BadRequestSchemaError": ".bad_request_schema_error", "BotDetectionAllowlist": ".bot_detection_allowlist", "BotDetectionChallengePolicyPasswordFlowEnum": ".bot_detection_challenge_policy_password_flow_enum", "BotDetectionChallengePolicyPasswordResetFlowEnum": ".bot_detection_challenge_policy_password_reset_flow_enum", @@ -4310,6 +4321,7 @@ "CreateVerificationEmailResponseContent": ".create_verification_email_response_content", "CreatedAuthenticationMethodTypeEnum": ".created_authentication_method_type_enum", "CreatedUserAuthenticationMethodTypeEnum": ".created_user_authentication_method_type_enum", + "CredentialDeviceTypeEnum": ".credential_device_type_enum", "CredentialId": ".credential_id", "CustomDomain": ".custom_domain", "CustomDomainCustomClientIpHeader": ".custom_domain_custom_client_ip_header", @@ -5163,6 +5175,8 @@ "FlowsVaultConnectionSetupTypeBasicAuthEnum": ".flows_vault_connection_setup_type_basic_auth_enum", "FlowsVaultConnectionSetupTypeOauthClientCredentialsEnum": ".flows_vault_connection_setup_type_oauth_client_credentials_enum", "FlowsVaultConnectionSummary": ".flows_vault_connection_summary", + "ForbiddenSchema": ".forbidden_schema", + "ForbiddenSchemaError": ".forbidden_schema_error", "FormBlock": ".form_block", "FormBlockDivider": ".form_block_divider", "FormBlockDividerConfig": ".form_block_divider_config", @@ -5783,9 +5797,13 @@ "TokenQuota": ".token_quota", "TokenQuotaClientCredentials": ".token_quota_client_credentials", "TokenQuotaConfiguration": ".token_quota_configuration", + "TooManyRequestsSchema": ".too_many_requests_schema", + "TooManyRequestsSchemaError": ".too_many_requests_schema_error", "TwilioProviderConfiguration": ".twilio_provider_configuration", "TwilioProviderCredentials": ".twilio_provider_credentials", "TwilioProviderDeliveryMethodEnum": ".twilio_provider_delivery_method_enum", + "UnauthorizedSchema": ".unauthorized_schema", + "UnauthorizedSchemaError": ".unauthorized_schema_error", "UniversalLoginExperienceEnum": ".universal_login_experience_enum", "UpdateActionBindingsResponseContent": ".update_action_bindings_response_content", "UpdateActionModuleResponseContent": ".update_action_module_response_content", @@ -6062,6 +6080,8 @@ def __dir__(): "AttackProtectionUpdateCaptchaRecaptchaV2", "AuthenticationMethodTypeEnum", "AuthenticationTypeEnum", + "BadRequestSchema", + "BadRequestSchemaError", "BotDetectionAllowlist", "BotDetectionChallengePolicyPasswordFlowEnum", "BotDetectionChallengePolicyPasswordResetFlowEnum", @@ -6994,6 +7014,7 @@ def __dir__(): "CreateVerificationEmailResponseContent", "CreatedAuthenticationMethodTypeEnum", "CreatedUserAuthenticationMethodTypeEnum", + "CredentialDeviceTypeEnum", "CredentialId", "CustomDomain", "CustomDomainCustomClientIpHeader", @@ -7847,6 +7868,8 @@ def __dir__(): "FlowsVaultConnectionSetupTypeBasicAuthEnum", "FlowsVaultConnectionSetupTypeOauthClientCredentialsEnum", "FlowsVaultConnectionSummary", + "ForbiddenSchema", + "ForbiddenSchemaError", "FormBlock", "FormBlockDivider", "FormBlockDividerConfig", @@ -8467,9 +8490,13 @@ def __dir__(): "TokenQuota", "TokenQuotaClientCredentials", "TokenQuotaConfiguration", + "TooManyRequestsSchema", + "TooManyRequestsSchemaError", "TwilioProviderConfiguration", "TwilioProviderCredentials", "TwilioProviderDeliveryMethodEnum", + "UnauthorizedSchema", + "UnauthorizedSchemaError", "UniversalLoginExperienceEnum", "UpdateActionBindingsResponseContent", "UpdateActionModuleResponseContent", diff --git a/src/auth0/management/types/bad_request_schema.py b/src/auth0/management/types/bad_request_schema.py new file mode 100644 index 00000000..c8d0d71e --- /dev/null +++ b/src/auth0/management/types/bad_request_schema.py @@ -0,0 +1,28 @@ +# This file was auto-generated by Fern from our API Definition. + +import typing + +import pydantic +import typing_extensions +from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel +from ..core.serialization import FieldMetadata +from .bad_request_schema_error import BadRequestSchemaError + + +class BadRequestSchema(UniversalBaseModel): + """ + Bad Request + """ + + message: str + status_code: typing_extensions.Annotated[str, FieldMetadata(alias="statusCode"), pydantic.Field(alias="statusCode")] + error: BadRequestSchemaError + + if IS_PYDANTIC_V2: + model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2 + else: + + class Config: + frozen = True + smart_union = True + extra = pydantic.Extra.allow diff --git a/src/auth0/management/types/bad_request_schema_error.py b/src/auth0/management/types/bad_request_schema_error.py new file mode 100644 index 00000000..f3ca1e85 --- /dev/null +++ b/src/auth0/management/types/bad_request_schema_error.py @@ -0,0 +1,5 @@ +# This file was auto-generated by Fern from our API Definition. + +import typing + +BadRequestSchemaError = typing.Union[typing.Literal["Bad Request"], typing.Any] diff --git a/src/auth0/management/types/connection_base_url_exact.py b/src/auth0/management/types/connection_base_url_exact.py index d73b9d98..980f743c 100644 --- a/src/auth0/management/types/connection_base_url_exact.py +++ b/src/auth0/management/types/connection_base_url_exact.py @@ -1,8 +1,6 @@ # This file was auto-generated by Fern from our API Definition. -from .connection_https_url_with_http_fallback import ConnectionHttpsUrlWithHttpFallback - -ConnectionBaseUrlExact = ConnectionHttpsUrlWithHttpFallback +ConnectionBaseUrlExact = str """ Base URL override for the Exact Online API endpoint used for OAuth2 authorization and API requests. Defaults to https://start.exactonline.nl. """ diff --git a/src/auth0/management/types/connection_client_id_amazon.py b/src/auth0/management/types/connection_client_id_amazon.py index e6b19a44..3832915c 100644 --- a/src/auth0/management/types/connection_client_id_amazon.py +++ b/src/auth0/management/types/connection_client_id_amazon.py @@ -1,8 +1,6 @@ # This file was auto-generated by Fern from our API Definition. -from .connection_client_id import ConnectionClientId - -ConnectionClientIdAmazon = ConnectionClientId +ConnectionClientIdAmazon = str """ -OAuth 2.0 client identifier obtained from Amazon Developer Console during Login with Amazon application registration. When not provided, Auth0 development keys are used for testing purposes. +OAuth 2.0 client identifier issued by the identity provider during application registration. This value identifies your Auth0 connection to the identity provider. """ diff --git a/src/auth0/management/types/connection_client_id_azure_ad.py b/src/auth0/management/types/connection_client_id_azure_ad.py index 4e1d2f9d..06075a8a 100644 --- a/src/auth0/management/types/connection_client_id_azure_ad.py +++ b/src/auth0/management/types/connection_client_id_azure_ad.py @@ -1,5 +1,6 @@ # This file was auto-generated by Fern from our API Definition. -from .connection_client_id import ConnectionClientId - -ConnectionClientIdAzureAd = ConnectionClientId +ConnectionClientIdAzureAd = str +""" +OAuth 2.0 client identifier issued by the identity provider during application registration. This value identifies your Auth0 connection to the identity provider. +""" diff --git a/src/auth0/management/types/connection_client_id_exact.py b/src/auth0/management/types/connection_client_id_exact.py index b43253fb..f447c88c 100644 --- a/src/auth0/management/types/connection_client_id_exact.py +++ b/src/auth0/management/types/connection_client_id_exact.py @@ -1,8 +1,6 @@ # This file was auto-generated by Fern from our API Definition. -from .connection_client_id import ConnectionClientId - -ConnectionClientIdExact = ConnectionClientId +ConnectionClientIdExact = str """ -OAuth2.0 client identifier for the Exact Online connection, obtained when registering your application in the Exact App Center. +OAuth 2.0 client identifier issued by the identity provider during application registration. This value identifies your Auth0 connection to the identity provider. """ diff --git a/src/auth0/management/types/connection_client_id_facebook.py b/src/auth0/management/types/connection_client_id_facebook.py index 822addc2..31a7c2fe 100644 --- a/src/auth0/management/types/connection_client_id_facebook.py +++ b/src/auth0/management/types/connection_client_id_facebook.py @@ -1,8 +1,6 @@ # This file was auto-generated by Fern from our API Definition. -from .connection_client_id import ConnectionClientId - -ConnectionClientIdFacebook = ConnectionClientId +ConnectionClientIdFacebook = str """ -Your Facebook App ID. You can find this in your [Facebook Developers Console](https://developers.facebook.com/apps) under the App Settings section. +OAuth 2.0 client identifier issued by the identity provider during application registration. This value identifies your Auth0 connection to the identity provider. """ diff --git a/src/auth0/management/types/connection_client_id_google_apps.py b/src/auth0/management/types/connection_client_id_google_apps.py index 917e57d0..679b7875 100644 --- a/src/auth0/management/types/connection_client_id_google_apps.py +++ b/src/auth0/management/types/connection_client_id_google_apps.py @@ -1,8 +1,6 @@ # This file was auto-generated by Fern from our API Definition. -from .connection_client_id import ConnectionClientId - -ConnectionClientIdGoogleApps = ConnectionClientId +ConnectionClientIdGoogleApps = str """ -Your Google OAuth 2.0 client ID. You can find this in your [Google Cloud Console](https://console.cloud.google.com/apis/credentials) under the OAuth 2.0 Client IDs section. +OAuth 2.0 client identifier issued by the identity provider during application registration. This value identifies your Auth0 connection to the identity provider. """ diff --git a/src/auth0/management/types/connection_client_id_o_auth_1.py b/src/auth0/management/types/connection_client_id_o_auth_1.py index 00142510..57a41f1c 100644 --- a/src/auth0/management/types/connection_client_id_o_auth_1.py +++ b/src/auth0/management/types/connection_client_id_o_auth_1.py @@ -1,8 +1,6 @@ # This file was auto-generated by Fern from our API Definition. -from .connection_client_id import ConnectionClientId - -ConnectionClientIdOAuth1 = ConnectionClientId +ConnectionClientIdOAuth1 = str """ -OAuth 1.0a client ID (consumer key) that identifies the client to the provider and is used to sign OAuth 1.0a requests. +OAuth 2.0 client identifier issued by the identity provider during application registration. This value identifies your Auth0 connection to the identity provider. """ diff --git a/src/auth0/management/types/connection_client_id_o_auth_2.py b/src/auth0/management/types/connection_client_id_o_auth_2.py index bb9db483..c752d012 100644 --- a/src/auth0/management/types/connection_client_id_o_auth_2.py +++ b/src/auth0/management/types/connection_client_id_o_auth_2.py @@ -1,5 +1,6 @@ # This file was auto-generated by Fern from our API Definition. -from .connection_client_id import ConnectionClientId - -ConnectionClientIdOAuth2 = ConnectionClientId +ConnectionClientIdOAuth2 = str +""" +OAuth 2.0 client identifier issued by the identity provider during application registration. This value identifies your Auth0 connection to the identity provider. +""" diff --git a/src/auth0/management/types/connection_client_id_oidc.py b/src/auth0/management/types/connection_client_id_oidc.py index efab6cfe..1c6640cb 100644 --- a/src/auth0/management/types/connection_client_id_oidc.py +++ b/src/auth0/management/types/connection_client_id_oidc.py @@ -1,5 +1,6 @@ # This file was auto-generated by Fern from our API Definition. -from .connection_client_id import ConnectionClientId - -ConnectionClientIdOidc = ConnectionClientId +ConnectionClientIdOidc = str +""" +OAuth 2.0 client identifier issued by the identity provider during application registration. This value identifies your Auth0 connection to the identity provider. +""" diff --git a/src/auth0/management/types/connection_client_id_paypal.py b/src/auth0/management/types/connection_client_id_paypal.py index d9645b54..044be2d7 100644 --- a/src/auth0/management/types/connection_client_id_paypal.py +++ b/src/auth0/management/types/connection_client_id_paypal.py @@ -1,8 +1,6 @@ # This file was auto-generated by Fern from our API Definition. -from .connection_client_id import ConnectionClientId - -ConnectionClientIdPaypal = ConnectionClientId +ConnectionClientIdPaypal = str """ -OAuth 2.0 client identifier issued by PayPal during application registration. This value identifies your Auth0 connection to PayPal. Leave empty to use Auth0 Dev Keys. +OAuth 2.0 client identifier issued by the identity provider during application registration. This value identifies your Auth0 connection to the identity provider. """ diff --git a/src/auth0/management/types/connection_client_secret_amazon.py b/src/auth0/management/types/connection_client_secret_amazon.py index cf84791e..e1bf4d16 100644 --- a/src/auth0/management/types/connection_client_secret_amazon.py +++ b/src/auth0/management/types/connection_client_secret_amazon.py @@ -1,8 +1,6 @@ # This file was auto-generated by Fern from our API Definition. -from .connection_client_secret import ConnectionClientSecret - -ConnectionClientSecretAmazon = ConnectionClientSecret +ConnectionClientSecretAmazon = str """ -OAuth 2.0 client secret obtained from Amazon Developer Console during Login with Amazon application registration. Used to authenticate your application when exchanging authorization codes for tokens. +OAuth 2.0 client secret issued by the identity provider during application registration. Used to authenticate your Auth0 connection when exchanging authorization codes for tokens. May be null for public clients. """ diff --git a/src/auth0/management/types/connection_client_secret_bitbucket.py b/src/auth0/management/types/connection_client_secret_bitbucket.py index ca9d1162..aeff9f24 100644 --- a/src/auth0/management/types/connection_client_secret_bitbucket.py +++ b/src/auth0/management/types/connection_client_secret_bitbucket.py @@ -1,5 +1,6 @@ # This file was auto-generated by Fern from our API Definition. -from .connection_client_secret import ConnectionClientSecret - -ConnectionClientSecretBitbucket = ConnectionClientSecret +ConnectionClientSecretBitbucket = str +""" +OAuth 2.0 client secret issued by the identity provider during application registration. Used to authenticate your Auth0 connection when exchanging authorization codes for tokens. May be null for public clients. +""" diff --git a/src/auth0/management/types/connection_client_secret_exact.py b/src/auth0/management/types/connection_client_secret_exact.py index 47eb9f61..f8cb0bfc 100644 --- a/src/auth0/management/types/connection_client_secret_exact.py +++ b/src/auth0/management/types/connection_client_secret_exact.py @@ -1,8 +1,6 @@ # This file was auto-generated by Fern from our API Definition. -from .connection_client_secret import ConnectionClientSecret - -ConnectionClientSecretExact = ConnectionClientSecret +ConnectionClientSecretExact = str """ -OAuth2.0 client secret for the Exact Online connection, obtained when registering your application in the Exact App Center. +OAuth 2.0 client secret issued by the identity provider during application registration. Used to authenticate your Auth0 connection when exchanging authorization codes for tokens. May be null for public clients. """ diff --git a/src/auth0/management/types/connection_client_secret_facebook.py b/src/auth0/management/types/connection_client_secret_facebook.py index d17c610f..a568597b 100644 --- a/src/auth0/management/types/connection_client_secret_facebook.py +++ b/src/auth0/management/types/connection_client_secret_facebook.py @@ -1,8 +1,6 @@ # This file was auto-generated by Fern from our API Definition. -from .connection_client_secret import ConnectionClientSecret - -ConnectionClientSecretFacebook = ConnectionClientSecret +ConnectionClientSecretFacebook = str """ -Your Facebook App Secret. You can find this in your [Facebook Developers Console](https://developers.facebook.com/apps) under the App Settings section. +OAuth 2.0 client secret issued by the identity provider during application registration. Used to authenticate your Auth0 connection when exchanging authorization codes for tokens. May be null for public clients. """ diff --git a/src/auth0/management/types/connection_client_secret_google_apps.py b/src/auth0/management/types/connection_client_secret_google_apps.py index 30f70f32..acebfe7e 100644 --- a/src/auth0/management/types/connection_client_secret_google_apps.py +++ b/src/auth0/management/types/connection_client_secret_google_apps.py @@ -1,8 +1,6 @@ # This file was auto-generated by Fern from our API Definition. -from .connection_client_secret import ConnectionClientSecret - -ConnectionClientSecretGoogleApps = ConnectionClientSecret +ConnectionClientSecretGoogleApps = str """ -Your Google OAuth 2.0 client secret. You can find this in your [Google Cloud Console](https://console.cloud.google.com/apis/credentials) under the OAuth 2.0 Client IDs section. +OAuth 2.0 client secret issued by the identity provider during application registration. Used to authenticate your Auth0 connection when exchanging authorization codes for tokens. May be null for public clients. """ diff --git a/src/auth0/management/types/connection_client_secret_o_auth_1.py b/src/auth0/management/types/connection_client_secret_o_auth_1.py index ffd3091d..c6229c88 100644 --- a/src/auth0/management/types/connection_client_secret_o_auth_1.py +++ b/src/auth0/management/types/connection_client_secret_o_auth_1.py @@ -1,8 +1,6 @@ # This file was auto-generated by Fern from our API Definition. -from .connection_client_secret import ConnectionClientSecret - -ConnectionClientSecretOAuth1 = ConnectionClientSecret +ConnectionClientSecretOAuth1 = str """ -OAuth 1.0a client secret paired with the consumer key to sign request-token and access-token requests for this connection. Treat as a sensitive credential and supply the exact secret issued by the upstream provider. +OAuth 2.0 client secret issued by the identity provider during application registration. Used to authenticate your Auth0 connection when exchanging authorization codes for tokens. May be null for public clients. """ diff --git a/src/auth0/management/types/connection_client_secret_o_auth_2.py b/src/auth0/management/types/connection_client_secret_o_auth_2.py index 5787a8f6..88e99eb0 100644 --- a/src/auth0/management/types/connection_client_secret_o_auth_2.py +++ b/src/auth0/management/types/connection_client_secret_o_auth_2.py @@ -1,5 +1,6 @@ # This file was auto-generated by Fern from our API Definition. -from .connection_client_secret import ConnectionClientSecret - -ConnectionClientSecretOAuth2 = ConnectionClientSecret +ConnectionClientSecretOAuth2 = str +""" +OAuth 2.0 client secret issued by the identity provider during application registration. Used to authenticate your Auth0 connection when exchanging authorization codes for tokens. May be null for public clients. +""" diff --git a/src/auth0/management/types/connection_client_secret_oidc.py b/src/auth0/management/types/connection_client_secret_oidc.py index d9e9fbd8..d546216b 100644 --- a/src/auth0/management/types/connection_client_secret_oidc.py +++ b/src/auth0/management/types/connection_client_secret_oidc.py @@ -1,5 +1,6 @@ # This file was auto-generated by Fern from our API Definition. -from .connection_client_secret import ConnectionClientSecret - -ConnectionClientSecretOidc = ConnectionClientSecret +ConnectionClientSecretOidc = str +""" +OAuth 2.0 client secret issued by the identity provider during application registration. Used to authenticate your Auth0 connection when exchanging authorization codes for tokens. May be null for public clients. +""" diff --git a/src/auth0/management/types/connection_client_secret_paypal.py b/src/auth0/management/types/connection_client_secret_paypal.py index 639ffc89..36c96106 100644 --- a/src/auth0/management/types/connection_client_secret_paypal.py +++ b/src/auth0/management/types/connection_client_secret_paypal.py @@ -1,8 +1,6 @@ # This file was auto-generated by Fern from our API Definition. -from .connection_client_secret import ConnectionClientSecret - -ConnectionClientSecretPaypal = ConnectionClientSecret +ConnectionClientSecretPaypal = str """ -OAuth 2.0 client secret issued by PayPal during application registration. Leave empty to use Auth0 Dev Keys. +OAuth 2.0 client secret issued by the identity provider during application registration. Used to authenticate your Auth0 connection when exchanging authorization codes for tokens. May be null for public clients. """ diff --git a/src/auth0/management/types/connection_client_secret_windows_live.py b/src/auth0/management/types/connection_client_secret_windows_live.py index d1dcf06a..cd63a614 100644 --- a/src/auth0/management/types/connection_client_secret_windows_live.py +++ b/src/auth0/management/types/connection_client_secret_windows_live.py @@ -1,5 +1,6 @@ # This file was auto-generated by Fern from our API Definition. -from .connection_client_secret import ConnectionClientSecret - -ConnectionClientSecretWindowsLive = ConnectionClientSecret +ConnectionClientSecretWindowsLive = str +""" +OAuth 2.0 client secret issued by the identity provider during application registration. Used to authenticate your Auth0 connection when exchanging authorization codes for tokens. May be null for public clients. +""" diff --git a/src/auth0/management/types/connection_dpop_signing_alg_enum.py b/src/auth0/management/types/connection_dpop_signing_alg_enum.py index 10728b02..f708bfcd 100644 --- a/src/auth0/management/types/connection_dpop_signing_alg_enum.py +++ b/src/auth0/management/types/connection_dpop_signing_alg_enum.py @@ -2,4 +2,4 @@ import typing -ConnectionDpopSigningAlgEnum = typing.Union[typing.Literal["ES256", "Ed25519"], typing.Any] +ConnectionDpopSigningAlgEnum = typing.Union[typing.Literal["ES256", "ES384", "ES512", "Ed25519"], typing.Any] diff --git a/src/auth0/management/types/connection_https_url_with_http_fallback_2048.py b/src/auth0/management/types/connection_https_url_with_http_fallback_2048.py index 0d143fc6..ecf2ac60 100644 --- a/src/auth0/management/types/connection_https_url_with_http_fallback_2048.py +++ b/src/auth0/management/types/connection_https_url_with_http_fallback_2048.py @@ -1,5 +1,3 @@ # This file was auto-generated by Fern from our API Definition. -from .connection_https_url_with_http_fallback import ConnectionHttpsUrlWithHttpFallback - -ConnectionHttpsUrlWithHttpFallback2048 = ConnectionHttpsUrlWithHttpFallback +ConnectionHttpsUrlWithHttpFallback2048 = str diff --git a/src/auth0/management/types/connection_https_url_with_http_fallback_255.py b/src/auth0/management/types/connection_https_url_with_http_fallback_255.py index 0cd1d0fd..902efe08 100644 --- a/src/auth0/management/types/connection_https_url_with_http_fallback_255.py +++ b/src/auth0/management/types/connection_https_url_with_http_fallback_255.py @@ -1,5 +1,3 @@ # This file was auto-generated by Fern from our API Definition. -from .connection_https_url_with_http_fallback import ConnectionHttpsUrlWithHttpFallback - -ConnectionHttpsUrlWithHttpFallback255 = ConnectionHttpsUrlWithHttpFallback +ConnectionHttpsUrlWithHttpFallback255 = str diff --git a/src/auth0/management/types/connection_issuer.py b/src/auth0/management/types/connection_issuer.py index 5dca28b7..83393b60 100644 --- a/src/auth0/management/types/connection_issuer.py +++ b/src/auth0/management/types/connection_issuer.py @@ -1,5 +1,6 @@ # This file was auto-generated by Fern from our API Definition. -from .connection_https_url_with_http_fallback_255 import ConnectionHttpsUrlWithHttpFallback255 - -ConnectionIssuer = ConnectionHttpsUrlWithHttpFallback255 +ConnectionIssuer = str +""" +The identity provider's unique issuer identifier URL (e.g., https://accounts.google.com). Must match the 'iss' claim in ID tokens from the identity provider. +""" diff --git a/src/auth0/management/types/connection_jwks_uri.py b/src/auth0/management/types/connection_jwks_uri.py index dea53fbc..2e9a34f6 100644 --- a/src/auth0/management/types/connection_jwks_uri.py +++ b/src/auth0/management/types/connection_jwks_uri.py @@ -1,5 +1,6 @@ # This file was auto-generated by Fern from our API Definition. -from .connection_https_url_with_http_fallback_255 import ConnectionHttpsUrlWithHttpFallback255 - -ConnectionJwksUri = ConnectionHttpsUrlWithHttpFallback255 +ConnectionJwksUri = str +""" +URL of the identity provider's JSON Web Key Set (JWKS) endpoint containing public keys for signature verification. Auth0 retrieves these keys to validate ID token signatures. +""" diff --git a/src/auth0/management/types/connection_op_policy_uri.py b/src/auth0/management/types/connection_op_policy_uri.py index 9ecbc897..e4a459db 100644 --- a/src/auth0/management/types/connection_op_policy_uri.py +++ b/src/auth0/management/types/connection_op_policy_uri.py @@ -1,5 +1,6 @@ # This file was auto-generated by Fern from our API Definition. -from .connection_https_url_with_http_fallback_255 import ConnectionHttpsUrlWithHttpFallback255 - -ConnectionOpPolicyUri = ConnectionHttpsUrlWithHttpFallback255 +ConnectionOpPolicyUri = str +""" +URL that the OpenID Provider provides to the person registering the Client to read about the OPs requirements on how the Relying Party can use the data provided by the OP. The registration process SHOULD display this URL to the person registering the Client if it is given. +""" diff --git a/src/auth0/management/types/connection_op_tos_uri.py b/src/auth0/management/types/connection_op_tos_uri.py index 4e017897..ff906d37 100644 --- a/src/auth0/management/types/connection_op_tos_uri.py +++ b/src/auth0/management/types/connection_op_tos_uri.py @@ -1,5 +1,6 @@ # This file was auto-generated by Fern from our API Definition. -from .connection_https_url_with_http_fallback_255 import ConnectionHttpsUrlWithHttpFallback255 - -ConnectionOpTosUri = ConnectionHttpsUrlWithHttpFallback255 +ConnectionOpTosUri = str +""" +URL that the OpenID Provider provides to the person registering the Client to read about OpenID Providers terms of service. The registration process SHOULD display this URL to the person registering the Client if it is given. +""" diff --git a/src/auth0/management/types/connection_ping_federate_base_url_ping_federate.py b/src/auth0/management/types/connection_ping_federate_base_url_ping_federate.py index 4c8634a1..5ad7496d 100644 --- a/src/auth0/management/types/connection_ping_federate_base_url_ping_federate.py +++ b/src/auth0/management/types/connection_ping_federate_base_url_ping_federate.py @@ -1,8 +1,6 @@ # This file was auto-generated by Fern from our API Definition. -from .connection_https_url_with_http_fallback import ConnectionHttpsUrlWithHttpFallback - -ConnectionPingFederateBaseUrlPingFederate = ConnectionHttpsUrlWithHttpFallback +ConnectionPingFederateBaseUrlPingFederate = str """ PingFederate base URL constrained to HTTP/HTTPS with length bounds """ diff --git a/src/auth0/management/types/connection_registration_endpoint.py b/src/auth0/management/types/connection_registration_endpoint.py index 44ba18a8..0c7d189a 100644 --- a/src/auth0/management/types/connection_registration_endpoint.py +++ b/src/auth0/management/types/connection_registration_endpoint.py @@ -1,5 +1,6 @@ # This file was auto-generated by Fern from our API Definition. -from .connection_https_url_with_http_fallback_255 import ConnectionHttpsUrlWithHttpFallback255 - -ConnectionRegistrationEndpoint = ConnectionHttpsUrlWithHttpFallback255 +ConnectionRegistrationEndpoint = str +""" +URL of the OPs Dynamic Client Registration Endpoint. RECOMMENDED but not REQUIRED. https://openid.net/specs/openid-connect-discovery-1_0.html#OpenID.Registration +""" diff --git a/src/auth0/management/types/connection_response_common.py b/src/auth0/management/types/connection_response_common.py index fc411428..9bc63e2c 100644 --- a/src/auth0/management/types/connection_response_common.py +++ b/src/auth0/management/types/connection_response_common.py @@ -10,7 +10,7 @@ class ConnectionResponseCommon(CreateConnectionCommon): - id: typing.Optional[ConnectionId] = None + id: ConnectionId realms: typing.Optional[ConnectionRealms] = None if IS_PYDANTIC_V2: diff --git a/src/auth0/management/types/connection_service_documentation.py b/src/auth0/management/types/connection_service_documentation.py index 3bdf911a..4bc1b433 100644 --- a/src/auth0/management/types/connection_service_documentation.py +++ b/src/auth0/management/types/connection_service_documentation.py @@ -1,5 +1,6 @@ # This file was auto-generated by Fern from our API Definition. -from .connection_https_url_with_http_fallback_255 import ConnectionHttpsUrlWithHttpFallback255 - -ConnectionServiceDocumentation = ConnectionHttpsUrlWithHttpFallback255 +ConnectionServiceDocumentation = str +""" +URL of a page containing human-readable information that developers might want or need to know when using the OpenID Provider. In particular, if the OpenID Provider does not support Dynamic Client Registration, then information on how to register Clients needs to be provided in this documentation. +""" diff --git a/src/auth0/management/types/connection_tenant_domain_saml.py b/src/auth0/management/types/connection_tenant_domain_saml.py index 17089702..737ac677 100644 --- a/src/auth0/management/types/connection_tenant_domain_saml.py +++ b/src/auth0/management/types/connection_tenant_domain_saml.py @@ -1,5 +1,6 @@ # This file was auto-generated by Fern from our API Definition. -from .connection_tenant_domain import ConnectionTenantDomain - -ConnectionTenantDomainSaml = ConnectionTenantDomain +ConnectionTenantDomainSaml = str +""" +For SAML connections, the tenant domain used to construct the login endpoint URL. Can be a string for single-tenant or an array of strings for multi-tenant validation. +""" diff --git a/src/auth0/management/types/connection_token_endpoint.py b/src/auth0/management/types/connection_token_endpoint.py index 80f4ddd5..a8902691 100644 --- a/src/auth0/management/types/connection_token_endpoint.py +++ b/src/auth0/management/types/connection_token_endpoint.py @@ -1,5 +1,6 @@ # This file was auto-generated by Fern from our API Definition. -from .connection_https_url_with_http_fallback_255 import ConnectionHttpsUrlWithHttpFallback255 - -ConnectionTokenEndpoint = ConnectionHttpsUrlWithHttpFallback255 +ConnectionTokenEndpoint = str +""" +URL of the identity provider's OAuth 2.0 token endpoint where authorization codes are exchanged for access tokens. Must be a valid HTTPS URL. Required for authorization code flow but optional for implicit flow. +""" diff --git a/src/auth0/management/types/connection_userinfo_endpoint.py b/src/auth0/management/types/connection_userinfo_endpoint.py index 6cbe3dea..6fdd9b9a 100644 --- a/src/auth0/management/types/connection_userinfo_endpoint.py +++ b/src/auth0/management/types/connection_userinfo_endpoint.py @@ -1,5 +1,6 @@ # This file was auto-generated by Fern from our API Definition. -from .connection_https_url_with_http_fallback_255 import ConnectionHttpsUrlWithHttpFallback255 - -ConnectionUserinfoEndpoint = ConnectionHttpsUrlWithHttpFallback255 +ConnectionUserinfoEndpoint = str +""" +Optional URL of the identity provider's UserInfo endpoint. When configured with attribute mapping, Auth0 calls this endpoint to retrieve additional user profile claims using the access token. +""" diff --git a/src/auth0/management/types/create_connection_common.py b/src/auth0/management/types/create_connection_common.py index e8784b37..6d7aa014 100644 --- a/src/auth0/management/types/create_connection_common.py +++ b/src/auth0/management/types/create_connection_common.py @@ -11,7 +11,7 @@ class CreateConnectionCommon(UniversalBaseModel): - name: typing.Optional[ConnectionName] = None + name: ConnectionName enabled_clients: typing.Optional[typing.List[str]] = pydantic.Field(default=None) """ Use of this property is NOT RECOMMENDED. Use the PATCH /v2/connections/{id}/clients endpoint to enable the connection for a set of clients. diff --git a/src/auth0/management/types/create_resource_server_response_content.py b/src/auth0/management/types/create_resource_server_response_content.py index 41345fa7..537200a9 100644 --- a/src/auth0/management/types/create_resource_server_response_content.py +++ b/src/auth0/management/types/create_resource_server_response_content.py @@ -56,6 +56,11 @@ class CreateResourceServerResponseContent(UniversalBaseModel): Whether Online Refresh Tokens can be issued for this API (true) or not (false). """ + allow_online_access_with_ephemeral_sessions: typing.Optional[bool] = pydantic.Field(default=None) + """ + Whether Online Refresh Tokens can be issued even when sessions are configured as ephemeral (true) or not (false). + """ + skip_consent_for_verifiable_first_party_clients: typing.Optional[bool] = pydantic.Field(default=None) """ Whether to skip user consent for applications flagged as first party (true) or not (false). diff --git a/src/auth0/management/types/create_user_authentication_method_response_content.py b/src/auth0/management/types/create_user_authentication_method_response_content.py index ecd68214..6b65538d 100644 --- a/src/auth0/management/types/create_user_authentication_method_response_content.py +++ b/src/auth0/management/types/create_user_authentication_method_response_content.py @@ -6,6 +6,7 @@ import pydantic from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel from .created_user_authentication_method_type_enum import CreatedUserAuthenticationMethodTypeEnum +from .credential_device_type_enum import CredentialDeviceTypeEnum from .preferred_authentication_method_enum import PreferredAuthenticationMethodEnum from .user_authentication_method_properties import UserAuthenticationMethodProperties @@ -67,6 +68,32 @@ class CreateUserAuthenticationMethodResponseContent(UniversalBaseModel): Applies to webauthn authenticators only. The relying party identifier. """ + credential_device_type: typing.Optional[CredentialDeviceTypeEnum] = None + credential_backed_up: typing.Optional[bool] = pydantic.Field(default=None) + """ + Applies to passkeys only. Whether the credential was backed up. + """ + + identity_user_id: typing.Optional[str] = pydantic.Field(default=None) + """ + Applies to passkeys only. The ID of the user identity linked with the authentication method. + """ + + user_agent: typing.Optional[str] = pydantic.Field(default=None) + """ + Applies to passkeys only. The user-agent of the browser used to create the passkey. + """ + + user_handle: typing.Optional[str] = pydantic.Field(default=None) + """ + Applies to passkeys only. The user handle of the user identity. + """ + + transports: typing.Optional[typing.List[str]] = pydantic.Field(default=None) + """ + Applies to passkeys only. The transports used by clients to communicate with the authenticator. + """ + created_at: typing.Optional[dt.datetime] = pydantic.Field(default=None) """ Authentication method creation date diff --git a/src/auth0/management/types/credential_device_type_enum.py b/src/auth0/management/types/credential_device_type_enum.py new file mode 100644 index 00000000..439155f1 --- /dev/null +++ b/src/auth0/management/types/credential_device_type_enum.py @@ -0,0 +1,5 @@ +# This file was auto-generated by Fern from our API Definition. + +import typing + +CredentialDeviceTypeEnum = typing.Union[typing.Literal["single_device", "multi_device"], typing.Any] diff --git a/src/auth0/management/types/forbidden_schema.py b/src/auth0/management/types/forbidden_schema.py new file mode 100644 index 00000000..9bbd6c4c --- /dev/null +++ b/src/auth0/management/types/forbidden_schema.py @@ -0,0 +1,28 @@ +# This file was auto-generated by Fern from our API Definition. + +import typing + +import pydantic +import typing_extensions +from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel +from ..core.serialization import FieldMetadata +from .forbidden_schema_error import ForbiddenSchemaError + + +class ForbiddenSchema(UniversalBaseModel): + """ + Forbidden + """ + + message: str + status_code: typing_extensions.Annotated[str, FieldMetadata(alias="statusCode"), pydantic.Field(alias="statusCode")] + error: ForbiddenSchemaError + + if IS_PYDANTIC_V2: + model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2 + else: + + class Config: + frozen = True + smart_union = True + extra = pydantic.Extra.allow diff --git a/src/auth0/management/types/forbidden_schema_error.py b/src/auth0/management/types/forbidden_schema_error.py new file mode 100644 index 00000000..b7b2b9a4 --- /dev/null +++ b/src/auth0/management/types/forbidden_schema_error.py @@ -0,0 +1,5 @@ +# This file was auto-generated by Fern from our API Definition. + +import typing + +ForbiddenSchemaError = typing.Union[typing.Literal["Forbidden"], typing.Any] diff --git a/src/auth0/management/types/get_resource_server_response_content.py b/src/auth0/management/types/get_resource_server_response_content.py index daf9ef79..0cfe11dc 100644 --- a/src/auth0/management/types/get_resource_server_response_content.py +++ b/src/auth0/management/types/get_resource_server_response_content.py @@ -56,6 +56,11 @@ class GetResourceServerResponseContent(UniversalBaseModel): Whether Online Refresh Tokens can be issued for this API (true) or not (false). """ + allow_online_access_with_ephemeral_sessions: typing.Optional[bool] = pydantic.Field(default=None) + """ + Whether Online Refresh Tokens can be issued even when sessions are configured as ephemeral (true) or not (false). + """ + skip_consent_for_verifiable_first_party_clients: typing.Optional[bool] = pydantic.Field(default=None) """ Whether to skip user consent for applications flagged as first party (true) or not (false). diff --git a/src/auth0/management/types/get_user_authentication_method_response_content.py b/src/auth0/management/types/get_user_authentication_method_response_content.py index 76911f19..16a3a7dd 100644 --- a/src/auth0/management/types/get_user_authentication_method_response_content.py +++ b/src/auth0/management/types/get_user_authentication_method_response_content.py @@ -89,6 +89,16 @@ class GetUserAuthenticationMethodResponseContent(UniversalBaseModel): Applies to passkeys only. The user-agent of the browser used to create the passkey. """ + user_handle: typing.Optional[str] = pydantic.Field(default=None) + """ + Applies to passkeys only. The user handle of the user identity. + """ + + transports: typing.Optional[typing.List[str]] = pydantic.Field(default=None) + """ + Applies to passkeys only. The transports used by clients to communicate with the authenticator. + """ + aaguid: typing.Optional[str] = pydantic.Field(default=None) """ Applies to passkey authentication methods only. Authenticator Attestation Globally Unique Identifier. diff --git a/src/auth0/management/types/resource_server.py b/src/auth0/management/types/resource_server.py index 68364f83..52ccbacf 100644 --- a/src/auth0/management/types/resource_server.py +++ b/src/auth0/management/types/resource_server.py @@ -56,6 +56,11 @@ class ResourceServer(UniversalBaseModel): Whether Online Refresh Tokens can be issued for this API (true) or not (false). """ + allow_online_access_with_ephemeral_sessions: typing.Optional[bool] = pydantic.Field(default=None) + """ + Whether Online Refresh Tokens can be issued even when sessions are configured as ephemeral (true) or not (false). + """ + skip_consent_for_verifiable_first_party_clients: typing.Optional[bool] = pydantic.Field(default=None) """ Whether to skip user consent for applications flagged as first party (true) or not (false). diff --git a/src/auth0/management/types/too_many_requests_schema.py b/src/auth0/management/types/too_many_requests_schema.py new file mode 100644 index 00000000..037d5f35 --- /dev/null +++ b/src/auth0/management/types/too_many_requests_schema.py @@ -0,0 +1,28 @@ +# This file was auto-generated by Fern from our API Definition. + +import typing + +import pydantic +import typing_extensions +from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel +from ..core.serialization import FieldMetadata +from .too_many_requests_schema_error import TooManyRequestsSchemaError + + +class TooManyRequestsSchema(UniversalBaseModel): + """ + Too Many Requests + """ + + message: str + status_code: typing_extensions.Annotated[str, FieldMetadata(alias="statusCode"), pydantic.Field(alias="statusCode")] + error: TooManyRequestsSchemaError + + if IS_PYDANTIC_V2: + model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2 + else: + + class Config: + frozen = True + smart_union = True + extra = pydantic.Extra.allow diff --git a/src/auth0/management/types/too_many_requests_schema_error.py b/src/auth0/management/types/too_many_requests_schema_error.py new file mode 100644 index 00000000..19cfa390 --- /dev/null +++ b/src/auth0/management/types/too_many_requests_schema_error.py @@ -0,0 +1,5 @@ +# This file was auto-generated by Fern from our API Definition. + +import typing + +TooManyRequestsSchemaError = typing.Union[typing.Literal["Too Many Requests"], typing.Any] diff --git a/src/auth0/management/types/unauthorized_schema.py b/src/auth0/management/types/unauthorized_schema.py new file mode 100644 index 00000000..e034b792 --- /dev/null +++ b/src/auth0/management/types/unauthorized_schema.py @@ -0,0 +1,28 @@ +# This file was auto-generated by Fern from our API Definition. + +import typing + +import pydantic +import typing_extensions +from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel +from ..core.serialization import FieldMetadata +from .unauthorized_schema_error import UnauthorizedSchemaError + + +class UnauthorizedSchema(UniversalBaseModel): + """ + Unauthorized + """ + + message: str + status_code: typing_extensions.Annotated[str, FieldMetadata(alias="statusCode"), pydantic.Field(alias="statusCode")] + error: UnauthorizedSchemaError + + if IS_PYDANTIC_V2: + model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2 + else: + + class Config: + frozen = True + smart_union = True + extra = pydantic.Extra.allow diff --git a/src/auth0/management/types/unauthorized_schema_error.py b/src/auth0/management/types/unauthorized_schema_error.py new file mode 100644 index 00000000..643e2b41 --- /dev/null +++ b/src/auth0/management/types/unauthorized_schema_error.py @@ -0,0 +1,5 @@ +# This file was auto-generated by Fern from our API Definition. + +import typing + +UnauthorizedSchemaError = typing.Union[typing.Literal["Unauthorized"], typing.Any] diff --git a/src/auth0/management/types/update_resource_server_response_content.py b/src/auth0/management/types/update_resource_server_response_content.py index 4672583e..ec7d3711 100644 --- a/src/auth0/management/types/update_resource_server_response_content.py +++ b/src/auth0/management/types/update_resource_server_response_content.py @@ -56,6 +56,11 @@ class UpdateResourceServerResponseContent(UniversalBaseModel): Whether Online Refresh Tokens can be issued for this API (true) or not (false). """ + allow_online_access_with_ephemeral_sessions: typing.Optional[bool] = pydantic.Field(default=None) + """ + Whether Online Refresh Tokens can be issued even when sessions are configured as ephemeral (true) or not (false). + """ + skip_consent_for_verifiable_first_party_clients: typing.Optional[bool] = pydantic.Field(default=None) """ Whether to skip user consent for applications flagged as first party (true) or not (false). diff --git a/src/auth0/management/types/user_authentication_method.py b/src/auth0/management/types/user_authentication_method.py index 16d3440f..29a4620c 100644 --- a/src/auth0/management/types/user_authentication_method.py +++ b/src/auth0/management/types/user_authentication_method.py @@ -89,6 +89,16 @@ class UserAuthenticationMethod(UniversalBaseModel): Applies to passkeys only. The user-agent of the browser used to create the passkey. """ + user_handle: typing.Optional[str] = pydantic.Field(default=None) + """ + Applies to passkeys only. The user handle of the user identity. + """ + + transports: typing.Optional[typing.List[str]] = pydantic.Field(default=None) + """ + Applies to passkeys only. The transports used by clients to communicate with the authenticator. + """ + aaguid: typing.Optional[str] = pydantic.Field(default=None) """ Applies to passkey authentication methods only. Authenticator Attestation Globally Unique Identifier. diff --git a/src/auth0/management/users/authentication_methods/client.py b/src/auth0/management/users/authentication_methods/client.py index 7791d22f..7eeb1ee5 100644 --- a/src/auth0/management/users/authentication_methods/client.py +++ b/src/auth0/management/users/authentication_methods/client.py @@ -7,6 +7,7 @@ from ...core.request_options import RequestOptions from ...types.create_user_authentication_method_response_content import CreateUserAuthenticationMethodResponseContent from ...types.created_user_authentication_method_type_enum import CreatedUserAuthenticationMethodTypeEnum +from ...types.credential_device_type_enum import CredentialDeviceTypeEnum from ...types.get_user_authentication_method_response_content import GetUserAuthenticationMethodResponseContent from ...types.list_user_authentication_methods_offset_paginated_response_content import ( ListUserAuthenticationMethodsOffsetPaginatedResponseContent, @@ -106,7 +107,14 @@ def create( preferred_authentication_method: typing.Optional[PreferredAuthenticationMethodEnum] = OMIT, key_id: typing.Optional[str] = OMIT, public_key: typing.Optional[str] = OMIT, + aaguid: typing.Optional[str] = OMIT, relying_party_identifier: typing.Optional[str] = OMIT, + credential_device_type: typing.Optional[CredentialDeviceTypeEnum] = OMIT, + credential_backed_up: typing.Optional[bool] = OMIT, + identity_user_id: typing.Optional[str] = OMIT, + user_agent: typing.Optional[str] = OMIT, + user_handle: typing.Optional[str] = OMIT, + transports: typing.Optional[typing.Sequence[str]] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> CreateUserAuthenticationMethodResponseContent: """ @@ -134,14 +142,34 @@ def create( preferred_authentication_method : typing.Optional[PreferredAuthenticationMethodEnum] key_id : typing.Optional[str] - Applies to webauthn authentication methods only. The id of the credential. + Applies to webauthn/passkey authentication methods only. The id of the credential. public_key : typing.Optional[str] - Applies to webauthn authentication methods only. The public key, which is encoded as base64. + Applies to webauthn/passkey authentication methods only. The public key, which is encoded as base64. + + aaguid : typing.Optional[str] + Applies to passkeys only. Authenticator Attestation Globally Unique Identifier relying_party_identifier : typing.Optional[str] Applies to webauthn authentication methods only. The relying party identifier. + credential_device_type : typing.Optional[CredentialDeviceTypeEnum] + + credential_backed_up : typing.Optional[bool] + Applies to passkeys only. Whether the credential was backed up. + + identity_user_id : typing.Optional[str] + Applies to passkeys only. The ID of the user identity linked with the authentication method. + + user_agent : typing.Optional[str] + Applies to passkeys only. The user-agent of the browser used to create the passkey. + + user_handle : typing.Optional[str] + Applies to passkeys only. The user handle of the user identity. + + transports : typing.Optional[typing.Sequence[str]] + Applies to passkeys only. The transports used by clients to communicate with the authenticator. + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -172,7 +200,14 @@ def create( preferred_authentication_method=preferred_authentication_method, key_id=key_id, public_key=public_key, + aaguid=aaguid, relying_party_identifier=relying_party_identifier, + credential_device_type=credential_device_type, + credential_backed_up=credential_backed_up, + identity_user_id=identity_user_id, + user_agent=user_agent, + user_handle=user_handle, + transports=transports, request_options=request_options, ) return _response.data @@ -473,7 +508,14 @@ async def create( preferred_authentication_method: typing.Optional[PreferredAuthenticationMethodEnum] = OMIT, key_id: typing.Optional[str] = OMIT, public_key: typing.Optional[str] = OMIT, + aaguid: typing.Optional[str] = OMIT, relying_party_identifier: typing.Optional[str] = OMIT, + credential_device_type: typing.Optional[CredentialDeviceTypeEnum] = OMIT, + credential_backed_up: typing.Optional[bool] = OMIT, + identity_user_id: typing.Optional[str] = OMIT, + user_agent: typing.Optional[str] = OMIT, + user_handle: typing.Optional[str] = OMIT, + transports: typing.Optional[typing.Sequence[str]] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> CreateUserAuthenticationMethodResponseContent: """ @@ -501,14 +543,34 @@ async def create( preferred_authentication_method : typing.Optional[PreferredAuthenticationMethodEnum] key_id : typing.Optional[str] - Applies to webauthn authentication methods only. The id of the credential. + Applies to webauthn/passkey authentication methods only. The id of the credential. public_key : typing.Optional[str] - Applies to webauthn authentication methods only. The public key, which is encoded as base64. + Applies to webauthn/passkey authentication methods only. The public key, which is encoded as base64. + + aaguid : typing.Optional[str] + Applies to passkeys only. Authenticator Attestation Globally Unique Identifier relying_party_identifier : typing.Optional[str] Applies to webauthn authentication methods only. The relying party identifier. + credential_device_type : typing.Optional[CredentialDeviceTypeEnum] + + credential_backed_up : typing.Optional[bool] + Applies to passkeys only. Whether the credential was backed up. + + identity_user_id : typing.Optional[str] + Applies to passkeys only. The ID of the user identity linked with the authentication method. + + user_agent : typing.Optional[str] + Applies to passkeys only. The user-agent of the browser used to create the passkey. + + user_handle : typing.Optional[str] + Applies to passkeys only. The user handle of the user identity. + + transports : typing.Optional[typing.Sequence[str]] + Applies to passkeys only. The transports used by clients to communicate with the authenticator. + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -547,7 +609,14 @@ async def main() -> None: preferred_authentication_method=preferred_authentication_method, key_id=key_id, public_key=public_key, + aaguid=aaguid, relying_party_identifier=relying_party_identifier, + credential_device_type=credential_device_type, + credential_backed_up=credential_backed_up, + identity_user_id=identity_user_id, + user_agent=user_agent, + user_handle=user_handle, + transports=transports, request_options=request_options, ) return _response.data diff --git a/src/auth0/management/users/authentication_methods/raw_client.py b/src/auth0/management/users/authentication_methods/raw_client.py index 7a7c8f70..54218411 100644 --- a/src/auth0/management/users/authentication_methods/raw_client.py +++ b/src/auth0/management/users/authentication_methods/raw_client.py @@ -20,6 +20,7 @@ from ...errors.unauthorized_error import UnauthorizedError from ...types.create_user_authentication_method_response_content import CreateUserAuthenticationMethodResponseContent from ...types.created_user_authentication_method_type_enum import CreatedUserAuthenticationMethodTypeEnum +from ...types.credential_device_type_enum import CredentialDeviceTypeEnum from ...types.get_user_authentication_method_response_content import GetUserAuthenticationMethodResponseContent from ...types.list_user_authentication_methods_offset_paginated_response_content import ( ListUserAuthenticationMethodsOffsetPaginatedResponseContent, @@ -180,7 +181,14 @@ def create( preferred_authentication_method: typing.Optional[PreferredAuthenticationMethodEnum] = OMIT, key_id: typing.Optional[str] = OMIT, public_key: typing.Optional[str] = OMIT, + aaguid: typing.Optional[str] = OMIT, relying_party_identifier: typing.Optional[str] = OMIT, + credential_device_type: typing.Optional[CredentialDeviceTypeEnum] = OMIT, + credential_backed_up: typing.Optional[bool] = OMIT, + identity_user_id: typing.Optional[str] = OMIT, + user_agent: typing.Optional[str] = OMIT, + user_handle: typing.Optional[str] = OMIT, + transports: typing.Optional[typing.Sequence[str]] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> HttpResponse[CreateUserAuthenticationMethodResponseContent]: """ @@ -208,14 +216,34 @@ def create( preferred_authentication_method : typing.Optional[PreferredAuthenticationMethodEnum] key_id : typing.Optional[str] - Applies to webauthn authentication methods only. The id of the credential. + Applies to webauthn/passkey authentication methods only. The id of the credential. public_key : typing.Optional[str] - Applies to webauthn authentication methods only. The public key, which is encoded as base64. + Applies to webauthn/passkey authentication methods only. The public key, which is encoded as base64. + + aaguid : typing.Optional[str] + Applies to passkeys only. Authenticator Attestation Globally Unique Identifier relying_party_identifier : typing.Optional[str] Applies to webauthn authentication methods only. The relying party identifier. + credential_device_type : typing.Optional[CredentialDeviceTypeEnum] + + credential_backed_up : typing.Optional[bool] + Applies to passkeys only. Whether the credential was backed up. + + identity_user_id : typing.Optional[str] + Applies to passkeys only. The ID of the user identity linked with the authentication method. + + user_agent : typing.Optional[str] + Applies to passkeys only. The user-agent of the browser used to create the passkey. + + user_handle : typing.Optional[str] + Applies to passkeys only. The user handle of the user identity. + + transports : typing.Optional[typing.Sequence[str]] + Applies to passkeys only. The transports used by clients to communicate with the authenticator. + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -236,7 +264,14 @@ def create( "preferred_authentication_method": preferred_authentication_method, "key_id": key_id, "public_key": public_key, + "aaguid": aaguid, "relying_party_identifier": relying_party_identifier, + "credential_device_type": credential_device_type, + "credential_backed_up": credential_backed_up, + "identity_user_id": identity_user_id, + "user_agent": user_agent, + "user_handle": user_handle, + "transports": transports, }, headers={ "content-type": "application/json", @@ -981,7 +1016,14 @@ async def create( preferred_authentication_method: typing.Optional[PreferredAuthenticationMethodEnum] = OMIT, key_id: typing.Optional[str] = OMIT, public_key: typing.Optional[str] = OMIT, + aaguid: typing.Optional[str] = OMIT, relying_party_identifier: typing.Optional[str] = OMIT, + credential_device_type: typing.Optional[CredentialDeviceTypeEnum] = OMIT, + credential_backed_up: typing.Optional[bool] = OMIT, + identity_user_id: typing.Optional[str] = OMIT, + user_agent: typing.Optional[str] = OMIT, + user_handle: typing.Optional[str] = OMIT, + transports: typing.Optional[typing.Sequence[str]] = OMIT, request_options: typing.Optional[RequestOptions] = None, ) -> AsyncHttpResponse[CreateUserAuthenticationMethodResponseContent]: """ @@ -1009,14 +1051,34 @@ async def create( preferred_authentication_method : typing.Optional[PreferredAuthenticationMethodEnum] key_id : typing.Optional[str] - Applies to webauthn authentication methods only. The id of the credential. + Applies to webauthn/passkey authentication methods only. The id of the credential. public_key : typing.Optional[str] - Applies to webauthn authentication methods only. The public key, which is encoded as base64. + Applies to webauthn/passkey authentication methods only. The public key, which is encoded as base64. + + aaguid : typing.Optional[str] + Applies to passkeys only. Authenticator Attestation Globally Unique Identifier relying_party_identifier : typing.Optional[str] Applies to webauthn authentication methods only. The relying party identifier. + credential_device_type : typing.Optional[CredentialDeviceTypeEnum] + + credential_backed_up : typing.Optional[bool] + Applies to passkeys only. Whether the credential was backed up. + + identity_user_id : typing.Optional[str] + Applies to passkeys only. The ID of the user identity linked with the authentication method. + + user_agent : typing.Optional[str] + Applies to passkeys only. The user-agent of the browser used to create the passkey. + + user_handle : typing.Optional[str] + Applies to passkeys only. The user handle of the user identity. + + transports : typing.Optional[typing.Sequence[str]] + Applies to passkeys only. The transports used by clients to communicate with the authenticator. + request_options : typing.Optional[RequestOptions] Request-specific configuration. @@ -1037,7 +1099,14 @@ async def create( "preferred_authentication_method": preferred_authentication_method, "key_id": key_id, "public_key": public_key, + "aaguid": aaguid, "relying_party_identifier": relying_party_identifier, + "credential_device_type": credential_device_type, + "credential_backed_up": credential_backed_up, + "identity_user_id": identity_user_id, + "user_agent": user_agent, + "user_handle": user_handle, + "transports": transports, }, headers={ "content-type": "application/json", diff --git a/src/auth0/management/users/roles/raw_client.py b/src/auth0/management/users/roles/raw_client.py index ad21837a..c66039ff 100644 --- a/src/auth0/management/users/roles/raw_client.py +++ b/src/auth0/management/users/roles/raw_client.py @@ -13,6 +13,7 @@ from ...core.request_options import RequestOptions from ...errors.bad_request_error import BadRequestError from ...errors.forbidden_error import ForbiddenError +from ...errors.not_found_error import NotFoundError from ...errors.too_many_requests_error import TooManyRequestsError from ...errors.unauthorized_error import UnauthorizedError from ...types.list_user_roles_offset_paginated_response_content import ListUserRolesOffsetPaginatedResponseContent @@ -94,6 +95,17 @@ def list( request_options=request_options, ) return SyncPager(has_next=_has_next, items=_items, get_next=_get_next, response=_parsed_response) + if _response.status_code == 400: + raise BadRequestError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) if _response.status_code == 401: raise UnauthorizedError( headers=dict(_response.headers), @@ -116,6 +128,17 @@ def list( ), ), ) + if _response.status_code == 404: + raise NotFoundError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) if _response.status_code == 429: raise TooManyRequestsError( headers=dict(_response.headers), @@ -382,6 +405,17 @@ async def _get_next(): ) return AsyncPager(has_next=_has_next, items=_items, get_next=_get_next, response=_parsed_response) + if _response.status_code == 400: + raise BadRequestError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) if _response.status_code == 401: raise UnauthorizedError( headers=dict(_response.headers), @@ -404,6 +438,17 @@ async def _get_next(): ), ), ) + if _response.status_code == 404: + raise NotFoundError( + headers=dict(_response.headers), + body=typing.cast( + typing.Any, + parse_obj_as( + type_=typing.Any, # type: ignore + object_=_response.json(), + ), + ), + ) if _response.status_code == 429: raise TooManyRequestsError( headers=dict(_response.headers), diff --git a/wiremock/docker-compose.test.yml b/wiremock/docker-compose.test.yml index 58747d54..95f0ae91 100644 --- a/wiremock/docker-compose.test.yml +++ b/wiremock/docker-compose.test.yml @@ -5,7 +5,7 @@ services: - "0:8080" # Use dynamic port to avoid conflicts with concurrent tests volumes: - ./wiremock-mappings.json:/home/wiremock/mappings/wiremock-mappings.json - command: ["--global-response-templating", "--verbose"] + command: ["--verbose"] healthcheck: test: ["CMD", "curl", "-f", "http://localhost:8080/__admin/health"] interval: 2s diff --git a/wiremock/wiremock-mappings.json b/wiremock/wiremock-mappings.json index b1aff151..1b89b94e 100644 --- a/wiremock/wiremock-mappings.json +++ b/wiremock/wiremock-mappings.json @@ -4038,7 +4038,7 @@ }, "response": { "status": 200, - "body": "{\n \"start\": 1.1,\n \"limit\": 1.1,\n \"total\": 1.1,\n \"resource_servers\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"is_system\": true,\n \"identifier\": \"identifier\",\n \"scopes\": [\n {\n \"value\": \"value\"\n }\n ],\n \"signing_alg\": \"HS256\",\n \"signing_secret\": \"signing_secret\",\n \"allow_offline_access\": true,\n \"allow_online_access\": true,\n \"skip_consent_for_verifiable_first_party_clients\": true,\n \"token_lifetime\": 1,\n \"token_lifetime_for_web\": 1,\n \"enforce_policies\": true,\n \"token_dialect\": \"access_token\",\n \"token_encryption\": {\n \"format\": \"compact-nested-jwe\",\n \"encryption_key\": {\n \"alg\": \"RSA-OAEP-256\",\n \"pem\": \"pem\"\n }\n },\n \"consent_policy\": \"transactional-authorization-with-mfa\",\n \"proof_of_possession\": {\n \"mechanism\": \"mtls\",\n \"required\": true\n },\n \"authorization_policy\": {\n \"policy_id\": \"policy_id\"\n },\n \"client_id\": \"client_id\"\n }\n ]\n}", + "body": "{\n \"start\": 1.1,\n \"limit\": 1.1,\n \"total\": 1.1,\n \"resource_servers\": [\n {\n \"id\": \"id\",\n \"name\": \"name\",\n \"is_system\": true,\n \"identifier\": \"identifier\",\n \"scopes\": [\n {\n \"value\": \"value\"\n }\n ],\n \"signing_alg\": \"HS256\",\n \"signing_secret\": \"signing_secret\",\n \"allow_offline_access\": true,\n \"allow_online_access\": true,\n \"allow_online_access_with_ephemeral_sessions\": true,\n \"skip_consent_for_verifiable_first_party_clients\": true,\n \"token_lifetime\": 1,\n \"token_lifetime_for_web\": 1,\n \"enforce_policies\": true,\n \"token_dialect\": \"access_token\",\n \"token_encryption\": {\n \"format\": \"compact-nested-jwe\",\n \"encryption_key\": {\n \"alg\": \"RSA-OAEP-256\",\n \"pem\": \"pem\"\n }\n },\n \"consent_policy\": \"transactional-authorization-with-mfa\",\n \"proof_of_possession\": {\n \"mechanism\": \"mtls\",\n \"required\": true\n },\n \"authorization_policy\": {\n \"policy_id\": \"policy_id\"\n },\n \"client_id\": \"client_id\"\n }\n ]\n}", "headers": { "Content-Type": "application/json" } @@ -4070,7 +4070,7 @@ }, "response": { "status": 201, - "body": "{\n \"id\": \"id\",\n \"name\": \"name\",\n \"is_system\": true,\n \"identifier\": \"identifier\",\n \"scopes\": [\n {\n \"value\": \"value\",\n \"description\": \"description\"\n }\n ],\n \"signing_alg\": \"HS256\",\n \"signing_secret\": \"signing_secret\",\n \"allow_offline_access\": true,\n \"allow_online_access\": true,\n \"skip_consent_for_verifiable_first_party_clients\": true,\n \"token_lifetime\": 1,\n \"token_lifetime_for_web\": 1,\n \"enforce_policies\": true,\n \"token_dialect\": \"access_token\",\n \"token_encryption\": {\n \"format\": \"compact-nested-jwe\",\n \"encryption_key\": {\n \"name\": \"name\",\n \"alg\": \"RSA-OAEP-256\",\n \"kid\": \"kid\",\n \"pem\": \"pem\"\n }\n },\n \"consent_policy\": \"transactional-authorization-with-mfa\",\n \"authorization_details\": [\n {\n \"key\": \"value\"\n }\n ],\n \"proof_of_possession\": {\n \"mechanism\": \"mtls\",\n \"required\": true,\n \"required_for\": \"public_clients\"\n },\n \"subject_type_authorization\": {\n \"user\": {\n \"policy\": \"allow_all\"\n },\n \"client\": {\n \"policy\": \"deny_all\"\n }\n },\n \"authorization_policy\": {\n \"policy_id\": \"policy_id\"\n },\n \"client_id\": \"client_id\"\n}", + "body": "{\n \"id\": \"id\",\n \"name\": \"name\",\n \"is_system\": true,\n \"identifier\": \"identifier\",\n \"scopes\": [\n {\n \"value\": \"value\",\n \"description\": \"description\"\n }\n ],\n \"signing_alg\": \"HS256\",\n \"signing_secret\": \"signing_secret\",\n \"allow_offline_access\": true,\n \"allow_online_access\": true,\n \"allow_online_access_with_ephemeral_sessions\": true,\n \"skip_consent_for_verifiable_first_party_clients\": true,\n \"token_lifetime\": 1,\n \"token_lifetime_for_web\": 1,\n \"enforce_policies\": true,\n \"token_dialect\": \"access_token\",\n \"token_encryption\": {\n \"format\": \"compact-nested-jwe\",\n \"encryption_key\": {\n \"name\": \"name\",\n \"alg\": \"RSA-OAEP-256\",\n \"kid\": \"kid\",\n \"pem\": \"pem\"\n }\n },\n \"consent_policy\": \"transactional-authorization-with-mfa\",\n \"authorization_details\": [\n {\n \"key\": \"value\"\n }\n ],\n \"proof_of_possession\": {\n \"mechanism\": \"mtls\",\n \"required\": true,\n \"required_for\": \"public_clients\"\n },\n \"subject_type_authorization\": {\n \"user\": {\n \"policy\": \"allow_all\"\n },\n \"client\": {\n \"policy\": \"deny_all\"\n }\n },\n \"authorization_policy\": {\n \"policy_id\": \"policy_id\"\n },\n \"client_id\": \"client_id\"\n}", "headers": { "Content-Type": "application/json" } @@ -4111,7 +4111,7 @@ }, "response": { "status": 200, - "body": "{\n \"id\": \"id\",\n \"name\": \"name\",\n \"is_system\": true,\n \"identifier\": \"identifier\",\n \"scopes\": [\n {\n \"value\": \"value\",\n \"description\": \"description\"\n }\n ],\n \"signing_alg\": \"HS256\",\n \"signing_secret\": \"signing_secret\",\n \"allow_offline_access\": true,\n \"allow_online_access\": true,\n \"skip_consent_for_verifiable_first_party_clients\": true,\n \"token_lifetime\": 1,\n \"token_lifetime_for_web\": 1,\n \"enforce_policies\": true,\n \"token_dialect\": \"access_token\",\n \"token_encryption\": {\n \"format\": \"compact-nested-jwe\",\n \"encryption_key\": {\n \"name\": \"name\",\n \"alg\": \"RSA-OAEP-256\",\n \"kid\": \"kid\",\n \"pem\": \"pem\"\n }\n },\n \"consent_policy\": \"transactional-authorization-with-mfa\",\n \"authorization_details\": [\n {\n \"key\": \"value\"\n }\n ],\n \"proof_of_possession\": {\n \"mechanism\": \"mtls\",\n \"required\": true,\n \"required_for\": \"public_clients\"\n },\n \"subject_type_authorization\": {\n \"user\": {\n \"policy\": \"allow_all\"\n },\n \"client\": {\n \"policy\": \"deny_all\"\n }\n },\n \"authorization_policy\": {\n \"policy_id\": \"policy_id\"\n },\n \"client_id\": \"client_id\"\n}", + "body": "{\n \"id\": \"id\",\n \"name\": \"name\",\n \"is_system\": true,\n \"identifier\": \"identifier\",\n \"scopes\": [\n {\n \"value\": \"value\",\n \"description\": \"description\"\n }\n ],\n \"signing_alg\": \"HS256\",\n \"signing_secret\": \"signing_secret\",\n \"allow_offline_access\": true,\n \"allow_online_access\": true,\n \"allow_online_access_with_ephemeral_sessions\": true,\n \"skip_consent_for_verifiable_first_party_clients\": true,\n \"token_lifetime\": 1,\n \"token_lifetime_for_web\": 1,\n \"enforce_policies\": true,\n \"token_dialect\": \"access_token\",\n \"token_encryption\": {\n \"format\": \"compact-nested-jwe\",\n \"encryption_key\": {\n \"name\": \"name\",\n \"alg\": \"RSA-OAEP-256\",\n \"kid\": \"kid\",\n \"pem\": \"pem\"\n }\n },\n \"consent_policy\": \"transactional-authorization-with-mfa\",\n \"authorization_details\": [\n {\n \"key\": \"value\"\n }\n ],\n \"proof_of_possession\": {\n \"mechanism\": \"mtls\",\n \"required\": true,\n \"required_for\": \"public_clients\"\n },\n \"subject_type_authorization\": {\n \"user\": {\n \"policy\": \"allow_all\"\n },\n \"client\": {\n \"policy\": \"deny_all\"\n }\n },\n \"authorization_policy\": {\n \"policy_id\": \"policy_id\"\n },\n \"client_id\": \"client_id\"\n}", "headers": { "Content-Type": "application/json" } @@ -4183,7 +4183,7 @@ }, "response": { "status": 201, - "body": "{\n \"id\": \"id\",\n \"name\": \"name\",\n \"is_system\": true,\n \"identifier\": \"identifier\",\n \"scopes\": [\n {\n \"value\": \"value\",\n \"description\": \"description\"\n }\n ],\n \"signing_alg\": \"HS256\",\n \"signing_secret\": \"signing_secret\",\n \"allow_offline_access\": true,\n \"allow_online_access\": true,\n \"skip_consent_for_verifiable_first_party_clients\": true,\n \"token_lifetime\": 1,\n \"token_lifetime_for_web\": 1,\n \"enforce_policies\": true,\n \"token_dialect\": \"access_token\",\n \"token_encryption\": {\n \"format\": \"compact-nested-jwe\",\n \"encryption_key\": {\n \"name\": \"name\",\n \"alg\": \"RSA-OAEP-256\",\n \"kid\": \"kid\",\n \"pem\": \"pem\"\n }\n },\n \"consent_policy\": \"transactional-authorization-with-mfa\",\n \"authorization_details\": [\n {\n \"key\": \"value\"\n }\n ],\n \"proof_of_possession\": {\n \"mechanism\": \"mtls\",\n \"required\": true,\n \"required_for\": \"public_clients\"\n },\n \"subject_type_authorization\": {\n \"user\": {\n \"policy\": \"allow_all\"\n },\n \"client\": {\n \"policy\": \"deny_all\"\n }\n },\n \"authorization_policy\": {\n \"policy_id\": \"policy_id\"\n },\n \"client_id\": \"client_id\"\n}", + "body": "{\n \"id\": \"id\",\n \"name\": \"name\",\n \"is_system\": true,\n \"identifier\": \"identifier\",\n \"scopes\": [\n {\n \"value\": \"value\",\n \"description\": \"description\"\n }\n ],\n \"signing_alg\": \"HS256\",\n \"signing_secret\": \"signing_secret\",\n \"allow_offline_access\": true,\n \"allow_online_access\": true,\n \"allow_online_access_with_ephemeral_sessions\": true,\n \"skip_consent_for_verifiable_first_party_clients\": true,\n \"token_lifetime\": 1,\n \"token_lifetime_for_web\": 1,\n \"enforce_policies\": true,\n \"token_dialect\": \"access_token\",\n \"token_encryption\": {\n \"format\": \"compact-nested-jwe\",\n \"encryption_key\": {\n \"name\": \"name\",\n \"alg\": \"RSA-OAEP-256\",\n \"kid\": \"kid\",\n \"pem\": \"pem\"\n }\n },\n \"consent_policy\": \"transactional-authorization-with-mfa\",\n \"authorization_details\": [\n {\n \"key\": \"value\"\n }\n ],\n \"proof_of_possession\": {\n \"mechanism\": \"mtls\",\n \"required\": true,\n \"required_for\": \"public_clients\"\n },\n \"subject_type_authorization\": {\n \"user\": {\n \"policy\": \"allow_all\"\n },\n \"client\": {\n \"policy\": \"deny_all\"\n }\n },\n \"authorization_policy\": {\n \"policy_id\": \"policy_id\"\n },\n \"client_id\": \"client_id\"\n}", "headers": { "Content-Type": "application/json" } @@ -13727,7 +13727,7 @@ }, "response": { "status": 200, - "body": "{\n \"start\": 1.1,\n \"limit\": 1.1,\n \"total\": 1.1,\n \"authenticators\": [\n {\n \"id\": \"id\",\n \"type\": \"recovery-code\",\n \"confirmed\": true,\n \"name\": \"name\",\n \"authentication_methods\": [\n {}\n ],\n \"preferred_authentication_method\": \"voice\",\n \"link_id\": \"link_id\",\n \"phone_number\": \"phone_number\",\n \"email\": \"email\",\n \"key_id\": \"key_id\",\n \"public_key\": \"public_key\",\n \"created_at\": \"2024-01-15T09:30:00Z\",\n \"enrolled_at\": \"2024-01-15T09:30:00Z\",\n \"last_auth_at\": \"2024-01-15T09:30:00Z\",\n \"credential_device_type\": \"credential_device_type\",\n \"credential_backed_up\": true,\n \"identity_user_id\": \"identity_user_id\",\n \"user_agent\": \"user_agent\",\n \"aaguid\": \"aaguid\",\n \"relying_party_identifier\": \"relying_party_identifier\"\n }\n ]\n}", + "body": "{\n \"start\": 1.1,\n \"limit\": 1.1,\n \"total\": 1.1,\n \"authenticators\": [\n {\n \"id\": \"id\",\n \"type\": \"recovery-code\",\n \"confirmed\": true,\n \"name\": \"name\",\n \"authentication_methods\": [\n {}\n ],\n \"preferred_authentication_method\": \"voice\",\n \"link_id\": \"link_id\",\n \"phone_number\": \"phone_number\",\n \"email\": \"email\",\n \"key_id\": \"key_id\",\n \"public_key\": \"public_key\",\n \"created_at\": \"2024-01-15T09:30:00Z\",\n \"enrolled_at\": \"2024-01-15T09:30:00Z\",\n \"last_auth_at\": \"2024-01-15T09:30:00Z\",\n \"credential_device_type\": \"credential_device_type\",\n \"credential_backed_up\": true,\n \"identity_user_id\": \"identity_user_id\",\n \"user_agent\": \"user_agent\",\n \"user_handle\": \"user_handle\",\n \"transports\": [\n \"transports\"\n ],\n \"aaguid\": \"aaguid\",\n \"relying_party_identifier\": \"relying_party_identifier\"\n }\n ]\n}", "headers": { "Content-Type": "application/json" } @@ -13763,7 +13763,7 @@ }, "response": { "status": 201, - "body": "{\n \"id\": \"id\",\n \"type\": \"phone\",\n \"name\": \"name\",\n \"totp_secret\": \"totp_secret\",\n \"phone_number\": \"phone_number\",\n \"email\": \"email\",\n \"authentication_methods\": [\n {\n \"type\": \"totp\",\n \"id\": \"id\"\n }\n ],\n \"preferred_authentication_method\": \"voice\",\n \"key_id\": \"key_id\",\n \"public_key\": \"public_key\",\n \"aaguid\": \"aaguid\",\n \"relying_party_identifier\": \"relying_party_identifier\",\n \"created_at\": \"2024-01-15T09:30:00Z\"\n}", + "body": "{\n \"id\": \"id\",\n \"type\": \"phone\",\n \"name\": \"name\",\n \"totp_secret\": \"totp_secret\",\n \"phone_number\": \"phone_number\",\n \"email\": \"email\",\n \"authentication_methods\": [\n {\n \"type\": \"totp\",\n \"id\": \"id\"\n }\n ],\n \"preferred_authentication_method\": \"voice\",\n \"key_id\": \"key_id\",\n \"public_key\": \"public_key\",\n \"aaguid\": \"aaguid\",\n \"relying_party_identifier\": \"relying_party_identifier\",\n \"credential_device_type\": \"single_device\",\n \"credential_backed_up\": true,\n \"identity_user_id\": \"identity_user_id\",\n \"user_agent\": \"user_agent\",\n \"user_handle\": \"user_handle\",\n \"transports\": [\n \"transports\"\n ],\n \"created_at\": \"2024-01-15T09:30:00Z\"\n}", "headers": { "Content-Type": "application/json" } @@ -13874,7 +13874,7 @@ }, "response": { "status": 200, - "body": "{\n \"id\": \"id\",\n \"type\": \"recovery-code\",\n \"confirmed\": true,\n \"name\": \"name\",\n \"authentication_methods\": [\n {\n \"type\": \"totp\",\n \"id\": \"id\"\n }\n ],\n \"preferred_authentication_method\": \"voice\",\n \"link_id\": \"link_id\",\n \"phone_number\": \"phone_number\",\n \"email\": \"email\",\n \"key_id\": \"key_id\",\n \"public_key\": \"public_key\",\n \"created_at\": \"2024-01-15T09:30:00Z\",\n \"enrolled_at\": \"2024-01-15T09:30:00Z\",\n \"last_auth_at\": \"2024-01-15T09:30:00Z\",\n \"credential_device_type\": \"credential_device_type\",\n \"credential_backed_up\": true,\n \"identity_user_id\": \"identity_user_id\",\n \"user_agent\": \"user_agent\",\n \"aaguid\": \"aaguid\",\n \"relying_party_identifier\": \"relying_party_identifier\"\n}", + "body": "{\n \"id\": \"id\",\n \"type\": \"recovery-code\",\n \"confirmed\": true,\n \"name\": \"name\",\n \"authentication_methods\": [\n {\n \"type\": \"totp\",\n \"id\": \"id\"\n }\n ],\n \"preferred_authentication_method\": \"voice\",\n \"link_id\": \"link_id\",\n \"phone_number\": \"phone_number\",\n \"email\": \"email\",\n \"key_id\": \"key_id\",\n \"public_key\": \"public_key\",\n \"created_at\": \"2024-01-15T09:30:00Z\",\n \"enrolled_at\": \"2024-01-15T09:30:00Z\",\n \"last_auth_at\": \"2024-01-15T09:30:00Z\",\n \"credential_device_type\": \"credential_device_type\",\n \"credential_backed_up\": true,\n \"identity_user_id\": \"identity_user_id\",\n \"user_agent\": \"user_agent\",\n \"user_handle\": \"user_handle\",\n \"transports\": [\n \"transports\"\n ],\n \"aaguid\": \"aaguid\",\n \"relying_party_identifier\": \"relying_party_identifier\"\n}", "headers": { "Content-Type": "application/json" } From 4cfd88317f9f8f4359631cbc5885f81e864998a2 Mon Sep 17 00:00:00 2001 From: fern-api <115122769+fern-api[bot]@users.noreply.github.com> Date: Mon, 18 May 2026 05:04:15 +0000 Subject: [PATCH 2/6] [fern-replay] Applied customizations Patches applied (2): - patch-f182694f: fix: Add top-level `py.typed` marker to resolve IDE import errors (#829) - patch-1026b4d8: Release 5.4.0 (#838) Patches with unresolved conflicts (1): - patch-4894603d: chore: Restore custom wiring in management/__init__.py Run `fern-replay resolve` to apply these customizations. Patches absorbed by generator (1): - patch-360322ac: chore: migrate RL scanner to shared devsecops-tooling action (#837) The generator now produces these customizations natively. --- .fern/replay.lock | 7752 +++++++++++++++++++++++++++++- src/auth0/management/__init__.py | 6 + 2 files changed, 7730 insertions(+), 28 deletions(-) diff --git a/.fern/replay.lock b/.fern/replay.lock index cd037ea3..5a38c93d 100644 --- a/.fern/replay.lock +++ b/.fern/replay.lock @@ -12,10 +12,17 @@ generations: cli_version: unknown generator_versions: {} base_branch_head: de316f0260ef1fa7c3626cbe771b167fd119439c -current_generation: ffe61f6a098cb25a875019a37f2615045b97344e + - commit_sha: c1c18146c845e6c7916d0490f7ef02807f9bfebf + tree_hash: 3d199802452b0a49c14a6d80c86c09387d926ea6 + timestamp: 2026-05-18T05:04:12.235Z + cli_version: unknown + generator_versions: + fernapi/fern-python-sdk: 5.12.10 + base_branch_head: 3b19ca9899d758100ca38524af2cb079832fdc56 +current_generation: c1c18146c845e6c7916d0490f7ef02807f9bfebf patches: - id: patch-4894603d - content_hash: sha256:07bdd182f3a0fcf3bb41c2edeae2ae065fc98ce0dcae83201bde3e2140f9882d + content_hash: sha256:133cad2c952ebdd38ff6bb571dbb738617f4a5303c272ff82cbdf9d04267aa90 original_commit: 4894603d03409962bc60a34712de8abffe919e2c original_message: "chore: Restore custom wiring in management/__init__.py" original_author: Kunal Dawar @@ -24,36 +31,4252 @@ patches: - src/auth0/management/__init__.py patch_content: | diff --git a/src/auth0/management/__init__.py b/src/auth0/management/__init__.py - index b333886..e20a000 100644 + index c89e28b..e20a000 100644 --- a/src/auth0/management/__init__.py +++ b/src/auth0/management/__init__.py - @@ -2732,6 +2732,8 @@ if typing.TYPE_CHECKING: + @@ -19,6 +19,15 @@ if typing.TYPE_CHECKING: + ActionError, + ActionExecutionResult, + ActionExecutionStatusEnum, + + ActionModuleAction, + + ActionModuleDependency, + + ActionModuleDependencyRequest, + + ActionModuleListItem, + + ActionModuleReference, + + ActionModuleSecret, + + ActionModuleSecretRequest, + + ActionModuleVersion, + + ActionModuleVersionReference, + ActionSecretRequest, + ActionSecretResponse, + ActionTrigger, + @@ -28,26 +37,69 @@ if typing.TYPE_CHECKING: + ActionVersionBuildStatusEnum, + ActionVersionDependency, + AculClientFilter, + + AculClientFilterById, + + AculClientFilterByMetadata, + AculClientMetadata, + + AculConfigs, + + AculConfigsItem, + + AculContextConfiguration, + + AculContextConfigurationItem, + + AculContextEnum, + AculDomainFilter, + + AculDomainFilterById, + + AculDomainFilterByMetadata, + AculDomainMetadata, + AculFilters, + AculHeadTag, + AculHeadTagAttributes, + + AculHeadTagContent, + AculMatchTypeEnum, + AculOrganizationFilter, + + AculOrganizationFilterById, + + AculOrganizationFilterByMetadata, + AculOrganizationMetadata, + AculRenderingModeEnum, + - AculResponseContent, + AddOrganizationConnectionResponseContent, + AnomalyIpFormat, + AppMetadata, + + AssessorsTypeEnum, + AssociateOrganizationClientGrantResponseContent, + + AsyncApprovalNotificationsChannelsEnum, + + AttackProtectionCaptchaArkoseResponseContent, + + AttackProtectionCaptchaAuthChallengeRequest, + + AttackProtectionCaptchaAuthChallengeResponseContent, + + AttackProtectionCaptchaFriendlyCaptchaResponseContent, + + AttackProtectionCaptchaHcaptchaResponseContent, + + AttackProtectionCaptchaProviderId, + + AttackProtectionCaptchaRecaptchaEnterpriseResponseContent, + + AttackProtectionCaptchaRecaptchaV2ResponseContent, + + AttackProtectionCaptchaSimpleCaptchaResponseContent, + + AttackProtectionUpdateCaptchaArkose, + + AttackProtectionUpdateCaptchaFriendlyCaptcha, + + AttackProtectionUpdateCaptchaHcaptcha, + + AttackProtectionUpdateCaptchaRecaptchaEnterprise, + + AttackProtectionUpdateCaptchaRecaptchaV2, + AuthenticationMethodTypeEnum, + AuthenticationTypeEnum, + + BotDetectionAllowlist, + + BotDetectionChallengePolicyPasswordFlowEnum, + + BotDetectionChallengePolicyPasswordResetFlowEnum, + + BotDetectionChallengePolicyPasswordlessFlowEnum, + + BotDetectionCidrBlock, + + BotDetectionIPv4, + + BotDetectionIPv6, + + BotDetectionIPv6CidrBlock, + + BotDetectionIpAddressOrCidrBlock, + + BotDetectionLevelEnum, + + BotDetectionMonitoringModeEnabled, + BrandingColors, + BrandingFont, + + BrandingIdentifiers, + + BrandingLoginDisplayEnum, + BrandingPageBackground, + + BrandingPhoneDisplay, + + BrandingPhoneFormattingEnum, + + BrandingPhoneMaskingEnum, + BrandingThemeBorders, + BrandingThemeBordersButtonsStyleEnum, + BrandingThemeBordersInputsStyleEnum, + @@ -75,7 +127,18 @@ if typing.TYPE_CHECKING: + BreachedPasswordDetectionPreUserRegistrationStage, + BreachedPasswordDetectionShieldsEnum, + BreachedPasswordDetectionStage, + + BruteForceProtectionModeEnum, + + BruteForceProtectionShieldsEnum, + + BulkUpdateAculResponseContent, + + CertificateSubjectDnCredential, + + CertificateSubjectDnCredentialTypeEnum, + + ChangePasswordTicketIdentity, + ChangePasswordTicketResponseContent, + + CimdMappedClientAuthenticationMethods, + + CimdMappedClientAuthenticationMethodsPrivateKeyJwt, + + CimdMappedClientFields, + + CimdMappedPrivateKeyJwtCredential, + + CimdValidationResult, + Client, + ClientAddonAws, + ClientAddonAzureBlob, + @@ -111,58 +174,335 @@ if typing.TYPE_CHECKING: + ClientAddonZoom, + ClientAddons, + ClientAppTypeEnum, + + ClientAsyncApprovalNotificationsChannelsApiPatchConfiguration, + + ClientAsyncApprovalNotificationsChannelsApiPostConfiguration, + ClientAuthenticationMethod, + + ClientAuthenticationMethodPrivateKeyJwt, + + ClientAuthenticationMethodPrivateKeyJwtCredentials, + ClientAuthenticationMethodSelfSignedTlsClientAuth, + + ClientAuthenticationMethodSelfSignedTlsClientAuthCredentials, + ClientAuthenticationMethodTlsClientAuth, + + ClientAuthenticationMethodTlsClientAuthCredentials, + ClientComplianceLevelEnum, + ClientCreateAuthenticationMethod, + + ClientCreateAuthenticationMethodPrivateKeyJwt, + + ClientCreateAuthenticationMethodPrivateKeyJwtCredentials, + + ClientCreateAuthenticationMethodTlsClientAuth, + + ClientCreateAuthenticationMethodTlsClientAuthCredentials, + ClientCredential, + ClientCredentialAlgorithmEnum, + ClientCredentialTypeEnum, + ClientDefaultOrganization, + ClientDefaultOrganizationFlowsEnum, + ClientEncryptionKey, + + ClientExternalMetadataCreatedByEnum, + + ClientExternalMetadataTypeEnum, + ClientGrantAllowAnyOrganizationEnum, + + ClientGrantDefaultForEnum, + ClientGrantOrganizationNullableUsageEnum, + ClientGrantOrganizationUsageEnum, + ClientGrantResponseContent, + + ClientGrantSubjectTypeEnum, + ClientJwtConfiguration, + ClientJwtConfigurationScopes, + ClientMetadata, + ClientMobile, + ClientMobileAndroid, + ClientMobileiOs, + + ClientMyOrganizationConfigurationAllowedStrategiesEnum, + + ClientMyOrganizationDeletionBehaviorEnum, + + ClientMyOrganizationPatchConfiguration, + + ClientMyOrganizationPostConfiguration, + + ClientMyOrganizationResponseConfiguration, + ClientOidcBackchannelLogoutInitiators, + ClientOidcBackchannelLogoutInitiatorsEnum, + ClientOidcBackchannelLogoutInitiatorsModeEnum, + + ClientOidcBackchannelLogoutSessionMetadata, + ClientOidcBackchannelLogoutSettings, + + ClientOrganizationDiscoveryEnum, + ClientOrganizationRequireBehaviorEnum, + ClientOrganizationRequireBehaviorPatchEnum, + ClientOrganizationUsageEnum, + ClientOrganizationUsagePatchEnum, + + ClientRedirectionPolicyEnum, + ClientRefreshTokenConfiguration, + + ClientRefreshTokenPolicy, + ClientSessionTransferAllowedAuthenticationMethodsEnum, + ClientSessionTransferConfiguration, + + ClientSessionTransferDelegationConfiguration, + + ClientSessionTransferDelegationDeviceBindingEnum, + ClientSessionTransferDeviceBindingEnum, + ClientSignedRequestObjectWithCredentialId, + ClientSignedRequestObjectWithPublicKey, + ClientSigningKey, + ClientSigningKeys, + + ClientThirdPartySecurityModeEnum, + ClientTokenEndpointAuthMethodEnum, + ClientTokenEndpointAuthMethodOrNullEnum, + + ClientTokenExchangeConfiguration, + + ClientTokenExchangeConfigurationOrNull, + + ClientTokenExchangeTypeEnum, + + ConnectedAccount, + + ConnectedAccountAccessTypeEnum, + + ConnectionAccessTokenUrloAuth1, + + ConnectionAcrValuesSupported, + + ConnectionAdminAccessTokenExpiresInGoogleApps, + + ConnectionAdminAccessTokenGoogleApps, + + ConnectionAdminRefreshTokenGoogleApps, + + ConnectionAgentIpad, + + ConnectionAgentModeAd, + + ConnectionAgentVersionAd, + + ConnectionAllowedAudiencesGoogleOAuth2, + + ConnectionApiBehaviorEnum, + + ConnectionApiEnableGroups, + + ConnectionApiEnableGroupsGoogleApps, + + ConnectionApiEnableUsers, + + ConnectionApiEnableUsersGoogleApps, + + ConnectionAppDomainAzureAd, + + ConnectionAssertionDecryptionAlgorithmProfileEnum, + + ConnectionAssertionDecryptionSettings, + ConnectionAttributeIdentifier, + + ConnectionAttributeMapAttributes, + + ConnectionAttributeMapOidc, + + ConnectionAttributeMapOkta, + + ConnectionAttributeMapUserinfoScope, + ConnectionAttributes, + + ConnectionAuthParamsAdditionalPropertiesOAuth2, + + ConnectionAuthParamsEmail, + + ConnectionAuthParamsMap, + + ConnectionAuthParamsOAuth2, + ConnectionAuthenticationMethods, + + ConnectionAuthenticationPurpose, + + ConnectionAuthorizationEndpoint, + + ConnectionBaseUrlExact, + + ConnectionBruteForceProtection, + + ConnectionCalculatedThumbprintSaml, + + ConnectionCertsAd, + + ConnectionClaimTypesSupported, + + ConnectionClaimsLocalesSupported, + + ConnectionClaimsParameterSupported, + + ConnectionClaimsSupported, + + ConnectionClientId, + + ConnectionClientIdAmazon, + + ConnectionClientIdAzureAd, + + ConnectionClientIdBitbucket, + + ConnectionClientIdExact, + + ConnectionClientIdFacebook, + + ConnectionClientIdGoogleApps, + + ConnectionClientIdGoogleOAuth2, + + ConnectionClientIdLine, + + ConnectionClientIdLinkedin, + + ConnectionClientIdOAuth1, + + ConnectionClientIdOAuth2, + + ConnectionClientIdOidc, + + ConnectionClientIdPaypal, + + ConnectionClientIdSalesforce, + + ConnectionClientIdWindowsLive, + + ConnectionClientProtocolSaml, + + ConnectionClientSecret, + + ConnectionClientSecretAmazon, + + ConnectionClientSecretAzureAd, + + ConnectionClientSecretBitbucket, + + ConnectionClientSecretExact, + + ConnectionClientSecretFacebook, + + ConnectionClientSecretGoogleApps, + + ConnectionClientSecretGoogleOAuth2, + + ConnectionClientSecretLine, + + ConnectionClientSecretLinkedin, + + ConnectionClientSecretOAuth1, + + ConnectionClientSecretOAuth2, + + ConnectionClientSecretOidc, + + ConnectionClientSecretPaypal, + + ConnectionClientSecretSalesforce, + + ConnectionClientSecretWindowsLive, + + ConnectionCommon, + + ConnectionCommunityBaseUrlSalesforce, + + ConnectionConfiguration, + + ConnectionConnectedAccountsPurpose, + + ConnectionConnectedAccountsPurposeXaa, + + ConnectionConnectionSettings, + + ConnectionConnectionSettingsPkceEnum, + + ConnectionCustomHeadersOAuth2, + ConnectionCustomScripts, + + ConnectionDebugSaml, + + ConnectionDecryptionKeySaml, + + ConnectionDecryptionKeySamlCert, + + ConnectionDestinationUrlSaml, + + ConnectionDigestAlgorithmEnumSaml, + + ConnectionDigestAlgorithmSaml, + + ConnectionDisableSelfServiceChangePassword, + + ConnectionDisableSignup, + + ConnectionDisableSignupSms, + + ConnectionDiscoveryUrl, + + ConnectionDisplayName, + + ConnectionDisplayValuesSupported, + + ConnectionDomainAliases, + + ConnectionDomainAliasesAd, + + ConnectionDomainAliasesAzureAd, + + ConnectionDomainAliasesItemsOne, + + ConnectionDomainAliasesSaml, + + ConnectionDomainGoogleApps, + + ConnectionDomainOkta, + + ConnectionDpopSigningAlgEnum, + + ConnectionDpopSigningAlgValuesSupported, + + ConnectionEmailBodyEmail, + + ConnectionEmailEmail, + + ConnectionEmailEmailSyntax, + + ConnectionEmailFromEmail, + + ConnectionEmailOtpAuthenticationMethod, + + ConnectionEmailSubjectEmail, + + ConnectionEnableScriptContext, + ConnectionEnabledClient, + + ConnectionEnabledClients, + + ConnectionEnabledDatabaseCustomization, + + ConnectionEndSessionEndpoint, + + ConnectionEntityIdSaml, + + ConnectionExtAdmin, + + ConnectionExtAgreedTerms, + + ConnectionExtAgreedTermsGoogleApps, + + ConnectionExtAssignedPlans, + + ConnectionExtGroups, + + ConnectionExtGroupsAzureAd, + + ConnectionExtGroupsGoogleApps, + + ConnectionExtIsAdminGoogleApps, + + ConnectionExtIsSuspended, + + ConnectionExtIsSuspendedGoogleApps, + + ConnectionExtProfile, + + ConnectionFederatedConnectionsAccessTokens, + + ConnectionFieldsMap, + + ConnectionFieldsMapSaml, + + ConnectionFieldsMapSamlValue, + ConnectionForList, + ConnectionForOrganization, + + ConnectionForwardReqInfoSms, + + ConnectionFreeformScopesAmazon, + + ConnectionFreeformScopesGoogleOAuth2, + + ConnectionFreeformScopesLinkedin, + + ConnectionFreeformScopesPaypal, + + ConnectionFreeformScopesSalesforce, + + ConnectionFreeformScopesWindowsLive, + + ConnectionFromSms, + ConnectionGatewayAuthentication, + + ConnectionGatewayAuthenticationAudienceSms, + + ConnectionGatewayAuthenticationMethodSms, + + ConnectionGatewayAuthenticationSms, + + ConnectionGatewayAuthenticationSubjectSms, + + ConnectionGatewayUrlSms, + + ConnectionGlobalTokenRevocationJwtIssSaml, + + ConnectionGlobalTokenRevocationJwtSubSaml, + + ConnectionGrantTypesSupported, + + ConnectionHandleLoginFromSocialGoogleApps, + + ConnectionHttpsUrlWithHttpFallback, + + ConnectionHttpsUrlWithHttpFallback2048, + + ConnectionHttpsUrlWithHttpFallback255, + + ConnectionIconUrl, + + ConnectionIconUrlAdfs, + + ConnectionIconUrlAzureAd, + + ConnectionIconUrlGoogleApps, + + ConnectionIconUrlGoogleOAuth2, + + ConnectionIconUrlSaml, + + ConnectionId, + + ConnectionIdTokenEncryptionAlgValuesSupported, + + ConnectionIdTokenEncryptionEncValuesSupported, + + ConnectionIdTokenSignedResponseAlgEnum, + + ConnectionIdTokenSignedResponseAlgs, + + ConnectionIdTokenSigningAlgValuesSupported, + + ConnectionIdentifierPrecedence, + ConnectionIdentifierPrecedenceEnum, + + ConnectionIdentityApiAzureAd, + + ConnectionIdentityApiEnumAzureAd, + ConnectionIdentityProviderEnum, + + ConnectionImportMode, + + ConnectionIpsAd, + + ConnectionIsDomainConnection, + + ConnectionIssuer, + + ConnectionJwksUri, + ConnectionKey, + ConnectionKeyUseEnum, + + ConnectionMappingModeEnumOidc, + + ConnectionMappingModeEnumOkta, + + ConnectionMaxGroupsToRetrieve, + + ConnectionMessagingServiceSidSms, + + ConnectionMetadataUrlSaml, + + ConnectionMetadataXml, + + ConnectionMetadataXmlAdfs, + + ConnectionMetadataXmlSaml, + + ConnectionMfa, + + ConnectionName, + + ConnectionNamePrefixTemplate, + + ConnectionNonPersistentAttrs, + + ConnectionOpPolicyUri, + + ConnectionOpTosUri, + ConnectionOptions, + + ConnectionOptionsAd, + + ConnectionOptionsAdfs, + + ConnectionOptionsAmazon, + + ConnectionOptionsApple, + + ConnectionOptionsAuth0, + + ConnectionOptionsAuth0Oidc, + + ConnectionOptionsAzureAd, + + ConnectionOptionsBaidu, + + ConnectionOptionsBitbucket, + + ConnectionOptionsBitly, + + ConnectionOptionsBox, + + ConnectionOptionsClientIdGithub, + + ConnectionOptionsClientIdTwitter, + + ConnectionOptionsClientSecretGithub, + + ConnectionOptionsClientSecretTwitter, + + ConnectionOptionsCommon, + + ConnectionOptionsCommonOidc, + + ConnectionOptionsCommonSaml, + + ConnectionOptionsCustom, + + ConnectionOptionsDaccount, + + ConnectionOptionsDeflateSaml, + + ConnectionOptionsDropbox, + + ConnectionOptionsDwolla, + + ConnectionOptionsEmail, + + ConnectionOptionsEvernote, + + ConnectionOptionsExact, + + ConnectionOptionsFacebook, + + ConnectionOptionsFitbit, + + ConnectionOptionsFreeformScopesGithub, + + ConnectionOptionsGitHub, + + ConnectionOptionsGoogleApps, + + ConnectionOptionsGoogleOAuth2, + + ConnectionOptionsIdpInitiatedClientProtocolEnumSaml, + + ConnectionOptionsIdpinitiatedSaml, + + ConnectionOptionsInstagram, + + ConnectionOptionsIp, + + ConnectionOptionsLine, + + ConnectionOptionsLinkedin, + + ConnectionOptionsOAuth1, + + ConnectionOptionsOAuth1Common, + + ConnectionOptionsOAuth2, + + ConnectionOptionsOAuth2Common, + + ConnectionOptionsOffice365, + + ConnectionOptionsOidc, + + ConnectionOptionsOidcMetadata, + + ConnectionOptionsOkta, + + ConnectionOptionsPaypal, + + ConnectionOptionsPingFederate, + + ConnectionOptionsPlanningCenter, + + ConnectionOptionsProtocolEnumTwitter, + + ConnectionOptionsSalesforce, + + ConnectionOptionsSalesforceCommunity, + + ConnectionOptionsSaml, + + ConnectionOptionsScopeGithub, + + ConnectionOptionsScopeTwitter, + + ConnectionOptionsSharepoint, + + ConnectionOptionsShop, + + ConnectionOptionsShopify, + + ConnectionOptionsSms, + + ConnectionOptionsSoundcloud, + + ConnectionOptionsThirtySevenSignals, + + ConnectionOptionsTwitter, + + ConnectionOptionsUntappd, + + ConnectionOptionsVkontakte, + + ConnectionOptionsWeibo, + + ConnectionOptionsWindowsLive, + + ConnectionOptionsWordpress, + + ConnectionOptionsYahoo, + + ConnectionOptionsYandex, + ConnectionPasskeyAuthenticationMethod, + ConnectionPasskeyChallengeUiEnum, + ConnectionPasskeyOptions, + @@ -171,21 +511,381 @@ if typing.TYPE_CHECKING: + ConnectionPasswordDictionaryOptions, + ConnectionPasswordHistoryOptions, + ConnectionPasswordNoPersonalInfoOptions, + + ConnectionPasswordOptions, + + ConnectionPasswordOptionsComplexity, + + ConnectionPasswordOptionsDictionary, + + ConnectionPasswordOptionsHistory, + + ConnectionPasswordOptionsProfileData, + ConnectionPasswordPolicyEnum, + + ConnectionPhoneOtpAuthenticationMethod, + + ConnectionPingFederateBaseUrl, + + ConnectionPingFederateBaseUrlPingFederate, + + ConnectionProfile, + + ConnectionProfileBitbucket, + + ConnectionProfileConfig, + + ConnectionProfileEnabledFeatures, + + ConnectionProfileId, + + ConnectionProfileName, + + ConnectionProfileOrganization, + + ConnectionProfileOrganizationAssignMembershipOnLoginEnum, + + ConnectionProfileOrganizationShowAsButtonEnum, + + ConnectionProfileStrategyOverride, + + ConnectionProfileStrategyOverrides, + + ConnectionProfileStrategyOverridesConnectionConfig, + + ConnectionProfileStrategyOverridesEnabledFeatures, + + ConnectionProfileTemplate, + + ConnectionProfileTemplateItem, + ConnectionPropertiesOptions, + + ConnectionProtocolBindingEnumSaml, + + ConnectionProtocolBindingSaml, + + ConnectionProviderEnumSms, + + ConnectionProviderSms, + + ConnectionProvisioningTicketUrl, + + ConnectionPurposes, + + ConnectionRealmFallback, + + ConnectionRealms, + + ConnectionRecipientUrlSaml, + + ConnectionRegistrationEndpoint, + + ConnectionRequestObjectEncryptionAlgValuesSupported, + + ConnectionRequestObjectEncryptionEncValuesSupported, + + ConnectionRequestObjectSigningAlgValuesSupported, + + ConnectionRequestParameterSupported, + + ConnectionRequestTemplateSaml, + + ConnectionRequestTokenUrloAuth1, + + ConnectionRequestUriParameterSupported, + + ConnectionRequireRequestUriRegistration, + + ConnectionRequiresUsername, + + ConnectionResponseCommon, + + ConnectionResponseContentAd, + + ConnectionResponseContentAdStrategy, + + ConnectionResponseContentAdfs, + + ConnectionResponseContentAdfsStrategy, + + ConnectionResponseContentAmazon, + + ConnectionResponseContentAmazonStrategy, + + ConnectionResponseContentApple, + + ConnectionResponseContentAppleStrategy, + + ConnectionResponseContentAuth0, + + ConnectionResponseContentAuth0Oidc, + + ConnectionResponseContentAuth0OidcStrategy, + + ConnectionResponseContentAuth0Strategy, + + ConnectionResponseContentAzureAd, + + ConnectionResponseContentAzureAdStrategy, + + ConnectionResponseContentBaidu, + + ConnectionResponseContentBaiduStrategy, + + ConnectionResponseContentBitbucket, + + ConnectionResponseContentBitbucketStrategy, + + ConnectionResponseContentBitly, + + ConnectionResponseContentBitlyStrategy, + + ConnectionResponseContentBox, + + ConnectionResponseContentBoxStrategy, + + ConnectionResponseContentCustom, + + ConnectionResponseContentCustomStrategy, + + ConnectionResponseContentDaccount, + + ConnectionResponseContentDaccountStrategy, + + ConnectionResponseContentDropbox, + + ConnectionResponseContentDropboxStrategy, + + ConnectionResponseContentDwolla, + + ConnectionResponseContentDwollaStrategy, + + ConnectionResponseContentEmail, + + ConnectionResponseContentEmailStrategy, + + ConnectionResponseContentEvernote, + + ConnectionResponseContentEvernoteSandbox, + + ConnectionResponseContentEvernoteSandboxStrategy, + + ConnectionResponseContentEvernoteStrategy, + + ConnectionResponseContentExact, + + ConnectionResponseContentExactStrategy, + + ConnectionResponseContentFacebook, + + ConnectionResponseContentFacebookStrategy, + + ConnectionResponseContentFitbit, + + ConnectionResponseContentFitbitStrategy, + + ConnectionResponseContentGitHub, + + ConnectionResponseContentGitHubStrategy, + + ConnectionResponseContentGoogleApps, + + ConnectionResponseContentGoogleAppsStrategy, + + ConnectionResponseContentGoogleOAuth2, + + ConnectionResponseContentGoogleOAuth2Strategy, + + ConnectionResponseContentInstagram, + + ConnectionResponseContentInstagramStrategy, + + ConnectionResponseContentIp, + + ConnectionResponseContentIpStrategy, + + ConnectionResponseContentLine, + + ConnectionResponseContentLineStrategy, + + ConnectionResponseContentLinkedin, + + ConnectionResponseContentLinkedinStrategy, + + ConnectionResponseContentOAuth1, + + ConnectionResponseContentOAuth1Strategy, + + ConnectionResponseContentOAuth2, + + ConnectionResponseContentOAuth2Strategy, + + ConnectionResponseContentOffice365, + + ConnectionResponseContentOffice365Strategy, + + ConnectionResponseContentOidc, + + ConnectionResponseContentOidcStrategy, + + ConnectionResponseContentOkta, + + ConnectionResponseContentOktaStrategy, + + ConnectionResponseContentPaypal, + + ConnectionResponseContentPaypalSandbox, + + ConnectionResponseContentPaypalSandboxStrategy, + + ConnectionResponseContentPaypalStrategy, + + ConnectionResponseContentPingFederate, + + ConnectionResponseContentPingFederateStrategy, + + ConnectionResponseContentPlanningCenter, + + ConnectionResponseContentPlanningCenterStrategy, + + ConnectionResponseContentSalesforce, + + ConnectionResponseContentSalesforceCommunity, + + ConnectionResponseContentSalesforceCommunityStrategy, + + ConnectionResponseContentSalesforceSandbox, + + ConnectionResponseContentSalesforceSandboxStrategy, + + ConnectionResponseContentSalesforceStrategy, + + ConnectionResponseContentSaml, + + ConnectionResponseContentSamlStrategy, + + ConnectionResponseContentSharepoint, + + ConnectionResponseContentSharepointStrategy, + + ConnectionResponseContentShop, + + ConnectionResponseContentShopStrategy, + + ConnectionResponseContentShopify, + + ConnectionResponseContentShopifyStrategy, + + ConnectionResponseContentSms, + + ConnectionResponseContentSmsStrategy, + + ConnectionResponseContentSoundcloud, + + ConnectionResponseContentSoundcloudStrategy, + + ConnectionResponseContentThirtySevenSignals, + + ConnectionResponseContentThirtySevenSignalsStrategy, + + ConnectionResponseContentTwitter, + + ConnectionResponseContentTwitterStrategy, + + ConnectionResponseContentUntappd, + + ConnectionResponseContentUntappdStrategy, + + ConnectionResponseContentVkontakte, + + ConnectionResponseContentVkontakteStrategy, + + ConnectionResponseContentWeibo, + + ConnectionResponseContentWeiboStrategy, + + ConnectionResponseContentWindowsLive, + + ConnectionResponseContentWindowsLiveStrategy, + + ConnectionResponseContentWordpress, + + ConnectionResponseContentWordpressStrategy, + + ConnectionResponseContentYahoo, + + ConnectionResponseContentYahooStrategy, + + ConnectionResponseContentYandex, + + ConnectionResponseContentYandexStrategy, + + ConnectionResponseModesSupported, + + ConnectionResponseTypesSupported, + + ConnectionScopeAmazon, + + ConnectionScopeArray, + + ConnectionScopeArrayFacebook, + + ConnectionScopeArrayWindowsLive, + + ConnectionScopeAzureAd, + + ConnectionScopeFacebook, + + ConnectionScopeGoogleApps, + + ConnectionScopeGoogleOAuth2, + + ConnectionScopeItem, + + ConnectionScopeItemGoogleApps, + + ConnectionScopeLinkedin, + + ConnectionScopeOAuth2, + + ConnectionScopeOidc, + + ConnectionScopePaypal, + + ConnectionScopeSalesforce, + + ConnectionScopesSupported, + + ConnectionScriptsOAuth1, + + ConnectionScriptsOAuth2, + + ConnectionSendBackChannelNonce, + + ConnectionServiceDocumentation, + ConnectionSetUserRootAttributesEnum, + + ConnectionSha1Thumbprint, + + ConnectionShouldTrustEmailVerifiedConnectionEnum, + + ConnectionShowAsButton, + + ConnectionSignInEndpointAd, + + ConnectionSignInEndpointAdfs, + + ConnectionSignInEndpointSaml, + + ConnectionSignOutEndpointSaml, + + ConnectionSignSamlRequestSaml, + + ConnectionSignatureAlgorithmEnumSaml, + + ConnectionSignatureAlgorithmSaml, + + ConnectionSignatureMethodOAuth1, + + ConnectionSigningCertSaml, + + ConnectionSigningCertificateDerSaml, + + ConnectionSigningCertificatePemPingFederate, + + ConnectionSigningCertificatePemSaml, + + ConnectionSigningKeySaml, + + ConnectionSignupBehaviorEnum, + ConnectionStrategyEnum, + + ConnectionStrategyVersionEnumLinkedin, + + ConnectionStrategyVersionEnumWindowsLive, + + ConnectionSubjectTypesSupported, + + ConnectionTemplateSms, + + ConnectionTemplateSyntaxEnumSms, + + ConnectionTenantDomain, + + ConnectionTenantDomainAd, + + ConnectionTenantDomainAzureAdOne, + + ConnectionTenantDomainGoogleApps, + + ConnectionTenantDomainSaml, + + ConnectionTenantIdAzureAd, + + ConnectionThumbprints, + + ConnectionThumbprintsAd, + + ConnectionThumbprintsSaml, + + ConnectionTokenEndpoint, + + ConnectionTokenEndpointAuthMethodEnum, + + ConnectionTokenEndpointAuthMethodsSupported, + + ConnectionTokenEndpointAuthSigningAlgEnum, + + ConnectionTokenEndpointAuthSigningAlgValuesSupported, + + ConnectionTokenEndpointJwtcaAudFormatEnumOidc, + + ConnectionTotpEmail, + + ConnectionTotpLengthEmail, + + ConnectionTotpLengthPasswordless, + + ConnectionTotpLengthSms, + + ConnectionTotpSms, + + ConnectionTotpTimeStepEmail, + + ConnectionTotpTimeStepPasswordless, + + ConnectionTotpTimeStepSms, + + ConnectionTwilioSidSms, + + ConnectionTwilioTokenSms, + + ConnectionTypeEnumOidc, + + ConnectionTypeEnumOkta, + + ConnectionUiLocalesSupported, + + ConnectionUpstreamAdditionalProperties, + + ConnectionUpstreamAlias, + + ConnectionUpstreamAliasEnum, + ConnectionUpstreamParams, + + ConnectionUpstreamParamsFacebook, + + ConnectionUpstreamValue, + + ConnectionUseCommonEndpointAzureAd, + + ConnectionUserAuthorizationUrloAuth1, + + ConnectionUserIdAttributeSaml, + + ConnectionUseridAttributeAzureAd, + + ConnectionUseridAttributeEnumAzureAd, + + ConnectionUserinfoEncryptionAlgValuesSupported, + + ConnectionUserinfoEncryptionEncValuesSupported, + + ConnectionUserinfoEndpoint, + + ConnectionUserinfoSigningAlgValuesSupported, + ConnectionUsernameValidationOptions, + ConnectionValidationOptions, + + ConnectionWaadProtocol, + + ConnectionWaadProtocolEnumAzureAd, + ConnectionsMetadata, + + CreateActionModuleResponseContent, + + CreateActionModuleVersionResponseContent, + CreateActionResponseContent, + CreateBrandingPhoneProviderResponseContent, + CreateBrandingThemeResponseContent, + + CreateClientAuthenticationMethodSelfSignedTlsClientAuth, + + CreateClientAuthenticationMethodSelfSignedTlsClientAuthCredentials, + CreateClientGrantResponseContent, + CreateClientResponseContent, + + CreateConnectionCommon, + + CreateConnectionProfileResponseContent, + + CreateConnectionRequestContentAd, + + CreateConnectionRequestContentAdStrategy, + + CreateConnectionRequestContentAdfs, + + CreateConnectionRequestContentAdfsStrategy, + + CreateConnectionRequestContentAmazon, + + CreateConnectionRequestContentAmazonStrategy, + + CreateConnectionRequestContentApple, + + CreateConnectionRequestContentAppleStrategy, + + CreateConnectionRequestContentAuth0, + + CreateConnectionRequestContentAuth0Oidc, + + CreateConnectionRequestContentAuth0OidcStrategy, + + CreateConnectionRequestContentAuth0Strategy, + + CreateConnectionRequestContentAzureAd, + + CreateConnectionRequestContentAzureAdStrategy, + + CreateConnectionRequestContentBaidu, + + CreateConnectionRequestContentBaiduStrategy, + + CreateConnectionRequestContentBitbucket, + + CreateConnectionRequestContentBitbucketStrategy, + + CreateConnectionRequestContentBitly, + + CreateConnectionRequestContentBitlyStrategy, + + CreateConnectionRequestContentBox, + + CreateConnectionRequestContentBoxStrategy, + + CreateConnectionRequestContentCustom, + + CreateConnectionRequestContentCustomStrategy, + + CreateConnectionRequestContentDaccount, + + CreateConnectionRequestContentDaccountStrategy, + + CreateConnectionRequestContentDropbox, + + CreateConnectionRequestContentDropboxStrategy, + + CreateConnectionRequestContentDwolla, + + CreateConnectionRequestContentDwollaStrategy, + + CreateConnectionRequestContentEmail, + + CreateConnectionRequestContentEmailStrategy, + + CreateConnectionRequestContentEvernote, + + CreateConnectionRequestContentEvernoteSandbox, + + CreateConnectionRequestContentEvernoteSandboxStrategy, + + CreateConnectionRequestContentEvernoteStrategy, + + CreateConnectionRequestContentExact, + + CreateConnectionRequestContentExactStrategy, + + CreateConnectionRequestContentFacebook, + + CreateConnectionRequestContentFacebookStrategy, + + CreateConnectionRequestContentFitbit, + + CreateConnectionRequestContentFitbitStrategy, + + CreateConnectionRequestContentGitHub, + + CreateConnectionRequestContentGitHubStrategy, + + CreateConnectionRequestContentGoogleApps, + + CreateConnectionRequestContentGoogleAppsStrategy, + + CreateConnectionRequestContentGoogleOAuth2, + + CreateConnectionRequestContentGoogleOAuth2Strategy, + + CreateConnectionRequestContentInstagram, + + CreateConnectionRequestContentInstagramStrategy, + + CreateConnectionRequestContentIp, + + CreateConnectionRequestContentIpStrategy, + + CreateConnectionRequestContentLine, + + CreateConnectionRequestContentLineStrategy, + + CreateConnectionRequestContentLinkedin, + + CreateConnectionRequestContentLinkedinStrategy, + + CreateConnectionRequestContentOAuth1, + + CreateConnectionRequestContentOAuth1Strategy, + + CreateConnectionRequestContentOAuth2, + + CreateConnectionRequestContentOAuth2Strategy, + + CreateConnectionRequestContentOffice365, + + CreateConnectionRequestContentOffice365Strategy, + + CreateConnectionRequestContentOidc, + + CreateConnectionRequestContentOidcStrategy, + + CreateConnectionRequestContentOkta, + + CreateConnectionRequestContentOktaStrategy, + + CreateConnectionRequestContentPaypal, + + CreateConnectionRequestContentPaypalSandbox, + + CreateConnectionRequestContentPaypalSandboxStrategy, + + CreateConnectionRequestContentPaypalStrategy, + + CreateConnectionRequestContentPingFederate, + + CreateConnectionRequestContentPingFederateStrategy, + + CreateConnectionRequestContentPlanningCenter, + + CreateConnectionRequestContentPlanningCenterStrategy, + + CreateConnectionRequestContentSalesforce, + + CreateConnectionRequestContentSalesforceCommunity, + + CreateConnectionRequestContentSalesforceCommunityStrategy, + + CreateConnectionRequestContentSalesforceSandbox, + + CreateConnectionRequestContentSalesforceSandboxStrategy, + + CreateConnectionRequestContentSalesforceStrategy, + + CreateConnectionRequestContentSaml, + + CreateConnectionRequestContentSamlStrategy, + + CreateConnectionRequestContentSharepoint, + + CreateConnectionRequestContentSharepointStrategy, + + CreateConnectionRequestContentShop, + + CreateConnectionRequestContentShopStrategy, + + CreateConnectionRequestContentShopify, + + CreateConnectionRequestContentShopifyStrategy, + + CreateConnectionRequestContentSms, + + CreateConnectionRequestContentSmsStrategy, + + CreateConnectionRequestContentSoundcloud, + + CreateConnectionRequestContentSoundcloudStrategy, + + CreateConnectionRequestContentThirtySevenSignals, + + CreateConnectionRequestContentThirtySevenSignalsStrategy, + + CreateConnectionRequestContentTwitter, + + CreateConnectionRequestContentTwitterStrategy, + + CreateConnectionRequestContentUntappd, + + CreateConnectionRequestContentUntappdStrategy, + + CreateConnectionRequestContentVkontakte, + + CreateConnectionRequestContentVkontakteStrategy, + + CreateConnectionRequestContentWeibo, + + CreateConnectionRequestContentWeiboStrategy, + + CreateConnectionRequestContentWindowsLive, + + CreateConnectionRequestContentWindowsLiveStrategy, + + CreateConnectionRequestContentWordpress, + + CreateConnectionRequestContentWordpressStrategy, + + CreateConnectionRequestContentYahoo, + + CreateConnectionRequestContentYahooStrategy, + + CreateConnectionRequestContentYandex, + + CreateConnectionRequestContentYandexStrategy, + CreateConnectionResponseContent, + CreateCustomDomainResponseContent, + + CreateDirectoryProvisioningRequestContent, + + CreateDirectoryProvisioningResponseContent, + + CreateDirectorySynchronizationResponseContent, + CreateEmailProviderResponseContent, + CreateEmailTemplateResponseContent, + CreateEncryptionKeyPublicWrappingResponseContent, + @@ -200,6 +900,79 @@ if typing.TYPE_CHECKING: + CreateExportUsersFields, + CreateExportUsersResponseContent, + CreateFlowResponseContent, + + CreateFlowsVaultConnectionActivecampaign, + + CreateFlowsVaultConnectionActivecampaignApiKey, + + CreateFlowsVaultConnectionActivecampaignUninitialized, + + CreateFlowsVaultConnectionAirtable, + + CreateFlowsVaultConnectionAirtableApiKey, + + CreateFlowsVaultConnectionAirtableUninitialized, + + CreateFlowsVaultConnectionAuth0, + + CreateFlowsVaultConnectionAuth0OauthApp, + + CreateFlowsVaultConnectionAuth0Uninitialized, + + CreateFlowsVaultConnectionBigquery, + + CreateFlowsVaultConnectionBigqueryJwt, + + CreateFlowsVaultConnectionBigqueryUninitialized, + + CreateFlowsVaultConnectionClearbit, + + CreateFlowsVaultConnectionClearbitApiKey, + + CreateFlowsVaultConnectionClearbitUninitialized, + + CreateFlowsVaultConnectionDocusign, + + CreateFlowsVaultConnectionDocusignOauthCode, + + CreateFlowsVaultConnectionDocusignUninitialized, + + CreateFlowsVaultConnectionGoogleSheets, + + CreateFlowsVaultConnectionGoogleSheetsOauthCode, + + CreateFlowsVaultConnectionGoogleSheetsUninitialized, + + CreateFlowsVaultConnectionHttp, + + CreateFlowsVaultConnectionHttpApiKey, + + CreateFlowsVaultConnectionHttpBasicAuth, + + CreateFlowsVaultConnectionHttpBearer, + + CreateFlowsVaultConnectionHttpOauthClientCredentials, + + CreateFlowsVaultConnectionHttpUninitialized, + + CreateFlowsVaultConnectionHubspot, + + CreateFlowsVaultConnectionHubspotApiKey, + + CreateFlowsVaultConnectionHubspotOauthCode, + + CreateFlowsVaultConnectionHubspotUninitialized, + + CreateFlowsVaultConnectionJwt, + + CreateFlowsVaultConnectionJwtJwt, + + CreateFlowsVaultConnectionJwtUninitialized, + + CreateFlowsVaultConnectionMailchimp, + + CreateFlowsVaultConnectionMailchimpApiKey, + + CreateFlowsVaultConnectionMailchimpOauthCode, + + CreateFlowsVaultConnectionMailchimpUninitialized, + + CreateFlowsVaultConnectionMailjet, + + CreateFlowsVaultConnectionMailjetApiKey, + + CreateFlowsVaultConnectionMailjetUninitialized, + + CreateFlowsVaultConnectionPipedrive, + + CreateFlowsVaultConnectionPipedriveOauthCode, + + CreateFlowsVaultConnectionPipedriveToken, + + CreateFlowsVaultConnectionPipedriveUninitialized, + + CreateFlowsVaultConnectionRequestContent, + + CreateFlowsVaultConnectionResponseContent, + + CreateFlowsVaultConnectionSalesforce, + + CreateFlowsVaultConnectionSalesforceOauthCode, + + CreateFlowsVaultConnectionSalesforceUninitialized, + + CreateFlowsVaultConnectionSendgrid, + + CreateFlowsVaultConnectionSendgridApiKey, + + CreateFlowsVaultConnectionSendgridUninitialized, + + CreateFlowsVaultConnectionSlack, + + CreateFlowsVaultConnectionSlackOauthCode, + + CreateFlowsVaultConnectionSlackUninitialized, + + CreateFlowsVaultConnectionSlackWebhook, + + CreateFlowsVaultConnectionStripe, + + CreateFlowsVaultConnectionStripeKeyPair, + + CreateFlowsVaultConnectionStripeOauthCode, + + CreateFlowsVaultConnectionStripeUninitialized, + + CreateFlowsVaultConnectionTelegram, + + CreateFlowsVaultConnectionTelegramToken, + + CreateFlowsVaultConnectionTelegramUninitialized, + + CreateFlowsVaultConnectionTwilio, + + CreateFlowsVaultConnectionTwilioApiKey, + + CreateFlowsVaultConnectionTwilioUninitialized, + + CreateFlowsVaultConnectionWhatsapp, + + CreateFlowsVaultConnectionWhatsappToken, + + CreateFlowsVaultConnectionWhatsappUninitialized, + + CreateFlowsVaultConnectionZapier, + + CreateFlowsVaultConnectionZapierUninitialized, + + CreateFlowsVaultConnectionZapierWebhook, + CreateFormResponseContent, + CreateGuardianEnrollmentTicketResponseContent, + CreateHookResponseContent, + @@ -215,6 +988,8 @@ if typing.TYPE_CHECKING: + CreateLogStreamSegmentRequestBody, + CreateLogStreamSplunkRequestBody, + CreateLogStreamSumoRequestBody, + + CreateOrganizationAllConnectionResponseContent, + + CreateOrganizationDiscoveryDomainResponseContent, + CreateOrganizationInvitationResponseContent, + CreateOrganizationResponseContent, + CreatePhoneProviderSendTestResponseContent, + @@ -231,6 +1006,7 @@ if typing.TYPE_CHECKING: + CreateSelfServiceProfileSsoTicketResponseContent, + CreateTokenExchangeProfileResponseContent, + CreateTokenQuota, + + CreateUserAttributeProfileResponseContent, + CreateUserAuthenticationMethodResponseContent, + CreateUserResponseContent, + CreateVerifiableCredentialTemplateResponseContent, + @@ -242,6 +1018,7 @@ if typing.TYPE_CHECKING: + CustomDomainCustomClientIpHeader, + CustomDomainCustomClientIpHeaderEnum, + CustomDomainProvisioningTypeEnum, + + CustomDomainStatusFilterEnum, + CustomDomainTlsPolicyEnum, + CustomDomainTypeEnum, + CustomDomainVerificationMethodEnum, + @@ -255,20 +1032,27 @@ if typing.TYPE_CHECKING: + CustomSigningKeyTypeEnum, + CustomSigningKeyUseEnum, + DailyStats, + + DefaultMethodEmailIdentifierEnum, + DefaultTokenQuota, + DeleteHookSecretRequestContent, + DeleteUserIdentityResponseContent, + DeleteUserIdentityResponseContentItem, + DeployActionResponseContent, + - DeployActionVersionRequestBodyParams, + DeployActionVersionRequestContent, + DeployActionVersionResponseContent, + DeviceCredential, + DeviceCredentialPublicKeyTypeEnum, + DeviceCredentialTypeEnum, + + DirectoryProvisioning, + + DirectoryProvisioningMappingItem, + + DomainCertificate, + + DomainCertificateAuthorityEnum, + + DomainCertificateStatusEnum, + + DomainMetadata, + DomainVerification, + DomainVerificationMethod, + DomainVerificationMethodNameEnum, + + DomainVerificationStatusEnum, + EmailAttribute, + EmailMailgunRegionEnum, + EmailProviderCredentials, + @@ -286,6 +1070,7 @@ if typing.TYPE_CHECKING: + EmailSparkPostRegionEnum, + EmailSpecificProviderSettingsWithAdditionalProperties, + EmailTemplateNameEnum, + + EnabledFeaturesEnum, + EncryptionKey, + EncryptionKeyPublicWrappingAlgorithm, + EncryptionKeyState, + @@ -294,8 +1079,336 @@ if typing.TYPE_CHECKING: + EventStreamActionDestination, + EventStreamActionDestinationTypeEnum, + EventStreamActionResponseContent, + - EventStreamBucketInterval, + EventStreamCloudEvent, + + EventStreamCloudEventA0PurposeEnum, + + EventStreamCloudEventContext, + + EventStreamCloudEventContextClient, + + EventStreamCloudEventContextClientMetadata, + + EventStreamCloudEventContextConnection, + + EventStreamCloudEventContextRequest, + + EventStreamCloudEventContextRequestGeo, + + EventStreamCloudEventContextTenant, + + EventStreamCloudEventErrorCodeEnum, + + EventStreamCloudEventErrorDetail, + + EventStreamCloudEventErrorMessage, + + EventStreamCloudEventErrorMessageTypeEnum, + + EventStreamCloudEventGroupCreated, + + EventStreamCloudEventGroupCreatedCloudEvent, + + EventStreamCloudEventGroupCreatedCloudEventTypeEnum, + + EventStreamCloudEventGroupCreatedData, + + EventStreamCloudEventGroupCreatedObject, + + EventStreamCloudEventGroupCreatedObject0, + + EventStreamCloudEventGroupCreatedObject0TypeEnum, + + EventStreamCloudEventGroupCreatedObject1, + + EventStreamCloudEventGroupCreatedObject1TypeEnum, + + EventStreamCloudEventGroupCreatedObject2, + + EventStreamCloudEventGroupCreatedObject2TypeEnum, + + EventStreamCloudEventGroupCreatedTypeEnum, + + EventStreamCloudEventGroupDeleted, + + EventStreamCloudEventGroupDeletedCloudEvent, + + EventStreamCloudEventGroupDeletedCloudEventTypeEnum, + + EventStreamCloudEventGroupDeletedData, + + EventStreamCloudEventGroupDeletedObject, + + EventStreamCloudEventGroupDeletedObject0, + + EventStreamCloudEventGroupDeletedObject0TypeEnum, + + EventStreamCloudEventGroupDeletedObject1, + + EventStreamCloudEventGroupDeletedObject1TypeEnum, + + EventStreamCloudEventGroupDeletedObject2, + + EventStreamCloudEventGroupDeletedObject2TypeEnum, + + EventStreamCloudEventGroupDeletedTypeEnum, + + EventStreamCloudEventGroupMemberAdded, + + EventStreamCloudEventGroupMemberAddedCloudEvent, + + EventStreamCloudEventGroupMemberAddedCloudEventTypeEnum, + + EventStreamCloudEventGroupMemberAddedData, + + EventStreamCloudEventGroupMemberAddedObject, + + EventStreamCloudEventGroupMemberAddedObjectGroup, + + EventStreamCloudEventGroupMemberAddedObjectGroup0, + + EventStreamCloudEventGroupMemberAddedObjectGroup0TypeEnum, + + EventStreamCloudEventGroupMemberAddedObjectGroup1, + + EventStreamCloudEventGroupMemberAddedObjectGroup1TypeEnum, + + EventStreamCloudEventGroupMemberAddedObjectGroup2, + + EventStreamCloudEventGroupMemberAddedObjectGroup2TypeEnum, + + EventStreamCloudEventGroupMemberAddedObjectMember, + + EventStreamCloudEventGroupMemberAddedObjectMember0, + + EventStreamCloudEventGroupMemberAddedObjectMember0MemberTypeEnum, + + EventStreamCloudEventGroupMemberAddedObjectMember1, + + EventStreamCloudEventGroupMemberAddedObjectMember1MemberTypeEnum, + + EventStreamCloudEventGroupMemberAddedTypeEnum, + + EventStreamCloudEventGroupMemberDeleted, + + EventStreamCloudEventGroupMemberDeletedCloudEvent, + + EventStreamCloudEventGroupMemberDeletedCloudEventTypeEnum, + + EventStreamCloudEventGroupMemberDeletedData, + + EventStreamCloudEventGroupMemberDeletedObject, + + EventStreamCloudEventGroupMemberDeletedObjectGroup, + + EventStreamCloudEventGroupMemberDeletedObjectGroup0, + + EventStreamCloudEventGroupMemberDeletedObjectGroup0TypeEnum, + + EventStreamCloudEventGroupMemberDeletedObjectGroup1, + + EventStreamCloudEventGroupMemberDeletedObjectGroup1TypeEnum, + + EventStreamCloudEventGroupMemberDeletedObjectGroup2, + + EventStreamCloudEventGroupMemberDeletedObjectGroup2TypeEnum, + + EventStreamCloudEventGroupMemberDeletedObjectMember, + + EventStreamCloudEventGroupMemberDeletedObjectMember0, + + EventStreamCloudEventGroupMemberDeletedObjectMember0MemberTypeEnum, + + EventStreamCloudEventGroupMemberDeletedObjectMember1, + + EventStreamCloudEventGroupMemberDeletedObjectMember1MemberTypeEnum, + + EventStreamCloudEventGroupMemberDeletedTypeEnum, + + EventStreamCloudEventGroupRoleAssigned, + + EventStreamCloudEventGroupRoleAssignedCloudEvent, + + EventStreamCloudEventGroupRoleAssignedCloudEventTypeEnum, + + EventStreamCloudEventGroupRoleAssignedData, + + EventStreamCloudEventGroupRoleAssignedObject, + + EventStreamCloudEventGroupRoleAssignedObjectGroup, + + EventStreamCloudEventGroupRoleAssignedObjectGroup0, + + EventStreamCloudEventGroupRoleAssignedObjectGroup0TypeEnum, + + EventStreamCloudEventGroupRoleAssignedObjectGroup1, + + EventStreamCloudEventGroupRoleAssignedObjectGroup1TypeEnum, + + EventStreamCloudEventGroupRoleAssignedObjectGroup2, + + EventStreamCloudEventGroupRoleAssignedObjectGroup2TypeEnum, + + EventStreamCloudEventGroupRoleAssignedObjectRole, + + EventStreamCloudEventGroupRoleAssignedTypeEnum, + + EventStreamCloudEventGroupRoleDeleted, + + EventStreamCloudEventGroupRoleDeletedCloudEvent, + + EventStreamCloudEventGroupRoleDeletedCloudEventTypeEnum, + + EventStreamCloudEventGroupRoleDeletedData, + + EventStreamCloudEventGroupRoleDeletedObject, + + EventStreamCloudEventGroupRoleDeletedObjectGroup, + + EventStreamCloudEventGroupRoleDeletedObjectGroup0, + + EventStreamCloudEventGroupRoleDeletedObjectGroup0TypeEnum, + + EventStreamCloudEventGroupRoleDeletedObjectGroup1, + + EventStreamCloudEventGroupRoleDeletedObjectGroup1TypeEnum, + + EventStreamCloudEventGroupRoleDeletedObjectGroup2, + + EventStreamCloudEventGroupRoleDeletedObjectGroup2TypeEnum, + + EventStreamCloudEventGroupRoleDeletedObjectRole, + + EventStreamCloudEventGroupRoleDeletedTypeEnum, + + EventStreamCloudEventGroupUpdated, + + EventStreamCloudEventGroupUpdatedCloudEvent, + + EventStreamCloudEventGroupUpdatedCloudEventTypeEnum, + + EventStreamCloudEventGroupUpdatedData, + + EventStreamCloudEventGroupUpdatedObject, + + EventStreamCloudEventGroupUpdatedObject0, + + EventStreamCloudEventGroupUpdatedObject0TypeEnum, + + EventStreamCloudEventGroupUpdatedObject1, + + EventStreamCloudEventGroupUpdatedObject1TypeEnum, + + EventStreamCloudEventGroupUpdatedObject2, + + EventStreamCloudEventGroupUpdatedObject2TypeEnum, + + EventStreamCloudEventGroupUpdatedTypeEnum, + + EventStreamCloudEventOffsetOnlyMessage, + + EventStreamCloudEventOffsetOnlyMessageTypeEnum, + + EventStreamCloudEventOrgConnectionAdded, + + EventStreamCloudEventOrgConnectionAddedCloudEvent, + + EventStreamCloudEventOrgConnectionAddedCloudEventTypeEnum, + + EventStreamCloudEventOrgConnectionAddedData, + + EventStreamCloudEventOrgConnectionAddedObject, + + EventStreamCloudEventOrgConnectionAddedObjectConnection, + + EventStreamCloudEventOrgConnectionAddedObjectOrganization, + + EventStreamCloudEventOrgConnectionAddedTypeEnum, + + EventStreamCloudEventOrgConnectionRemoved, + + EventStreamCloudEventOrgConnectionRemovedCloudEvent, + + EventStreamCloudEventOrgConnectionRemovedCloudEventTypeEnum, + + EventStreamCloudEventOrgConnectionRemovedData, + + EventStreamCloudEventOrgConnectionRemovedObject, + + EventStreamCloudEventOrgConnectionRemovedObjectConnection, + + EventStreamCloudEventOrgConnectionRemovedObjectOrganization, + + EventStreamCloudEventOrgConnectionRemovedTypeEnum, + + EventStreamCloudEventOrgConnectionUpdated, + + EventStreamCloudEventOrgConnectionUpdatedCloudEvent, + + EventStreamCloudEventOrgConnectionUpdatedCloudEventTypeEnum, + + EventStreamCloudEventOrgConnectionUpdatedData, + + EventStreamCloudEventOrgConnectionUpdatedObject, + + EventStreamCloudEventOrgConnectionUpdatedObjectConnection, + + EventStreamCloudEventOrgConnectionUpdatedObjectOrganization, + + EventStreamCloudEventOrgConnectionUpdatedTypeEnum, + + EventStreamCloudEventOrgCreated, + + EventStreamCloudEventOrgCreatedCloudEvent, + + EventStreamCloudEventOrgCreatedCloudEventTypeEnum, + + EventStreamCloudEventOrgCreatedData, + + EventStreamCloudEventOrgCreatedObject, + + EventStreamCloudEventOrgCreatedObjectBranding, + + EventStreamCloudEventOrgCreatedObjectBrandingColors, + + EventStreamCloudEventOrgCreatedObjectMetadata, + + EventStreamCloudEventOrgCreatedTypeEnum, + + EventStreamCloudEventOrgDeleted, + + EventStreamCloudEventOrgDeletedCloudEvent, + + EventStreamCloudEventOrgDeletedCloudEventTypeEnum, + + EventStreamCloudEventOrgDeletedData, + + EventStreamCloudEventOrgDeletedObject, + + EventStreamCloudEventOrgDeletedObjectMetadata, + + EventStreamCloudEventOrgDeletedTypeEnum, + + EventStreamCloudEventOrgGroupRoleAssigned, + + EventStreamCloudEventOrgGroupRoleAssignedCloudEvent, + + EventStreamCloudEventOrgGroupRoleAssignedCloudEventTypeEnum, + + EventStreamCloudEventOrgGroupRoleAssignedData, + + EventStreamCloudEventOrgGroupRoleAssignedObject, + + EventStreamCloudEventOrgGroupRoleAssignedObjectGroup, + + EventStreamCloudEventOrgGroupRoleAssignedObjectGroup0, + + EventStreamCloudEventOrgGroupRoleAssignedObjectGroup0TypeEnum, + + EventStreamCloudEventOrgGroupRoleAssignedObjectGroup1, + + EventStreamCloudEventOrgGroupRoleAssignedObjectGroup1TypeEnum, + + EventStreamCloudEventOrgGroupRoleAssignedObjectGroup2, + + EventStreamCloudEventOrgGroupRoleAssignedObjectGroup2TypeEnum, + + EventStreamCloudEventOrgGroupRoleAssignedObjectOrganization, + + EventStreamCloudEventOrgGroupRoleAssignedObjectRole, + + EventStreamCloudEventOrgGroupRoleAssignedTypeEnum, + + EventStreamCloudEventOrgGroupRoleDeleted, + + EventStreamCloudEventOrgGroupRoleDeletedCloudEvent, + + EventStreamCloudEventOrgGroupRoleDeletedCloudEventTypeEnum, + + EventStreamCloudEventOrgGroupRoleDeletedData, + + EventStreamCloudEventOrgGroupRoleDeletedObject, + + EventStreamCloudEventOrgGroupRoleDeletedObjectGroup, + + EventStreamCloudEventOrgGroupRoleDeletedObjectGroup0, + + EventStreamCloudEventOrgGroupRoleDeletedObjectGroup0TypeEnum, + + EventStreamCloudEventOrgGroupRoleDeletedObjectGroup1, + + EventStreamCloudEventOrgGroupRoleDeletedObjectGroup1TypeEnum, + + EventStreamCloudEventOrgGroupRoleDeletedObjectGroup2, + + EventStreamCloudEventOrgGroupRoleDeletedObjectGroup2TypeEnum, + + EventStreamCloudEventOrgGroupRoleDeletedObjectOrganization, + + EventStreamCloudEventOrgGroupRoleDeletedObjectRole, + + EventStreamCloudEventOrgGroupRoleDeletedTypeEnum, + + EventStreamCloudEventOrgMemberAdded, + + EventStreamCloudEventOrgMemberAddedCloudEvent, + + EventStreamCloudEventOrgMemberAddedCloudEventTypeEnum, + + EventStreamCloudEventOrgMemberAddedData, + + EventStreamCloudEventOrgMemberAddedObject, + + EventStreamCloudEventOrgMemberAddedObjectOrganization, + + EventStreamCloudEventOrgMemberAddedObjectUser, + + EventStreamCloudEventOrgMemberAddedTypeEnum, + + EventStreamCloudEventOrgMemberDeleted, + + EventStreamCloudEventOrgMemberDeletedCloudEvent, + + EventStreamCloudEventOrgMemberDeletedCloudEventTypeEnum, + + EventStreamCloudEventOrgMemberDeletedData, + + EventStreamCloudEventOrgMemberDeletedObject, + + EventStreamCloudEventOrgMemberDeletedObjectOrganization, + + EventStreamCloudEventOrgMemberDeletedObjectUser, + + EventStreamCloudEventOrgMemberDeletedTypeEnum, + + EventStreamCloudEventOrgMemberRoleAssigned, + + EventStreamCloudEventOrgMemberRoleAssignedCloudEvent, + + EventStreamCloudEventOrgMemberRoleAssignedCloudEventTypeEnum, + + EventStreamCloudEventOrgMemberRoleAssignedData, + + EventStreamCloudEventOrgMemberRoleAssignedObject, + + EventStreamCloudEventOrgMemberRoleAssignedObjectOrganization, + + EventStreamCloudEventOrgMemberRoleAssignedObjectRole, + + EventStreamCloudEventOrgMemberRoleAssignedObjectUser, + + EventStreamCloudEventOrgMemberRoleAssignedTypeEnum, + + EventStreamCloudEventOrgMemberRoleDeleted, + + EventStreamCloudEventOrgMemberRoleDeletedCloudEvent, + + EventStreamCloudEventOrgMemberRoleDeletedCloudEventTypeEnum, + + EventStreamCloudEventOrgMemberRoleDeletedData, + + EventStreamCloudEventOrgMemberRoleDeletedObject, + + EventStreamCloudEventOrgMemberRoleDeletedObjectOrganization, + + EventStreamCloudEventOrgMemberRoleDeletedObjectRole, + + EventStreamCloudEventOrgMemberRoleDeletedObjectUser, + + EventStreamCloudEventOrgMemberRoleDeletedTypeEnum, + + EventStreamCloudEventOrgUpdated, + + EventStreamCloudEventOrgUpdatedCloudEvent, + + EventStreamCloudEventOrgUpdatedCloudEventTypeEnum, + + EventStreamCloudEventOrgUpdatedData, + + EventStreamCloudEventOrgUpdatedObject, + + EventStreamCloudEventOrgUpdatedObjectBranding, + + EventStreamCloudEventOrgUpdatedObjectBrandingColors, + + EventStreamCloudEventOrgUpdatedObjectMetadata, + + EventStreamCloudEventOrgUpdatedTypeEnum, + + EventStreamCloudEventUserCreated, + + EventStreamCloudEventUserCreatedCloudEvent, + + EventStreamCloudEventUserCreatedCloudEventTypeEnum, + + EventStreamCloudEventUserCreatedData, + + EventStreamCloudEventUserCreatedObject, + + EventStreamCloudEventUserCreatedObjectAppMetadata, + + EventStreamCloudEventUserCreatedObjectIdentitiesItem, + + EventStreamCloudEventUserCreatedObjectIdentitiesItemCustom, + + EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomIsSocialEnum, + + EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomProfileData, + + EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomProviderEnum, + + EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomUserId, + + EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabase, + + EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseIsSocialEnum, + + EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseProfileData, + + EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseProviderEnum, + + EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseUserId, + + EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterprise, + + EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseIsSocialEnum, + + EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseProfileData, + + EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseProviderEnum, + + EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseUserId, + + EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordless, + + EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessIsSocialEnum, + + EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessProfileData, + + EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessProviderEnum, + + EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessUserId, + + EventStreamCloudEventUserCreatedObjectIdentitiesItemSocial, + + EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialIsSocialEnum, + + EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialProfileData, + + EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialProviderEnum, + + EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialUserId, + + EventStreamCloudEventUserCreatedObjectUserMetadata, + + EventStreamCloudEventUserCreatedTypeEnum, + + EventStreamCloudEventUserDeleted, + + EventStreamCloudEventUserDeletedCloudEvent, + + EventStreamCloudEventUserDeletedCloudEventTypeEnum, + + EventStreamCloudEventUserDeletedData, + + EventStreamCloudEventUserDeletedObject, + + EventStreamCloudEventUserDeletedObjectAppMetadata, + + EventStreamCloudEventUserDeletedObjectIdentitiesItem, + + EventStreamCloudEventUserDeletedObjectIdentitiesItemCustom, + + EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomIsSocialEnum, + + EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomProfileData, + + EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomProviderEnum, + + EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomUserId, + + EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabase, + + EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseIsSocialEnum, + + EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseProfileData, + + EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseProviderEnum, + + EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseUserId, + + EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterprise, + + EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseIsSocialEnum, + + EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseProfileData, + + EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseProviderEnum, + + EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseUserId, + + EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordless, + + EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessIsSocialEnum, + + EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessProfileData, + + EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessProviderEnum, + + EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessUserId, + + EventStreamCloudEventUserDeletedObjectIdentitiesItemSocial, + + EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialIsSocialEnum, + + EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialProfileData, + + EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialProviderEnum, + + EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialUserId, + + EventStreamCloudEventUserDeletedObjectUserMetadata, + + EventStreamCloudEventUserDeletedTypeEnum, + + EventStreamCloudEventUserUpdated, + + EventStreamCloudEventUserUpdatedCloudEvent, + + EventStreamCloudEventUserUpdatedCloudEventTypeEnum, + + EventStreamCloudEventUserUpdatedData, + + EventStreamCloudEventUserUpdatedObject, + + EventStreamCloudEventUserUpdatedObjectAppMetadata, + + EventStreamCloudEventUserUpdatedObjectIdentitiesItem, + + EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustom, + + EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomIsSocialEnum, + + EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomProfileData, + + EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomProviderEnum, + + EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomUserId, + + EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabase, + + EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseIsSocialEnum, + + EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseProfileData, + + EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseProviderEnum, + + EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseUserId, + + EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterprise, + + EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseIsSocialEnum, + + EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseProfileData, + + EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseProviderEnum, + + EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseUserId, + + EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordless, + + EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessIsSocialEnum, + + EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessProfileData, + + EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessProviderEnum, + + EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessUserId, + + EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocial, + + EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialIsSocialEnum, + + EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialProfileData, + + EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialProviderEnum, + + EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialUserId, + + EventStreamCloudEventUserUpdatedObjectUserMetadata, + + EventStreamCloudEventUserUpdatedTypeEnum, + EventStreamDelivery, + EventStreamDeliveryAttempt, + EventStreamDeliveryEventTypeEnum, + @@ -307,9 +1420,35 @@ if typing.TYPE_CHECKING: + EventStreamEventBridgeDestinationTypeEnum, + EventStreamEventBridgeResponseContent, + EventStreamEventTypeEnum, + - EventStreamMetric, + EventStreamResponseContent, + EventStreamStatusEnum, + + EventStreamSubscribeEventsEventTypeEnum, + + EventStreamSubscribeEventsEventTypeParam, + + EventStreamSubscribeEventsResponseContent, + + EventStreamSubscribeEventsResponseContent_Error, + + EventStreamSubscribeEventsResponseContent_GroupCreated, + + EventStreamSubscribeEventsResponseContent_GroupDeleted, + + EventStreamSubscribeEventsResponseContent_GroupMemberAdded, + + EventStreamSubscribeEventsResponseContent_GroupMemberDeleted, + + EventStreamSubscribeEventsResponseContent_GroupRoleAssigned, + + EventStreamSubscribeEventsResponseContent_GroupRoleDeleted, + + EventStreamSubscribeEventsResponseContent_GroupUpdated, + + EventStreamSubscribeEventsResponseContent_OffsetOnly, + + EventStreamSubscribeEventsResponseContent_OrganizationConnectionAdded, + + EventStreamSubscribeEventsResponseContent_OrganizationConnectionRemoved, + + EventStreamSubscribeEventsResponseContent_OrganizationConnectionUpdated, + + EventStreamSubscribeEventsResponseContent_OrganizationCreated, + + EventStreamSubscribeEventsResponseContent_OrganizationDeleted, + + EventStreamSubscribeEventsResponseContent_OrganizationGroupRoleAssigned, + + EventStreamSubscribeEventsResponseContent_OrganizationGroupRoleDeleted, + + EventStreamSubscribeEventsResponseContent_OrganizationMemberAdded, + + EventStreamSubscribeEventsResponseContent_OrganizationMemberDeleted, + + EventStreamSubscribeEventsResponseContent_OrganizationMemberRoleAssigned, + + EventStreamSubscribeEventsResponseContent_OrganizationMemberRoleDeleted, + + EventStreamSubscribeEventsResponseContent_OrganizationUpdated, + + EventStreamSubscribeEventsResponseContent_UserCreated, + + EventStreamSubscribeEventsResponseContent_UserDeleted, + + EventStreamSubscribeEventsResponseContent_UserUpdated, + EventStreamSubscription, + EventStreamTestEventTypeEnum, + EventStreamWebhookAuthorizationResponse, + @@ -318,88 +1457,153 @@ if typing.TYPE_CHECKING: + EventStreamWebhookBearerAuth, + EventStreamWebhookBearerAuthMethodEnum, + EventStreamWebhookConfiguration, + + EventStreamWebhookCustomHeaderAuth, + + EventStreamWebhookCustomHeaderAuthMethodEnum, + EventStreamWebhookDestination, + EventStreamWebhookDestinationTypeEnum, + EventStreamWebhookResponseContent, + - EventStreamWindow, + + ExpressConfiguration, + + ExpressConfigurationOrNull, + ExtensibilityEmailProviderCredentials, + FederatedConnectionTokenSet, + FlowAction, + FlowActionActivecampaign, + FlowActionActivecampaignListContacts, + + FlowActionActivecampaignListContactsAction, + FlowActionActivecampaignListContactsParams, + + FlowActionActivecampaignListContactsType, + FlowActionActivecampaignUpsertContact, + + FlowActionActivecampaignUpsertContactAction, + FlowActionActivecampaignUpsertContactParams, + FlowActionActivecampaignUpsertContactParamsCustomFields, + + FlowActionActivecampaignUpsertContactType, + FlowActionAirtable, + FlowActionAirtableCreateRecord, + + FlowActionAirtableCreateRecordAction, + FlowActionAirtableCreateRecordParams, + FlowActionAirtableCreateRecordParamsFields, + + FlowActionAirtableCreateRecordType, + FlowActionAirtableListRecords, + + FlowActionAirtableListRecordsAction, + FlowActionAirtableListRecordsParams, + + FlowActionAirtableListRecordsType, + FlowActionAirtableUpdateRecord, + + FlowActionAirtableUpdateRecordAction, + FlowActionAirtableUpdateRecordParams, + FlowActionAirtableUpdateRecordParamsFields, + + FlowActionAirtableUpdateRecordType, + FlowActionAuth0, + FlowActionAuth0CreateUser, + + FlowActionAuth0CreateUserAction, + FlowActionAuth0CreateUserParams, + FlowActionAuth0CreateUserParamsPayload, + + FlowActionAuth0CreateUserType, + FlowActionAuth0GetUser, + + FlowActionAuth0GetUserAction, + FlowActionAuth0GetUserParams, + + FlowActionAuth0GetUserType, + + FlowActionAuth0MakeCall, + + FlowActionAuth0MakeCallAction, + + FlowActionAuth0MakeCallParams, + + FlowActionAuth0MakeCallParamsCustomVars, + + FlowActionAuth0MakeCallType, + + FlowActionAuth0SendEmail, + + FlowActionAuth0SendEmailAction, + + FlowActionAuth0SendEmailParams, + + FlowActionAuth0SendEmailParamsFrom, + + FlowActionAuth0SendEmailParamsFromEmail, + + FlowActionAuth0SendEmailParamsTo, + + FlowActionAuth0SendEmailType, + FlowActionAuth0SendRequest, + + FlowActionAuth0SendRequestAction, + FlowActionAuth0SendRequestParams, + + FlowActionAuth0SendRequestParamsCustomVars, + FlowActionAuth0SendRequestParamsHeaders, + FlowActionAuth0SendRequestParamsMethod, + FlowActionAuth0SendRequestParamsPayload, + FlowActionAuth0SendRequestParamsPayloadObject, + FlowActionAuth0SendRequestParamsQueryParams, + + FlowActionAuth0SendRequestParamsQueryParamsValue, + + FlowActionAuth0SendRequestType, + + FlowActionAuth0SendSms, + + FlowActionAuth0SendSmsAction, + + FlowActionAuth0SendSmsParams, + + FlowActionAuth0SendSmsParamsCustomVars, + + FlowActionAuth0SendSmsType, + FlowActionAuth0UpdateUser, + + FlowActionAuth0UpdateUserAction, + FlowActionAuth0UpdateUserParams, + FlowActionAuth0UpdateUserParamsChanges, + + FlowActionAuth0UpdateUserType, + FlowActionBigquery, + FlowActionBigqueryInsertRows, + + FlowActionBigqueryInsertRowsAction, + FlowActionBigqueryInsertRowsParams, + FlowActionBigqueryInsertRowsParamsData, + + FlowActionBigqueryInsertRowsType, + FlowActionClearbit, + FlowActionClearbitFindCompany, + + FlowActionClearbitFindCompanyAction, + FlowActionClearbitFindCompanyParams, + + FlowActionClearbitFindCompanyType, + FlowActionClearbitFindPerson, + + FlowActionClearbitFindPersonAction, + FlowActionClearbitFindPersonParams, + + FlowActionClearbitFindPersonType, + FlowActionEmail, + FlowActionEmailVerifyEmail, + + FlowActionEmailVerifyEmailAction, + FlowActionEmailVerifyEmailParams, + FlowActionEmailVerifyEmailParamsRules, + + FlowActionEmailVerifyEmailType, + FlowActionFlow, + FlowActionFlowBooleanCondition, + + FlowActionFlowBooleanConditionAction, + FlowActionFlowBooleanConditionParams, + + FlowActionFlowBooleanConditionType, + FlowActionFlowDelayFlow, + + FlowActionFlowDelayFlowAction, + FlowActionFlowDelayFlowParams, + FlowActionFlowDelayFlowParamsNumber, + FlowActionFlowDelayFlowParamsUnits, + + FlowActionFlowDelayFlowType, + FlowActionFlowDoNothing, + + FlowActionFlowDoNothingAction, + FlowActionFlowDoNothingParams, + + FlowActionFlowDoNothingType, + FlowActionFlowErrorMessage, + + FlowActionFlowErrorMessageAction, + FlowActionFlowErrorMessageParams, + + FlowActionFlowErrorMessageType, + FlowActionFlowMapValue, + + FlowActionFlowMapValueAction, + FlowActionFlowMapValueParams, + FlowActionFlowMapValueParamsCases, + FlowActionFlowMapValueParamsFallback, + FlowActionFlowMapValueParamsFallbackObject, + FlowActionFlowMapValueParamsInput, + + FlowActionFlowMapValueType, + FlowActionFlowReturnJson, + + FlowActionFlowReturnJsonAction, + FlowActionFlowReturnJsonParams, + FlowActionFlowReturnJsonParamsPayload, + FlowActionFlowReturnJsonParamsPayloadObject, + + FlowActionFlowReturnJsonType, + FlowActionFlowStoreVars, + + FlowActionFlowStoreVarsAction, + FlowActionFlowStoreVarsParams, + FlowActionFlowStoreVarsParamsVars, + + FlowActionFlowStoreVarsType, + FlowActionGoogleSheets, + FlowActionGoogleSheetsAddRow, + + FlowActionGoogleSheetsAddRowAction, + FlowActionGoogleSheetsAddRowParams, + FlowActionGoogleSheetsAddRowParamsSheetId, + FlowActionGoogleSheetsAddRowParamsValues, + + FlowActionGoogleSheetsAddRowType, + FlowActionHttp, + FlowActionHttpSendRequest, + + FlowActionHttpSendRequestAction, + FlowActionHttpSendRequestParams, + FlowActionHttpSendRequestParamsBasicAuth, + FlowActionHttpSendRequestParamsContentType, + @@ -408,134 +1612,260 @@ if typing.TYPE_CHECKING: + FlowActionHttpSendRequestParamsPayload, + FlowActionHttpSendRequestParamsPayloadObject, + FlowActionHttpSendRequestParamsQueryParams, + + FlowActionHttpSendRequestParamsQueryParamsValue, + + FlowActionHttpSendRequestType, + FlowActionHubspot, + FlowActionHubspotEnrollContact, + + FlowActionHubspotEnrollContactAction, + FlowActionHubspotEnrollContactParams, + FlowActionHubspotEnrollContactParamsWorkflowId, + + FlowActionHubspotEnrollContactType, + FlowActionHubspotGetContact, + + FlowActionHubspotGetContactAction, + FlowActionHubspotGetContactParams, + + FlowActionHubspotGetContactType, + FlowActionHubspotUpsertContact, + + FlowActionHubspotUpsertContactAction, + FlowActionHubspotUpsertContactParams, + FlowActionHubspotUpsertContactParamsProperty, + + FlowActionHubspotUpsertContactType, + FlowActionJson, + FlowActionJsonCreateJson, + + FlowActionJsonCreateJsonAction, + FlowActionJsonCreateJsonParams, + FlowActionJsonCreateJsonParamsObject, + + FlowActionJsonCreateJsonType, + FlowActionJsonParseJson, + + FlowActionJsonParseJsonAction, + FlowActionJsonParseJsonParams, + + FlowActionJsonParseJsonType, + FlowActionJsonSerializeJson, + + FlowActionJsonSerializeJsonAction, + FlowActionJsonSerializeJsonParams, + FlowActionJsonSerializeJsonParamsObject, + FlowActionJsonSerializeJsonParamsObjectObject, + + FlowActionJsonSerializeJsonType, + FlowActionJwt, + FlowActionJwtDecodeJwt, + + FlowActionJwtDecodeJwtAction, + FlowActionJwtDecodeJwtParams, + + FlowActionJwtDecodeJwtType, + FlowActionJwtSignJwt, + + FlowActionJwtSignJwtAction, + FlowActionJwtSignJwtParams, + FlowActionJwtSignJwtParamsPayload, + + FlowActionJwtSignJwtType, + FlowActionJwtVerifyJwt, + + FlowActionJwtVerifyJwtAction, + FlowActionJwtVerifyJwtParams, + + FlowActionJwtVerifyJwtType, + FlowActionMailchimp, + FlowActionMailchimpUpsertMember, + + FlowActionMailchimpUpsertMemberAction, + FlowActionMailchimpUpsertMemberParams, + FlowActionMailchimpUpsertMemberParamsMember, + FlowActionMailchimpUpsertMemberParamsMemberMergeFields, + + FlowActionMailchimpUpsertMemberType, + FlowActionMailjet, + FlowActionMailjetSendEmail, + + FlowActionMailjetSendEmailAction, + FlowActionMailjetSendEmailParams, + FlowActionMailjetSendEmailParamsContent, + FlowActionMailjetSendEmailParamsTemplateId, + + FlowActionMailjetSendEmailType, + FlowActionOtp, + FlowActionOtpGenerateCode, + + FlowActionOtpGenerateCodeAction, + FlowActionOtpGenerateCodeParams, + + FlowActionOtpGenerateCodeType, + FlowActionOtpVerifyCode, + + FlowActionOtpVerifyCodeAction, + FlowActionOtpVerifyCodeParams, + FlowActionOtpVerifyCodeParamsCode, + + FlowActionOtpVerifyCodeType, + FlowActionPipedrive, + FlowActionPipedriveAddDeal, + + FlowActionPipedriveAddDealAction, + FlowActionPipedriveAddDealParams, + FlowActionPipedriveAddDealParamsFields, + FlowActionPipedriveAddDealParamsOrganizationId, + FlowActionPipedriveAddDealParamsPersonId, + FlowActionPipedriveAddDealParamsStageId, + FlowActionPipedriveAddDealParamsUserId, + + FlowActionPipedriveAddDealType, + FlowActionPipedriveAddOrganization, + + FlowActionPipedriveAddOrganizationAction, + FlowActionPipedriveAddOrganizationParams, + FlowActionPipedriveAddOrganizationParamsFields, + FlowActionPipedriveAddOrganizationParamsOwnerId, + + FlowActionPipedriveAddOrganizationType, + FlowActionPipedriveAddPerson, + + FlowActionPipedriveAddPersonAction, + FlowActionPipedriveAddPersonParams, + FlowActionPipedriveAddPersonParamsFields, + FlowActionPipedriveAddPersonParamsOrganizationId, + FlowActionPipedriveAddPersonParamsOwnerId, + + FlowActionPipedriveAddPersonType, + FlowActionSalesforce, + FlowActionSalesforceCreateLead, + + FlowActionSalesforceCreateLeadAction, + FlowActionSalesforceCreateLeadParams, + FlowActionSalesforceCreateLeadParamsPayload, + + FlowActionSalesforceCreateLeadType, + FlowActionSalesforceGetLead, + + FlowActionSalesforceGetLeadAction, + FlowActionSalesforceGetLeadParams, + + FlowActionSalesforceGetLeadType, + FlowActionSalesforceSearchLeads, + + FlowActionSalesforceSearchLeadsAction, + FlowActionSalesforceSearchLeadsParams, + FlowActionSalesforceSearchLeadsParamsSearchField, + + FlowActionSalesforceSearchLeadsType, + FlowActionSalesforceUpdateLead, + + FlowActionSalesforceUpdateLeadAction, + FlowActionSalesforceUpdateLeadParams, + FlowActionSalesforceUpdateLeadParamsPayload, + + FlowActionSalesforceUpdateLeadType, + FlowActionSendgrid, + FlowActionSendgridSendEmail, + + FlowActionSendgridSendEmailAction, + FlowActionSendgridSendEmailParams, + FlowActionSendgridSendEmailParamsPerson, + + FlowActionSendgridSendEmailType, + FlowActionSlack, + FlowActionSlackPostMessage, + + FlowActionSlackPostMessageAction, + FlowActionSlackPostMessageParams, + FlowActionSlackPostMessageParamsAttachment, + FlowActionSlackPostMessageParamsAttachmentColor, + FlowActionSlackPostMessageParamsAttachmentField, + + FlowActionSlackPostMessageType, + FlowActionStripe, + FlowActionStripeAddTaxId, + + FlowActionStripeAddTaxIdAction, + FlowActionStripeAddTaxIdParams, + + FlowActionStripeAddTaxIdType, + FlowActionStripeAddress, + FlowActionStripeCreateCustomer, + + FlowActionStripeCreateCustomerAction, + FlowActionStripeCreateCustomerParams, + + FlowActionStripeCreateCustomerType, + FlowActionStripeCreatePortalSession, + + FlowActionStripeCreatePortalSessionAction, + FlowActionStripeCreatePortalSessionParams, + + FlowActionStripeCreatePortalSessionType, + FlowActionStripeDeleteTaxId, + + FlowActionStripeDeleteTaxIdAction, + FlowActionStripeDeleteTaxIdParams, + + FlowActionStripeDeleteTaxIdType, + FlowActionStripeFindCustomers, + + FlowActionStripeFindCustomersAction, + FlowActionStripeFindCustomersParams, + + FlowActionStripeFindCustomersType, + FlowActionStripeGetCustomer, + + FlowActionStripeGetCustomerAction, + FlowActionStripeGetCustomerParams, + + FlowActionStripeGetCustomerType, + FlowActionStripeMetadata, + FlowActionStripeTaxId, + FlowActionStripeUpdateCustomer, + + FlowActionStripeUpdateCustomerAction, + FlowActionStripeUpdateCustomerParams, + + FlowActionStripeUpdateCustomerType, + FlowActionTelegram, + FlowActionTelegramSendMessage, + + FlowActionTelegramSendMessageAction, + FlowActionTelegramSendMessageParams, + + FlowActionTelegramSendMessageType, + FlowActionTwilio, + FlowActionTwilioMakeCall, + + FlowActionTwilioMakeCallAction, + FlowActionTwilioMakeCallParams, + + FlowActionTwilioMakeCallType, + FlowActionTwilioSendSms, + + FlowActionTwilioSendSmsAction, + FlowActionTwilioSendSmsParams, + + FlowActionTwilioSendSmsType, + FlowActionWhatsapp, + FlowActionWhatsappSendMessage, + + FlowActionWhatsappSendMessageAction, + FlowActionWhatsappSendMessageParams, + FlowActionWhatsappSendMessageParamsPayload, + FlowActionWhatsappSendMessageParamsPayloadObject, + FlowActionWhatsappSendMessageParamsType, + + FlowActionWhatsappSendMessageType, + FlowActionXml, + FlowActionXmlParseXml, + + FlowActionXmlParseXmlAction, + FlowActionXmlParseXmlParams, + + FlowActionXmlParseXmlType, + FlowActionXmlSerializeXml, + + FlowActionXmlSerializeXmlAction, + FlowActionXmlSerializeXmlParams, + FlowActionXmlSerializeXmlParamsObject, + FlowActionXmlSerializeXmlParamsObjectObject, + + FlowActionXmlSerializeXmlType, + FlowActionZapier, + FlowActionZapierTriggerWebhook, + + FlowActionZapierTriggerWebhookAction, + FlowActionZapierTriggerWebhookParams, + FlowActionZapierTriggerWebhookParamsMethod, + + FlowActionZapierTriggerWebhookType, + FlowExecutionDebug, + FlowExecutionSummary, + FlowSummary, + + FlowsVaultConnectioSetupApiKey, + + FlowsVaultConnectioSetupApiKeyWithBaseUrl, + + FlowsVaultConnectioSetupBigqueryOauthJwt, + + FlowsVaultConnectioSetupHttpBearer, + + FlowsVaultConnectioSetupJwt, + + FlowsVaultConnectioSetupJwtAlgorithmEnum, + + FlowsVaultConnectioSetupMailjetApiKey, + + FlowsVaultConnectioSetupOauthApp, + + FlowsVaultConnectioSetupOauthCode, + + FlowsVaultConnectioSetupSecretApiKey, + + FlowsVaultConnectioSetupStripeKeyPair, + + FlowsVaultConnectioSetupToken, + + FlowsVaultConnectioSetupTwilioApiKey, + + FlowsVaultConnectioSetupTypeApiKeyEnum, + + FlowsVaultConnectioSetupTypeBearerEnum, + + FlowsVaultConnectioSetupTypeJwtEnum, + + FlowsVaultConnectioSetupTypeKeyPairEnum, + + FlowsVaultConnectioSetupTypeOauthAppEnum, + + FlowsVaultConnectioSetupTypeOauthCodeEnum, + + FlowsVaultConnectioSetupTypeOauthJwtEnum, + + FlowsVaultConnectioSetupTypeTokenEnum, + + FlowsVaultConnectioSetupTypeWebhookEnum, + + FlowsVaultConnectioSetupWebhook, + + FlowsVaultConnectionAppIdActivecampaignEnum, + + FlowsVaultConnectionAppIdAirtableEnum, + + FlowsVaultConnectionAppIdAuth0Enum, + + FlowsVaultConnectionAppIdBigqueryEnum, + + FlowsVaultConnectionAppIdClearbitEnum, + + FlowsVaultConnectionAppIdDocusignEnum, + + FlowsVaultConnectionAppIdGoogleSheetsEnum, + + FlowsVaultConnectionAppIdHttpEnum, + + FlowsVaultConnectionAppIdHubspotEnum, + + FlowsVaultConnectionAppIdJwtEnum, + + FlowsVaultConnectionAppIdMailchimpEnum, + + FlowsVaultConnectionAppIdMailjetEnum, + + FlowsVaultConnectionAppIdPipedriveEnum, + + FlowsVaultConnectionAppIdSalesforceEnum, + + FlowsVaultConnectionAppIdSendgridEnum, + + FlowsVaultConnectionAppIdSlackEnum, + + FlowsVaultConnectionAppIdStripeEnum, + + FlowsVaultConnectionAppIdTelegramEnum, + + FlowsVaultConnectionAppIdTwilioEnum, + + FlowsVaultConnectionAppIdWhatsappEnum, + + FlowsVaultConnectionAppIdZapierEnum, + + FlowsVaultConnectionHttpApiKeySetup, + + FlowsVaultConnectionHttpApiKeySetupInEnum, + + FlowsVaultConnectionHttpBasicAuthSetup, + + FlowsVaultConnectionHttpOauthClientCredentialsSetup, + + FlowsVaultConnectionSetupTypeApiKeyEnum, + + FlowsVaultConnectionSetupTypeBasicAuthEnum, + + FlowsVaultConnectionSetupTypeOauthClientCredentialsEnum, + + FlowsVaultConnectionSummary, + FormBlock, + FormBlockDivider, + FormBlockDividerConfig, + @@ -693,35 +2023,51 @@ if typing.TYPE_CHECKING: + FormWidgetTypeRecaptchaConst, + FormsRequestParametersHydrateEnum, + GetActionExecutionResponseContent, + + GetActionModuleActionsResponseContent, + + GetActionModuleResponseContent, + + GetActionModuleVersionResponseContent, + + GetActionModuleVersionsResponseContent, + + GetActionModulesResponseContent, + GetActionResponseContent, + GetActionVersionResponseContent, + GetActiveUsersCountStatsResponseContent, + GetAculResponseContent, + + GetAttackProtectionCaptchaResponseContent, + + GetBotDetectionSettingsResponseContent, + GetBrandingDefaultThemeResponseContent, + GetBrandingPhoneProviderResponseContent, + GetBrandingResponseContent, + GetBrandingThemeResponseContent, + GetBreachedPasswordDetectionSettingsResponseContent, + GetBruteForceSettingsResponseContent, + - GetBruteForceSettingsResponseContentMode, + - GetBruteForceSettingsResponseContentShieldsItem, + GetClientCredentialResponseContent, + + GetClientGrantResponseContent, + GetClientResponseContent, + GetConnectionEnabledClientsResponseContent, + + GetConnectionProfileResponseContent, + + GetConnectionProfileTemplateResponseContent, + GetConnectionResponseContent, + GetCustomDomainResponseContent, + GetCustomSigningKeysResponseContent, + GetCustomTextsByLanguageResponseContent, + + GetDefaultCanonicalDomainResponseContent, + + GetDefaultCustomDomainResponseContent, + + GetDefaultDomainResponseContent, + + GetDirectoryProvisioningDefaultMappingResponseContent, + + GetDirectoryProvisioningResponseContent, + GetEmailProviderResponseContent, + GetEmailTemplateResponseContent, + GetEncryptionKeyResponseContent, + GetEventStreamDeliveryHistoryResponseContent, + GetEventStreamResponseContent, + - GetEventStreamStatsResponseContent, + + GetFlowExecutionRequestParametersHydrateEnum, + GetFlowExecutionResponseContent, + GetFlowRequestParametersHydrateEnum, + GetFlowResponseContent, + + GetFlowsVaultConnectionResponseContent, + GetFormResponseContent, + + GetGroupMembersResponseContent, + + GetGroupResponseContent, + GetGuardianEnrollmentResponseContent, + GetGuardianFactorDuoSettingsResponseContent, + GetGuardianFactorPhoneMessageTypesResponseContent, + @@ -740,18 +2086,25 @@ if typing.TYPE_CHECKING: + GetJobGenericErrorResponseContent, + GetJobImportUserError, + GetJobResponseContent, + + GetJobSummary, + GetJobUserError, + GetLogResponseContent, + GetLogStreamResponseContent, + GetNetworkAclsResponseContent, + + GetOrganizationAllConnectionResponseContent, + GetOrganizationByNameResponseContent, + GetOrganizationConnectionResponseContent, + + GetOrganizationDiscoveryDomainByNameResponseContent, + + GetOrganizationDiscoveryDomainResponseContent, + GetOrganizationInvitationResponseContent, + GetOrganizationResponseContent, + GetPartialsResponseContent, + GetPhoneTemplateResponseContent, + GetRefreshTokenResponseContent, + + GetRefreshTokensPaginatedResponseContent, + GetResourceServerResponseContent, + + GetRiskAssessmentsSettingsNewDeviceResponseContent, + + GetRiskAssessmentsSettingsResponseContent, + GetRoleResponseContent, + GetRuleResponseContent, + GetScimConfigurationDefaultMappingResponseContent, + @@ -767,9 +2120,16 @@ if typing.TYPE_CHECKING: + GetTokenExchangeProfileResponseContent, + GetUniversalLoginTemplate, + GetUniversalLoginTemplateResponseContent, + + GetUserAttributeProfileResponseContent, + + GetUserAttributeProfileTemplateResponseContent, + GetUserAuthenticationMethodResponseContent, + + GetUserGroupsPaginatedResponseContent, + GetUserResponseContent, + GetVerifiableCredentialTemplateResponseContent, + + Group, + + GroupMember, + + GroupMemberTypeEnum, + + GroupTypeEnum, + GuardianEnrollmentDate, + GuardianEnrollmentFactorEnum, + GuardianEnrollmentStatus, + @@ -784,6 +2144,7 @@ if typing.TYPE_CHECKING: + HttpCustomHeader, + Identity, + IdentityProviderEnum, + + IdentityProviderOnlyAuth0Enum, + ImportEncryptionKeyResponseContent, + Integration, + IntegrationFeatureTypeEnum, + @@ -793,29 +2154,40 @@ if typing.TYPE_CHECKING: + IntegrationRequiredParamTypeEnum, + IntegrationSemVer, + JobFileFormatEnum, + + LinkedClientConfiguration, + ListActionBindingsPaginatedResponseContent, + ListActionTriggersResponseContent, + ListActionVersionsPaginatedResponseContent, + ListActionsPaginatedResponseContent, + ListAculsOffsetPaginatedResponseContent, + + ListAculsResponseContentItem, + ListBrandingPhoneProvidersResponseContent, + ListClientConnectionsResponseContent, + ListClientGrantOrganizationsPaginatedResponseContent, + ListClientGrantPaginatedResponseContent, + ListClientsOffsetPaginatedResponseContent, + + ListConnectionProfileTemplateResponseContent, + + ListConnectionProfilesPaginatedResponseContent, + ListConnectionsCheckpointPaginatedResponseContent, + ListCustomDomainsResponseContent, + ListDeviceCredentialsOffsetPaginatedResponseContent, + + ListDirectoryProvisioningsResponseContent, + ListEncryptionKeyOffsetPaginatedResponseContent, + + ListEventStreamsResponseContent, + ListFlowExecutionsPaginatedResponseContent, + ListFlowsOffsetPaginatedResponseContent, + + ListFlowsRequestParametersHydrateEnum, + + ListFlowsVaultConnectionsOffsetPaginatedResponseContent, + ListFormsOffsetPaginatedResponseContent, + + ListGroupsPaginatedResponseContent, + ListGuardianPoliciesResponseContent, + ListHooksOffsetPaginatedResponseContent, + ListLogOffsetPaginatedResponseContent, + ListNetworkAclsOffsetPaginatedResponseContent, + + ListOrganizationAllConnectionsOffsetPaginatedResponseContent, + ListOrganizationClientGrantsOffsetPaginatedResponseContent, + ListOrganizationConnectionsOffsetPaginatedResponseContent, + + ListOrganizationDiscoveryDomainsResponseContent, + ListOrganizationInvitationsOffsetPaginatedResponseContent, + ListOrganizationMemberRolesOffsetPaginatedResponseContent, + ListOrganizationMembersPaginatedResponseContent, + @@ -827,12 +2199,17 @@ if typing.TYPE_CHECKING: + ListRoleUsersPaginatedResponseContent, + ListRolesOffsetPaginatedResponseContent, + ListRulesOffsetPaginatedResponseContent, + + ListScimConfigurationsResponseContent, + ListSelfServiceProfileCustomTextResponseContent, + ListSelfServiceProfilesPaginatedResponseContent, + + ListSynchronizedGroupsResponseContent, + ListTokenExchangeProfileResponseContent, + + ListUserAttributeProfileTemplateResponseContent, + + ListUserAttributeProfilesPaginatedResponseContent, + ListUserAuthenticationMethodsOffsetPaginatedResponseContent, + ListUserBlocksByIdentifierResponseContent, + ListUserBlocksResponseContent, + + ListUserConnectedAccountsResponseContent, + ListUserGrantsOffsetPaginatedResponseContent, + ListUserOrganizationsOffsetPaginatedResponseContent, + ListUserPermissionsOffsetPaginatedResponseContent, + @@ -901,6 +2278,8 @@ if typing.TYPE_CHECKING: + NetworkAclActionLogEnum, + NetworkAclActionRedirectEnum, + NetworkAclMatch, + + NetworkAclMatchConnectingIpv4Cidr, + + NetworkAclMatchConnectingIpv6Cidr, + NetworkAclMatchIpv4Cidr, + NetworkAclMatchIpv6Cidr, + NetworkAclRule, + @@ -909,11 +2288,15 @@ if typing.TYPE_CHECKING: + OauthScope, + Organization, + OrganizationAccessLevelEnum, + + OrganizationAccessLevelEnumWithNull, + + OrganizationAllConnectionPost, + OrganizationBranding, + OrganizationBrandingColors, + OrganizationClientGrant, + OrganizationConnection, + OrganizationConnectionInformation, + + OrganizationDiscoveryDomain, + + OrganizationDiscoveryDomainStatus, + OrganizationEnabledConnection, + OrganizationInvitation, + OrganizationInvitationInvitee, + @@ -924,6 +2307,12 @@ if typing.TYPE_CHECKING: + OrganizationUsageEnum, + PartialGroupsEnum, + PartialPhoneTemplateContent, + + PasswordCharacterTypeEnum, + + PasswordCharacterTypeRulePolicyEnum, + + PasswordDefaultDictionariesEnum, + + PasswordIdenticalCharactersPolicyEnum, + + PasswordMaxLengthExceededPolicyEnum, + + PasswordSequentialCharactersPolicyEnum, + PatchClientCredentialResponseContent, + PatchSupplementalSignalsResponseContent, + PermissionRequestPayload, + @@ -940,9 +2329,12 @@ if typing.TYPE_CHECKING: + PhoneTemplateContent, + PhoneTemplateNotificationTypeEnum, + PostClientCredentialResponseContent, + + PostConnectionKeysAlgEnum, + + PostConnectionKeysRequestContent, + + PostConnectionsKeysResponseContent, + + PostConnectionsKeysResponseContentItem, + PreferredAuthenticationMethodEnum, + - PrivateKeyJwt, + - PrivateKeyJwtCredentials, + + PreviewCimdMetadataResponseContent, + PromptGroupNameEnum, + PromptLanguageEnum, + PublicKeyCredential, + @@ -952,18 +2344,27 @@ if typing.TYPE_CHECKING: + RefreshTokenDateObject, + RefreshTokenDevice, + RefreshTokenExpirationTypeEnum, + + RefreshTokenMetadata, + RefreshTokenResourceServer, + RefreshTokenResponseContent, + RefreshTokenRotationTypeEnum, + RefreshTokenSessionId, + RegenerateUsersRecoveryCodeResponseContent, + + RegisterCimdClientResponseContent, + ResetPhoneTemplateRequestContent, + ResetPhoneTemplateResponseContent, + ResourceServer, + + ResourceServerAuthorizationPolicy, + ResourceServerConsentPolicyEnum, + ResourceServerProofOfPossession, + ResourceServerProofOfPossessionMechanismEnum, + + ResourceServerProofOfPossessionRequiredForEnum, + ResourceServerScope, + + ResourceServerSubjectTypeAuthorization, + + ResourceServerSubjectTypeAuthorizationClient, + + ResourceServerSubjectTypeAuthorizationClientPolicyEnum, + + ResourceServerSubjectTypeAuthorizationUser, + + ResourceServerSubjectTypeAuthorizationUserPolicyEnum, + ResourceServerTokenDialectResponseEnum, + ResourceServerTokenDialectSchemaEnum, + ResourceServerTokenEncryption, + @@ -974,6 +2375,7 @@ if typing.TYPE_CHECKING: + RevokedSigningKeysResponseContent, + Role, + RoleUser, + + RollbackActionModuleResponseContent, + RotateClientSecretResponseContent, + RotateConnectionKeysRequestContent, + RotateConnectionKeysSigningAlgEnum, + @@ -981,6 +2383,7 @@ if typing.TYPE_CHECKING: + RotateSigningKeysResponseContent, + Rule, + RulesConfig, + + ScimConfiguration, + ScimMappingItem, + ScimTokenItem, + ScreenGroupNameEnum, + @@ -997,7 +2400,9 @@ if typing.TYPE_CHECKING: + SelfServiceProfileSsoTicketConnectionOptions, + SelfServiceProfileSsoTicketDomainAliasesConfig, + SelfServiceProfileSsoTicketDomainVerificationEnum, + + SelfServiceProfileSsoTicketEnabledFeatures, + SelfServiceProfileSsoTicketEnabledOrganization, + + SelfServiceProfileSsoTicketGoogleWorkspaceConfig, + SelfServiceProfileSsoTicketIdpInitiatedClientProtocolEnum, + SelfServiceProfileSsoTicketIdpInitiatedOptions, + SelfServiceProfileSsoTicketProvisioningConfig, + @@ -1014,6 +2419,7 @@ if typing.TYPE_CHECKING: + SessionDate, + SessionDeviceMetadata, + SessionIp, + + SessionMetadata, + SessionResponseContent, + SetCustomSigningKeysResponseContent, + SetEmailTemplateResponseContent, + @@ -1024,11 +2430,8 @@ if typing.TYPE_CHECKING: + SetGuardianFactorSmsTemplatesResponseContent, + SetGuardianFactorsProviderPhoneResponseContent, + SetGuardianFactorsProviderPhoneTwilioResponseContent, + - SetGuardianFactorsProviderPushNotificationApnsRequestContent, + SetGuardianFactorsProviderPushNotificationApnsResponseContent, + - SetGuardianFactorsProviderPushNotificationFcmRequestContent, + SetGuardianFactorsProviderPushNotificationFcmResponseContent, + - SetGuardianFactorsProviderPushNotificationFcmv1RequestContent, + SetGuardianFactorsProviderPushNotificationFcmv1ResponseContent, + SetGuardianFactorsProviderPushNotificationResponseContent, + SetGuardianFactorsProviderPushNotificationSnsResponseContent, + @@ -1059,15 +2462,20 @@ if typing.TYPE_CHECKING: + SuspiciousIpThrottlingPreUserRegistrationStage, + SuspiciousIpThrottlingShieldsEnum, + SuspiciousIpThrottlingStage, + + SynchronizeGroupsEnum, + + SynchronizedGroupPayload, + TenantOidcLogoutSettings, + TenantSettingsDeviceFlow, + TenantSettingsDeviceFlowCharset, + + TenantSettingsDynamicClientRegistrationSecurityMode, + TenantSettingsErrorPage, + TenantSettingsFlags, + TenantSettingsGuardianPage, + TenantSettingsMtls, + TenantSettingsPasswordPage, + + TenantSettingsResourceParameterProfile, + TenantSettingsSessions, + + TenantSettingsSupportedLocalesEnum, + TestActionPayload, + TestActionResponseContent, + TestActionResultPayload, + @@ -1083,54 +2491,151 @@ if typing.TYPE_CHECKING: + TwilioProviderDeliveryMethodEnum, + UniversalLoginExperienceEnum, + UpdateActionBindingsResponseContent, + + UpdateActionModuleResponseContent, + UpdateActionResponseContent, + UpdateAculResponseContent, + + UpdateAttackProtectionCaptchaResponseContent, + + UpdateBotDetectionSettingsResponseContent, + UpdateBrandingColors, + UpdateBrandingFont, + + UpdateBrandingIdentifiers, + + UpdateBrandingLoginDisplayEnum, + UpdateBrandingPageBackground, + + UpdateBrandingPhoneDisplay, + + UpdateBrandingPhoneFormattingEnum, + + UpdateBrandingPhoneMaskingEnum, + UpdateBrandingPhoneProviderResponseContent, + UpdateBrandingResponseContent, + UpdateBrandingThemeResponseContent, + UpdateBreachedPasswordDetectionSettingsResponseContent, + UpdateBruteForceSettingsResponseContent, + - UpdateBruteForceSettingsResponseContentMode, + - UpdateBruteForceSettingsResponseContentShieldsItem, + UpdateClientGrantResponseContent, + UpdateClientResponseContent, + UpdateConnectionOptions, + + UpdateConnectionProfileResponseContent, + + UpdateConnectionRequestContentAd, + + UpdateConnectionRequestContentAdfs, + + UpdateConnectionRequestContentAmazon, + + UpdateConnectionRequestContentApple, + + UpdateConnectionRequestContentAuth0, + + UpdateConnectionRequestContentAuth0Oidc, + + UpdateConnectionRequestContentAzureAd, + + UpdateConnectionRequestContentBaidu, + + UpdateConnectionRequestContentBitbucket, + + UpdateConnectionRequestContentBitly, + + UpdateConnectionRequestContentBox, + + UpdateConnectionRequestContentCustom, + + UpdateConnectionRequestContentDaccount, + + UpdateConnectionRequestContentDropbox, + + UpdateConnectionRequestContentDwolla, + + UpdateConnectionRequestContentEmail, + + UpdateConnectionRequestContentEvernote, + + UpdateConnectionRequestContentEvernoteSandbox, + + UpdateConnectionRequestContentExact, + + UpdateConnectionRequestContentFacebook, + + UpdateConnectionRequestContentFitbit, + + UpdateConnectionRequestContentGitHub, + + UpdateConnectionRequestContentGoogleApps, + + UpdateConnectionRequestContentGoogleOAuth2, + + UpdateConnectionRequestContentInstagram, + + UpdateConnectionRequestContentIp, + + UpdateConnectionRequestContentLine, + + UpdateConnectionRequestContentLinkedin, + + UpdateConnectionRequestContentOAuth1, + + UpdateConnectionRequestContentOAuth2, + + UpdateConnectionRequestContentOffice365, + + UpdateConnectionRequestContentOidc, + + UpdateConnectionRequestContentOkta, + + UpdateConnectionRequestContentPaypal, + + UpdateConnectionRequestContentPaypalSandbox, + + UpdateConnectionRequestContentPingFederate, + + UpdateConnectionRequestContentPlanningCenter, + + UpdateConnectionRequestContentSalesforce, + + UpdateConnectionRequestContentSalesforceCommunity, + + UpdateConnectionRequestContentSalesforceSandbox, + + UpdateConnectionRequestContentSaml, + + UpdateConnectionRequestContentSharepoint, + + UpdateConnectionRequestContentShop, + + UpdateConnectionRequestContentShopify, + + UpdateConnectionRequestContentSms, + + UpdateConnectionRequestContentSoundcloud, + + UpdateConnectionRequestContentThirtySevenSignals, + + UpdateConnectionRequestContentTwitter, + + UpdateConnectionRequestContentUntappd, + + UpdateConnectionRequestContentVkontakte, + + UpdateConnectionRequestContentWeibo, + + UpdateConnectionRequestContentWindowsLive, + + UpdateConnectionRequestContentWordpress, + + UpdateConnectionRequestContentYahoo, + + UpdateConnectionRequestContentYandex, + UpdateConnectionResponseContent, + UpdateCustomDomainResponseContent, + + UpdateDefaultCanonicalDomainResponseContent, + + UpdateDefaultCustomDomainResponseContent, + + UpdateDefaultDomainResponseContent, + + UpdateDirectoryProvisioningRequestContent, + + UpdateDirectoryProvisioningResponseContent, + UpdateEmailProviderResponseContent, + UpdateEmailTemplateResponseContent, + UpdateEnabledClientConnectionsRequestContent, + UpdateEnabledClientConnectionsRequestContentItem, + UpdateEventStreamResponseContent, + UpdateFlowResponseContent, + + UpdateFlowsVaultConnectionResponseContent, + + UpdateFlowsVaultConnectionSetup, + UpdateFormResponseContent, + UpdateGuardianFactorDuoSettingsResponseContent, + + UpdateGuardianFactorsProviderPushNotificationApnsResponseContent, + + UpdateGuardianFactorsProviderPushNotificationFcmResponseContent, + + UpdateGuardianFactorsProviderPushNotificationFcmv1ResponseContent, + UpdateGuardianFactorsProviderPushNotificationSnsResponseContent, + UpdateHookResponseContent, + UpdateHookSecretRequestContent, + UpdateLogStreamResponseContent, + UpdateNetworkAclResponseContent, + + UpdateOrganizationAllConnectionResponseContent, + UpdateOrganizationConnectionResponseContent, + + UpdateOrganizationDiscoveryDomainResponseContent, + UpdateOrganizationResponseContent, + UpdatePhoneTemplateResponseContent, + + UpdateRefreshTokenResponseContent, + UpdateResourceServerResponseContent, + + UpdateRiskAssessmentsSettingsNewDeviceResponseContent, + + UpdateRiskAssessmentsSettingsResponseContent, + UpdateRoleResponseContent, + UpdateRuleResponseContent, + UpdateScimConfigurationResponseContent, + UpdateSelfServiceProfileResponseContent, + + UpdateSessionResponseContent, + UpdateSettingsResponseContent, + UpdateSuspiciousIpThrottlingSettingsResponseContent, + UpdateTenantSettingsResponseContent, + UpdateTokenQuota, + UpdateUniversalLoginTemplateRequestContent, + UpdateUniversalLoginTemplateRequestContentTemplate, + + UpdateUserAttributeProfileResponseContent, + UpdateUserAuthenticationMethodResponseContent, + UpdateUserResponseContent, + UpdateVerifiableCredentialTemplateResponseContent, + UserAppMetadataSchema, + + UserAttributeProfile, + + UserAttributeProfileId, + + UserAttributeProfileName, + + UserAttributeProfileOidcMapping, + + UserAttributeProfilePatchUserId, + + UserAttributeProfileSamlMapping, + + UserAttributeProfileStrategyOverrides, + + UserAttributeProfileStrategyOverridesMapping, + + UserAttributeProfileStrategyOverridesUserId, + + UserAttributeProfileStrategyOverridesUserIdMapping, + + UserAttributeProfileTemplate, + + UserAttributeProfileTemplateItem, + + UserAttributeProfileUserAttributeAdditionalProperties, + + UserAttributeProfileUserAttributes, + + UserAttributeProfileUserId, + + UserAttributeProfileUserIdOidcMappingEnum, + + UserAttributeProfileUserIdOidcStrategyOverrideMapping, + + UserAttributeProfileUserIdSamlMapping, + UserAuthenticationMethod, + UserAuthenticationMethodProperties, + UserAuthenticationMethodPropertiesEnum, + @@ -1139,7 +2644,8 @@ if typing.TYPE_CHECKING: + UserEnrollmentAuthMethodEnum, + UserEnrollmentStatusEnum, + UserGrant, + - UserIdEnum, + + UserGroupsResponseSchema, + + UserId, + UserIdentity, + UserIdentityProviderEnum, + UserIdentitySchema, + @@ -1158,15 +2664,19 @@ if typing.TYPE_CHECKING: + VerificationMethodEnum, + VerifyCustomDomainResponseContent, + VerifyEmailTicketResponseContent, + + X509CertificateCredential, + + X509CertificateCredentialTypeEnum, + ) + from .errors import ( + BadRequestError, + ConflictError, + ContentTooLargeError, + ForbiddenError, + + GoneError, + InternalServerError, + NotFoundError, + PaymentRequiredError, + + PreconditionFailedError, + ServiceUnavailableError, + TooManyRequestsError, + UnauthorizedError, + @@ -1178,14 +2688,17 @@ if typing.TYPE_CHECKING: + branding, + client_grants, + clients, + + connection_profiles, + connections, + custom_domains, + device_credentials, + email_templates, + emails, + event_streams, + + events, + flows, + forms, + + groups, + guardian, + hooks, + jobs, + @@ -1197,6 +2710,7 @@ if typing.TYPE_CHECKING: + prompts, + refresh_tokens, + resource_servers, + + risk_assessments, + roles, + rules, + rules_configs, + @@ -1207,16 +2721,19 @@ if typing.TYPE_CHECKING: + tenants, + tickets, + token_exchange_profiles, + + user_attribute_profiles, + user_blocks, + user_grants, + users, + verifiable_credentials, + ) + + from ._default_clients import DefaultAioHttpClient, DefaultAsyncHttpxClient + from .client import AsyncAuth0, Auth0 from .environment import Auth0Environment from .event_streams import EventStreamsCreateRequest + - from .management_client import AsyncManagementClient, CustomDomainHeader, ManagementClient from .version import __version__ + from .management_client import AsyncManagementClient, CustomDomainHeader, ManagementClient + from .token_provider import AsyncTokenProvider, TokenProvider _dynamic_imports: typing.Dict[str, str] = { "Action": ".types", "ActionBase": ".types", - @@ -2792,6 +2794,8 @@ _dynamic_imports: typing.Dict[str, str] = { + @@ -1230,6 +2747,15 @@ _dynamic_imports: typing.Dict[str, str] = { + "ActionError": ".types", + "ActionExecutionResult": ".types", + "ActionExecutionStatusEnum": ".types", + + "ActionModuleAction": ".types", + + "ActionModuleDependency": ".types", + + "ActionModuleDependencyRequest": ".types", + + "ActionModuleListItem": ".types", + + "ActionModuleReference": ".types", + + "ActionModuleSecret": ".types", + + "ActionModuleSecretRequest": ".types", + + "ActionModuleVersion": ".types", + + "ActionModuleVersionReference": ".types", + "ActionSecretRequest": ".types", + "ActionSecretResponse": ".types", + "ActionTrigger": ".types", + @@ -1239,33 +2765,75 @@ _dynamic_imports: typing.Dict[str, str] = { + "ActionVersionBuildStatusEnum": ".types", + "ActionVersionDependency": ".types", + "AculClientFilter": ".types", + + "AculClientFilterById": ".types", + + "AculClientFilterByMetadata": ".types", + "AculClientMetadata": ".types", + + "AculConfigs": ".types", + + "AculConfigsItem": ".types", + + "AculContextConfiguration": ".types", + + "AculContextConfigurationItem": ".types", + + "AculContextEnum": ".types", + "AculDomainFilter": ".types", + + "AculDomainFilterById": ".types", + + "AculDomainFilterByMetadata": ".types", + "AculDomainMetadata": ".types", + "AculFilters": ".types", + "AculHeadTag": ".types", + "AculHeadTagAttributes": ".types", + + "AculHeadTagContent": ".types", + "AculMatchTypeEnum": ".types", + "AculOrganizationFilter": ".types", + + "AculOrganizationFilterById": ".types", + + "AculOrganizationFilterByMetadata": ".types", + "AculOrganizationMetadata": ".types", + "AculRenderingModeEnum": ".types", + - "AculResponseContent": ".types", + "AddOrganizationConnectionResponseContent": ".types", + "AnomalyIpFormat": ".types", + "AppMetadata": ".types", + + "AssessorsTypeEnum": ".types", "AssociateOrganizationClientGrantResponseContent": ".types", - "AsyncApprovalNotificationsChannelsEnum": ".types", + + "AsyncApprovalNotificationsChannelsEnum": ".types", "AsyncAuth0": ".client", - + "AsyncManagementClient": ".management_client", - + "AsyncTokenProvider": ".token_provider", - "AttackProtectionCaptchaArkoseResponseContent": ".types", - "AttackProtectionCaptchaAuthChallengeRequest": ".types", - "AttackProtectionCaptchaAuthChallengeResponseContent": ".types", - @@ -3747,6 +3751,7 @@ _dynamic_imports: typing.Dict[str, str] = { + "AsyncManagementClient": ".management_client", + "AsyncTokenProvider": ".token_provider", + + "AttackProtectionCaptchaArkoseResponseContent": ".types", + + "AttackProtectionCaptchaAuthChallengeRequest": ".types", + + "AttackProtectionCaptchaAuthChallengeResponseContent": ".types", + + "AttackProtectionCaptchaFriendlyCaptchaResponseContent": ".types", + + "AttackProtectionCaptchaHcaptchaResponseContent": ".types", + + "AttackProtectionCaptchaProviderId": ".types", + + "AttackProtectionCaptchaRecaptchaEnterpriseResponseContent": ".types", + + "AttackProtectionCaptchaRecaptchaV2ResponseContent": ".types", + + "AttackProtectionCaptchaSimpleCaptchaResponseContent": ".types", + + "AttackProtectionUpdateCaptchaArkose": ".types", + + "AttackProtectionUpdateCaptchaFriendlyCaptcha": ".types", + + "AttackProtectionUpdateCaptchaHcaptcha": ".types", + + "AttackProtectionUpdateCaptchaRecaptchaEnterprise": ".types", + + "AttackProtectionUpdateCaptchaRecaptchaV2": ".types", + "Auth0": ".client", + "Auth0Environment": ".environment", + - "ManagementClient": ".management_client", + "AuthenticationMethodTypeEnum": ".types", + "AuthenticationTypeEnum": ".types", + "BadRequestError": ".errors", + + "BotDetectionAllowlist": ".types", + + "BotDetectionChallengePolicyPasswordFlowEnum": ".types", + + "BotDetectionChallengePolicyPasswordResetFlowEnum": ".types", + + "BotDetectionChallengePolicyPasswordlessFlowEnum": ".types", + + "BotDetectionCidrBlock": ".types", + + "BotDetectionIPv4": ".types", + + "BotDetectionIPv6": ".types", + + "BotDetectionIPv6CidrBlock": ".types", + + "BotDetectionIpAddressOrCidrBlock": ".types", + + "BotDetectionLevelEnum": ".types", + + "BotDetectionMonitoringModeEnabled": ".types", + "BrandingColors": ".types", + "BrandingFont": ".types", + + "BrandingIdentifiers": ".types", + + "BrandingLoginDisplayEnum": ".types", + "BrandingPageBackground": ".types", + + "BrandingPhoneDisplay": ".types", + + "BrandingPhoneFormattingEnum": ".types", + + "BrandingPhoneMaskingEnum": ".types", + "BrandingThemeBorders": ".types", + "BrandingThemeBordersButtonsStyleEnum": ".types", + "BrandingThemeBordersInputsStyleEnum": ".types", + @@ -1293,7 +2861,18 @@ _dynamic_imports: typing.Dict[str, str] = { + "BreachedPasswordDetectionPreUserRegistrationStage": ".types", + "BreachedPasswordDetectionShieldsEnum": ".types", + "BreachedPasswordDetectionStage": ".types", + + "BruteForceProtectionModeEnum": ".types", + + "BruteForceProtectionShieldsEnum": ".types", + + "BulkUpdateAculResponseContent": ".types", + + "CertificateSubjectDnCredential": ".types", + + "CertificateSubjectDnCredentialTypeEnum": ".types", + + "ChangePasswordTicketIdentity": ".types", + "ChangePasswordTicketResponseContent": ".types", + + "CimdMappedClientAuthenticationMethods": ".types", + + "CimdMappedClientAuthenticationMethodsPrivateKeyJwt": ".types", + + "CimdMappedClientFields": ".types", + + "CimdMappedPrivateKeyJwtCredential": ".types", + + "CimdValidationResult": ".types", + "Client": ".types", + "ClientAddonAws": ".types", + "ClientAddonAzureBlob": ".types", + @@ -1329,59 +2908,336 @@ _dynamic_imports: typing.Dict[str, str] = { + "ClientAddonZoom": ".types", + "ClientAddons": ".types", + "ClientAppTypeEnum": ".types", + + "ClientAsyncApprovalNotificationsChannelsApiPatchConfiguration": ".types", + + "ClientAsyncApprovalNotificationsChannelsApiPostConfiguration": ".types", + "ClientAuthenticationMethod": ".types", + + "ClientAuthenticationMethodPrivateKeyJwt": ".types", + + "ClientAuthenticationMethodPrivateKeyJwtCredentials": ".types", + "ClientAuthenticationMethodSelfSignedTlsClientAuth": ".types", + + "ClientAuthenticationMethodSelfSignedTlsClientAuthCredentials": ".types", + "ClientAuthenticationMethodTlsClientAuth": ".types", + + "ClientAuthenticationMethodTlsClientAuthCredentials": ".types", + "ClientComplianceLevelEnum": ".types", + "ClientCreateAuthenticationMethod": ".types", + + "ClientCreateAuthenticationMethodPrivateKeyJwt": ".types", + + "ClientCreateAuthenticationMethodPrivateKeyJwtCredentials": ".types", + + "ClientCreateAuthenticationMethodTlsClientAuth": ".types", + + "ClientCreateAuthenticationMethodTlsClientAuthCredentials": ".types", + "ClientCredential": ".types", + "ClientCredentialAlgorithmEnum": ".types", + "ClientCredentialTypeEnum": ".types", + "ClientDefaultOrganization": ".types", + "ClientDefaultOrganizationFlowsEnum": ".types", + "ClientEncryptionKey": ".types", + + "ClientExternalMetadataCreatedByEnum": ".types", + + "ClientExternalMetadataTypeEnum": ".types", + "ClientGrantAllowAnyOrganizationEnum": ".types", + + "ClientGrantDefaultForEnum": ".types", + "ClientGrantOrganizationNullableUsageEnum": ".types", + "ClientGrantOrganizationUsageEnum": ".types", + "ClientGrantResponseContent": ".types", + + "ClientGrantSubjectTypeEnum": ".types", + "ClientJwtConfiguration": ".types", + "ClientJwtConfigurationScopes": ".types", + "ClientMetadata": ".types", + "ClientMobile": ".types", + "ClientMobileAndroid": ".types", + "ClientMobileiOs": ".types", + + "ClientMyOrganizationConfigurationAllowedStrategiesEnum": ".types", + + "ClientMyOrganizationDeletionBehaviorEnum": ".types", + + "ClientMyOrganizationPatchConfiguration": ".types", + + "ClientMyOrganizationPostConfiguration": ".types", + + "ClientMyOrganizationResponseConfiguration": ".types", + "ClientOidcBackchannelLogoutInitiators": ".types", + "ClientOidcBackchannelLogoutInitiatorsEnum": ".types", + "ClientOidcBackchannelLogoutInitiatorsModeEnum": ".types", + + "ClientOidcBackchannelLogoutSessionMetadata": ".types", + "ClientOidcBackchannelLogoutSettings": ".types", + + "ClientOrganizationDiscoveryEnum": ".types", + "ClientOrganizationRequireBehaviorEnum": ".types", + "ClientOrganizationRequireBehaviorPatchEnum": ".types", + "ClientOrganizationUsageEnum": ".types", + "ClientOrganizationUsagePatchEnum": ".types", + + "ClientRedirectionPolicyEnum": ".types", + "ClientRefreshTokenConfiguration": ".types", + + "ClientRefreshTokenPolicy": ".types", + "ClientSessionTransferAllowedAuthenticationMethodsEnum": ".types", + "ClientSessionTransferConfiguration": ".types", + + "ClientSessionTransferDelegationConfiguration": ".types", + + "ClientSessionTransferDelegationDeviceBindingEnum": ".types", + "ClientSessionTransferDeviceBindingEnum": ".types", + "ClientSignedRequestObjectWithCredentialId": ".types", + "ClientSignedRequestObjectWithPublicKey": ".types", + "ClientSigningKey": ".types", + "ClientSigningKeys": ".types", + + "ClientThirdPartySecurityModeEnum": ".types", + "ClientTokenEndpointAuthMethodEnum": ".types", + "ClientTokenEndpointAuthMethodOrNullEnum": ".types", + + "ClientTokenExchangeConfiguration": ".types", + + "ClientTokenExchangeConfigurationOrNull": ".types", + + "ClientTokenExchangeTypeEnum": ".types", + "ConflictError": ".errors", + + "ConnectedAccount": ".types", + + "ConnectedAccountAccessTypeEnum": ".types", + + "ConnectionAccessTokenUrloAuth1": ".types", + + "ConnectionAcrValuesSupported": ".types", + + "ConnectionAdminAccessTokenExpiresInGoogleApps": ".types", + + "ConnectionAdminAccessTokenGoogleApps": ".types", + + "ConnectionAdminRefreshTokenGoogleApps": ".types", + + "ConnectionAgentIpad": ".types", + + "ConnectionAgentModeAd": ".types", + + "ConnectionAgentVersionAd": ".types", + + "ConnectionAllowedAudiencesGoogleOAuth2": ".types", + + "ConnectionApiBehaviorEnum": ".types", + + "ConnectionApiEnableGroups": ".types", + + "ConnectionApiEnableGroupsGoogleApps": ".types", + + "ConnectionApiEnableUsers": ".types", + + "ConnectionApiEnableUsersGoogleApps": ".types", + + "ConnectionAppDomainAzureAd": ".types", + + "ConnectionAssertionDecryptionAlgorithmProfileEnum": ".types", + + "ConnectionAssertionDecryptionSettings": ".types", + "ConnectionAttributeIdentifier": ".types", + + "ConnectionAttributeMapAttributes": ".types", + + "ConnectionAttributeMapOidc": ".types", + + "ConnectionAttributeMapOkta": ".types", + + "ConnectionAttributeMapUserinfoScope": ".types", + "ConnectionAttributes": ".types", + + "ConnectionAuthParamsAdditionalPropertiesOAuth2": ".types", + + "ConnectionAuthParamsEmail": ".types", + + "ConnectionAuthParamsMap": ".types", + + "ConnectionAuthParamsOAuth2": ".types", + "ConnectionAuthenticationMethods": ".types", + + "ConnectionAuthenticationPurpose": ".types", + + "ConnectionAuthorizationEndpoint": ".types", + + "ConnectionBaseUrlExact": ".types", + + "ConnectionBruteForceProtection": ".types", + + "ConnectionCalculatedThumbprintSaml": ".types", + + "ConnectionCertsAd": ".types", + + "ConnectionClaimTypesSupported": ".types", + + "ConnectionClaimsLocalesSupported": ".types", + + "ConnectionClaimsParameterSupported": ".types", + + "ConnectionClaimsSupported": ".types", + + "ConnectionClientId": ".types", + + "ConnectionClientIdAmazon": ".types", + + "ConnectionClientIdAzureAd": ".types", + + "ConnectionClientIdBitbucket": ".types", + + "ConnectionClientIdExact": ".types", + + "ConnectionClientIdFacebook": ".types", + + "ConnectionClientIdGoogleApps": ".types", + + "ConnectionClientIdGoogleOAuth2": ".types", + + "ConnectionClientIdLine": ".types", + + "ConnectionClientIdLinkedin": ".types", + + "ConnectionClientIdOAuth1": ".types", + + "ConnectionClientIdOAuth2": ".types", + + "ConnectionClientIdOidc": ".types", + + "ConnectionClientIdPaypal": ".types", + + "ConnectionClientIdSalesforce": ".types", + + "ConnectionClientIdWindowsLive": ".types", + + "ConnectionClientProtocolSaml": ".types", + + "ConnectionClientSecret": ".types", + + "ConnectionClientSecretAmazon": ".types", + + "ConnectionClientSecretAzureAd": ".types", + + "ConnectionClientSecretBitbucket": ".types", + + "ConnectionClientSecretExact": ".types", + + "ConnectionClientSecretFacebook": ".types", + + "ConnectionClientSecretGoogleApps": ".types", + + "ConnectionClientSecretGoogleOAuth2": ".types", + + "ConnectionClientSecretLine": ".types", + + "ConnectionClientSecretLinkedin": ".types", + + "ConnectionClientSecretOAuth1": ".types", + + "ConnectionClientSecretOAuth2": ".types", + + "ConnectionClientSecretOidc": ".types", + + "ConnectionClientSecretPaypal": ".types", + + "ConnectionClientSecretSalesforce": ".types", + + "ConnectionClientSecretWindowsLive": ".types", + + "ConnectionCommon": ".types", + + "ConnectionCommunityBaseUrlSalesforce": ".types", + + "ConnectionConfiguration": ".types", + + "ConnectionConnectedAccountsPurpose": ".types", + + "ConnectionConnectedAccountsPurposeXaa": ".types", + + "ConnectionConnectionSettings": ".types", + + "ConnectionConnectionSettingsPkceEnum": ".types", + + "ConnectionCustomHeadersOAuth2": ".types", + "ConnectionCustomScripts": ".types", + + "ConnectionDebugSaml": ".types", + + "ConnectionDecryptionKeySaml": ".types", + + "ConnectionDecryptionKeySamlCert": ".types", + + "ConnectionDestinationUrlSaml": ".types", + + "ConnectionDigestAlgorithmEnumSaml": ".types", + + "ConnectionDigestAlgorithmSaml": ".types", + + "ConnectionDisableSelfServiceChangePassword": ".types", + + "ConnectionDisableSignup": ".types", + + "ConnectionDisableSignupSms": ".types", + + "ConnectionDiscoveryUrl": ".types", + + "ConnectionDisplayName": ".types", + + "ConnectionDisplayValuesSupported": ".types", + + "ConnectionDomainAliases": ".types", + + "ConnectionDomainAliasesAd": ".types", + + "ConnectionDomainAliasesAzureAd": ".types", + + "ConnectionDomainAliasesItemsOne": ".types", + + "ConnectionDomainAliasesSaml": ".types", + + "ConnectionDomainGoogleApps": ".types", + + "ConnectionDomainOkta": ".types", + + "ConnectionDpopSigningAlgEnum": ".types", + + "ConnectionDpopSigningAlgValuesSupported": ".types", + + "ConnectionEmailBodyEmail": ".types", + + "ConnectionEmailEmail": ".types", + + "ConnectionEmailEmailSyntax": ".types", + + "ConnectionEmailFromEmail": ".types", + + "ConnectionEmailOtpAuthenticationMethod": ".types", + + "ConnectionEmailSubjectEmail": ".types", + + "ConnectionEnableScriptContext": ".types", + "ConnectionEnabledClient": ".types", + + "ConnectionEnabledClients": ".types", + + "ConnectionEnabledDatabaseCustomization": ".types", + + "ConnectionEndSessionEndpoint": ".types", + + "ConnectionEntityIdSaml": ".types", + + "ConnectionExtAdmin": ".types", + + "ConnectionExtAgreedTerms": ".types", + + "ConnectionExtAgreedTermsGoogleApps": ".types", + + "ConnectionExtAssignedPlans": ".types", + + "ConnectionExtGroups": ".types", + + "ConnectionExtGroupsAzureAd": ".types", + + "ConnectionExtGroupsGoogleApps": ".types", + + "ConnectionExtIsAdminGoogleApps": ".types", + + "ConnectionExtIsSuspended": ".types", + + "ConnectionExtIsSuspendedGoogleApps": ".types", + + "ConnectionExtProfile": ".types", + + "ConnectionFederatedConnectionsAccessTokens": ".types", + + "ConnectionFieldsMap": ".types", + + "ConnectionFieldsMapSaml": ".types", + + "ConnectionFieldsMapSamlValue": ".types", + "ConnectionForList": ".types", + "ConnectionForOrganization": ".types", + + "ConnectionForwardReqInfoSms": ".types", + + "ConnectionFreeformScopesAmazon": ".types", + + "ConnectionFreeformScopesGoogleOAuth2": ".types", + + "ConnectionFreeformScopesLinkedin": ".types", + + "ConnectionFreeformScopesPaypal": ".types", + + "ConnectionFreeformScopesSalesforce": ".types", + + "ConnectionFreeformScopesWindowsLive": ".types", + + "ConnectionFromSms": ".types", + "ConnectionGatewayAuthentication": ".types", + + "ConnectionGatewayAuthenticationAudienceSms": ".types", + + "ConnectionGatewayAuthenticationMethodSms": ".types", + + "ConnectionGatewayAuthenticationSms": ".types", + + "ConnectionGatewayAuthenticationSubjectSms": ".types", + + "ConnectionGatewayUrlSms": ".types", + + "ConnectionGlobalTokenRevocationJwtIssSaml": ".types", + + "ConnectionGlobalTokenRevocationJwtSubSaml": ".types", + + "ConnectionGrantTypesSupported": ".types", + + "ConnectionHandleLoginFromSocialGoogleApps": ".types", + + "ConnectionHttpsUrlWithHttpFallback": ".types", + + "ConnectionHttpsUrlWithHttpFallback2048": ".types", + + "ConnectionHttpsUrlWithHttpFallback255": ".types", + + "ConnectionIconUrl": ".types", + + "ConnectionIconUrlAdfs": ".types", + + "ConnectionIconUrlAzureAd": ".types", + + "ConnectionIconUrlGoogleApps": ".types", + + "ConnectionIconUrlGoogleOAuth2": ".types", + + "ConnectionIconUrlSaml": ".types", + + "ConnectionId": ".types", + + "ConnectionIdTokenEncryptionAlgValuesSupported": ".types", + + "ConnectionIdTokenEncryptionEncValuesSupported": ".types", + + "ConnectionIdTokenSignedResponseAlgEnum": ".types", + + "ConnectionIdTokenSignedResponseAlgs": ".types", + + "ConnectionIdTokenSigningAlgValuesSupported": ".types", + + "ConnectionIdentifierPrecedence": ".types", + "ConnectionIdentifierPrecedenceEnum": ".types", + + "ConnectionIdentityApiAzureAd": ".types", + + "ConnectionIdentityApiEnumAzureAd": ".types", + "ConnectionIdentityProviderEnum": ".types", + + "ConnectionImportMode": ".types", + + "ConnectionIpsAd": ".types", + + "ConnectionIsDomainConnection": ".types", + + "ConnectionIssuer": ".types", + + "ConnectionJwksUri": ".types", + "ConnectionKey": ".types", + "ConnectionKeyUseEnum": ".types", + + "ConnectionMappingModeEnumOidc": ".types", + + "ConnectionMappingModeEnumOkta": ".types", + + "ConnectionMaxGroupsToRetrieve": ".types", + + "ConnectionMessagingServiceSidSms": ".types", + + "ConnectionMetadataUrlSaml": ".types", + + "ConnectionMetadataXml": ".types", + + "ConnectionMetadataXmlAdfs": ".types", + + "ConnectionMetadataXmlSaml": ".types", + + "ConnectionMfa": ".types", + + "ConnectionName": ".types", + + "ConnectionNamePrefixTemplate": ".types", + + "ConnectionNonPersistentAttrs": ".types", + + "ConnectionOpPolicyUri": ".types", + + "ConnectionOpTosUri": ".types", + "ConnectionOptions": ".types", + + "ConnectionOptionsAd": ".types", + + "ConnectionOptionsAdfs": ".types", + + "ConnectionOptionsAmazon": ".types", + + "ConnectionOptionsApple": ".types", + + "ConnectionOptionsAuth0": ".types", + + "ConnectionOptionsAuth0Oidc": ".types", + + "ConnectionOptionsAzureAd": ".types", + + "ConnectionOptionsBaidu": ".types", + + "ConnectionOptionsBitbucket": ".types", + + "ConnectionOptionsBitly": ".types", + + "ConnectionOptionsBox": ".types", + + "ConnectionOptionsClientIdGithub": ".types", + + "ConnectionOptionsClientIdTwitter": ".types", + + "ConnectionOptionsClientSecretGithub": ".types", + + "ConnectionOptionsClientSecretTwitter": ".types", + + "ConnectionOptionsCommon": ".types", + + "ConnectionOptionsCommonOidc": ".types", + + "ConnectionOptionsCommonSaml": ".types", + + "ConnectionOptionsCustom": ".types", + + "ConnectionOptionsDaccount": ".types", + + "ConnectionOptionsDeflateSaml": ".types", + + "ConnectionOptionsDropbox": ".types", + + "ConnectionOptionsDwolla": ".types", + + "ConnectionOptionsEmail": ".types", + + "ConnectionOptionsEvernote": ".types", + + "ConnectionOptionsExact": ".types", + + "ConnectionOptionsFacebook": ".types", + + "ConnectionOptionsFitbit": ".types", + + "ConnectionOptionsFreeformScopesGithub": ".types", + + "ConnectionOptionsGitHub": ".types", + + "ConnectionOptionsGoogleApps": ".types", + + "ConnectionOptionsGoogleOAuth2": ".types", + + "ConnectionOptionsIdpInitiatedClientProtocolEnumSaml": ".types", + + "ConnectionOptionsIdpinitiatedSaml": ".types", + + "ConnectionOptionsInstagram": ".types", + + "ConnectionOptionsIp": ".types", + + "ConnectionOptionsLine": ".types", + + "ConnectionOptionsLinkedin": ".types", + + "ConnectionOptionsOAuth1": ".types", + + "ConnectionOptionsOAuth1Common": ".types", + + "ConnectionOptionsOAuth2": ".types", + + "ConnectionOptionsOAuth2Common": ".types", + + "ConnectionOptionsOffice365": ".types", + + "ConnectionOptionsOidc": ".types", + + "ConnectionOptionsOidcMetadata": ".types", + + "ConnectionOptionsOkta": ".types", + + "ConnectionOptionsPaypal": ".types", + + "ConnectionOptionsPingFederate": ".types", + + "ConnectionOptionsPlanningCenter": ".types", + + "ConnectionOptionsProtocolEnumTwitter": ".types", + + "ConnectionOptionsSalesforce": ".types", + + "ConnectionOptionsSalesforceCommunity": ".types", + + "ConnectionOptionsSaml": ".types", + + "ConnectionOptionsScopeGithub": ".types", + + "ConnectionOptionsScopeTwitter": ".types", + + "ConnectionOptionsSharepoint": ".types", + + "ConnectionOptionsShop": ".types", + + "ConnectionOptionsShopify": ".types", + + "ConnectionOptionsSms": ".types", + + "ConnectionOptionsSoundcloud": ".types", + + "ConnectionOptionsThirtySevenSignals": ".types", + + "ConnectionOptionsTwitter": ".types", + + "ConnectionOptionsUntappd": ".types", + + "ConnectionOptionsVkontakte": ".types", + + "ConnectionOptionsWeibo": ".types", + + "ConnectionOptionsWindowsLive": ".types", + + "ConnectionOptionsWordpress": ".types", + + "ConnectionOptionsYahoo": ".types", + + "ConnectionOptionsYandex": ".types", + "ConnectionPasskeyAuthenticationMethod": ".types", + "ConnectionPasskeyChallengeUiEnum": ".types", + "ConnectionPasskeyOptions": ".types", + @@ -1390,22 +3246,382 @@ _dynamic_imports: typing.Dict[str, str] = { + "ConnectionPasswordDictionaryOptions": ".types", + "ConnectionPasswordHistoryOptions": ".types", + "ConnectionPasswordNoPersonalInfoOptions": ".types", + + "ConnectionPasswordOptions": ".types", + + "ConnectionPasswordOptionsComplexity": ".types", + + "ConnectionPasswordOptionsDictionary": ".types", + + "ConnectionPasswordOptionsHistory": ".types", + + "ConnectionPasswordOptionsProfileData": ".types", + "ConnectionPasswordPolicyEnum": ".types", + + "ConnectionPhoneOtpAuthenticationMethod": ".types", + + "ConnectionPingFederateBaseUrl": ".types", + + "ConnectionPingFederateBaseUrlPingFederate": ".types", + + "ConnectionProfile": ".types", + + "ConnectionProfileBitbucket": ".types", + + "ConnectionProfileConfig": ".types", + + "ConnectionProfileEnabledFeatures": ".types", + + "ConnectionProfileId": ".types", + + "ConnectionProfileName": ".types", + + "ConnectionProfileOrganization": ".types", + + "ConnectionProfileOrganizationAssignMembershipOnLoginEnum": ".types", + + "ConnectionProfileOrganizationShowAsButtonEnum": ".types", + + "ConnectionProfileStrategyOverride": ".types", + + "ConnectionProfileStrategyOverrides": ".types", + + "ConnectionProfileStrategyOverridesConnectionConfig": ".types", + + "ConnectionProfileStrategyOverridesEnabledFeatures": ".types", + + "ConnectionProfileTemplate": ".types", + + "ConnectionProfileTemplateItem": ".types", + "ConnectionPropertiesOptions": ".types", + + "ConnectionProtocolBindingEnumSaml": ".types", + + "ConnectionProtocolBindingSaml": ".types", + + "ConnectionProviderEnumSms": ".types", + + "ConnectionProviderSms": ".types", + + "ConnectionProvisioningTicketUrl": ".types", + + "ConnectionPurposes": ".types", + + "ConnectionRealmFallback": ".types", + + "ConnectionRealms": ".types", + + "ConnectionRecipientUrlSaml": ".types", + + "ConnectionRegistrationEndpoint": ".types", + + "ConnectionRequestObjectEncryptionAlgValuesSupported": ".types", + + "ConnectionRequestObjectEncryptionEncValuesSupported": ".types", + + "ConnectionRequestObjectSigningAlgValuesSupported": ".types", + + "ConnectionRequestParameterSupported": ".types", + + "ConnectionRequestTemplateSaml": ".types", + + "ConnectionRequestTokenUrloAuth1": ".types", + + "ConnectionRequestUriParameterSupported": ".types", + + "ConnectionRequireRequestUriRegistration": ".types", + + "ConnectionRequiresUsername": ".types", + + "ConnectionResponseCommon": ".types", + + "ConnectionResponseContentAd": ".types", + + "ConnectionResponseContentAdStrategy": ".types", + + "ConnectionResponseContentAdfs": ".types", + + "ConnectionResponseContentAdfsStrategy": ".types", + + "ConnectionResponseContentAmazon": ".types", + + "ConnectionResponseContentAmazonStrategy": ".types", + + "ConnectionResponseContentApple": ".types", + + "ConnectionResponseContentAppleStrategy": ".types", + + "ConnectionResponseContentAuth0": ".types", + + "ConnectionResponseContentAuth0Oidc": ".types", + + "ConnectionResponseContentAuth0OidcStrategy": ".types", + + "ConnectionResponseContentAuth0Strategy": ".types", + + "ConnectionResponseContentAzureAd": ".types", + + "ConnectionResponseContentAzureAdStrategy": ".types", + + "ConnectionResponseContentBaidu": ".types", + + "ConnectionResponseContentBaiduStrategy": ".types", + + "ConnectionResponseContentBitbucket": ".types", + + "ConnectionResponseContentBitbucketStrategy": ".types", + + "ConnectionResponseContentBitly": ".types", + + "ConnectionResponseContentBitlyStrategy": ".types", + + "ConnectionResponseContentBox": ".types", + + "ConnectionResponseContentBoxStrategy": ".types", + + "ConnectionResponseContentCustom": ".types", + + "ConnectionResponseContentCustomStrategy": ".types", + + "ConnectionResponseContentDaccount": ".types", + + "ConnectionResponseContentDaccountStrategy": ".types", + + "ConnectionResponseContentDropbox": ".types", + + "ConnectionResponseContentDropboxStrategy": ".types", + + "ConnectionResponseContentDwolla": ".types", + + "ConnectionResponseContentDwollaStrategy": ".types", + + "ConnectionResponseContentEmail": ".types", + + "ConnectionResponseContentEmailStrategy": ".types", + + "ConnectionResponseContentEvernote": ".types", + + "ConnectionResponseContentEvernoteSandbox": ".types", + + "ConnectionResponseContentEvernoteSandboxStrategy": ".types", + + "ConnectionResponseContentEvernoteStrategy": ".types", + + "ConnectionResponseContentExact": ".types", + + "ConnectionResponseContentExactStrategy": ".types", + + "ConnectionResponseContentFacebook": ".types", + + "ConnectionResponseContentFacebookStrategy": ".types", + + "ConnectionResponseContentFitbit": ".types", + + "ConnectionResponseContentFitbitStrategy": ".types", + + "ConnectionResponseContentGitHub": ".types", + + "ConnectionResponseContentGitHubStrategy": ".types", + + "ConnectionResponseContentGoogleApps": ".types", + + "ConnectionResponseContentGoogleAppsStrategy": ".types", + + "ConnectionResponseContentGoogleOAuth2": ".types", + + "ConnectionResponseContentGoogleOAuth2Strategy": ".types", + + "ConnectionResponseContentInstagram": ".types", + + "ConnectionResponseContentInstagramStrategy": ".types", + + "ConnectionResponseContentIp": ".types", + + "ConnectionResponseContentIpStrategy": ".types", + + "ConnectionResponseContentLine": ".types", + + "ConnectionResponseContentLineStrategy": ".types", + + "ConnectionResponseContentLinkedin": ".types", + + "ConnectionResponseContentLinkedinStrategy": ".types", + + "ConnectionResponseContentOAuth1": ".types", + + "ConnectionResponseContentOAuth1Strategy": ".types", + + "ConnectionResponseContentOAuth2": ".types", + + "ConnectionResponseContentOAuth2Strategy": ".types", + + "ConnectionResponseContentOffice365": ".types", + + "ConnectionResponseContentOffice365Strategy": ".types", + + "ConnectionResponseContentOidc": ".types", + + "ConnectionResponseContentOidcStrategy": ".types", + + "ConnectionResponseContentOkta": ".types", + + "ConnectionResponseContentOktaStrategy": ".types", + + "ConnectionResponseContentPaypal": ".types", + + "ConnectionResponseContentPaypalSandbox": ".types", + + "ConnectionResponseContentPaypalSandboxStrategy": ".types", + + "ConnectionResponseContentPaypalStrategy": ".types", + + "ConnectionResponseContentPingFederate": ".types", + + "ConnectionResponseContentPingFederateStrategy": ".types", + + "ConnectionResponseContentPlanningCenter": ".types", + + "ConnectionResponseContentPlanningCenterStrategy": ".types", + + "ConnectionResponseContentSalesforce": ".types", + + "ConnectionResponseContentSalesforceCommunity": ".types", + + "ConnectionResponseContentSalesforceCommunityStrategy": ".types", + + "ConnectionResponseContentSalesforceSandbox": ".types", + + "ConnectionResponseContentSalesforceSandboxStrategy": ".types", + + "ConnectionResponseContentSalesforceStrategy": ".types", + + "ConnectionResponseContentSaml": ".types", + + "ConnectionResponseContentSamlStrategy": ".types", + + "ConnectionResponseContentSharepoint": ".types", + + "ConnectionResponseContentSharepointStrategy": ".types", + + "ConnectionResponseContentShop": ".types", + + "ConnectionResponseContentShopStrategy": ".types", + + "ConnectionResponseContentShopify": ".types", + + "ConnectionResponseContentShopifyStrategy": ".types", + + "ConnectionResponseContentSms": ".types", + + "ConnectionResponseContentSmsStrategy": ".types", + + "ConnectionResponseContentSoundcloud": ".types", + + "ConnectionResponseContentSoundcloudStrategy": ".types", + + "ConnectionResponseContentThirtySevenSignals": ".types", + + "ConnectionResponseContentThirtySevenSignalsStrategy": ".types", + + "ConnectionResponseContentTwitter": ".types", + + "ConnectionResponseContentTwitterStrategy": ".types", + + "ConnectionResponseContentUntappd": ".types", + + "ConnectionResponseContentUntappdStrategy": ".types", + + "ConnectionResponseContentVkontakte": ".types", + + "ConnectionResponseContentVkontakteStrategy": ".types", + + "ConnectionResponseContentWeibo": ".types", + + "ConnectionResponseContentWeiboStrategy": ".types", + + "ConnectionResponseContentWindowsLive": ".types", + + "ConnectionResponseContentWindowsLiveStrategy": ".types", + + "ConnectionResponseContentWordpress": ".types", + + "ConnectionResponseContentWordpressStrategy": ".types", + + "ConnectionResponseContentYahoo": ".types", + + "ConnectionResponseContentYahooStrategy": ".types", + + "ConnectionResponseContentYandex": ".types", + + "ConnectionResponseContentYandexStrategy": ".types", + + "ConnectionResponseModesSupported": ".types", + + "ConnectionResponseTypesSupported": ".types", + + "ConnectionScopeAmazon": ".types", + + "ConnectionScopeArray": ".types", + + "ConnectionScopeArrayFacebook": ".types", + + "ConnectionScopeArrayWindowsLive": ".types", + + "ConnectionScopeAzureAd": ".types", + + "ConnectionScopeFacebook": ".types", + + "ConnectionScopeGoogleApps": ".types", + + "ConnectionScopeGoogleOAuth2": ".types", + + "ConnectionScopeItem": ".types", + + "ConnectionScopeItemGoogleApps": ".types", + + "ConnectionScopeLinkedin": ".types", + + "ConnectionScopeOAuth2": ".types", + + "ConnectionScopeOidc": ".types", + + "ConnectionScopePaypal": ".types", + + "ConnectionScopeSalesforce": ".types", + + "ConnectionScopesSupported": ".types", + + "ConnectionScriptsOAuth1": ".types", + + "ConnectionScriptsOAuth2": ".types", + + "ConnectionSendBackChannelNonce": ".types", + + "ConnectionServiceDocumentation": ".types", + "ConnectionSetUserRootAttributesEnum": ".types", + + "ConnectionSha1Thumbprint": ".types", + + "ConnectionShouldTrustEmailVerifiedConnectionEnum": ".types", + + "ConnectionShowAsButton": ".types", + + "ConnectionSignInEndpointAd": ".types", + + "ConnectionSignInEndpointAdfs": ".types", + + "ConnectionSignInEndpointSaml": ".types", + + "ConnectionSignOutEndpointSaml": ".types", + + "ConnectionSignSamlRequestSaml": ".types", + + "ConnectionSignatureAlgorithmEnumSaml": ".types", + + "ConnectionSignatureAlgorithmSaml": ".types", + + "ConnectionSignatureMethodOAuth1": ".types", + + "ConnectionSigningCertSaml": ".types", + + "ConnectionSigningCertificateDerSaml": ".types", + + "ConnectionSigningCertificatePemPingFederate": ".types", + + "ConnectionSigningCertificatePemSaml": ".types", + + "ConnectionSigningKeySaml": ".types", + + "ConnectionSignupBehaviorEnum": ".types", + "ConnectionStrategyEnum": ".types", + + "ConnectionStrategyVersionEnumLinkedin": ".types", + + "ConnectionStrategyVersionEnumWindowsLive": ".types", + + "ConnectionSubjectTypesSupported": ".types", + + "ConnectionTemplateSms": ".types", + + "ConnectionTemplateSyntaxEnumSms": ".types", + + "ConnectionTenantDomain": ".types", + + "ConnectionTenantDomainAd": ".types", + + "ConnectionTenantDomainAzureAdOne": ".types", + + "ConnectionTenantDomainGoogleApps": ".types", + + "ConnectionTenantDomainSaml": ".types", + + "ConnectionTenantIdAzureAd": ".types", + + "ConnectionThumbprints": ".types", + + "ConnectionThumbprintsAd": ".types", + + "ConnectionThumbprintsSaml": ".types", + + "ConnectionTokenEndpoint": ".types", + + "ConnectionTokenEndpointAuthMethodEnum": ".types", + + "ConnectionTokenEndpointAuthMethodsSupported": ".types", + + "ConnectionTokenEndpointAuthSigningAlgEnum": ".types", + + "ConnectionTokenEndpointAuthSigningAlgValuesSupported": ".types", + + "ConnectionTokenEndpointJwtcaAudFormatEnumOidc": ".types", + + "ConnectionTotpEmail": ".types", + + "ConnectionTotpLengthEmail": ".types", + + "ConnectionTotpLengthPasswordless": ".types", + + "ConnectionTotpLengthSms": ".types", + + "ConnectionTotpSms": ".types", + + "ConnectionTotpTimeStepEmail": ".types", + + "ConnectionTotpTimeStepPasswordless": ".types", + + "ConnectionTotpTimeStepSms": ".types", + + "ConnectionTwilioSidSms": ".types", + + "ConnectionTwilioTokenSms": ".types", + + "ConnectionTypeEnumOidc": ".types", + + "ConnectionTypeEnumOkta": ".types", + + "ConnectionUiLocalesSupported": ".types", + + "ConnectionUpstreamAdditionalProperties": ".types", + + "ConnectionUpstreamAlias": ".types", + + "ConnectionUpstreamAliasEnum": ".types", + "ConnectionUpstreamParams": ".types", + + "ConnectionUpstreamParamsFacebook": ".types", + + "ConnectionUpstreamValue": ".types", + + "ConnectionUseCommonEndpointAzureAd": ".types", + + "ConnectionUserAuthorizationUrloAuth1": ".types", + + "ConnectionUserIdAttributeSaml": ".types", + + "ConnectionUseridAttributeAzureAd": ".types", + + "ConnectionUseridAttributeEnumAzureAd": ".types", + + "ConnectionUserinfoEncryptionAlgValuesSupported": ".types", + + "ConnectionUserinfoEncryptionEncValuesSupported": ".types", + + "ConnectionUserinfoEndpoint": ".types", + + "ConnectionUserinfoSigningAlgValuesSupported": ".types", + "ConnectionUsernameValidationOptions": ".types", + "ConnectionValidationOptions": ".types", + + "ConnectionWaadProtocol": ".types", + + "ConnectionWaadProtocolEnumAzureAd": ".types", + "ConnectionsMetadata": ".types", + "ContentTooLargeError": ".errors", + + "CreateActionModuleResponseContent": ".types", + + "CreateActionModuleVersionResponseContent": ".types", + "CreateActionResponseContent": ".types", + "CreateBrandingPhoneProviderResponseContent": ".types", + "CreateBrandingThemeResponseContent": ".types", + + "CreateClientAuthenticationMethodSelfSignedTlsClientAuth": ".types", + + "CreateClientAuthenticationMethodSelfSignedTlsClientAuthCredentials": ".types", + "CreateClientGrantResponseContent": ".types", + "CreateClientResponseContent": ".types", + + "CreateConnectionCommon": ".types", + + "CreateConnectionProfileResponseContent": ".types", + + "CreateConnectionRequestContentAd": ".types", + + "CreateConnectionRequestContentAdStrategy": ".types", + + "CreateConnectionRequestContentAdfs": ".types", + + "CreateConnectionRequestContentAdfsStrategy": ".types", + + "CreateConnectionRequestContentAmazon": ".types", + + "CreateConnectionRequestContentAmazonStrategy": ".types", + + "CreateConnectionRequestContentApple": ".types", + + "CreateConnectionRequestContentAppleStrategy": ".types", + + "CreateConnectionRequestContentAuth0": ".types", + + "CreateConnectionRequestContentAuth0Oidc": ".types", + + "CreateConnectionRequestContentAuth0OidcStrategy": ".types", + + "CreateConnectionRequestContentAuth0Strategy": ".types", + + "CreateConnectionRequestContentAzureAd": ".types", + + "CreateConnectionRequestContentAzureAdStrategy": ".types", + + "CreateConnectionRequestContentBaidu": ".types", + + "CreateConnectionRequestContentBaiduStrategy": ".types", + + "CreateConnectionRequestContentBitbucket": ".types", + + "CreateConnectionRequestContentBitbucketStrategy": ".types", + + "CreateConnectionRequestContentBitly": ".types", + + "CreateConnectionRequestContentBitlyStrategy": ".types", + + "CreateConnectionRequestContentBox": ".types", + + "CreateConnectionRequestContentBoxStrategy": ".types", + + "CreateConnectionRequestContentCustom": ".types", + + "CreateConnectionRequestContentCustomStrategy": ".types", + + "CreateConnectionRequestContentDaccount": ".types", + + "CreateConnectionRequestContentDaccountStrategy": ".types", + + "CreateConnectionRequestContentDropbox": ".types", + + "CreateConnectionRequestContentDropboxStrategy": ".types", + + "CreateConnectionRequestContentDwolla": ".types", + + "CreateConnectionRequestContentDwollaStrategy": ".types", + + "CreateConnectionRequestContentEmail": ".types", + + "CreateConnectionRequestContentEmailStrategy": ".types", + + "CreateConnectionRequestContentEvernote": ".types", + + "CreateConnectionRequestContentEvernoteSandbox": ".types", + + "CreateConnectionRequestContentEvernoteSandboxStrategy": ".types", + + "CreateConnectionRequestContentEvernoteStrategy": ".types", + + "CreateConnectionRequestContentExact": ".types", + + "CreateConnectionRequestContentExactStrategy": ".types", + + "CreateConnectionRequestContentFacebook": ".types", + + "CreateConnectionRequestContentFacebookStrategy": ".types", + + "CreateConnectionRequestContentFitbit": ".types", + + "CreateConnectionRequestContentFitbitStrategy": ".types", + + "CreateConnectionRequestContentGitHub": ".types", + + "CreateConnectionRequestContentGitHubStrategy": ".types", + + "CreateConnectionRequestContentGoogleApps": ".types", + + "CreateConnectionRequestContentGoogleAppsStrategy": ".types", + + "CreateConnectionRequestContentGoogleOAuth2": ".types", + + "CreateConnectionRequestContentGoogleOAuth2Strategy": ".types", + + "CreateConnectionRequestContentInstagram": ".types", + + "CreateConnectionRequestContentInstagramStrategy": ".types", + + "CreateConnectionRequestContentIp": ".types", + + "CreateConnectionRequestContentIpStrategy": ".types", + + "CreateConnectionRequestContentLine": ".types", + + "CreateConnectionRequestContentLineStrategy": ".types", + + "CreateConnectionRequestContentLinkedin": ".types", + + "CreateConnectionRequestContentLinkedinStrategy": ".types", + + "CreateConnectionRequestContentOAuth1": ".types", + + "CreateConnectionRequestContentOAuth1Strategy": ".types", + + "CreateConnectionRequestContentOAuth2": ".types", + + "CreateConnectionRequestContentOAuth2Strategy": ".types", + + "CreateConnectionRequestContentOffice365": ".types", + + "CreateConnectionRequestContentOffice365Strategy": ".types", + + "CreateConnectionRequestContentOidc": ".types", + + "CreateConnectionRequestContentOidcStrategy": ".types", + + "CreateConnectionRequestContentOkta": ".types", + + "CreateConnectionRequestContentOktaStrategy": ".types", + + "CreateConnectionRequestContentPaypal": ".types", + + "CreateConnectionRequestContentPaypalSandbox": ".types", + + "CreateConnectionRequestContentPaypalSandboxStrategy": ".types", + + "CreateConnectionRequestContentPaypalStrategy": ".types", + + "CreateConnectionRequestContentPingFederate": ".types", + + "CreateConnectionRequestContentPingFederateStrategy": ".types", + + "CreateConnectionRequestContentPlanningCenter": ".types", + + "CreateConnectionRequestContentPlanningCenterStrategy": ".types", + + "CreateConnectionRequestContentSalesforce": ".types", + + "CreateConnectionRequestContentSalesforceCommunity": ".types", + + "CreateConnectionRequestContentSalesforceCommunityStrategy": ".types", + + "CreateConnectionRequestContentSalesforceSandbox": ".types", + + "CreateConnectionRequestContentSalesforceSandboxStrategy": ".types", + + "CreateConnectionRequestContentSalesforceStrategy": ".types", + + "CreateConnectionRequestContentSaml": ".types", + + "CreateConnectionRequestContentSamlStrategy": ".types", + + "CreateConnectionRequestContentSharepoint": ".types", + + "CreateConnectionRequestContentSharepointStrategy": ".types", + + "CreateConnectionRequestContentShop": ".types", + + "CreateConnectionRequestContentShopStrategy": ".types", + + "CreateConnectionRequestContentShopify": ".types", + + "CreateConnectionRequestContentShopifyStrategy": ".types", + + "CreateConnectionRequestContentSms": ".types", + + "CreateConnectionRequestContentSmsStrategy": ".types", + + "CreateConnectionRequestContentSoundcloud": ".types", + + "CreateConnectionRequestContentSoundcloudStrategy": ".types", + + "CreateConnectionRequestContentThirtySevenSignals": ".types", + + "CreateConnectionRequestContentThirtySevenSignalsStrategy": ".types", + + "CreateConnectionRequestContentTwitter": ".types", + + "CreateConnectionRequestContentTwitterStrategy": ".types", + + "CreateConnectionRequestContentUntappd": ".types", + + "CreateConnectionRequestContentUntappdStrategy": ".types", + + "CreateConnectionRequestContentVkontakte": ".types", + + "CreateConnectionRequestContentVkontakteStrategy": ".types", + + "CreateConnectionRequestContentWeibo": ".types", + + "CreateConnectionRequestContentWeiboStrategy": ".types", + + "CreateConnectionRequestContentWindowsLive": ".types", + + "CreateConnectionRequestContentWindowsLiveStrategy": ".types", + + "CreateConnectionRequestContentWordpress": ".types", + + "CreateConnectionRequestContentWordpressStrategy": ".types", + + "CreateConnectionRequestContentYahoo": ".types", + + "CreateConnectionRequestContentYahooStrategy": ".types", + + "CreateConnectionRequestContentYandex": ".types", + + "CreateConnectionRequestContentYandexStrategy": ".types", + "CreateConnectionResponseContent": ".types", + "CreateCustomDomainResponseContent": ".types", + + "CreateDirectoryProvisioningRequestContent": ".types", + + "CreateDirectoryProvisioningResponseContent": ".types", + + "CreateDirectorySynchronizationResponseContent": ".types", + "CreateEmailProviderResponseContent": ".types", + "CreateEmailTemplateResponseContent": ".types", + "CreateEncryptionKeyPublicWrappingResponseContent": ".types", + @@ -1420,6 +3636,79 @@ _dynamic_imports: typing.Dict[str, str] = { + "CreateExportUsersFields": ".types", + "CreateExportUsersResponseContent": ".types", + "CreateFlowResponseContent": ".types", + + "CreateFlowsVaultConnectionActivecampaign": ".types", + + "CreateFlowsVaultConnectionActivecampaignApiKey": ".types", + + "CreateFlowsVaultConnectionActivecampaignUninitialized": ".types", + + "CreateFlowsVaultConnectionAirtable": ".types", + + "CreateFlowsVaultConnectionAirtableApiKey": ".types", + + "CreateFlowsVaultConnectionAirtableUninitialized": ".types", + + "CreateFlowsVaultConnectionAuth0": ".types", + + "CreateFlowsVaultConnectionAuth0OauthApp": ".types", + + "CreateFlowsVaultConnectionAuth0Uninitialized": ".types", + + "CreateFlowsVaultConnectionBigquery": ".types", + + "CreateFlowsVaultConnectionBigqueryJwt": ".types", + + "CreateFlowsVaultConnectionBigqueryUninitialized": ".types", + + "CreateFlowsVaultConnectionClearbit": ".types", + + "CreateFlowsVaultConnectionClearbitApiKey": ".types", + + "CreateFlowsVaultConnectionClearbitUninitialized": ".types", + + "CreateFlowsVaultConnectionDocusign": ".types", + + "CreateFlowsVaultConnectionDocusignOauthCode": ".types", + + "CreateFlowsVaultConnectionDocusignUninitialized": ".types", + + "CreateFlowsVaultConnectionGoogleSheets": ".types", + + "CreateFlowsVaultConnectionGoogleSheetsOauthCode": ".types", + + "CreateFlowsVaultConnectionGoogleSheetsUninitialized": ".types", + + "CreateFlowsVaultConnectionHttp": ".types", + + "CreateFlowsVaultConnectionHttpApiKey": ".types", + + "CreateFlowsVaultConnectionHttpBasicAuth": ".types", + + "CreateFlowsVaultConnectionHttpBearer": ".types", + + "CreateFlowsVaultConnectionHttpOauthClientCredentials": ".types", + + "CreateFlowsVaultConnectionHttpUninitialized": ".types", + + "CreateFlowsVaultConnectionHubspot": ".types", + + "CreateFlowsVaultConnectionHubspotApiKey": ".types", + + "CreateFlowsVaultConnectionHubspotOauthCode": ".types", + + "CreateFlowsVaultConnectionHubspotUninitialized": ".types", + + "CreateFlowsVaultConnectionJwt": ".types", + + "CreateFlowsVaultConnectionJwtJwt": ".types", + + "CreateFlowsVaultConnectionJwtUninitialized": ".types", + + "CreateFlowsVaultConnectionMailchimp": ".types", + + "CreateFlowsVaultConnectionMailchimpApiKey": ".types", + + "CreateFlowsVaultConnectionMailchimpOauthCode": ".types", + + "CreateFlowsVaultConnectionMailchimpUninitialized": ".types", + + "CreateFlowsVaultConnectionMailjet": ".types", + + "CreateFlowsVaultConnectionMailjetApiKey": ".types", + + "CreateFlowsVaultConnectionMailjetUninitialized": ".types", + + "CreateFlowsVaultConnectionPipedrive": ".types", + + "CreateFlowsVaultConnectionPipedriveOauthCode": ".types", + + "CreateFlowsVaultConnectionPipedriveToken": ".types", + + "CreateFlowsVaultConnectionPipedriveUninitialized": ".types", + + "CreateFlowsVaultConnectionRequestContent": ".types", + + "CreateFlowsVaultConnectionResponseContent": ".types", + + "CreateFlowsVaultConnectionSalesforce": ".types", + + "CreateFlowsVaultConnectionSalesforceOauthCode": ".types", + + "CreateFlowsVaultConnectionSalesforceUninitialized": ".types", + + "CreateFlowsVaultConnectionSendgrid": ".types", + + "CreateFlowsVaultConnectionSendgridApiKey": ".types", + + "CreateFlowsVaultConnectionSendgridUninitialized": ".types", + + "CreateFlowsVaultConnectionSlack": ".types", + + "CreateFlowsVaultConnectionSlackOauthCode": ".types", + + "CreateFlowsVaultConnectionSlackUninitialized": ".types", + + "CreateFlowsVaultConnectionSlackWebhook": ".types", + + "CreateFlowsVaultConnectionStripe": ".types", + + "CreateFlowsVaultConnectionStripeKeyPair": ".types", + + "CreateFlowsVaultConnectionStripeOauthCode": ".types", + + "CreateFlowsVaultConnectionStripeUninitialized": ".types", + + "CreateFlowsVaultConnectionTelegram": ".types", + + "CreateFlowsVaultConnectionTelegramToken": ".types", + + "CreateFlowsVaultConnectionTelegramUninitialized": ".types", + + "CreateFlowsVaultConnectionTwilio": ".types", + + "CreateFlowsVaultConnectionTwilioApiKey": ".types", + + "CreateFlowsVaultConnectionTwilioUninitialized": ".types", + + "CreateFlowsVaultConnectionWhatsapp": ".types", + + "CreateFlowsVaultConnectionWhatsappToken": ".types", + + "CreateFlowsVaultConnectionWhatsappUninitialized": ".types", + + "CreateFlowsVaultConnectionZapier": ".types", + + "CreateFlowsVaultConnectionZapierUninitialized": ".types", + + "CreateFlowsVaultConnectionZapierWebhook": ".types", + "CreateFormResponseContent": ".types", + "CreateGuardianEnrollmentTicketResponseContent": ".types", + "CreateHookResponseContent": ".types", + @@ -1435,6 +3724,8 @@ _dynamic_imports: typing.Dict[str, str] = { + "CreateLogStreamSegmentRequestBody": ".types", + "CreateLogStreamSplunkRequestBody": ".types", + "CreateLogStreamSumoRequestBody": ".types", + + "CreateOrganizationAllConnectionResponseContent": ".types", + + "CreateOrganizationDiscoveryDomainResponseContent": ".types", + "CreateOrganizationInvitationResponseContent": ".types", + "CreateOrganizationResponseContent": ".types", + "CreatePhoneProviderSendTestResponseContent": ".types", + @@ -1451,6 +3742,7 @@ _dynamic_imports: typing.Dict[str, str] = { + "CreateSelfServiceProfileSsoTicketResponseContent": ".types", + "CreateTokenExchangeProfileResponseContent": ".types", + "CreateTokenQuota": ".types", + + "CreateUserAttributeProfileResponseContent": ".types", + "CreateUserAuthenticationMethodResponseContent": ".types", + "CreateUserResponseContent": ".types", + "CreateVerifiableCredentialTemplateResponseContent": ".types", + @@ -1458,11 +3750,12 @@ _dynamic_imports: typing.Dict[str, str] = { + "CreatedAuthenticationMethodTypeEnum": ".types", "CreatedUserAuthenticationMethodTypeEnum": ".types", "CredentialId": ".types", + - "CustomDomainHeader": ".management_client", "CustomDomain": ".types", + "CustomDomainHeader": ".management_client", "CustomDomainCustomClientIpHeader": ".types", "CustomDomainCustomClientIpHeaderEnum": ".types", "CustomDomainProvisioningTypeEnum": ".types", - @@ -5002,6 +5007,7 @@ _dynamic_imports: typing.Dict[str, str] = { + + "CustomDomainStatusFilterEnum": ".types", + "CustomDomainTlsPolicyEnum": ".types", + "CustomDomainTypeEnum": ".types", + "CustomDomainVerificationMethodEnum": ".types", + @@ -1476,20 +3769,29 @@ _dynamic_imports: typing.Dict[str, str] = { + "CustomSigningKeyTypeEnum": ".types", + "CustomSigningKeyUseEnum": ".types", + "DailyStats": ".types", + + "DefaultAioHttpClient": "._default_clients", + + "DefaultAsyncHttpxClient": "._default_clients", + + "DefaultMethodEmailIdentifierEnum": ".types", + "DefaultTokenQuota": ".types", + "DeleteHookSecretRequestContent": ".types", + "DeleteUserIdentityResponseContent": ".types", + "DeleteUserIdentityResponseContentItem": ".types", + "DeployActionResponseContent": ".types", + - "DeployActionVersionRequestBodyParams": ".types", + "DeployActionVersionRequestContent": ".types", + "DeployActionVersionResponseContent": ".types", + "DeviceCredential": ".types", + "DeviceCredentialPublicKeyTypeEnum": ".types", + "DeviceCredentialTypeEnum": ".types", + + "DirectoryProvisioning": ".types", + + "DirectoryProvisioningMappingItem": ".types", + + "DomainCertificate": ".types", + + "DomainCertificateAuthorityEnum": ".types", + + "DomainCertificateStatusEnum": ".types", + + "DomainMetadata": ".types", + "DomainVerification": ".types", + "DomainVerificationMethod": ".types", + "DomainVerificationMethodNameEnum": ".types", + + "DomainVerificationStatusEnum": ".types", + "EmailAttribute": ".types", + "EmailMailgunRegionEnum": ".types", + "EmailProviderCredentials": ".types", + @@ -1507,6 +3809,7 @@ _dynamic_imports: typing.Dict[str, str] = { + "EmailSparkPostRegionEnum": ".types", + "EmailSpecificProviderSettingsWithAdditionalProperties": ".types", + "EmailTemplateNameEnum": ".types", + + "EnabledFeaturesEnum": ".types", + "EncryptionKey": ".types", + "EncryptionKeyPublicWrappingAlgorithm": ".types", + "EncryptionKeyState": ".types", + @@ -1515,8 +3818,336 @@ _dynamic_imports: typing.Dict[str, str] = { + "EventStreamActionDestination": ".types", + "EventStreamActionDestinationTypeEnum": ".types", + "EventStreamActionResponseContent": ".types", + - "EventStreamBucketInterval": ".types", + "EventStreamCloudEvent": ".types", + + "EventStreamCloudEventA0PurposeEnum": ".types", + + "EventStreamCloudEventContext": ".types", + + "EventStreamCloudEventContextClient": ".types", + + "EventStreamCloudEventContextClientMetadata": ".types", + + "EventStreamCloudEventContextConnection": ".types", + + "EventStreamCloudEventContextRequest": ".types", + + "EventStreamCloudEventContextRequestGeo": ".types", + + "EventStreamCloudEventContextTenant": ".types", + + "EventStreamCloudEventErrorCodeEnum": ".types", + + "EventStreamCloudEventErrorDetail": ".types", + + "EventStreamCloudEventErrorMessage": ".types", + + "EventStreamCloudEventErrorMessageTypeEnum": ".types", + + "EventStreamCloudEventGroupCreated": ".types", + + "EventStreamCloudEventGroupCreatedCloudEvent": ".types", + + "EventStreamCloudEventGroupCreatedCloudEventTypeEnum": ".types", + + "EventStreamCloudEventGroupCreatedData": ".types", + + "EventStreamCloudEventGroupCreatedObject": ".types", + + "EventStreamCloudEventGroupCreatedObject0": ".types", + + "EventStreamCloudEventGroupCreatedObject0TypeEnum": ".types", + + "EventStreamCloudEventGroupCreatedObject1": ".types", + + "EventStreamCloudEventGroupCreatedObject1TypeEnum": ".types", + + "EventStreamCloudEventGroupCreatedObject2": ".types", + + "EventStreamCloudEventGroupCreatedObject2TypeEnum": ".types", + + "EventStreamCloudEventGroupCreatedTypeEnum": ".types", + + "EventStreamCloudEventGroupDeleted": ".types", + + "EventStreamCloudEventGroupDeletedCloudEvent": ".types", + + "EventStreamCloudEventGroupDeletedCloudEventTypeEnum": ".types", + + "EventStreamCloudEventGroupDeletedData": ".types", + + "EventStreamCloudEventGroupDeletedObject": ".types", + + "EventStreamCloudEventGroupDeletedObject0": ".types", + + "EventStreamCloudEventGroupDeletedObject0TypeEnum": ".types", + + "EventStreamCloudEventGroupDeletedObject1": ".types", + + "EventStreamCloudEventGroupDeletedObject1TypeEnum": ".types", + + "EventStreamCloudEventGroupDeletedObject2": ".types", + + "EventStreamCloudEventGroupDeletedObject2TypeEnum": ".types", + + "EventStreamCloudEventGroupDeletedTypeEnum": ".types", + + "EventStreamCloudEventGroupMemberAdded": ".types", + + "EventStreamCloudEventGroupMemberAddedCloudEvent": ".types", + + "EventStreamCloudEventGroupMemberAddedCloudEventTypeEnum": ".types", + + "EventStreamCloudEventGroupMemberAddedData": ".types", + + "EventStreamCloudEventGroupMemberAddedObject": ".types", + + "EventStreamCloudEventGroupMemberAddedObjectGroup": ".types", + + "EventStreamCloudEventGroupMemberAddedObjectGroup0": ".types", + + "EventStreamCloudEventGroupMemberAddedObjectGroup0TypeEnum": ".types", + + "EventStreamCloudEventGroupMemberAddedObjectGroup1": ".types", + + "EventStreamCloudEventGroupMemberAddedObjectGroup1TypeEnum": ".types", + + "EventStreamCloudEventGroupMemberAddedObjectGroup2": ".types", + + "EventStreamCloudEventGroupMemberAddedObjectGroup2TypeEnum": ".types", + + "EventStreamCloudEventGroupMemberAddedObjectMember": ".types", + + "EventStreamCloudEventGroupMemberAddedObjectMember0": ".types", + + "EventStreamCloudEventGroupMemberAddedObjectMember0MemberTypeEnum": ".types", + + "EventStreamCloudEventGroupMemberAddedObjectMember1": ".types", + + "EventStreamCloudEventGroupMemberAddedObjectMember1MemberTypeEnum": ".types", + + "EventStreamCloudEventGroupMemberAddedTypeEnum": ".types", + + "EventStreamCloudEventGroupMemberDeleted": ".types", + + "EventStreamCloudEventGroupMemberDeletedCloudEvent": ".types", + + "EventStreamCloudEventGroupMemberDeletedCloudEventTypeEnum": ".types", + + "EventStreamCloudEventGroupMemberDeletedData": ".types", + + "EventStreamCloudEventGroupMemberDeletedObject": ".types", + + "EventStreamCloudEventGroupMemberDeletedObjectGroup": ".types", + + "EventStreamCloudEventGroupMemberDeletedObjectGroup0": ".types", + + "EventStreamCloudEventGroupMemberDeletedObjectGroup0TypeEnum": ".types", + + "EventStreamCloudEventGroupMemberDeletedObjectGroup1": ".types", + + "EventStreamCloudEventGroupMemberDeletedObjectGroup1TypeEnum": ".types", + + "EventStreamCloudEventGroupMemberDeletedObjectGroup2": ".types", + + "EventStreamCloudEventGroupMemberDeletedObjectGroup2TypeEnum": ".types", + + "EventStreamCloudEventGroupMemberDeletedObjectMember": ".types", + + "EventStreamCloudEventGroupMemberDeletedObjectMember0": ".types", + + "EventStreamCloudEventGroupMemberDeletedObjectMember0MemberTypeEnum": ".types", + + "EventStreamCloudEventGroupMemberDeletedObjectMember1": ".types", + + "EventStreamCloudEventGroupMemberDeletedObjectMember1MemberTypeEnum": ".types", + + "EventStreamCloudEventGroupMemberDeletedTypeEnum": ".types", + + "EventStreamCloudEventGroupRoleAssigned": ".types", + + "EventStreamCloudEventGroupRoleAssignedCloudEvent": ".types", + + "EventStreamCloudEventGroupRoleAssignedCloudEventTypeEnum": ".types", + + "EventStreamCloudEventGroupRoleAssignedData": ".types", + + "EventStreamCloudEventGroupRoleAssignedObject": ".types", + + "EventStreamCloudEventGroupRoleAssignedObjectGroup": ".types", + + "EventStreamCloudEventGroupRoleAssignedObjectGroup0": ".types", + + "EventStreamCloudEventGroupRoleAssignedObjectGroup0TypeEnum": ".types", + + "EventStreamCloudEventGroupRoleAssignedObjectGroup1": ".types", + + "EventStreamCloudEventGroupRoleAssignedObjectGroup1TypeEnum": ".types", + + "EventStreamCloudEventGroupRoleAssignedObjectGroup2": ".types", + + "EventStreamCloudEventGroupRoleAssignedObjectGroup2TypeEnum": ".types", + + "EventStreamCloudEventGroupRoleAssignedObjectRole": ".types", + + "EventStreamCloudEventGroupRoleAssignedTypeEnum": ".types", + + "EventStreamCloudEventGroupRoleDeleted": ".types", + + "EventStreamCloudEventGroupRoleDeletedCloudEvent": ".types", + + "EventStreamCloudEventGroupRoleDeletedCloudEventTypeEnum": ".types", + + "EventStreamCloudEventGroupRoleDeletedData": ".types", + + "EventStreamCloudEventGroupRoleDeletedObject": ".types", + + "EventStreamCloudEventGroupRoleDeletedObjectGroup": ".types", + + "EventStreamCloudEventGroupRoleDeletedObjectGroup0": ".types", + + "EventStreamCloudEventGroupRoleDeletedObjectGroup0TypeEnum": ".types", + + "EventStreamCloudEventGroupRoleDeletedObjectGroup1": ".types", + + "EventStreamCloudEventGroupRoleDeletedObjectGroup1TypeEnum": ".types", + + "EventStreamCloudEventGroupRoleDeletedObjectGroup2": ".types", + + "EventStreamCloudEventGroupRoleDeletedObjectGroup2TypeEnum": ".types", + + "EventStreamCloudEventGroupRoleDeletedObjectRole": ".types", + + "EventStreamCloudEventGroupRoleDeletedTypeEnum": ".types", + + "EventStreamCloudEventGroupUpdated": ".types", + + "EventStreamCloudEventGroupUpdatedCloudEvent": ".types", + + "EventStreamCloudEventGroupUpdatedCloudEventTypeEnum": ".types", + + "EventStreamCloudEventGroupUpdatedData": ".types", + + "EventStreamCloudEventGroupUpdatedObject": ".types", + + "EventStreamCloudEventGroupUpdatedObject0": ".types", + + "EventStreamCloudEventGroupUpdatedObject0TypeEnum": ".types", + + "EventStreamCloudEventGroupUpdatedObject1": ".types", + + "EventStreamCloudEventGroupUpdatedObject1TypeEnum": ".types", + + "EventStreamCloudEventGroupUpdatedObject2": ".types", + + "EventStreamCloudEventGroupUpdatedObject2TypeEnum": ".types", + + "EventStreamCloudEventGroupUpdatedTypeEnum": ".types", + + "EventStreamCloudEventOffsetOnlyMessage": ".types", + + "EventStreamCloudEventOffsetOnlyMessageTypeEnum": ".types", + + "EventStreamCloudEventOrgConnectionAdded": ".types", + + "EventStreamCloudEventOrgConnectionAddedCloudEvent": ".types", + + "EventStreamCloudEventOrgConnectionAddedCloudEventTypeEnum": ".types", + + "EventStreamCloudEventOrgConnectionAddedData": ".types", + + "EventStreamCloudEventOrgConnectionAddedObject": ".types", + + "EventStreamCloudEventOrgConnectionAddedObjectConnection": ".types", + + "EventStreamCloudEventOrgConnectionAddedObjectOrganization": ".types", + + "EventStreamCloudEventOrgConnectionAddedTypeEnum": ".types", + + "EventStreamCloudEventOrgConnectionRemoved": ".types", + + "EventStreamCloudEventOrgConnectionRemovedCloudEvent": ".types", + + "EventStreamCloudEventOrgConnectionRemovedCloudEventTypeEnum": ".types", + + "EventStreamCloudEventOrgConnectionRemovedData": ".types", + + "EventStreamCloudEventOrgConnectionRemovedObject": ".types", + + "EventStreamCloudEventOrgConnectionRemovedObjectConnection": ".types", + + "EventStreamCloudEventOrgConnectionRemovedObjectOrganization": ".types", + + "EventStreamCloudEventOrgConnectionRemovedTypeEnum": ".types", + + "EventStreamCloudEventOrgConnectionUpdated": ".types", + + "EventStreamCloudEventOrgConnectionUpdatedCloudEvent": ".types", + + "EventStreamCloudEventOrgConnectionUpdatedCloudEventTypeEnum": ".types", + + "EventStreamCloudEventOrgConnectionUpdatedData": ".types", + + "EventStreamCloudEventOrgConnectionUpdatedObject": ".types", + + "EventStreamCloudEventOrgConnectionUpdatedObjectConnection": ".types", + + "EventStreamCloudEventOrgConnectionUpdatedObjectOrganization": ".types", + + "EventStreamCloudEventOrgConnectionUpdatedTypeEnum": ".types", + + "EventStreamCloudEventOrgCreated": ".types", + + "EventStreamCloudEventOrgCreatedCloudEvent": ".types", + + "EventStreamCloudEventOrgCreatedCloudEventTypeEnum": ".types", + + "EventStreamCloudEventOrgCreatedData": ".types", + + "EventStreamCloudEventOrgCreatedObject": ".types", + + "EventStreamCloudEventOrgCreatedObjectBranding": ".types", + + "EventStreamCloudEventOrgCreatedObjectBrandingColors": ".types", + + "EventStreamCloudEventOrgCreatedObjectMetadata": ".types", + + "EventStreamCloudEventOrgCreatedTypeEnum": ".types", + + "EventStreamCloudEventOrgDeleted": ".types", + + "EventStreamCloudEventOrgDeletedCloudEvent": ".types", + + "EventStreamCloudEventOrgDeletedCloudEventTypeEnum": ".types", + + "EventStreamCloudEventOrgDeletedData": ".types", + + "EventStreamCloudEventOrgDeletedObject": ".types", + + "EventStreamCloudEventOrgDeletedObjectMetadata": ".types", + + "EventStreamCloudEventOrgDeletedTypeEnum": ".types", + + "EventStreamCloudEventOrgGroupRoleAssigned": ".types", + + "EventStreamCloudEventOrgGroupRoleAssignedCloudEvent": ".types", + + "EventStreamCloudEventOrgGroupRoleAssignedCloudEventTypeEnum": ".types", + + "EventStreamCloudEventOrgGroupRoleAssignedData": ".types", + + "EventStreamCloudEventOrgGroupRoleAssignedObject": ".types", + + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup": ".types", + + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup0": ".types", + + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup0TypeEnum": ".types", + + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup1": ".types", + + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup1TypeEnum": ".types", + + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup2": ".types", + + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup2TypeEnum": ".types", + + "EventStreamCloudEventOrgGroupRoleAssignedObjectOrganization": ".types", + + "EventStreamCloudEventOrgGroupRoleAssignedObjectRole": ".types", + + "EventStreamCloudEventOrgGroupRoleAssignedTypeEnum": ".types", + + "EventStreamCloudEventOrgGroupRoleDeleted": ".types", + + "EventStreamCloudEventOrgGroupRoleDeletedCloudEvent": ".types", + + "EventStreamCloudEventOrgGroupRoleDeletedCloudEventTypeEnum": ".types", + + "EventStreamCloudEventOrgGroupRoleDeletedData": ".types", + + "EventStreamCloudEventOrgGroupRoleDeletedObject": ".types", + + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup": ".types", + + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup0": ".types", + + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup0TypeEnum": ".types", + + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup1": ".types", + + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup1TypeEnum": ".types", + + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup2": ".types", + + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup2TypeEnum": ".types", + + "EventStreamCloudEventOrgGroupRoleDeletedObjectOrganization": ".types", + + "EventStreamCloudEventOrgGroupRoleDeletedObjectRole": ".types", + + "EventStreamCloudEventOrgGroupRoleDeletedTypeEnum": ".types", + + "EventStreamCloudEventOrgMemberAdded": ".types", + + "EventStreamCloudEventOrgMemberAddedCloudEvent": ".types", + + "EventStreamCloudEventOrgMemberAddedCloudEventTypeEnum": ".types", + + "EventStreamCloudEventOrgMemberAddedData": ".types", + + "EventStreamCloudEventOrgMemberAddedObject": ".types", + + "EventStreamCloudEventOrgMemberAddedObjectOrganization": ".types", + + "EventStreamCloudEventOrgMemberAddedObjectUser": ".types", + + "EventStreamCloudEventOrgMemberAddedTypeEnum": ".types", + + "EventStreamCloudEventOrgMemberDeleted": ".types", + + "EventStreamCloudEventOrgMemberDeletedCloudEvent": ".types", + + "EventStreamCloudEventOrgMemberDeletedCloudEventTypeEnum": ".types", + + "EventStreamCloudEventOrgMemberDeletedData": ".types", + + "EventStreamCloudEventOrgMemberDeletedObject": ".types", + + "EventStreamCloudEventOrgMemberDeletedObjectOrganization": ".types", + + "EventStreamCloudEventOrgMemberDeletedObjectUser": ".types", + + "EventStreamCloudEventOrgMemberDeletedTypeEnum": ".types", + + "EventStreamCloudEventOrgMemberRoleAssigned": ".types", + + "EventStreamCloudEventOrgMemberRoleAssignedCloudEvent": ".types", + + "EventStreamCloudEventOrgMemberRoleAssignedCloudEventTypeEnum": ".types", + + "EventStreamCloudEventOrgMemberRoleAssignedData": ".types", + + "EventStreamCloudEventOrgMemberRoleAssignedObject": ".types", + + "EventStreamCloudEventOrgMemberRoleAssignedObjectOrganization": ".types", + + "EventStreamCloudEventOrgMemberRoleAssignedObjectRole": ".types", + + "EventStreamCloudEventOrgMemberRoleAssignedObjectUser": ".types", + + "EventStreamCloudEventOrgMemberRoleAssignedTypeEnum": ".types", + + "EventStreamCloudEventOrgMemberRoleDeleted": ".types", + + "EventStreamCloudEventOrgMemberRoleDeletedCloudEvent": ".types", + + "EventStreamCloudEventOrgMemberRoleDeletedCloudEventTypeEnum": ".types", + + "EventStreamCloudEventOrgMemberRoleDeletedData": ".types", + + "EventStreamCloudEventOrgMemberRoleDeletedObject": ".types", + + "EventStreamCloudEventOrgMemberRoleDeletedObjectOrganization": ".types", + + "EventStreamCloudEventOrgMemberRoleDeletedObjectRole": ".types", + + "EventStreamCloudEventOrgMemberRoleDeletedObjectUser": ".types", + + "EventStreamCloudEventOrgMemberRoleDeletedTypeEnum": ".types", + + "EventStreamCloudEventOrgUpdated": ".types", + + "EventStreamCloudEventOrgUpdatedCloudEvent": ".types", + + "EventStreamCloudEventOrgUpdatedCloudEventTypeEnum": ".types", + + "EventStreamCloudEventOrgUpdatedData": ".types", + + "EventStreamCloudEventOrgUpdatedObject": ".types", + + "EventStreamCloudEventOrgUpdatedObjectBranding": ".types", + + "EventStreamCloudEventOrgUpdatedObjectBrandingColors": ".types", + + "EventStreamCloudEventOrgUpdatedObjectMetadata": ".types", + + "EventStreamCloudEventOrgUpdatedTypeEnum": ".types", + + "EventStreamCloudEventUserCreated": ".types", + + "EventStreamCloudEventUserCreatedCloudEvent": ".types", + + "EventStreamCloudEventUserCreatedCloudEventTypeEnum": ".types", + + "EventStreamCloudEventUserCreatedData": ".types", + + "EventStreamCloudEventUserCreatedObject": ".types", + + "EventStreamCloudEventUserCreatedObjectAppMetadata": ".types", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItem": ".types", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemCustom": ".types", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomIsSocialEnum": ".types", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomProfileData": ".types", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomProviderEnum": ".types", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomUserId": ".types", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabase": ".types", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseIsSocialEnum": ".types", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseProfileData": ".types", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseProviderEnum": ".types", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseUserId": ".types", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterprise": ".types", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseIsSocialEnum": ".types", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseProfileData": ".types", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseProviderEnum": ".types", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseUserId": ".types", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordless": ".types", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessIsSocialEnum": ".types", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessProfileData": ".types", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessProviderEnum": ".types", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessUserId": ".types", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemSocial": ".types", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialIsSocialEnum": ".types", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialProfileData": ".types", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialProviderEnum": ".types", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialUserId": ".types", + + "EventStreamCloudEventUserCreatedObjectUserMetadata": ".types", + + "EventStreamCloudEventUserCreatedTypeEnum": ".types", + + "EventStreamCloudEventUserDeleted": ".types", + + "EventStreamCloudEventUserDeletedCloudEvent": ".types", + + "EventStreamCloudEventUserDeletedCloudEventTypeEnum": ".types", + + "EventStreamCloudEventUserDeletedData": ".types", + + "EventStreamCloudEventUserDeletedObject": ".types", + + "EventStreamCloudEventUserDeletedObjectAppMetadata": ".types", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItem": ".types", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemCustom": ".types", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomIsSocialEnum": ".types", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomProfileData": ".types", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomProviderEnum": ".types", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomUserId": ".types", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabase": ".types", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseIsSocialEnum": ".types", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseProfileData": ".types", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseProviderEnum": ".types", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseUserId": ".types", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterprise": ".types", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseIsSocialEnum": ".types", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseProfileData": ".types", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseProviderEnum": ".types", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseUserId": ".types", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordless": ".types", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessIsSocialEnum": ".types", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessProfileData": ".types", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessProviderEnum": ".types", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessUserId": ".types", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemSocial": ".types", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialIsSocialEnum": ".types", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialProfileData": ".types", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialProviderEnum": ".types", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialUserId": ".types", + + "EventStreamCloudEventUserDeletedObjectUserMetadata": ".types", + + "EventStreamCloudEventUserDeletedTypeEnum": ".types", + + "EventStreamCloudEventUserUpdated": ".types", + + "EventStreamCloudEventUserUpdatedCloudEvent": ".types", + + "EventStreamCloudEventUserUpdatedCloudEventTypeEnum": ".types", + + "EventStreamCloudEventUserUpdatedData": ".types", + + "EventStreamCloudEventUserUpdatedObject": ".types", + + "EventStreamCloudEventUserUpdatedObjectAppMetadata": ".types", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItem": ".types", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustom": ".types", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomIsSocialEnum": ".types", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomProfileData": ".types", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomProviderEnum": ".types", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomUserId": ".types", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabase": ".types", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseIsSocialEnum": ".types", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseProfileData": ".types", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseProviderEnum": ".types", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseUserId": ".types", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterprise": ".types", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseIsSocialEnum": ".types", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseProfileData": ".types", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseProviderEnum": ".types", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseUserId": ".types", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordless": ".types", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessIsSocialEnum": ".types", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessProfileData": ".types", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessProviderEnum": ".types", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessUserId": ".types", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocial": ".types", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialIsSocialEnum": ".types", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialProfileData": ".types", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialProviderEnum": ".types", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialUserId": ".types", + + "EventStreamCloudEventUserUpdatedObjectUserMetadata": ".types", + + "EventStreamCloudEventUserUpdatedTypeEnum": ".types", + "EventStreamDelivery": ".types", + "EventStreamDeliveryAttempt": ".types", + "EventStreamDeliveryEventTypeEnum": ".types", + @@ -1528,9 +4159,35 @@ _dynamic_imports: typing.Dict[str, str] = { + "EventStreamEventBridgeDestinationTypeEnum": ".types", + "EventStreamEventBridgeResponseContent": ".types", + "EventStreamEventTypeEnum": ".types", + - "EventStreamMetric": ".types", + "EventStreamResponseContent": ".types", + "EventStreamStatusEnum": ".types", + + "EventStreamSubscribeEventsEventTypeEnum": ".types", + + "EventStreamSubscribeEventsEventTypeParam": ".types", + + "EventStreamSubscribeEventsResponseContent": ".types", + + "EventStreamSubscribeEventsResponseContent_Error": ".types", + + "EventStreamSubscribeEventsResponseContent_GroupCreated": ".types", + + "EventStreamSubscribeEventsResponseContent_GroupDeleted": ".types", + + "EventStreamSubscribeEventsResponseContent_GroupMemberAdded": ".types", + + "EventStreamSubscribeEventsResponseContent_GroupMemberDeleted": ".types", + + "EventStreamSubscribeEventsResponseContent_GroupRoleAssigned": ".types", + + "EventStreamSubscribeEventsResponseContent_GroupRoleDeleted": ".types", + + "EventStreamSubscribeEventsResponseContent_GroupUpdated": ".types", + + "EventStreamSubscribeEventsResponseContent_OffsetOnly": ".types", + + "EventStreamSubscribeEventsResponseContent_OrganizationConnectionAdded": ".types", + + "EventStreamSubscribeEventsResponseContent_OrganizationConnectionRemoved": ".types", + + "EventStreamSubscribeEventsResponseContent_OrganizationConnectionUpdated": ".types", + + "EventStreamSubscribeEventsResponseContent_OrganizationCreated": ".types", + + "EventStreamSubscribeEventsResponseContent_OrganizationDeleted": ".types", + + "EventStreamSubscribeEventsResponseContent_OrganizationGroupRoleAssigned": ".types", + + "EventStreamSubscribeEventsResponseContent_OrganizationGroupRoleDeleted": ".types", + + "EventStreamSubscribeEventsResponseContent_OrganizationMemberAdded": ".types", + + "EventStreamSubscribeEventsResponseContent_OrganizationMemberDeleted": ".types", + + "EventStreamSubscribeEventsResponseContent_OrganizationMemberRoleAssigned": ".types", + + "EventStreamSubscribeEventsResponseContent_OrganizationMemberRoleDeleted": ".types", + + "EventStreamSubscribeEventsResponseContent_OrganizationUpdated": ".types", + + "EventStreamSubscribeEventsResponseContent_UserCreated": ".types", + + "EventStreamSubscribeEventsResponseContent_UserDeleted": ".types", + + "EventStreamSubscribeEventsResponseContent_UserUpdated": ".types", + "EventStreamSubscription": ".types", + "EventStreamTestEventTypeEnum": ".types", + "EventStreamWebhookAuthorizationResponse": ".types", + @@ -1539,89 +4196,154 @@ _dynamic_imports: typing.Dict[str, str] = { + "EventStreamWebhookBearerAuth": ".types", + "EventStreamWebhookBearerAuthMethodEnum": ".types", + "EventStreamWebhookConfiguration": ".types", + + "EventStreamWebhookCustomHeaderAuth": ".types", + + "EventStreamWebhookCustomHeaderAuthMethodEnum": ".types", + "EventStreamWebhookDestination": ".types", + "EventStreamWebhookDestinationTypeEnum": ".types", + "EventStreamWebhookResponseContent": ".types", + - "EventStreamWindow": ".types", + "EventStreamsCreateRequest": ".event_streams", + + "ExpressConfiguration": ".types", + + "ExpressConfigurationOrNull": ".types", + "ExtensibilityEmailProviderCredentials": ".types", + "FederatedConnectionTokenSet": ".types", + "FlowAction": ".types", + "FlowActionActivecampaign": ".types", + "FlowActionActivecampaignListContacts": ".types", + + "FlowActionActivecampaignListContactsAction": ".types", + "FlowActionActivecampaignListContactsParams": ".types", + + "FlowActionActivecampaignListContactsType": ".types", + "FlowActionActivecampaignUpsertContact": ".types", + + "FlowActionActivecampaignUpsertContactAction": ".types", + "FlowActionActivecampaignUpsertContactParams": ".types", + "FlowActionActivecampaignUpsertContactParamsCustomFields": ".types", + + "FlowActionActivecampaignUpsertContactType": ".types", + "FlowActionAirtable": ".types", + "FlowActionAirtableCreateRecord": ".types", + + "FlowActionAirtableCreateRecordAction": ".types", + "FlowActionAirtableCreateRecordParams": ".types", + "FlowActionAirtableCreateRecordParamsFields": ".types", + + "FlowActionAirtableCreateRecordType": ".types", + "FlowActionAirtableListRecords": ".types", + + "FlowActionAirtableListRecordsAction": ".types", + "FlowActionAirtableListRecordsParams": ".types", + + "FlowActionAirtableListRecordsType": ".types", + "FlowActionAirtableUpdateRecord": ".types", + + "FlowActionAirtableUpdateRecordAction": ".types", + "FlowActionAirtableUpdateRecordParams": ".types", + "FlowActionAirtableUpdateRecordParamsFields": ".types", + + "FlowActionAirtableUpdateRecordType": ".types", + "FlowActionAuth0": ".types", + "FlowActionAuth0CreateUser": ".types", + + "FlowActionAuth0CreateUserAction": ".types", + "FlowActionAuth0CreateUserParams": ".types", + "FlowActionAuth0CreateUserParamsPayload": ".types", + + "FlowActionAuth0CreateUserType": ".types", + "FlowActionAuth0GetUser": ".types", + + "FlowActionAuth0GetUserAction": ".types", + "FlowActionAuth0GetUserParams": ".types", + + "FlowActionAuth0GetUserType": ".types", + + "FlowActionAuth0MakeCall": ".types", + + "FlowActionAuth0MakeCallAction": ".types", + + "FlowActionAuth0MakeCallParams": ".types", + + "FlowActionAuth0MakeCallParamsCustomVars": ".types", + + "FlowActionAuth0MakeCallType": ".types", + + "FlowActionAuth0SendEmail": ".types", + + "FlowActionAuth0SendEmailAction": ".types", + + "FlowActionAuth0SendEmailParams": ".types", + + "FlowActionAuth0SendEmailParamsFrom": ".types", + + "FlowActionAuth0SendEmailParamsFromEmail": ".types", + + "FlowActionAuth0SendEmailParamsTo": ".types", + + "FlowActionAuth0SendEmailType": ".types", + "FlowActionAuth0SendRequest": ".types", + + "FlowActionAuth0SendRequestAction": ".types", + "FlowActionAuth0SendRequestParams": ".types", + + "FlowActionAuth0SendRequestParamsCustomVars": ".types", + "FlowActionAuth0SendRequestParamsHeaders": ".types", + "FlowActionAuth0SendRequestParamsMethod": ".types", + "FlowActionAuth0SendRequestParamsPayload": ".types", + "FlowActionAuth0SendRequestParamsPayloadObject": ".types", + "FlowActionAuth0SendRequestParamsQueryParams": ".types", + + "FlowActionAuth0SendRequestParamsQueryParamsValue": ".types", + + "FlowActionAuth0SendRequestType": ".types", + + "FlowActionAuth0SendSms": ".types", + + "FlowActionAuth0SendSmsAction": ".types", + + "FlowActionAuth0SendSmsParams": ".types", + + "FlowActionAuth0SendSmsParamsCustomVars": ".types", + + "FlowActionAuth0SendSmsType": ".types", + "FlowActionAuth0UpdateUser": ".types", + + "FlowActionAuth0UpdateUserAction": ".types", + "FlowActionAuth0UpdateUserParams": ".types", + "FlowActionAuth0UpdateUserParamsChanges": ".types", + + "FlowActionAuth0UpdateUserType": ".types", + "FlowActionBigquery": ".types", + "FlowActionBigqueryInsertRows": ".types", + + "FlowActionBigqueryInsertRowsAction": ".types", + "FlowActionBigqueryInsertRowsParams": ".types", + "FlowActionBigqueryInsertRowsParamsData": ".types", + + "FlowActionBigqueryInsertRowsType": ".types", + "FlowActionClearbit": ".types", + "FlowActionClearbitFindCompany": ".types", + + "FlowActionClearbitFindCompanyAction": ".types", + "FlowActionClearbitFindCompanyParams": ".types", + + "FlowActionClearbitFindCompanyType": ".types", + "FlowActionClearbitFindPerson": ".types", + + "FlowActionClearbitFindPersonAction": ".types", + "FlowActionClearbitFindPersonParams": ".types", + + "FlowActionClearbitFindPersonType": ".types", + "FlowActionEmail": ".types", + "FlowActionEmailVerifyEmail": ".types", + + "FlowActionEmailVerifyEmailAction": ".types", + "FlowActionEmailVerifyEmailParams": ".types", + "FlowActionEmailVerifyEmailParamsRules": ".types", + + "FlowActionEmailVerifyEmailType": ".types", + "FlowActionFlow": ".types", + "FlowActionFlowBooleanCondition": ".types", + + "FlowActionFlowBooleanConditionAction": ".types", + "FlowActionFlowBooleanConditionParams": ".types", + + "FlowActionFlowBooleanConditionType": ".types", + "FlowActionFlowDelayFlow": ".types", + + "FlowActionFlowDelayFlowAction": ".types", + "FlowActionFlowDelayFlowParams": ".types", + "FlowActionFlowDelayFlowParamsNumber": ".types", + "FlowActionFlowDelayFlowParamsUnits": ".types", + + "FlowActionFlowDelayFlowType": ".types", + "FlowActionFlowDoNothing": ".types", + + "FlowActionFlowDoNothingAction": ".types", + "FlowActionFlowDoNothingParams": ".types", + + "FlowActionFlowDoNothingType": ".types", + "FlowActionFlowErrorMessage": ".types", + + "FlowActionFlowErrorMessageAction": ".types", + "FlowActionFlowErrorMessageParams": ".types", + + "FlowActionFlowErrorMessageType": ".types", + "FlowActionFlowMapValue": ".types", + + "FlowActionFlowMapValueAction": ".types", + "FlowActionFlowMapValueParams": ".types", + "FlowActionFlowMapValueParamsCases": ".types", + "FlowActionFlowMapValueParamsFallback": ".types", + "FlowActionFlowMapValueParamsFallbackObject": ".types", + "FlowActionFlowMapValueParamsInput": ".types", + + "FlowActionFlowMapValueType": ".types", + "FlowActionFlowReturnJson": ".types", + + "FlowActionFlowReturnJsonAction": ".types", + "FlowActionFlowReturnJsonParams": ".types", + "FlowActionFlowReturnJsonParamsPayload": ".types", + "FlowActionFlowReturnJsonParamsPayloadObject": ".types", + + "FlowActionFlowReturnJsonType": ".types", + "FlowActionFlowStoreVars": ".types", + + "FlowActionFlowStoreVarsAction": ".types", + "FlowActionFlowStoreVarsParams": ".types", + "FlowActionFlowStoreVarsParamsVars": ".types", + + "FlowActionFlowStoreVarsType": ".types", + "FlowActionGoogleSheets": ".types", + "FlowActionGoogleSheetsAddRow": ".types", + + "FlowActionGoogleSheetsAddRowAction": ".types", + "FlowActionGoogleSheetsAddRowParams": ".types", + "FlowActionGoogleSheetsAddRowParamsSheetId": ".types", + "FlowActionGoogleSheetsAddRowParamsValues": ".types", + + "FlowActionGoogleSheetsAddRowType": ".types", + "FlowActionHttp": ".types", + "FlowActionHttpSendRequest": ".types", + + "FlowActionHttpSendRequestAction": ".types", + "FlowActionHttpSendRequestParams": ".types", + "FlowActionHttpSendRequestParamsBasicAuth": ".types", + "FlowActionHttpSendRequestParamsContentType": ".types", + @@ -1630,134 +4352,260 @@ _dynamic_imports: typing.Dict[str, str] = { + "FlowActionHttpSendRequestParamsPayload": ".types", + "FlowActionHttpSendRequestParamsPayloadObject": ".types", + "FlowActionHttpSendRequestParamsQueryParams": ".types", + + "FlowActionHttpSendRequestParamsQueryParamsValue": ".types", + + "FlowActionHttpSendRequestType": ".types", + "FlowActionHubspot": ".types", + "FlowActionHubspotEnrollContact": ".types", + + "FlowActionHubspotEnrollContactAction": ".types", + "FlowActionHubspotEnrollContactParams": ".types", + "FlowActionHubspotEnrollContactParamsWorkflowId": ".types", + + "FlowActionHubspotEnrollContactType": ".types", + "FlowActionHubspotGetContact": ".types", + + "FlowActionHubspotGetContactAction": ".types", + "FlowActionHubspotGetContactParams": ".types", + + "FlowActionHubspotGetContactType": ".types", + "FlowActionHubspotUpsertContact": ".types", + + "FlowActionHubspotUpsertContactAction": ".types", + "FlowActionHubspotUpsertContactParams": ".types", + "FlowActionHubspotUpsertContactParamsProperty": ".types", + + "FlowActionHubspotUpsertContactType": ".types", + "FlowActionJson": ".types", + "FlowActionJsonCreateJson": ".types", + + "FlowActionJsonCreateJsonAction": ".types", + "FlowActionJsonCreateJsonParams": ".types", + "FlowActionJsonCreateJsonParamsObject": ".types", + + "FlowActionJsonCreateJsonType": ".types", + "FlowActionJsonParseJson": ".types", + + "FlowActionJsonParseJsonAction": ".types", + "FlowActionJsonParseJsonParams": ".types", + + "FlowActionJsonParseJsonType": ".types", + "FlowActionJsonSerializeJson": ".types", + + "FlowActionJsonSerializeJsonAction": ".types", + "FlowActionJsonSerializeJsonParams": ".types", + "FlowActionJsonSerializeJsonParamsObject": ".types", + "FlowActionJsonSerializeJsonParamsObjectObject": ".types", + + "FlowActionJsonSerializeJsonType": ".types", + "FlowActionJwt": ".types", + "FlowActionJwtDecodeJwt": ".types", + + "FlowActionJwtDecodeJwtAction": ".types", + "FlowActionJwtDecodeJwtParams": ".types", + + "FlowActionJwtDecodeJwtType": ".types", + "FlowActionJwtSignJwt": ".types", + + "FlowActionJwtSignJwtAction": ".types", + "FlowActionJwtSignJwtParams": ".types", + "FlowActionJwtSignJwtParamsPayload": ".types", + + "FlowActionJwtSignJwtType": ".types", + "FlowActionJwtVerifyJwt": ".types", + + "FlowActionJwtVerifyJwtAction": ".types", + "FlowActionJwtVerifyJwtParams": ".types", + + "FlowActionJwtVerifyJwtType": ".types", + "FlowActionMailchimp": ".types", + "FlowActionMailchimpUpsertMember": ".types", + + "FlowActionMailchimpUpsertMemberAction": ".types", + "FlowActionMailchimpUpsertMemberParams": ".types", + "FlowActionMailchimpUpsertMemberParamsMember": ".types", + "FlowActionMailchimpUpsertMemberParamsMemberMergeFields": ".types", + + "FlowActionMailchimpUpsertMemberType": ".types", + "FlowActionMailjet": ".types", + "FlowActionMailjetSendEmail": ".types", + + "FlowActionMailjetSendEmailAction": ".types", + "FlowActionMailjetSendEmailParams": ".types", + "FlowActionMailjetSendEmailParamsContent": ".types", + "FlowActionMailjetSendEmailParamsTemplateId": ".types", + + "FlowActionMailjetSendEmailType": ".types", + "FlowActionOtp": ".types", + "FlowActionOtpGenerateCode": ".types", + + "FlowActionOtpGenerateCodeAction": ".types", + "FlowActionOtpGenerateCodeParams": ".types", + + "FlowActionOtpGenerateCodeType": ".types", + "FlowActionOtpVerifyCode": ".types", + + "FlowActionOtpVerifyCodeAction": ".types", + "FlowActionOtpVerifyCodeParams": ".types", + "FlowActionOtpVerifyCodeParamsCode": ".types", + + "FlowActionOtpVerifyCodeType": ".types", + "FlowActionPipedrive": ".types", + "FlowActionPipedriveAddDeal": ".types", + + "FlowActionPipedriveAddDealAction": ".types", + "FlowActionPipedriveAddDealParams": ".types", + "FlowActionPipedriveAddDealParamsFields": ".types", + "FlowActionPipedriveAddDealParamsOrganizationId": ".types", + "FlowActionPipedriveAddDealParamsPersonId": ".types", + "FlowActionPipedriveAddDealParamsStageId": ".types", + "FlowActionPipedriveAddDealParamsUserId": ".types", + + "FlowActionPipedriveAddDealType": ".types", + "FlowActionPipedriveAddOrganization": ".types", + + "FlowActionPipedriveAddOrganizationAction": ".types", + "FlowActionPipedriveAddOrganizationParams": ".types", + "FlowActionPipedriveAddOrganizationParamsFields": ".types", + "FlowActionPipedriveAddOrganizationParamsOwnerId": ".types", + + "FlowActionPipedriveAddOrganizationType": ".types", + "FlowActionPipedriveAddPerson": ".types", + + "FlowActionPipedriveAddPersonAction": ".types", + "FlowActionPipedriveAddPersonParams": ".types", + "FlowActionPipedriveAddPersonParamsFields": ".types", + "FlowActionPipedriveAddPersonParamsOrganizationId": ".types", + "FlowActionPipedriveAddPersonParamsOwnerId": ".types", + + "FlowActionPipedriveAddPersonType": ".types", + "FlowActionSalesforce": ".types", + "FlowActionSalesforceCreateLead": ".types", + + "FlowActionSalesforceCreateLeadAction": ".types", + "FlowActionSalesforceCreateLeadParams": ".types", + "FlowActionSalesforceCreateLeadParamsPayload": ".types", + + "FlowActionSalesforceCreateLeadType": ".types", + "FlowActionSalesforceGetLead": ".types", + + "FlowActionSalesforceGetLeadAction": ".types", + "FlowActionSalesforceGetLeadParams": ".types", + + "FlowActionSalesforceGetLeadType": ".types", + "FlowActionSalesforceSearchLeads": ".types", + + "FlowActionSalesforceSearchLeadsAction": ".types", + "FlowActionSalesforceSearchLeadsParams": ".types", + "FlowActionSalesforceSearchLeadsParamsSearchField": ".types", + + "FlowActionSalesforceSearchLeadsType": ".types", + "FlowActionSalesforceUpdateLead": ".types", + + "FlowActionSalesforceUpdateLeadAction": ".types", + "FlowActionSalesforceUpdateLeadParams": ".types", + "FlowActionSalesforceUpdateLeadParamsPayload": ".types", + + "FlowActionSalesforceUpdateLeadType": ".types", + "FlowActionSendgrid": ".types", + "FlowActionSendgridSendEmail": ".types", + + "FlowActionSendgridSendEmailAction": ".types", + "FlowActionSendgridSendEmailParams": ".types", + "FlowActionSendgridSendEmailParamsPerson": ".types", + + "FlowActionSendgridSendEmailType": ".types", + "FlowActionSlack": ".types", + "FlowActionSlackPostMessage": ".types", + + "FlowActionSlackPostMessageAction": ".types", + "FlowActionSlackPostMessageParams": ".types", + "FlowActionSlackPostMessageParamsAttachment": ".types", + "FlowActionSlackPostMessageParamsAttachmentColor": ".types", + "FlowActionSlackPostMessageParamsAttachmentField": ".types", + + "FlowActionSlackPostMessageType": ".types", + "FlowActionStripe": ".types", + "FlowActionStripeAddTaxId": ".types", + + "FlowActionStripeAddTaxIdAction": ".types", + "FlowActionStripeAddTaxIdParams": ".types", + + "FlowActionStripeAddTaxIdType": ".types", + "FlowActionStripeAddress": ".types", + "FlowActionStripeCreateCustomer": ".types", + + "FlowActionStripeCreateCustomerAction": ".types", + "FlowActionStripeCreateCustomerParams": ".types", + + "FlowActionStripeCreateCustomerType": ".types", + "FlowActionStripeCreatePortalSession": ".types", + + "FlowActionStripeCreatePortalSessionAction": ".types", + "FlowActionStripeCreatePortalSessionParams": ".types", + + "FlowActionStripeCreatePortalSessionType": ".types", + "FlowActionStripeDeleteTaxId": ".types", + + "FlowActionStripeDeleteTaxIdAction": ".types", + "FlowActionStripeDeleteTaxIdParams": ".types", + + "FlowActionStripeDeleteTaxIdType": ".types", + "FlowActionStripeFindCustomers": ".types", + + "FlowActionStripeFindCustomersAction": ".types", + "FlowActionStripeFindCustomersParams": ".types", + + "FlowActionStripeFindCustomersType": ".types", + "FlowActionStripeGetCustomer": ".types", + + "FlowActionStripeGetCustomerAction": ".types", + "FlowActionStripeGetCustomerParams": ".types", + + "FlowActionStripeGetCustomerType": ".types", + "FlowActionStripeMetadata": ".types", + "FlowActionStripeTaxId": ".types", + "FlowActionStripeUpdateCustomer": ".types", + + "FlowActionStripeUpdateCustomerAction": ".types", + "FlowActionStripeUpdateCustomerParams": ".types", + + "FlowActionStripeUpdateCustomerType": ".types", + "FlowActionTelegram": ".types", + "FlowActionTelegramSendMessage": ".types", + + "FlowActionTelegramSendMessageAction": ".types", + "FlowActionTelegramSendMessageParams": ".types", + + "FlowActionTelegramSendMessageType": ".types", + "FlowActionTwilio": ".types", + "FlowActionTwilioMakeCall": ".types", + + "FlowActionTwilioMakeCallAction": ".types", + "FlowActionTwilioMakeCallParams": ".types", + + "FlowActionTwilioMakeCallType": ".types", + "FlowActionTwilioSendSms": ".types", + + "FlowActionTwilioSendSmsAction": ".types", + "FlowActionTwilioSendSmsParams": ".types", + + "FlowActionTwilioSendSmsType": ".types", + "FlowActionWhatsapp": ".types", + "FlowActionWhatsappSendMessage": ".types", + + "FlowActionWhatsappSendMessageAction": ".types", + "FlowActionWhatsappSendMessageParams": ".types", + "FlowActionWhatsappSendMessageParamsPayload": ".types", + "FlowActionWhatsappSendMessageParamsPayloadObject": ".types", + "FlowActionWhatsappSendMessageParamsType": ".types", + + "FlowActionWhatsappSendMessageType": ".types", + "FlowActionXml": ".types", + "FlowActionXmlParseXml": ".types", + + "FlowActionXmlParseXmlAction": ".types", + "FlowActionXmlParseXmlParams": ".types", + + "FlowActionXmlParseXmlType": ".types", + "FlowActionXmlSerializeXml": ".types", + + "FlowActionXmlSerializeXmlAction": ".types", + "FlowActionXmlSerializeXmlParams": ".types", + "FlowActionXmlSerializeXmlParamsObject": ".types", + "FlowActionXmlSerializeXmlParamsObjectObject": ".types", + + "FlowActionXmlSerializeXmlType": ".types", + "FlowActionZapier": ".types", + "FlowActionZapierTriggerWebhook": ".types", + + "FlowActionZapierTriggerWebhookAction": ".types", + "FlowActionZapierTriggerWebhookParams": ".types", + "FlowActionZapierTriggerWebhookParamsMethod": ".types", + + "FlowActionZapierTriggerWebhookType": ".types", + "FlowExecutionDebug": ".types", + "FlowExecutionSummary": ".types", + "FlowSummary": ".types", + + "FlowsVaultConnectioSetupApiKey": ".types", + + "FlowsVaultConnectioSetupApiKeyWithBaseUrl": ".types", + + "FlowsVaultConnectioSetupBigqueryOauthJwt": ".types", + + "FlowsVaultConnectioSetupHttpBearer": ".types", + + "FlowsVaultConnectioSetupJwt": ".types", + + "FlowsVaultConnectioSetupJwtAlgorithmEnum": ".types", + + "FlowsVaultConnectioSetupMailjetApiKey": ".types", + + "FlowsVaultConnectioSetupOauthApp": ".types", + + "FlowsVaultConnectioSetupOauthCode": ".types", + + "FlowsVaultConnectioSetupSecretApiKey": ".types", + + "FlowsVaultConnectioSetupStripeKeyPair": ".types", + + "FlowsVaultConnectioSetupToken": ".types", + + "FlowsVaultConnectioSetupTwilioApiKey": ".types", + + "FlowsVaultConnectioSetupTypeApiKeyEnum": ".types", + + "FlowsVaultConnectioSetupTypeBearerEnum": ".types", + + "FlowsVaultConnectioSetupTypeJwtEnum": ".types", + + "FlowsVaultConnectioSetupTypeKeyPairEnum": ".types", + + "FlowsVaultConnectioSetupTypeOauthAppEnum": ".types", + + "FlowsVaultConnectioSetupTypeOauthCodeEnum": ".types", + + "FlowsVaultConnectioSetupTypeOauthJwtEnum": ".types", + + "FlowsVaultConnectioSetupTypeTokenEnum": ".types", + + "FlowsVaultConnectioSetupTypeWebhookEnum": ".types", + + "FlowsVaultConnectioSetupWebhook": ".types", + + "FlowsVaultConnectionAppIdActivecampaignEnum": ".types", + + "FlowsVaultConnectionAppIdAirtableEnum": ".types", + + "FlowsVaultConnectionAppIdAuth0Enum": ".types", + + "FlowsVaultConnectionAppIdBigqueryEnum": ".types", + + "FlowsVaultConnectionAppIdClearbitEnum": ".types", + + "FlowsVaultConnectionAppIdDocusignEnum": ".types", + + "FlowsVaultConnectionAppIdGoogleSheetsEnum": ".types", + + "FlowsVaultConnectionAppIdHttpEnum": ".types", + + "FlowsVaultConnectionAppIdHubspotEnum": ".types", + + "FlowsVaultConnectionAppIdJwtEnum": ".types", + + "FlowsVaultConnectionAppIdMailchimpEnum": ".types", + + "FlowsVaultConnectionAppIdMailjetEnum": ".types", + + "FlowsVaultConnectionAppIdPipedriveEnum": ".types", + + "FlowsVaultConnectionAppIdSalesforceEnum": ".types", + + "FlowsVaultConnectionAppIdSendgridEnum": ".types", + + "FlowsVaultConnectionAppIdSlackEnum": ".types", + + "FlowsVaultConnectionAppIdStripeEnum": ".types", + + "FlowsVaultConnectionAppIdTelegramEnum": ".types", + + "FlowsVaultConnectionAppIdTwilioEnum": ".types", + + "FlowsVaultConnectionAppIdWhatsappEnum": ".types", + + "FlowsVaultConnectionAppIdZapierEnum": ".types", + + "FlowsVaultConnectionHttpApiKeySetup": ".types", + + "FlowsVaultConnectionHttpApiKeySetupInEnum": ".types", + + "FlowsVaultConnectionHttpBasicAuthSetup": ".types", + + "FlowsVaultConnectionHttpOauthClientCredentialsSetup": ".types", + + "FlowsVaultConnectionSetupTypeApiKeyEnum": ".types", + + "FlowsVaultConnectionSetupTypeBasicAuthEnum": ".types", + + "FlowsVaultConnectionSetupTypeOauthClientCredentialsEnum": ".types", + + "FlowsVaultConnectionSummary": ".types", + "ForbiddenError": ".errors", + "FormBlock": ".types", + "FormBlockDivider": ".types", + @@ -1916,35 +4764,51 @@ _dynamic_imports: typing.Dict[str, str] = { + "FormWidgetTypeRecaptchaConst": ".types", + "FormsRequestParametersHydrateEnum": ".types", + "GetActionExecutionResponseContent": ".types", + + "GetActionModuleActionsResponseContent": ".types", + + "GetActionModuleResponseContent": ".types", + + "GetActionModuleVersionResponseContent": ".types", + + "GetActionModuleVersionsResponseContent": ".types", + + "GetActionModulesResponseContent": ".types", + "GetActionResponseContent": ".types", + "GetActionVersionResponseContent": ".types", + "GetActiveUsersCountStatsResponseContent": ".types", + "GetAculResponseContent": ".types", + + "GetAttackProtectionCaptchaResponseContent": ".types", + + "GetBotDetectionSettingsResponseContent": ".types", + "GetBrandingDefaultThemeResponseContent": ".types", + "GetBrandingPhoneProviderResponseContent": ".types", + "GetBrandingResponseContent": ".types", + "GetBrandingThemeResponseContent": ".types", + "GetBreachedPasswordDetectionSettingsResponseContent": ".types", + "GetBruteForceSettingsResponseContent": ".types", + - "GetBruteForceSettingsResponseContentMode": ".types", + - "GetBruteForceSettingsResponseContentShieldsItem": ".types", + "GetClientCredentialResponseContent": ".types", + + "GetClientGrantResponseContent": ".types", + "GetClientResponseContent": ".types", + "GetConnectionEnabledClientsResponseContent": ".types", + + "GetConnectionProfileResponseContent": ".types", + + "GetConnectionProfileTemplateResponseContent": ".types", + "GetConnectionResponseContent": ".types", + "GetCustomDomainResponseContent": ".types", + "GetCustomSigningKeysResponseContent": ".types", + "GetCustomTextsByLanguageResponseContent": ".types", + + "GetDefaultCanonicalDomainResponseContent": ".types", + + "GetDefaultCustomDomainResponseContent": ".types", + + "GetDefaultDomainResponseContent": ".types", + + "GetDirectoryProvisioningDefaultMappingResponseContent": ".types", + + "GetDirectoryProvisioningResponseContent": ".types", + "GetEmailProviderResponseContent": ".types", + "GetEmailTemplateResponseContent": ".types", + "GetEncryptionKeyResponseContent": ".types", + "GetEventStreamDeliveryHistoryResponseContent": ".types", + "GetEventStreamResponseContent": ".types", + - "GetEventStreamStatsResponseContent": ".types", + + "GetFlowExecutionRequestParametersHydrateEnum": ".types", + "GetFlowExecutionResponseContent": ".types", + "GetFlowRequestParametersHydrateEnum": ".types", + "GetFlowResponseContent": ".types", + + "GetFlowsVaultConnectionResponseContent": ".types", + "GetFormResponseContent": ".types", + + "GetGroupMembersResponseContent": ".types", + + "GetGroupResponseContent": ".types", + "GetGuardianEnrollmentResponseContent": ".types", + "GetGuardianFactorDuoSettingsResponseContent": ".types", + "GetGuardianFactorPhoneMessageTypesResponseContent": ".types", + @@ -1963,18 +4827,25 @@ _dynamic_imports: typing.Dict[str, str] = { + "GetJobGenericErrorResponseContent": ".types", + "GetJobImportUserError": ".types", + "GetJobResponseContent": ".types", + + "GetJobSummary": ".types", + "GetJobUserError": ".types", + "GetLogResponseContent": ".types", + "GetLogStreamResponseContent": ".types", + "GetNetworkAclsResponseContent": ".types", + + "GetOrganizationAllConnectionResponseContent": ".types", + "GetOrganizationByNameResponseContent": ".types", + "GetOrganizationConnectionResponseContent": ".types", + + "GetOrganizationDiscoveryDomainByNameResponseContent": ".types", + + "GetOrganizationDiscoveryDomainResponseContent": ".types", + "GetOrganizationInvitationResponseContent": ".types", + "GetOrganizationResponseContent": ".types", + "GetPartialsResponseContent": ".types", + "GetPhoneTemplateResponseContent": ".types", + "GetRefreshTokenResponseContent": ".types", + + "GetRefreshTokensPaginatedResponseContent": ".types", + "GetResourceServerResponseContent": ".types", + + "GetRiskAssessmentsSettingsNewDeviceResponseContent": ".types", + + "GetRiskAssessmentsSettingsResponseContent": ".types", + "GetRoleResponseContent": ".types", + "GetRuleResponseContent": ".types", + "GetScimConfigurationDefaultMappingResponseContent": ".types", + @@ -1990,9 +4861,17 @@ _dynamic_imports: typing.Dict[str, str] = { + "GetTokenExchangeProfileResponseContent": ".types", + "GetUniversalLoginTemplate": ".types", + "GetUniversalLoginTemplateResponseContent": ".types", + + "GetUserAttributeProfileResponseContent": ".types", + + "GetUserAttributeProfileTemplateResponseContent": ".types", + "GetUserAuthenticationMethodResponseContent": ".types", + + "GetUserGroupsPaginatedResponseContent": ".types", + "GetUserResponseContent": ".types", + "GetVerifiableCredentialTemplateResponseContent": ".types", + + "GoneError": ".errors", + + "Group": ".types", + + "GroupMember": ".types", + + "GroupMemberTypeEnum": ".types", + + "GroupTypeEnum": ".types", + "GuardianEnrollmentDate": ".types", + "GuardianEnrollmentFactorEnum": ".types", + "GuardianEnrollmentStatus": ".types", + @@ -2007,6 +4886,7 @@ _dynamic_imports: typing.Dict[str, str] = { + "HttpCustomHeader": ".types", + "Identity": ".types", + "IdentityProviderEnum": ".types", + + "IdentityProviderOnlyAuth0Enum": ".types", + "ImportEncryptionKeyResponseContent": ".types", + "Integration": ".types", + "IntegrationFeatureTypeEnum": ".types", + @@ -2017,29 +4897,40 @@ _dynamic_imports: typing.Dict[str, str] = { + "IntegrationSemVer": ".types", + "InternalServerError": ".errors", + "JobFileFormatEnum": ".types", + + "LinkedClientConfiguration": ".types", + "ListActionBindingsPaginatedResponseContent": ".types", + "ListActionTriggersResponseContent": ".types", + "ListActionVersionsPaginatedResponseContent": ".types", + "ListActionsPaginatedResponseContent": ".types", + "ListAculsOffsetPaginatedResponseContent": ".types", + + "ListAculsResponseContentItem": ".types", + "ListBrandingPhoneProvidersResponseContent": ".types", + "ListClientConnectionsResponseContent": ".types", + "ListClientGrantOrganizationsPaginatedResponseContent": ".types", + "ListClientGrantPaginatedResponseContent": ".types", + "ListClientsOffsetPaginatedResponseContent": ".types", + + "ListConnectionProfileTemplateResponseContent": ".types", + + "ListConnectionProfilesPaginatedResponseContent": ".types", + "ListConnectionsCheckpointPaginatedResponseContent": ".types", + "ListCustomDomainsResponseContent": ".types", + "ListDeviceCredentialsOffsetPaginatedResponseContent": ".types", + + "ListDirectoryProvisioningsResponseContent": ".types", + "ListEncryptionKeyOffsetPaginatedResponseContent": ".types", + + "ListEventStreamsResponseContent": ".types", + "ListFlowExecutionsPaginatedResponseContent": ".types", + "ListFlowsOffsetPaginatedResponseContent": ".types", + + "ListFlowsRequestParametersHydrateEnum": ".types", + + "ListFlowsVaultConnectionsOffsetPaginatedResponseContent": ".types", + "ListFormsOffsetPaginatedResponseContent": ".types", + + "ListGroupsPaginatedResponseContent": ".types", + "ListGuardianPoliciesResponseContent": ".types", + "ListHooksOffsetPaginatedResponseContent": ".types", + "ListLogOffsetPaginatedResponseContent": ".types", + "ListNetworkAclsOffsetPaginatedResponseContent": ".types", + + "ListOrganizationAllConnectionsOffsetPaginatedResponseContent": ".types", + "ListOrganizationClientGrantsOffsetPaginatedResponseContent": ".types", + "ListOrganizationConnectionsOffsetPaginatedResponseContent": ".types", + + "ListOrganizationDiscoveryDomainsResponseContent": ".types", + "ListOrganizationInvitationsOffsetPaginatedResponseContent": ".types", + "ListOrganizationMemberRolesOffsetPaginatedResponseContent": ".types", + "ListOrganizationMembersPaginatedResponseContent": ".types", + @@ -2051,12 +4942,17 @@ _dynamic_imports: typing.Dict[str, str] = { + "ListRoleUsersPaginatedResponseContent": ".types", + "ListRolesOffsetPaginatedResponseContent": ".types", + "ListRulesOffsetPaginatedResponseContent": ".types", + + "ListScimConfigurationsResponseContent": ".types", + "ListSelfServiceProfileCustomTextResponseContent": ".types", + "ListSelfServiceProfilesPaginatedResponseContent": ".types", + + "ListSynchronizedGroupsResponseContent": ".types", + "ListTokenExchangeProfileResponseContent": ".types", + + "ListUserAttributeProfileTemplateResponseContent": ".types", + + "ListUserAttributeProfilesPaginatedResponseContent": ".types", + "ListUserAuthenticationMethodsOffsetPaginatedResponseContent": ".types", + "ListUserBlocksByIdentifierResponseContent": ".types", + "ListUserBlocksResponseContent": ".types", + + "ListUserConnectedAccountsResponseContent": ".types", + "ListUserGrantsOffsetPaginatedResponseContent": ".types", + "ListUserOrganizationsOffsetPaginatedResponseContent": ".types", + "ListUserPermissionsOffsetPaginatedResponseContent": ".types", + @@ -2111,6 +5007,7 @@ _dynamic_imports: typing.Dict[str, str] = { "LogStreamSumoEnum": ".types", "LogStreamSumoResponseSchema": ".types", "LogStreamSumoSink": ".types", @@ -61,7 +4284,160 @@ patches: "MdlPresentationProperties": ".types", "MdlPresentationRequest": ".types", "MdlPresentationRequestProperties": ".types", - @@ -5228,6 +5234,7 @@ _dynamic_imports: typing.Dict[str, str] = { + @@ -2125,6 +5022,8 @@ _dynamic_imports: typing.Dict[str, str] = { + "NetworkAclActionLogEnum": ".types", + "NetworkAclActionRedirectEnum": ".types", + "NetworkAclMatch": ".types", + + "NetworkAclMatchConnectingIpv4Cidr": ".types", + + "NetworkAclMatchConnectingIpv6Cidr": ".types", + "NetworkAclMatchIpv4Cidr": ".types", + "NetworkAclMatchIpv6Cidr": ".types", + "NetworkAclRule": ".types", + @@ -2134,11 +5033,15 @@ _dynamic_imports: typing.Dict[str, str] = { + "OauthScope": ".types", + "Organization": ".types", + "OrganizationAccessLevelEnum": ".types", + + "OrganizationAccessLevelEnumWithNull": ".types", + + "OrganizationAllConnectionPost": ".types", + "OrganizationBranding": ".types", + "OrganizationBrandingColors": ".types", + "OrganizationClientGrant": ".types", + "OrganizationConnection": ".types", + "OrganizationConnectionInformation": ".types", + + "OrganizationDiscoveryDomain": ".types", + + "OrganizationDiscoveryDomainStatus": ".types", + "OrganizationEnabledConnection": ".types", + "OrganizationInvitation": ".types", + "OrganizationInvitationInvitee": ".types", + @@ -2149,6 +5052,12 @@ _dynamic_imports: typing.Dict[str, str] = { + "OrganizationUsageEnum": ".types", + "PartialGroupsEnum": ".types", + "PartialPhoneTemplateContent": ".types", + + "PasswordCharacterTypeEnum": ".types", + + "PasswordCharacterTypeRulePolicyEnum": ".types", + + "PasswordDefaultDictionariesEnum": ".types", + + "PasswordIdenticalCharactersPolicyEnum": ".types", + + "PasswordMaxLengthExceededPolicyEnum": ".types", + + "PasswordSequentialCharactersPolicyEnum": ".types", + "PatchClientCredentialResponseContent": ".types", + "PatchSupplementalSignalsResponseContent": ".types", + "PaymentRequiredError": ".errors", + @@ -2166,9 +5075,13 @@ _dynamic_imports: typing.Dict[str, str] = { + "PhoneTemplateContent": ".types", + "PhoneTemplateNotificationTypeEnum": ".types", + "PostClientCredentialResponseContent": ".types", + + "PostConnectionKeysAlgEnum": ".types", + + "PostConnectionKeysRequestContent": ".types", + + "PostConnectionsKeysResponseContent": ".types", + + "PostConnectionsKeysResponseContentItem": ".types", + + "PreconditionFailedError": ".errors", + "PreferredAuthenticationMethodEnum": ".types", + - "PrivateKeyJwt": ".types", + - "PrivateKeyJwtCredentials": ".types", + + "PreviewCimdMetadataResponseContent": ".types", + "PromptGroupNameEnum": ".types", + "PromptLanguageEnum": ".types", + "PublicKeyCredential": ".types", + @@ -2178,18 +5091,27 @@ _dynamic_imports: typing.Dict[str, str] = { + "RefreshTokenDateObject": ".types", + "RefreshTokenDevice": ".types", + "RefreshTokenExpirationTypeEnum": ".types", + + "RefreshTokenMetadata": ".types", + "RefreshTokenResourceServer": ".types", + "RefreshTokenResponseContent": ".types", + "RefreshTokenRotationTypeEnum": ".types", + "RefreshTokenSessionId": ".types", + "RegenerateUsersRecoveryCodeResponseContent": ".types", + + "RegisterCimdClientResponseContent": ".types", + "ResetPhoneTemplateRequestContent": ".types", + "ResetPhoneTemplateResponseContent": ".types", + "ResourceServer": ".types", + + "ResourceServerAuthorizationPolicy": ".types", + "ResourceServerConsentPolicyEnum": ".types", + "ResourceServerProofOfPossession": ".types", + "ResourceServerProofOfPossessionMechanismEnum": ".types", + + "ResourceServerProofOfPossessionRequiredForEnum": ".types", + "ResourceServerScope": ".types", + + "ResourceServerSubjectTypeAuthorization": ".types", + + "ResourceServerSubjectTypeAuthorizationClient": ".types", + + "ResourceServerSubjectTypeAuthorizationClientPolicyEnum": ".types", + + "ResourceServerSubjectTypeAuthorizationUser": ".types", + + "ResourceServerSubjectTypeAuthorizationUserPolicyEnum": ".types", + "ResourceServerTokenDialectResponseEnum": ".types", + "ResourceServerTokenDialectSchemaEnum": ".types", + "ResourceServerTokenEncryption": ".types", + @@ -2200,6 +5122,7 @@ _dynamic_imports: typing.Dict[str, str] = { + "RevokedSigningKeysResponseContent": ".types", + "Role": ".types", + "RoleUser": ".types", + + "RollbackActionModuleResponseContent": ".types", + "RotateClientSecretResponseContent": ".types", + "RotateConnectionKeysRequestContent": ".types", + "RotateConnectionKeysSigningAlgEnum": ".types", + @@ -2207,6 +5130,7 @@ _dynamic_imports: typing.Dict[str, str] = { + "RotateSigningKeysResponseContent": ".types", + "Rule": ".types", + "RulesConfig": ".types", + + "ScimConfiguration": ".types", + "ScimMappingItem": ".types", + "ScimTokenItem": ".types", + "ScreenGroupNameEnum": ".types", + @@ -2223,7 +5147,9 @@ _dynamic_imports: typing.Dict[str, str] = { + "SelfServiceProfileSsoTicketConnectionOptions": ".types", + "SelfServiceProfileSsoTicketDomainAliasesConfig": ".types", + "SelfServiceProfileSsoTicketDomainVerificationEnum": ".types", + + "SelfServiceProfileSsoTicketEnabledFeatures": ".types", + "SelfServiceProfileSsoTicketEnabledOrganization": ".types", + + "SelfServiceProfileSsoTicketGoogleWorkspaceConfig": ".types", + "SelfServiceProfileSsoTicketIdpInitiatedClientProtocolEnum": ".types", + "SelfServiceProfileSsoTicketIdpInitiatedOptions": ".types", + "SelfServiceProfileSsoTicketProvisioningConfig": ".types", + @@ -2241,6 +5167,7 @@ _dynamic_imports: typing.Dict[str, str] = { + "SessionDate": ".types", + "SessionDeviceMetadata": ".types", + "SessionIp": ".types", + + "SessionMetadata": ".types", + "SessionResponseContent": ".types", + "SetCustomSigningKeysResponseContent": ".types", + "SetEmailTemplateResponseContent": ".types", + @@ -2251,11 +5178,8 @@ _dynamic_imports: typing.Dict[str, str] = { + "SetGuardianFactorSmsTemplatesResponseContent": ".types", + "SetGuardianFactorsProviderPhoneResponseContent": ".types", + "SetGuardianFactorsProviderPhoneTwilioResponseContent": ".types", + - "SetGuardianFactorsProviderPushNotificationApnsRequestContent": ".types", + "SetGuardianFactorsProviderPushNotificationApnsResponseContent": ".types", + - "SetGuardianFactorsProviderPushNotificationFcmRequestContent": ".types", + "SetGuardianFactorsProviderPushNotificationFcmResponseContent": ".types", + - "SetGuardianFactorsProviderPushNotificationFcmv1RequestContent": ".types", + "SetGuardianFactorsProviderPushNotificationFcmv1ResponseContent": ".types", + "SetGuardianFactorsProviderPushNotificationResponseContent": ".types", + "SetGuardianFactorsProviderPushNotificationSnsResponseContent": ".types", + @@ -2286,15 +5210,20 @@ _dynamic_imports: typing.Dict[str, str] = { + "SuspiciousIpThrottlingPreUserRegistrationStage": ".types", + "SuspiciousIpThrottlingShieldsEnum": ".types", + "SuspiciousIpThrottlingStage": ".types", + + "SynchronizeGroupsEnum": ".types", + + "SynchronizedGroupPayload": ".types", + "TenantOidcLogoutSettings": ".types", + "TenantSettingsDeviceFlow": ".types", + "TenantSettingsDeviceFlowCharset": ".types", + + "TenantSettingsDynamicClientRegistrationSecurityMode": ".types", + "TenantSettingsErrorPage": ".types", + "TenantSettingsFlags": ".types", + "TenantSettingsGuardianPage": ".types", + "TenantSettingsMtls": ".types", + "TenantSettingsPasswordPage": ".types", + + "TenantSettingsResourceParameterProfile": ".types", + "TenantSettingsSessions": ".types", + + "TenantSettingsSupportedLocalesEnum": ".types", + "TestActionPayload": ".types", + "TestActionResponseContent": ".types", + "TestActionResultPayload": ".types", + @@ -2302,10 +5231,10 @@ _dynamic_imports: typing.Dict[str, str] = { + "TestEventDataContent": ".types", + "TokenExchangeProfileResponseContent": ".types", + "TokenExchangeProfileTypeEnum": ".types", + - "TokenProvider": ".token_provider", "TokenQuota": ".types", "TokenQuotaClientCredentials": ".types", "TokenQuotaConfiguration": ".types", @@ -69,32 +4445,2305 @@ patches: "TooManyRequestsError": ".errors", "TwilioProviderConfiguration": ".types", "TwilioProviderCredentials": ".types", - @@ -5539,6 +5546,8 @@ __all__ = [ + @@ -2313,54 +5242,151 @@ _dynamic_imports: typing.Dict[str, str] = { + "UnauthorizedError": ".errors", + "UniversalLoginExperienceEnum": ".types", + "UpdateActionBindingsResponseContent": ".types", + + "UpdateActionModuleResponseContent": ".types", + "UpdateActionResponseContent": ".types", + "UpdateAculResponseContent": ".types", + + "UpdateAttackProtectionCaptchaResponseContent": ".types", + + "UpdateBotDetectionSettingsResponseContent": ".types", + "UpdateBrandingColors": ".types", + "UpdateBrandingFont": ".types", + + "UpdateBrandingIdentifiers": ".types", + + "UpdateBrandingLoginDisplayEnum": ".types", + "UpdateBrandingPageBackground": ".types", + + "UpdateBrandingPhoneDisplay": ".types", + + "UpdateBrandingPhoneFormattingEnum": ".types", + + "UpdateBrandingPhoneMaskingEnum": ".types", + "UpdateBrandingPhoneProviderResponseContent": ".types", + "UpdateBrandingResponseContent": ".types", + "UpdateBrandingThemeResponseContent": ".types", + "UpdateBreachedPasswordDetectionSettingsResponseContent": ".types", + "UpdateBruteForceSettingsResponseContent": ".types", + - "UpdateBruteForceSettingsResponseContentMode": ".types", + - "UpdateBruteForceSettingsResponseContentShieldsItem": ".types", + "UpdateClientGrantResponseContent": ".types", + "UpdateClientResponseContent": ".types", + "UpdateConnectionOptions": ".types", + + "UpdateConnectionProfileResponseContent": ".types", + + "UpdateConnectionRequestContentAd": ".types", + + "UpdateConnectionRequestContentAdfs": ".types", + + "UpdateConnectionRequestContentAmazon": ".types", + + "UpdateConnectionRequestContentApple": ".types", + + "UpdateConnectionRequestContentAuth0": ".types", + + "UpdateConnectionRequestContentAuth0Oidc": ".types", + + "UpdateConnectionRequestContentAzureAd": ".types", + + "UpdateConnectionRequestContentBaidu": ".types", + + "UpdateConnectionRequestContentBitbucket": ".types", + + "UpdateConnectionRequestContentBitly": ".types", + + "UpdateConnectionRequestContentBox": ".types", + + "UpdateConnectionRequestContentCustom": ".types", + + "UpdateConnectionRequestContentDaccount": ".types", + + "UpdateConnectionRequestContentDropbox": ".types", + + "UpdateConnectionRequestContentDwolla": ".types", + + "UpdateConnectionRequestContentEmail": ".types", + + "UpdateConnectionRequestContentEvernote": ".types", + + "UpdateConnectionRequestContentEvernoteSandbox": ".types", + + "UpdateConnectionRequestContentExact": ".types", + + "UpdateConnectionRequestContentFacebook": ".types", + + "UpdateConnectionRequestContentFitbit": ".types", + + "UpdateConnectionRequestContentGitHub": ".types", + + "UpdateConnectionRequestContentGoogleApps": ".types", + + "UpdateConnectionRequestContentGoogleOAuth2": ".types", + + "UpdateConnectionRequestContentInstagram": ".types", + + "UpdateConnectionRequestContentIp": ".types", + + "UpdateConnectionRequestContentLine": ".types", + + "UpdateConnectionRequestContentLinkedin": ".types", + + "UpdateConnectionRequestContentOAuth1": ".types", + + "UpdateConnectionRequestContentOAuth2": ".types", + + "UpdateConnectionRequestContentOffice365": ".types", + + "UpdateConnectionRequestContentOidc": ".types", + + "UpdateConnectionRequestContentOkta": ".types", + + "UpdateConnectionRequestContentPaypal": ".types", + + "UpdateConnectionRequestContentPaypalSandbox": ".types", + + "UpdateConnectionRequestContentPingFederate": ".types", + + "UpdateConnectionRequestContentPlanningCenter": ".types", + + "UpdateConnectionRequestContentSalesforce": ".types", + + "UpdateConnectionRequestContentSalesforceCommunity": ".types", + + "UpdateConnectionRequestContentSalesforceSandbox": ".types", + + "UpdateConnectionRequestContentSaml": ".types", + + "UpdateConnectionRequestContentSharepoint": ".types", + + "UpdateConnectionRequestContentShop": ".types", + + "UpdateConnectionRequestContentShopify": ".types", + + "UpdateConnectionRequestContentSms": ".types", + + "UpdateConnectionRequestContentSoundcloud": ".types", + + "UpdateConnectionRequestContentThirtySevenSignals": ".types", + + "UpdateConnectionRequestContentTwitter": ".types", + + "UpdateConnectionRequestContentUntappd": ".types", + + "UpdateConnectionRequestContentVkontakte": ".types", + + "UpdateConnectionRequestContentWeibo": ".types", + + "UpdateConnectionRequestContentWindowsLive": ".types", + + "UpdateConnectionRequestContentWordpress": ".types", + + "UpdateConnectionRequestContentYahoo": ".types", + + "UpdateConnectionRequestContentYandex": ".types", + "UpdateConnectionResponseContent": ".types", + "UpdateCustomDomainResponseContent": ".types", + + "UpdateDefaultCanonicalDomainResponseContent": ".types", + + "UpdateDefaultCustomDomainResponseContent": ".types", + + "UpdateDefaultDomainResponseContent": ".types", + + "UpdateDirectoryProvisioningRequestContent": ".types", + + "UpdateDirectoryProvisioningResponseContent": ".types", + "UpdateEmailProviderResponseContent": ".types", + "UpdateEmailTemplateResponseContent": ".types", + "UpdateEnabledClientConnectionsRequestContent": ".types", + "UpdateEnabledClientConnectionsRequestContentItem": ".types", + "UpdateEventStreamResponseContent": ".types", + "UpdateFlowResponseContent": ".types", + + "UpdateFlowsVaultConnectionResponseContent": ".types", + + "UpdateFlowsVaultConnectionSetup": ".types", + "UpdateFormResponseContent": ".types", + "UpdateGuardianFactorDuoSettingsResponseContent": ".types", + + "UpdateGuardianFactorsProviderPushNotificationApnsResponseContent": ".types", + + "UpdateGuardianFactorsProviderPushNotificationFcmResponseContent": ".types", + + "UpdateGuardianFactorsProviderPushNotificationFcmv1ResponseContent": ".types", + "UpdateGuardianFactorsProviderPushNotificationSnsResponseContent": ".types", + "UpdateHookResponseContent": ".types", + "UpdateHookSecretRequestContent": ".types", + "UpdateLogStreamResponseContent": ".types", + "UpdateNetworkAclResponseContent": ".types", + + "UpdateOrganizationAllConnectionResponseContent": ".types", + "UpdateOrganizationConnectionResponseContent": ".types", + + "UpdateOrganizationDiscoveryDomainResponseContent": ".types", + "UpdateOrganizationResponseContent": ".types", + "UpdatePhoneTemplateResponseContent": ".types", + + "UpdateRefreshTokenResponseContent": ".types", + "UpdateResourceServerResponseContent": ".types", + + "UpdateRiskAssessmentsSettingsNewDeviceResponseContent": ".types", + + "UpdateRiskAssessmentsSettingsResponseContent": ".types", + "UpdateRoleResponseContent": ".types", + "UpdateRuleResponseContent": ".types", + "UpdateScimConfigurationResponseContent": ".types", + "UpdateSelfServiceProfileResponseContent": ".types", + + "UpdateSessionResponseContent": ".types", + "UpdateSettingsResponseContent": ".types", + "UpdateSuspiciousIpThrottlingSettingsResponseContent": ".types", + "UpdateTenantSettingsResponseContent": ".types", + "UpdateTokenQuota": ".types", + "UpdateUniversalLoginTemplateRequestContent": ".types", + "UpdateUniversalLoginTemplateRequestContentTemplate": ".types", + + "UpdateUserAttributeProfileResponseContent": ".types", + "UpdateUserAuthenticationMethodResponseContent": ".types", + "UpdateUserResponseContent": ".types", + "UpdateVerifiableCredentialTemplateResponseContent": ".types", + "UserAppMetadataSchema": ".types", + + "UserAttributeProfile": ".types", + + "UserAttributeProfileId": ".types", + + "UserAttributeProfileName": ".types", + + "UserAttributeProfileOidcMapping": ".types", + + "UserAttributeProfilePatchUserId": ".types", + + "UserAttributeProfileSamlMapping": ".types", + + "UserAttributeProfileStrategyOverrides": ".types", + + "UserAttributeProfileStrategyOverridesMapping": ".types", + + "UserAttributeProfileStrategyOverridesUserId": ".types", + + "UserAttributeProfileStrategyOverridesUserIdMapping": ".types", + + "UserAttributeProfileTemplate": ".types", + + "UserAttributeProfileTemplateItem": ".types", + + "UserAttributeProfileUserAttributeAdditionalProperties": ".types", + + "UserAttributeProfileUserAttributes": ".types", + + "UserAttributeProfileUserId": ".types", + + "UserAttributeProfileUserIdOidcMappingEnum": ".types", + + "UserAttributeProfileUserIdOidcStrategyOverrideMapping": ".types", + + "UserAttributeProfileUserIdSamlMapping": ".types", + "UserAuthenticationMethod": ".types", + "UserAuthenticationMethodProperties": ".types", + "UserAuthenticationMethodPropertiesEnum": ".types", + @@ -2369,7 +5395,8 @@ _dynamic_imports: typing.Dict[str, str] = { + "UserEnrollmentAuthMethodEnum": ".types", + "UserEnrollmentStatusEnum": ".types", + "UserGrant": ".types", + - "UserIdEnum": ".types", + + "UserGroupsResponseSchema": ".types", + + "UserId": ".types", + "UserIdentity": ".types", + "UserIdentityProviderEnum": ".types", + "UserIdentitySchema": ".types", + @@ -2388,6 +5415,8 @@ _dynamic_imports: typing.Dict[str, str] = { + "VerificationMethodEnum": ".types", + "VerifyCustomDomainResponseContent": ".types", + "VerifyEmailTicketResponseContent": ".types", + + "X509CertificateCredential": ".types", + + "X509CertificateCredentialTypeEnum": ".types", + "__version__": ".version", + "actions": ".actions", + "anomaly": ".anomaly", + @@ -2395,14 +5424,17 @@ _dynamic_imports: typing.Dict[str, str] = { + "branding": ".branding", + "client_grants": ".client_grants", + "clients": ".clients", + + "connection_profiles": ".connection_profiles", + "connections": ".connections", + "custom_domains": ".custom_domains", + "device_credentials": ".device_credentials", + "email_templates": ".email_templates", + "emails": ".emails", + "event_streams": ".event_streams", + + "events": ".events", + "flows": ".flows", + "forms": ".forms", + + "groups": ".groups", + "guardian": ".guardian", + "hooks": ".hooks", + "jobs": ".jobs", + @@ -2414,6 +5446,7 @@ _dynamic_imports: typing.Dict[str, str] = { + "prompts": ".prompts", + "refresh_tokens": ".refresh_tokens", + "resource_servers": ".resource_servers", + + "risk_assessments": ".risk_assessments", + "roles": ".roles", + "rules": ".rules", + "rules_configs": ".rules_configs", + @@ -2424,6 +5457,7 @@ _dynamic_imports: typing.Dict[str, str] = { + "tenants": ".tenants", + "tickets": ".tickets", + "token_exchange_profiles": ".token_exchange_profiles", + + "user_attribute_profiles": ".user_attribute_profiles", + "user_blocks": ".user_blocks", + "user_grants": ".user_grants", + "users": ".users", + @@ -2465,6 +5499,15 @@ __all__ = [ + "ActionError", + "ActionExecutionResult", + "ActionExecutionStatusEnum", + + "ActionModuleAction", + + "ActionModuleDependency", + + "ActionModuleDependencyRequest", + + "ActionModuleListItem", + + "ActionModuleReference", + + "ActionModuleSecret", + + "ActionModuleSecretRequest", + + "ActionModuleVersion", + + "ActionModuleVersionReference", + "ActionSecretRequest", + "ActionSecretResponse", + "ActionTrigger", + @@ -2474,30 +5517,75 @@ __all__ = [ + "ActionVersionBuildStatusEnum", + "ActionVersionDependency", + "AculClientFilter", + + "AculClientFilterById", + + "AculClientFilterByMetadata", + "AculClientMetadata", + + "AculConfigs", + + "AculConfigsItem", + + "AculContextConfiguration", + + "AculContextConfigurationItem", + + "AculContextEnum", + "AculDomainFilter", + + "AculDomainFilterById", + + "AculDomainFilterByMetadata", + "AculDomainMetadata", + "AculFilters", + "AculHeadTag", + "AculHeadTagAttributes", + + "AculHeadTagContent", + "AculMatchTypeEnum", + "AculOrganizationFilter", + + "AculOrganizationFilterById", + + "AculOrganizationFilterByMetadata", + "AculOrganizationMetadata", + "AculRenderingModeEnum", + - "AculResponseContent", + "AddOrganizationConnectionResponseContent", + "AnomalyIpFormat", + "AppMetadata", + + "AssessorsTypeEnum", "AssociateOrganizationClientGrantResponseContent", - "AsyncApprovalNotificationsChannelsEnum", + + "AsyncApprovalNotificationsChannelsEnum", "AsyncAuth0", + "AsyncManagementClient", + "AsyncTokenProvider", - "AttackProtectionCaptchaArkoseResponseContent", - "AttackProtectionCaptchaAuthChallengeRequest", - "AttackProtectionCaptchaAuthChallengeResponseContent", - @@ -6494,6 +6503,7 @@ __all__ = [ - "CreatedUserAuthenticationMethodTypeEnum", - "CredentialId", - "CustomDomain", - + "CustomDomainHeader", + + "AttackProtectionCaptchaArkoseResponseContent", + + "AttackProtectionCaptchaAuthChallengeRequest", + + "AttackProtectionCaptchaAuthChallengeResponseContent", + + "AttackProtectionCaptchaFriendlyCaptchaResponseContent", + + "AttackProtectionCaptchaHcaptchaResponseContent", + + "AttackProtectionCaptchaProviderId", + + "AttackProtectionCaptchaRecaptchaEnterpriseResponseContent", + + "AttackProtectionCaptchaRecaptchaV2ResponseContent", + + "AttackProtectionCaptchaSimpleCaptchaResponseContent", + + "AttackProtectionUpdateCaptchaArkose", + + "AttackProtectionUpdateCaptchaFriendlyCaptcha", + + "AttackProtectionUpdateCaptchaHcaptcha", + + "AttackProtectionUpdateCaptchaRecaptchaEnterprise", + + "AttackProtectionUpdateCaptchaRecaptchaV2", + "Auth0", + "Auth0Environment", + "AuthenticationMethodTypeEnum", + "AuthenticationTypeEnum", + "BadRequestError", + + "BotDetectionAllowlist", + + "BotDetectionChallengePolicyPasswordFlowEnum", + + "BotDetectionChallengePolicyPasswordResetFlowEnum", + + "BotDetectionChallengePolicyPasswordlessFlowEnum", + + "BotDetectionCidrBlock", + + "BotDetectionIPv4", + + "BotDetectionIPv6", + + "BotDetectionIPv6CidrBlock", + + "BotDetectionIpAddressOrCidrBlock", + + "BotDetectionLevelEnum", + + "BotDetectionMonitoringModeEnabled", + "BrandingColors", + "BrandingFont", + + "BrandingIdentifiers", + + "BrandingLoginDisplayEnum", + "BrandingPageBackground", + + "BrandingPhoneDisplay", + + "BrandingPhoneFormattingEnum", + + "BrandingPhoneMaskingEnum", + "BrandingThemeBorders", + "BrandingThemeBordersButtonsStyleEnum", + "BrandingThemeBordersInputsStyleEnum", + @@ -2525,7 +5613,18 @@ __all__ = [ + "BreachedPasswordDetectionPreUserRegistrationStage", + "BreachedPasswordDetectionShieldsEnum", + "BreachedPasswordDetectionStage", + + "BruteForceProtectionModeEnum", + + "BruteForceProtectionShieldsEnum", + + "BulkUpdateAculResponseContent", + + "CertificateSubjectDnCredential", + + "CertificateSubjectDnCredentialTypeEnum", + + "ChangePasswordTicketIdentity", + "ChangePasswordTicketResponseContent", + + "CimdMappedClientAuthenticationMethods", + + "CimdMappedClientAuthenticationMethodsPrivateKeyJwt", + + "CimdMappedClientFields", + + "CimdMappedPrivateKeyJwtCredential", + + "CimdValidationResult", + "Client", + "ClientAddonAws", + "ClientAddonAzureBlob", + @@ -2561,59 +5660,336 @@ __all__ = [ + "ClientAddonZoom", + "ClientAddons", + "ClientAppTypeEnum", + + "ClientAsyncApprovalNotificationsChannelsApiPatchConfiguration", + + "ClientAsyncApprovalNotificationsChannelsApiPostConfiguration", + "ClientAuthenticationMethod", + + "ClientAuthenticationMethodPrivateKeyJwt", + + "ClientAuthenticationMethodPrivateKeyJwtCredentials", + "ClientAuthenticationMethodSelfSignedTlsClientAuth", + + "ClientAuthenticationMethodSelfSignedTlsClientAuthCredentials", + "ClientAuthenticationMethodTlsClientAuth", + + "ClientAuthenticationMethodTlsClientAuthCredentials", + "ClientComplianceLevelEnum", + "ClientCreateAuthenticationMethod", + + "ClientCreateAuthenticationMethodPrivateKeyJwt", + + "ClientCreateAuthenticationMethodPrivateKeyJwtCredentials", + + "ClientCreateAuthenticationMethodTlsClientAuth", + + "ClientCreateAuthenticationMethodTlsClientAuthCredentials", + "ClientCredential", + "ClientCredentialAlgorithmEnum", + "ClientCredentialTypeEnum", + "ClientDefaultOrganization", + "ClientDefaultOrganizationFlowsEnum", + "ClientEncryptionKey", + + "ClientExternalMetadataCreatedByEnum", + + "ClientExternalMetadataTypeEnum", + "ClientGrantAllowAnyOrganizationEnum", + + "ClientGrantDefaultForEnum", + "ClientGrantOrganizationNullableUsageEnum", + "ClientGrantOrganizationUsageEnum", + "ClientGrantResponseContent", + + "ClientGrantSubjectTypeEnum", + "ClientJwtConfiguration", + "ClientJwtConfigurationScopes", + "ClientMetadata", + "ClientMobile", + "ClientMobileAndroid", + "ClientMobileiOs", + + "ClientMyOrganizationConfigurationAllowedStrategiesEnum", + + "ClientMyOrganizationDeletionBehaviorEnum", + + "ClientMyOrganizationPatchConfiguration", + + "ClientMyOrganizationPostConfiguration", + + "ClientMyOrganizationResponseConfiguration", + "ClientOidcBackchannelLogoutInitiators", + "ClientOidcBackchannelLogoutInitiatorsEnum", + "ClientOidcBackchannelLogoutInitiatorsModeEnum", + + "ClientOidcBackchannelLogoutSessionMetadata", + "ClientOidcBackchannelLogoutSettings", + + "ClientOrganizationDiscoveryEnum", + "ClientOrganizationRequireBehaviorEnum", + "ClientOrganizationRequireBehaviorPatchEnum", + "ClientOrganizationUsageEnum", + "ClientOrganizationUsagePatchEnum", + + "ClientRedirectionPolicyEnum", + "ClientRefreshTokenConfiguration", + + "ClientRefreshTokenPolicy", + "ClientSessionTransferAllowedAuthenticationMethodsEnum", + "ClientSessionTransferConfiguration", + + "ClientSessionTransferDelegationConfiguration", + + "ClientSessionTransferDelegationDeviceBindingEnum", + "ClientSessionTransferDeviceBindingEnum", + "ClientSignedRequestObjectWithCredentialId", + "ClientSignedRequestObjectWithPublicKey", + "ClientSigningKey", + "ClientSigningKeys", + + "ClientThirdPartySecurityModeEnum", + "ClientTokenEndpointAuthMethodEnum", + "ClientTokenEndpointAuthMethodOrNullEnum", + + "ClientTokenExchangeConfiguration", + + "ClientTokenExchangeConfigurationOrNull", + + "ClientTokenExchangeTypeEnum", + "ConflictError", + + "ConnectedAccount", + + "ConnectedAccountAccessTypeEnum", + + "ConnectionAccessTokenUrloAuth1", + + "ConnectionAcrValuesSupported", + + "ConnectionAdminAccessTokenExpiresInGoogleApps", + + "ConnectionAdminAccessTokenGoogleApps", + + "ConnectionAdminRefreshTokenGoogleApps", + + "ConnectionAgentIpad", + + "ConnectionAgentModeAd", + + "ConnectionAgentVersionAd", + + "ConnectionAllowedAudiencesGoogleOAuth2", + + "ConnectionApiBehaviorEnum", + + "ConnectionApiEnableGroups", + + "ConnectionApiEnableGroupsGoogleApps", + + "ConnectionApiEnableUsers", + + "ConnectionApiEnableUsersGoogleApps", + + "ConnectionAppDomainAzureAd", + + "ConnectionAssertionDecryptionAlgorithmProfileEnum", + + "ConnectionAssertionDecryptionSettings", + "ConnectionAttributeIdentifier", + + "ConnectionAttributeMapAttributes", + + "ConnectionAttributeMapOidc", + + "ConnectionAttributeMapOkta", + + "ConnectionAttributeMapUserinfoScope", + "ConnectionAttributes", + + "ConnectionAuthParamsAdditionalPropertiesOAuth2", + + "ConnectionAuthParamsEmail", + + "ConnectionAuthParamsMap", + + "ConnectionAuthParamsOAuth2", + "ConnectionAuthenticationMethods", + + "ConnectionAuthenticationPurpose", + + "ConnectionAuthorizationEndpoint", + + "ConnectionBaseUrlExact", + + "ConnectionBruteForceProtection", + + "ConnectionCalculatedThumbprintSaml", + + "ConnectionCertsAd", + + "ConnectionClaimTypesSupported", + + "ConnectionClaimsLocalesSupported", + + "ConnectionClaimsParameterSupported", + + "ConnectionClaimsSupported", + + "ConnectionClientId", + + "ConnectionClientIdAmazon", + + "ConnectionClientIdAzureAd", + + "ConnectionClientIdBitbucket", + + "ConnectionClientIdExact", + + "ConnectionClientIdFacebook", + + "ConnectionClientIdGoogleApps", + + "ConnectionClientIdGoogleOAuth2", + + "ConnectionClientIdLine", + + "ConnectionClientIdLinkedin", + + "ConnectionClientIdOAuth1", + + "ConnectionClientIdOAuth2", + + "ConnectionClientIdOidc", + + "ConnectionClientIdPaypal", + + "ConnectionClientIdSalesforce", + + "ConnectionClientIdWindowsLive", + + "ConnectionClientProtocolSaml", + + "ConnectionClientSecret", + + "ConnectionClientSecretAmazon", + + "ConnectionClientSecretAzureAd", + + "ConnectionClientSecretBitbucket", + + "ConnectionClientSecretExact", + + "ConnectionClientSecretFacebook", + + "ConnectionClientSecretGoogleApps", + + "ConnectionClientSecretGoogleOAuth2", + + "ConnectionClientSecretLine", + + "ConnectionClientSecretLinkedin", + + "ConnectionClientSecretOAuth1", + + "ConnectionClientSecretOAuth2", + + "ConnectionClientSecretOidc", + + "ConnectionClientSecretPaypal", + + "ConnectionClientSecretSalesforce", + + "ConnectionClientSecretWindowsLive", + + "ConnectionCommon", + + "ConnectionCommunityBaseUrlSalesforce", + + "ConnectionConfiguration", + + "ConnectionConnectedAccountsPurpose", + + "ConnectionConnectedAccountsPurposeXaa", + + "ConnectionConnectionSettings", + + "ConnectionConnectionSettingsPkceEnum", + + "ConnectionCustomHeadersOAuth2", + "ConnectionCustomScripts", + + "ConnectionDebugSaml", + + "ConnectionDecryptionKeySaml", + + "ConnectionDecryptionKeySamlCert", + + "ConnectionDestinationUrlSaml", + + "ConnectionDigestAlgorithmEnumSaml", + + "ConnectionDigestAlgorithmSaml", + + "ConnectionDisableSelfServiceChangePassword", + + "ConnectionDisableSignup", + + "ConnectionDisableSignupSms", + + "ConnectionDiscoveryUrl", + + "ConnectionDisplayName", + + "ConnectionDisplayValuesSupported", + + "ConnectionDomainAliases", + + "ConnectionDomainAliasesAd", + + "ConnectionDomainAliasesAzureAd", + + "ConnectionDomainAliasesItemsOne", + + "ConnectionDomainAliasesSaml", + + "ConnectionDomainGoogleApps", + + "ConnectionDomainOkta", + + "ConnectionDpopSigningAlgEnum", + + "ConnectionDpopSigningAlgValuesSupported", + + "ConnectionEmailBodyEmail", + + "ConnectionEmailEmail", + + "ConnectionEmailEmailSyntax", + + "ConnectionEmailFromEmail", + + "ConnectionEmailOtpAuthenticationMethod", + + "ConnectionEmailSubjectEmail", + + "ConnectionEnableScriptContext", + "ConnectionEnabledClient", + + "ConnectionEnabledClients", + + "ConnectionEnabledDatabaseCustomization", + + "ConnectionEndSessionEndpoint", + + "ConnectionEntityIdSaml", + + "ConnectionExtAdmin", + + "ConnectionExtAgreedTerms", + + "ConnectionExtAgreedTermsGoogleApps", + + "ConnectionExtAssignedPlans", + + "ConnectionExtGroups", + + "ConnectionExtGroupsAzureAd", + + "ConnectionExtGroupsGoogleApps", + + "ConnectionExtIsAdminGoogleApps", + + "ConnectionExtIsSuspended", + + "ConnectionExtIsSuspendedGoogleApps", + + "ConnectionExtProfile", + + "ConnectionFederatedConnectionsAccessTokens", + + "ConnectionFieldsMap", + + "ConnectionFieldsMapSaml", + + "ConnectionFieldsMapSamlValue", + "ConnectionForList", + "ConnectionForOrganization", + + "ConnectionForwardReqInfoSms", + + "ConnectionFreeformScopesAmazon", + + "ConnectionFreeformScopesGoogleOAuth2", + + "ConnectionFreeformScopesLinkedin", + + "ConnectionFreeformScopesPaypal", + + "ConnectionFreeformScopesSalesforce", + + "ConnectionFreeformScopesWindowsLive", + + "ConnectionFromSms", + "ConnectionGatewayAuthentication", + + "ConnectionGatewayAuthenticationAudienceSms", + + "ConnectionGatewayAuthenticationMethodSms", + + "ConnectionGatewayAuthenticationSms", + + "ConnectionGatewayAuthenticationSubjectSms", + + "ConnectionGatewayUrlSms", + + "ConnectionGlobalTokenRevocationJwtIssSaml", + + "ConnectionGlobalTokenRevocationJwtSubSaml", + + "ConnectionGrantTypesSupported", + + "ConnectionHandleLoginFromSocialGoogleApps", + + "ConnectionHttpsUrlWithHttpFallback", + + "ConnectionHttpsUrlWithHttpFallback2048", + + "ConnectionHttpsUrlWithHttpFallback255", + + "ConnectionIconUrl", + + "ConnectionIconUrlAdfs", + + "ConnectionIconUrlAzureAd", + + "ConnectionIconUrlGoogleApps", + + "ConnectionIconUrlGoogleOAuth2", + + "ConnectionIconUrlSaml", + + "ConnectionId", + + "ConnectionIdTokenEncryptionAlgValuesSupported", + + "ConnectionIdTokenEncryptionEncValuesSupported", + + "ConnectionIdTokenSignedResponseAlgEnum", + + "ConnectionIdTokenSignedResponseAlgs", + + "ConnectionIdTokenSigningAlgValuesSupported", + + "ConnectionIdentifierPrecedence", + "ConnectionIdentifierPrecedenceEnum", + + "ConnectionIdentityApiAzureAd", + + "ConnectionIdentityApiEnumAzureAd", + "ConnectionIdentityProviderEnum", + + "ConnectionImportMode", + + "ConnectionIpsAd", + + "ConnectionIsDomainConnection", + + "ConnectionIssuer", + + "ConnectionJwksUri", + "ConnectionKey", + "ConnectionKeyUseEnum", + + "ConnectionMappingModeEnumOidc", + + "ConnectionMappingModeEnumOkta", + + "ConnectionMaxGroupsToRetrieve", + + "ConnectionMessagingServiceSidSms", + + "ConnectionMetadataUrlSaml", + + "ConnectionMetadataXml", + + "ConnectionMetadataXmlAdfs", + + "ConnectionMetadataXmlSaml", + + "ConnectionMfa", + + "ConnectionName", + + "ConnectionNamePrefixTemplate", + + "ConnectionNonPersistentAttrs", + + "ConnectionOpPolicyUri", + + "ConnectionOpTosUri", + "ConnectionOptions", + + "ConnectionOptionsAd", + + "ConnectionOptionsAdfs", + + "ConnectionOptionsAmazon", + + "ConnectionOptionsApple", + + "ConnectionOptionsAuth0", + + "ConnectionOptionsAuth0Oidc", + + "ConnectionOptionsAzureAd", + + "ConnectionOptionsBaidu", + + "ConnectionOptionsBitbucket", + + "ConnectionOptionsBitly", + + "ConnectionOptionsBox", + + "ConnectionOptionsClientIdGithub", + + "ConnectionOptionsClientIdTwitter", + + "ConnectionOptionsClientSecretGithub", + + "ConnectionOptionsClientSecretTwitter", + + "ConnectionOptionsCommon", + + "ConnectionOptionsCommonOidc", + + "ConnectionOptionsCommonSaml", + + "ConnectionOptionsCustom", + + "ConnectionOptionsDaccount", + + "ConnectionOptionsDeflateSaml", + + "ConnectionOptionsDropbox", + + "ConnectionOptionsDwolla", + + "ConnectionOptionsEmail", + + "ConnectionOptionsEvernote", + + "ConnectionOptionsExact", + + "ConnectionOptionsFacebook", + + "ConnectionOptionsFitbit", + + "ConnectionOptionsFreeformScopesGithub", + + "ConnectionOptionsGitHub", + + "ConnectionOptionsGoogleApps", + + "ConnectionOptionsGoogleOAuth2", + + "ConnectionOptionsIdpInitiatedClientProtocolEnumSaml", + + "ConnectionOptionsIdpinitiatedSaml", + + "ConnectionOptionsInstagram", + + "ConnectionOptionsIp", + + "ConnectionOptionsLine", + + "ConnectionOptionsLinkedin", + + "ConnectionOptionsOAuth1", + + "ConnectionOptionsOAuth1Common", + + "ConnectionOptionsOAuth2", + + "ConnectionOptionsOAuth2Common", + + "ConnectionOptionsOffice365", + + "ConnectionOptionsOidc", + + "ConnectionOptionsOidcMetadata", + + "ConnectionOptionsOkta", + + "ConnectionOptionsPaypal", + + "ConnectionOptionsPingFederate", + + "ConnectionOptionsPlanningCenter", + + "ConnectionOptionsProtocolEnumTwitter", + + "ConnectionOptionsSalesforce", + + "ConnectionOptionsSalesforceCommunity", + + "ConnectionOptionsSaml", + + "ConnectionOptionsScopeGithub", + + "ConnectionOptionsScopeTwitter", + + "ConnectionOptionsSharepoint", + + "ConnectionOptionsShop", + + "ConnectionOptionsShopify", + + "ConnectionOptionsSms", + + "ConnectionOptionsSoundcloud", + + "ConnectionOptionsThirtySevenSignals", + + "ConnectionOptionsTwitter", + + "ConnectionOptionsUntappd", + + "ConnectionOptionsVkontakte", + + "ConnectionOptionsWeibo", + + "ConnectionOptionsWindowsLive", + + "ConnectionOptionsWordpress", + + "ConnectionOptionsYahoo", + + "ConnectionOptionsYandex", + "ConnectionPasskeyAuthenticationMethod", + "ConnectionPasskeyChallengeUiEnum", + "ConnectionPasskeyOptions", + @@ -2622,22 +5998,382 @@ __all__ = [ + "ConnectionPasswordDictionaryOptions", + "ConnectionPasswordHistoryOptions", + "ConnectionPasswordNoPersonalInfoOptions", + + "ConnectionPasswordOptions", + + "ConnectionPasswordOptionsComplexity", + + "ConnectionPasswordOptionsDictionary", + + "ConnectionPasswordOptionsHistory", + + "ConnectionPasswordOptionsProfileData", + "ConnectionPasswordPolicyEnum", + + "ConnectionPhoneOtpAuthenticationMethod", + + "ConnectionPingFederateBaseUrl", + + "ConnectionPingFederateBaseUrlPingFederate", + + "ConnectionProfile", + + "ConnectionProfileBitbucket", + + "ConnectionProfileConfig", + + "ConnectionProfileEnabledFeatures", + + "ConnectionProfileId", + + "ConnectionProfileName", + + "ConnectionProfileOrganization", + + "ConnectionProfileOrganizationAssignMembershipOnLoginEnum", + + "ConnectionProfileOrganizationShowAsButtonEnum", + + "ConnectionProfileStrategyOverride", + + "ConnectionProfileStrategyOverrides", + + "ConnectionProfileStrategyOverridesConnectionConfig", + + "ConnectionProfileStrategyOverridesEnabledFeatures", + + "ConnectionProfileTemplate", + + "ConnectionProfileTemplateItem", + "ConnectionPropertiesOptions", + + "ConnectionProtocolBindingEnumSaml", + + "ConnectionProtocolBindingSaml", + + "ConnectionProviderEnumSms", + + "ConnectionProviderSms", + + "ConnectionProvisioningTicketUrl", + + "ConnectionPurposes", + + "ConnectionRealmFallback", + + "ConnectionRealms", + + "ConnectionRecipientUrlSaml", + + "ConnectionRegistrationEndpoint", + + "ConnectionRequestObjectEncryptionAlgValuesSupported", + + "ConnectionRequestObjectEncryptionEncValuesSupported", + + "ConnectionRequestObjectSigningAlgValuesSupported", + + "ConnectionRequestParameterSupported", + + "ConnectionRequestTemplateSaml", + + "ConnectionRequestTokenUrloAuth1", + + "ConnectionRequestUriParameterSupported", + + "ConnectionRequireRequestUriRegistration", + + "ConnectionRequiresUsername", + + "ConnectionResponseCommon", + + "ConnectionResponseContentAd", + + "ConnectionResponseContentAdStrategy", + + "ConnectionResponseContentAdfs", + + "ConnectionResponseContentAdfsStrategy", + + "ConnectionResponseContentAmazon", + + "ConnectionResponseContentAmazonStrategy", + + "ConnectionResponseContentApple", + + "ConnectionResponseContentAppleStrategy", + + "ConnectionResponseContentAuth0", + + "ConnectionResponseContentAuth0Oidc", + + "ConnectionResponseContentAuth0OidcStrategy", + + "ConnectionResponseContentAuth0Strategy", + + "ConnectionResponseContentAzureAd", + + "ConnectionResponseContentAzureAdStrategy", + + "ConnectionResponseContentBaidu", + + "ConnectionResponseContentBaiduStrategy", + + "ConnectionResponseContentBitbucket", + + "ConnectionResponseContentBitbucketStrategy", + + "ConnectionResponseContentBitly", + + "ConnectionResponseContentBitlyStrategy", + + "ConnectionResponseContentBox", + + "ConnectionResponseContentBoxStrategy", + + "ConnectionResponseContentCustom", + + "ConnectionResponseContentCustomStrategy", + + "ConnectionResponseContentDaccount", + + "ConnectionResponseContentDaccountStrategy", + + "ConnectionResponseContentDropbox", + + "ConnectionResponseContentDropboxStrategy", + + "ConnectionResponseContentDwolla", + + "ConnectionResponseContentDwollaStrategy", + + "ConnectionResponseContentEmail", + + "ConnectionResponseContentEmailStrategy", + + "ConnectionResponseContentEvernote", + + "ConnectionResponseContentEvernoteSandbox", + + "ConnectionResponseContentEvernoteSandboxStrategy", + + "ConnectionResponseContentEvernoteStrategy", + + "ConnectionResponseContentExact", + + "ConnectionResponseContentExactStrategy", + + "ConnectionResponseContentFacebook", + + "ConnectionResponseContentFacebookStrategy", + + "ConnectionResponseContentFitbit", + + "ConnectionResponseContentFitbitStrategy", + + "ConnectionResponseContentGitHub", + + "ConnectionResponseContentGitHubStrategy", + + "ConnectionResponseContentGoogleApps", + + "ConnectionResponseContentGoogleAppsStrategy", + + "ConnectionResponseContentGoogleOAuth2", + + "ConnectionResponseContentGoogleOAuth2Strategy", + + "ConnectionResponseContentInstagram", + + "ConnectionResponseContentInstagramStrategy", + + "ConnectionResponseContentIp", + + "ConnectionResponseContentIpStrategy", + + "ConnectionResponseContentLine", + + "ConnectionResponseContentLineStrategy", + + "ConnectionResponseContentLinkedin", + + "ConnectionResponseContentLinkedinStrategy", + + "ConnectionResponseContentOAuth1", + + "ConnectionResponseContentOAuth1Strategy", + + "ConnectionResponseContentOAuth2", + + "ConnectionResponseContentOAuth2Strategy", + + "ConnectionResponseContentOffice365", + + "ConnectionResponseContentOffice365Strategy", + + "ConnectionResponseContentOidc", + + "ConnectionResponseContentOidcStrategy", + + "ConnectionResponseContentOkta", + + "ConnectionResponseContentOktaStrategy", + + "ConnectionResponseContentPaypal", + + "ConnectionResponseContentPaypalSandbox", + + "ConnectionResponseContentPaypalSandboxStrategy", + + "ConnectionResponseContentPaypalStrategy", + + "ConnectionResponseContentPingFederate", + + "ConnectionResponseContentPingFederateStrategy", + + "ConnectionResponseContentPlanningCenter", + + "ConnectionResponseContentPlanningCenterStrategy", + + "ConnectionResponseContentSalesforce", + + "ConnectionResponseContentSalesforceCommunity", + + "ConnectionResponseContentSalesforceCommunityStrategy", + + "ConnectionResponseContentSalesforceSandbox", + + "ConnectionResponseContentSalesforceSandboxStrategy", + + "ConnectionResponseContentSalesforceStrategy", + + "ConnectionResponseContentSaml", + + "ConnectionResponseContentSamlStrategy", + + "ConnectionResponseContentSharepoint", + + "ConnectionResponseContentSharepointStrategy", + + "ConnectionResponseContentShop", + + "ConnectionResponseContentShopStrategy", + + "ConnectionResponseContentShopify", + + "ConnectionResponseContentShopifyStrategy", + + "ConnectionResponseContentSms", + + "ConnectionResponseContentSmsStrategy", + + "ConnectionResponseContentSoundcloud", + + "ConnectionResponseContentSoundcloudStrategy", + + "ConnectionResponseContentThirtySevenSignals", + + "ConnectionResponseContentThirtySevenSignalsStrategy", + + "ConnectionResponseContentTwitter", + + "ConnectionResponseContentTwitterStrategy", + + "ConnectionResponseContentUntappd", + + "ConnectionResponseContentUntappdStrategy", + + "ConnectionResponseContentVkontakte", + + "ConnectionResponseContentVkontakteStrategy", + + "ConnectionResponseContentWeibo", + + "ConnectionResponseContentWeiboStrategy", + + "ConnectionResponseContentWindowsLive", + + "ConnectionResponseContentWindowsLiveStrategy", + + "ConnectionResponseContentWordpress", + + "ConnectionResponseContentWordpressStrategy", + + "ConnectionResponseContentYahoo", + + "ConnectionResponseContentYahooStrategy", + + "ConnectionResponseContentYandex", + + "ConnectionResponseContentYandexStrategy", + + "ConnectionResponseModesSupported", + + "ConnectionResponseTypesSupported", + + "ConnectionScopeAmazon", + + "ConnectionScopeArray", + + "ConnectionScopeArrayFacebook", + + "ConnectionScopeArrayWindowsLive", + + "ConnectionScopeAzureAd", + + "ConnectionScopeFacebook", + + "ConnectionScopeGoogleApps", + + "ConnectionScopeGoogleOAuth2", + + "ConnectionScopeItem", + + "ConnectionScopeItemGoogleApps", + + "ConnectionScopeLinkedin", + + "ConnectionScopeOAuth2", + + "ConnectionScopeOidc", + + "ConnectionScopePaypal", + + "ConnectionScopeSalesforce", + + "ConnectionScopesSupported", + + "ConnectionScriptsOAuth1", + + "ConnectionScriptsOAuth2", + + "ConnectionSendBackChannelNonce", + + "ConnectionServiceDocumentation", + "ConnectionSetUserRootAttributesEnum", + + "ConnectionSha1Thumbprint", + + "ConnectionShouldTrustEmailVerifiedConnectionEnum", + + "ConnectionShowAsButton", + + "ConnectionSignInEndpointAd", + + "ConnectionSignInEndpointAdfs", + + "ConnectionSignInEndpointSaml", + + "ConnectionSignOutEndpointSaml", + + "ConnectionSignSamlRequestSaml", + + "ConnectionSignatureAlgorithmEnumSaml", + + "ConnectionSignatureAlgorithmSaml", + + "ConnectionSignatureMethodOAuth1", + + "ConnectionSigningCertSaml", + + "ConnectionSigningCertificateDerSaml", + + "ConnectionSigningCertificatePemPingFederate", + + "ConnectionSigningCertificatePemSaml", + + "ConnectionSigningKeySaml", + + "ConnectionSignupBehaviorEnum", + "ConnectionStrategyEnum", + + "ConnectionStrategyVersionEnumLinkedin", + + "ConnectionStrategyVersionEnumWindowsLive", + + "ConnectionSubjectTypesSupported", + + "ConnectionTemplateSms", + + "ConnectionTemplateSyntaxEnumSms", + + "ConnectionTenantDomain", + + "ConnectionTenantDomainAd", + + "ConnectionTenantDomainAzureAdOne", + + "ConnectionTenantDomainGoogleApps", + + "ConnectionTenantDomainSaml", + + "ConnectionTenantIdAzureAd", + + "ConnectionThumbprints", + + "ConnectionThumbprintsAd", + + "ConnectionThumbprintsSaml", + + "ConnectionTokenEndpoint", + + "ConnectionTokenEndpointAuthMethodEnum", + + "ConnectionTokenEndpointAuthMethodsSupported", + + "ConnectionTokenEndpointAuthSigningAlgEnum", + + "ConnectionTokenEndpointAuthSigningAlgValuesSupported", + + "ConnectionTokenEndpointJwtcaAudFormatEnumOidc", + + "ConnectionTotpEmail", + + "ConnectionTotpLengthEmail", + + "ConnectionTotpLengthPasswordless", + + "ConnectionTotpLengthSms", + + "ConnectionTotpSms", + + "ConnectionTotpTimeStepEmail", + + "ConnectionTotpTimeStepPasswordless", + + "ConnectionTotpTimeStepSms", + + "ConnectionTwilioSidSms", + + "ConnectionTwilioTokenSms", + + "ConnectionTypeEnumOidc", + + "ConnectionTypeEnumOkta", + + "ConnectionUiLocalesSupported", + + "ConnectionUpstreamAdditionalProperties", + + "ConnectionUpstreamAlias", + + "ConnectionUpstreamAliasEnum", + "ConnectionUpstreamParams", + + "ConnectionUpstreamParamsFacebook", + + "ConnectionUpstreamValue", + + "ConnectionUseCommonEndpointAzureAd", + + "ConnectionUserAuthorizationUrloAuth1", + + "ConnectionUserIdAttributeSaml", + + "ConnectionUseridAttributeAzureAd", + + "ConnectionUseridAttributeEnumAzureAd", + + "ConnectionUserinfoEncryptionAlgValuesSupported", + + "ConnectionUserinfoEncryptionEncValuesSupported", + + "ConnectionUserinfoEndpoint", + + "ConnectionUserinfoSigningAlgValuesSupported", + "ConnectionUsernameValidationOptions", + "ConnectionValidationOptions", + + "ConnectionWaadProtocol", + + "ConnectionWaadProtocolEnumAzureAd", + "ConnectionsMetadata", + "ContentTooLargeError", + + "CreateActionModuleResponseContent", + + "CreateActionModuleVersionResponseContent", + "CreateActionResponseContent", + "CreateBrandingPhoneProviderResponseContent", + "CreateBrandingThemeResponseContent", + + "CreateClientAuthenticationMethodSelfSignedTlsClientAuth", + + "CreateClientAuthenticationMethodSelfSignedTlsClientAuthCredentials", + "CreateClientGrantResponseContent", + "CreateClientResponseContent", + + "CreateConnectionCommon", + + "CreateConnectionProfileResponseContent", + + "CreateConnectionRequestContentAd", + + "CreateConnectionRequestContentAdStrategy", + + "CreateConnectionRequestContentAdfs", + + "CreateConnectionRequestContentAdfsStrategy", + + "CreateConnectionRequestContentAmazon", + + "CreateConnectionRequestContentAmazonStrategy", + + "CreateConnectionRequestContentApple", + + "CreateConnectionRequestContentAppleStrategy", + + "CreateConnectionRequestContentAuth0", + + "CreateConnectionRequestContentAuth0Oidc", + + "CreateConnectionRequestContentAuth0OidcStrategy", + + "CreateConnectionRequestContentAuth0Strategy", + + "CreateConnectionRequestContentAzureAd", + + "CreateConnectionRequestContentAzureAdStrategy", + + "CreateConnectionRequestContentBaidu", + + "CreateConnectionRequestContentBaiduStrategy", + + "CreateConnectionRequestContentBitbucket", + + "CreateConnectionRequestContentBitbucketStrategy", + + "CreateConnectionRequestContentBitly", + + "CreateConnectionRequestContentBitlyStrategy", + + "CreateConnectionRequestContentBox", + + "CreateConnectionRequestContentBoxStrategy", + + "CreateConnectionRequestContentCustom", + + "CreateConnectionRequestContentCustomStrategy", + + "CreateConnectionRequestContentDaccount", + + "CreateConnectionRequestContentDaccountStrategy", + + "CreateConnectionRequestContentDropbox", + + "CreateConnectionRequestContentDropboxStrategy", + + "CreateConnectionRequestContentDwolla", + + "CreateConnectionRequestContentDwollaStrategy", + + "CreateConnectionRequestContentEmail", + + "CreateConnectionRequestContentEmailStrategy", + + "CreateConnectionRequestContentEvernote", + + "CreateConnectionRequestContentEvernoteSandbox", + + "CreateConnectionRequestContentEvernoteSandboxStrategy", + + "CreateConnectionRequestContentEvernoteStrategy", + + "CreateConnectionRequestContentExact", + + "CreateConnectionRequestContentExactStrategy", + + "CreateConnectionRequestContentFacebook", + + "CreateConnectionRequestContentFacebookStrategy", + + "CreateConnectionRequestContentFitbit", + + "CreateConnectionRequestContentFitbitStrategy", + + "CreateConnectionRequestContentGitHub", + + "CreateConnectionRequestContentGitHubStrategy", + + "CreateConnectionRequestContentGoogleApps", + + "CreateConnectionRequestContentGoogleAppsStrategy", + + "CreateConnectionRequestContentGoogleOAuth2", + + "CreateConnectionRequestContentGoogleOAuth2Strategy", + + "CreateConnectionRequestContentInstagram", + + "CreateConnectionRequestContentInstagramStrategy", + + "CreateConnectionRequestContentIp", + + "CreateConnectionRequestContentIpStrategy", + + "CreateConnectionRequestContentLine", + + "CreateConnectionRequestContentLineStrategy", + + "CreateConnectionRequestContentLinkedin", + + "CreateConnectionRequestContentLinkedinStrategy", + + "CreateConnectionRequestContentOAuth1", + + "CreateConnectionRequestContentOAuth1Strategy", + + "CreateConnectionRequestContentOAuth2", + + "CreateConnectionRequestContentOAuth2Strategy", + + "CreateConnectionRequestContentOffice365", + + "CreateConnectionRequestContentOffice365Strategy", + + "CreateConnectionRequestContentOidc", + + "CreateConnectionRequestContentOidcStrategy", + + "CreateConnectionRequestContentOkta", + + "CreateConnectionRequestContentOktaStrategy", + + "CreateConnectionRequestContentPaypal", + + "CreateConnectionRequestContentPaypalSandbox", + + "CreateConnectionRequestContentPaypalSandboxStrategy", + + "CreateConnectionRequestContentPaypalStrategy", + + "CreateConnectionRequestContentPingFederate", + + "CreateConnectionRequestContentPingFederateStrategy", + + "CreateConnectionRequestContentPlanningCenter", + + "CreateConnectionRequestContentPlanningCenterStrategy", + + "CreateConnectionRequestContentSalesforce", + + "CreateConnectionRequestContentSalesforceCommunity", + + "CreateConnectionRequestContentSalesforceCommunityStrategy", + + "CreateConnectionRequestContentSalesforceSandbox", + + "CreateConnectionRequestContentSalesforceSandboxStrategy", + + "CreateConnectionRequestContentSalesforceStrategy", + + "CreateConnectionRequestContentSaml", + + "CreateConnectionRequestContentSamlStrategy", + + "CreateConnectionRequestContentSharepoint", + + "CreateConnectionRequestContentSharepointStrategy", + + "CreateConnectionRequestContentShop", + + "CreateConnectionRequestContentShopStrategy", + + "CreateConnectionRequestContentShopify", + + "CreateConnectionRequestContentShopifyStrategy", + + "CreateConnectionRequestContentSms", + + "CreateConnectionRequestContentSmsStrategy", + + "CreateConnectionRequestContentSoundcloud", + + "CreateConnectionRequestContentSoundcloudStrategy", + + "CreateConnectionRequestContentThirtySevenSignals", + + "CreateConnectionRequestContentThirtySevenSignalsStrategy", + + "CreateConnectionRequestContentTwitter", + + "CreateConnectionRequestContentTwitterStrategy", + + "CreateConnectionRequestContentUntappd", + + "CreateConnectionRequestContentUntappdStrategy", + + "CreateConnectionRequestContentVkontakte", + + "CreateConnectionRequestContentVkontakteStrategy", + + "CreateConnectionRequestContentWeibo", + + "CreateConnectionRequestContentWeiboStrategy", + + "CreateConnectionRequestContentWindowsLive", + + "CreateConnectionRequestContentWindowsLiveStrategy", + + "CreateConnectionRequestContentWordpress", + + "CreateConnectionRequestContentWordpressStrategy", + + "CreateConnectionRequestContentYahoo", + + "CreateConnectionRequestContentYahooStrategy", + + "CreateConnectionRequestContentYandex", + + "CreateConnectionRequestContentYandexStrategy", + "CreateConnectionResponseContent", + "CreateCustomDomainResponseContent", + + "CreateDirectoryProvisioningRequestContent", + + "CreateDirectoryProvisioningResponseContent", + + "CreateDirectorySynchronizationResponseContent", + "CreateEmailProviderResponseContent", + "CreateEmailTemplateResponseContent", + "CreateEncryptionKeyPublicWrappingResponseContent", + @@ -2652,6 +6388,79 @@ __all__ = [ + "CreateExportUsersFields", + "CreateExportUsersResponseContent", + "CreateFlowResponseContent", + + "CreateFlowsVaultConnectionActivecampaign", + + "CreateFlowsVaultConnectionActivecampaignApiKey", + + "CreateFlowsVaultConnectionActivecampaignUninitialized", + + "CreateFlowsVaultConnectionAirtable", + + "CreateFlowsVaultConnectionAirtableApiKey", + + "CreateFlowsVaultConnectionAirtableUninitialized", + + "CreateFlowsVaultConnectionAuth0", + + "CreateFlowsVaultConnectionAuth0OauthApp", + + "CreateFlowsVaultConnectionAuth0Uninitialized", + + "CreateFlowsVaultConnectionBigquery", + + "CreateFlowsVaultConnectionBigqueryJwt", + + "CreateFlowsVaultConnectionBigqueryUninitialized", + + "CreateFlowsVaultConnectionClearbit", + + "CreateFlowsVaultConnectionClearbitApiKey", + + "CreateFlowsVaultConnectionClearbitUninitialized", + + "CreateFlowsVaultConnectionDocusign", + + "CreateFlowsVaultConnectionDocusignOauthCode", + + "CreateFlowsVaultConnectionDocusignUninitialized", + + "CreateFlowsVaultConnectionGoogleSheets", + + "CreateFlowsVaultConnectionGoogleSheetsOauthCode", + + "CreateFlowsVaultConnectionGoogleSheetsUninitialized", + + "CreateFlowsVaultConnectionHttp", + + "CreateFlowsVaultConnectionHttpApiKey", + + "CreateFlowsVaultConnectionHttpBasicAuth", + + "CreateFlowsVaultConnectionHttpBearer", + + "CreateFlowsVaultConnectionHttpOauthClientCredentials", + + "CreateFlowsVaultConnectionHttpUninitialized", + + "CreateFlowsVaultConnectionHubspot", + + "CreateFlowsVaultConnectionHubspotApiKey", + + "CreateFlowsVaultConnectionHubspotOauthCode", + + "CreateFlowsVaultConnectionHubspotUninitialized", + + "CreateFlowsVaultConnectionJwt", + + "CreateFlowsVaultConnectionJwtJwt", + + "CreateFlowsVaultConnectionJwtUninitialized", + + "CreateFlowsVaultConnectionMailchimp", + + "CreateFlowsVaultConnectionMailchimpApiKey", + + "CreateFlowsVaultConnectionMailchimpOauthCode", + + "CreateFlowsVaultConnectionMailchimpUninitialized", + + "CreateFlowsVaultConnectionMailjet", + + "CreateFlowsVaultConnectionMailjetApiKey", + + "CreateFlowsVaultConnectionMailjetUninitialized", + + "CreateFlowsVaultConnectionPipedrive", + + "CreateFlowsVaultConnectionPipedriveOauthCode", + + "CreateFlowsVaultConnectionPipedriveToken", + + "CreateFlowsVaultConnectionPipedriveUninitialized", + + "CreateFlowsVaultConnectionRequestContent", + + "CreateFlowsVaultConnectionResponseContent", + + "CreateFlowsVaultConnectionSalesforce", + + "CreateFlowsVaultConnectionSalesforceOauthCode", + + "CreateFlowsVaultConnectionSalesforceUninitialized", + + "CreateFlowsVaultConnectionSendgrid", + + "CreateFlowsVaultConnectionSendgridApiKey", + + "CreateFlowsVaultConnectionSendgridUninitialized", + + "CreateFlowsVaultConnectionSlack", + + "CreateFlowsVaultConnectionSlackOauthCode", + + "CreateFlowsVaultConnectionSlackUninitialized", + + "CreateFlowsVaultConnectionSlackWebhook", + + "CreateFlowsVaultConnectionStripe", + + "CreateFlowsVaultConnectionStripeKeyPair", + + "CreateFlowsVaultConnectionStripeOauthCode", + + "CreateFlowsVaultConnectionStripeUninitialized", + + "CreateFlowsVaultConnectionTelegram", + + "CreateFlowsVaultConnectionTelegramToken", + + "CreateFlowsVaultConnectionTelegramUninitialized", + + "CreateFlowsVaultConnectionTwilio", + + "CreateFlowsVaultConnectionTwilioApiKey", + + "CreateFlowsVaultConnectionTwilioUninitialized", + + "CreateFlowsVaultConnectionWhatsapp", + + "CreateFlowsVaultConnectionWhatsappToken", + + "CreateFlowsVaultConnectionWhatsappUninitialized", + + "CreateFlowsVaultConnectionZapier", + + "CreateFlowsVaultConnectionZapierUninitialized", + + "CreateFlowsVaultConnectionZapierWebhook", + "CreateFormResponseContent", + "CreateGuardianEnrollmentTicketResponseContent", + "CreateHookResponseContent", + @@ -2667,6 +6476,8 @@ __all__ = [ + "CreateLogStreamSegmentRequestBody", + "CreateLogStreamSplunkRequestBody", + "CreateLogStreamSumoRequestBody", + + "CreateOrganizationAllConnectionResponseContent", + + "CreateOrganizationDiscoveryDomainResponseContent", + "CreateOrganizationInvitationResponseContent", + "CreateOrganizationResponseContent", + "CreatePhoneProviderSendTestResponseContent", + @@ -2683,6 +6494,7 @@ __all__ = [ + "CreateSelfServiceProfileSsoTicketResponseContent", + "CreateTokenExchangeProfileResponseContent", + "CreateTokenQuota", + + "CreateUserAttributeProfileResponseContent", + "CreateUserAuthenticationMethodResponseContent", + "CreateUserResponseContent", + "CreateVerifiableCredentialTemplateResponseContent", + @@ -2695,6 +6507,7 @@ __all__ = [ "CustomDomainCustomClientIpHeader", "CustomDomainCustomClientIpHeaderEnum", "CustomDomainProvisioningTypeEnum", - @@ -7749,6 +7759,7 @@ __all__ = [ - "LogStreamSumoEnum", + + "CustomDomainStatusFilterEnum", + "CustomDomainTlsPolicyEnum", + "CustomDomainTypeEnum", + "CustomDomainVerificationMethodEnum", + @@ -2708,20 +6521,29 @@ __all__ = [ + "CustomSigningKeyTypeEnum", + "CustomSigningKeyUseEnum", + "DailyStats", + + "DefaultAioHttpClient", + + "DefaultAsyncHttpxClient", + + "DefaultMethodEmailIdentifierEnum", + "DefaultTokenQuota", + "DeleteHookSecretRequestContent", + "DeleteUserIdentityResponseContent", + "DeleteUserIdentityResponseContentItem", + "DeployActionResponseContent", + - "DeployActionVersionRequestBodyParams", + "DeployActionVersionRequestContent", + "DeployActionVersionResponseContent", + "DeviceCredential", + "DeviceCredentialPublicKeyTypeEnum", + "DeviceCredentialTypeEnum", + + "DirectoryProvisioning", + + "DirectoryProvisioningMappingItem", + + "DomainCertificate", + + "DomainCertificateAuthorityEnum", + + "DomainCertificateStatusEnum", + + "DomainMetadata", + "DomainVerification", + "DomainVerificationMethod", + "DomainVerificationMethodNameEnum", + + "DomainVerificationStatusEnum", + "EmailAttribute", + "EmailMailgunRegionEnum", + "EmailProviderCredentials", + @@ -2739,6 +6561,7 @@ __all__ = [ + "EmailSparkPostRegionEnum", + "EmailSpecificProviderSettingsWithAdditionalProperties", + "EmailTemplateNameEnum", + + "EnabledFeaturesEnum", + "EncryptionKey", + "EncryptionKeyPublicWrappingAlgorithm", + "EncryptionKeyState", + @@ -2747,8 +6570,336 @@ __all__ = [ + "EventStreamActionDestination", + "EventStreamActionDestinationTypeEnum", + "EventStreamActionResponseContent", + - "EventStreamBucketInterval", + "EventStreamCloudEvent", + + "EventStreamCloudEventA0PurposeEnum", + + "EventStreamCloudEventContext", + + "EventStreamCloudEventContextClient", + + "EventStreamCloudEventContextClientMetadata", + + "EventStreamCloudEventContextConnection", + + "EventStreamCloudEventContextRequest", + + "EventStreamCloudEventContextRequestGeo", + + "EventStreamCloudEventContextTenant", + + "EventStreamCloudEventErrorCodeEnum", + + "EventStreamCloudEventErrorDetail", + + "EventStreamCloudEventErrorMessage", + + "EventStreamCloudEventErrorMessageTypeEnum", + + "EventStreamCloudEventGroupCreated", + + "EventStreamCloudEventGroupCreatedCloudEvent", + + "EventStreamCloudEventGroupCreatedCloudEventTypeEnum", + + "EventStreamCloudEventGroupCreatedData", + + "EventStreamCloudEventGroupCreatedObject", + + "EventStreamCloudEventGroupCreatedObject0", + + "EventStreamCloudEventGroupCreatedObject0TypeEnum", + + "EventStreamCloudEventGroupCreatedObject1", + + "EventStreamCloudEventGroupCreatedObject1TypeEnum", + + "EventStreamCloudEventGroupCreatedObject2", + + "EventStreamCloudEventGroupCreatedObject2TypeEnum", + + "EventStreamCloudEventGroupCreatedTypeEnum", + + "EventStreamCloudEventGroupDeleted", + + "EventStreamCloudEventGroupDeletedCloudEvent", + + "EventStreamCloudEventGroupDeletedCloudEventTypeEnum", + + "EventStreamCloudEventGroupDeletedData", + + "EventStreamCloudEventGroupDeletedObject", + + "EventStreamCloudEventGroupDeletedObject0", + + "EventStreamCloudEventGroupDeletedObject0TypeEnum", + + "EventStreamCloudEventGroupDeletedObject1", + + "EventStreamCloudEventGroupDeletedObject1TypeEnum", + + "EventStreamCloudEventGroupDeletedObject2", + + "EventStreamCloudEventGroupDeletedObject2TypeEnum", + + "EventStreamCloudEventGroupDeletedTypeEnum", + + "EventStreamCloudEventGroupMemberAdded", + + "EventStreamCloudEventGroupMemberAddedCloudEvent", + + "EventStreamCloudEventGroupMemberAddedCloudEventTypeEnum", + + "EventStreamCloudEventGroupMemberAddedData", + + "EventStreamCloudEventGroupMemberAddedObject", + + "EventStreamCloudEventGroupMemberAddedObjectGroup", + + "EventStreamCloudEventGroupMemberAddedObjectGroup0", + + "EventStreamCloudEventGroupMemberAddedObjectGroup0TypeEnum", + + "EventStreamCloudEventGroupMemberAddedObjectGroup1", + + "EventStreamCloudEventGroupMemberAddedObjectGroup1TypeEnum", + + "EventStreamCloudEventGroupMemberAddedObjectGroup2", + + "EventStreamCloudEventGroupMemberAddedObjectGroup2TypeEnum", + + "EventStreamCloudEventGroupMemberAddedObjectMember", + + "EventStreamCloudEventGroupMemberAddedObjectMember0", + + "EventStreamCloudEventGroupMemberAddedObjectMember0MemberTypeEnum", + + "EventStreamCloudEventGroupMemberAddedObjectMember1", + + "EventStreamCloudEventGroupMemberAddedObjectMember1MemberTypeEnum", + + "EventStreamCloudEventGroupMemberAddedTypeEnum", + + "EventStreamCloudEventGroupMemberDeleted", + + "EventStreamCloudEventGroupMemberDeletedCloudEvent", + + "EventStreamCloudEventGroupMemberDeletedCloudEventTypeEnum", + + "EventStreamCloudEventGroupMemberDeletedData", + + "EventStreamCloudEventGroupMemberDeletedObject", + + "EventStreamCloudEventGroupMemberDeletedObjectGroup", + + "EventStreamCloudEventGroupMemberDeletedObjectGroup0", + + "EventStreamCloudEventGroupMemberDeletedObjectGroup0TypeEnum", + + "EventStreamCloudEventGroupMemberDeletedObjectGroup1", + + "EventStreamCloudEventGroupMemberDeletedObjectGroup1TypeEnum", + + "EventStreamCloudEventGroupMemberDeletedObjectGroup2", + + "EventStreamCloudEventGroupMemberDeletedObjectGroup2TypeEnum", + + "EventStreamCloudEventGroupMemberDeletedObjectMember", + + "EventStreamCloudEventGroupMemberDeletedObjectMember0", + + "EventStreamCloudEventGroupMemberDeletedObjectMember0MemberTypeEnum", + + "EventStreamCloudEventGroupMemberDeletedObjectMember1", + + "EventStreamCloudEventGroupMemberDeletedObjectMember1MemberTypeEnum", + + "EventStreamCloudEventGroupMemberDeletedTypeEnum", + + "EventStreamCloudEventGroupRoleAssigned", + + "EventStreamCloudEventGroupRoleAssignedCloudEvent", + + "EventStreamCloudEventGroupRoleAssignedCloudEventTypeEnum", + + "EventStreamCloudEventGroupRoleAssignedData", + + "EventStreamCloudEventGroupRoleAssignedObject", + + "EventStreamCloudEventGroupRoleAssignedObjectGroup", + + "EventStreamCloudEventGroupRoleAssignedObjectGroup0", + + "EventStreamCloudEventGroupRoleAssignedObjectGroup0TypeEnum", + + "EventStreamCloudEventGroupRoleAssignedObjectGroup1", + + "EventStreamCloudEventGroupRoleAssignedObjectGroup1TypeEnum", + + "EventStreamCloudEventGroupRoleAssignedObjectGroup2", + + "EventStreamCloudEventGroupRoleAssignedObjectGroup2TypeEnum", + + "EventStreamCloudEventGroupRoleAssignedObjectRole", + + "EventStreamCloudEventGroupRoleAssignedTypeEnum", + + "EventStreamCloudEventGroupRoleDeleted", + + "EventStreamCloudEventGroupRoleDeletedCloudEvent", + + "EventStreamCloudEventGroupRoleDeletedCloudEventTypeEnum", + + "EventStreamCloudEventGroupRoleDeletedData", + + "EventStreamCloudEventGroupRoleDeletedObject", + + "EventStreamCloudEventGroupRoleDeletedObjectGroup", + + "EventStreamCloudEventGroupRoleDeletedObjectGroup0", + + "EventStreamCloudEventGroupRoleDeletedObjectGroup0TypeEnum", + + "EventStreamCloudEventGroupRoleDeletedObjectGroup1", + + "EventStreamCloudEventGroupRoleDeletedObjectGroup1TypeEnum", + + "EventStreamCloudEventGroupRoleDeletedObjectGroup2", + + "EventStreamCloudEventGroupRoleDeletedObjectGroup2TypeEnum", + + "EventStreamCloudEventGroupRoleDeletedObjectRole", + + "EventStreamCloudEventGroupRoleDeletedTypeEnum", + + "EventStreamCloudEventGroupUpdated", + + "EventStreamCloudEventGroupUpdatedCloudEvent", + + "EventStreamCloudEventGroupUpdatedCloudEventTypeEnum", + + "EventStreamCloudEventGroupUpdatedData", + + "EventStreamCloudEventGroupUpdatedObject", + + "EventStreamCloudEventGroupUpdatedObject0", + + "EventStreamCloudEventGroupUpdatedObject0TypeEnum", + + "EventStreamCloudEventGroupUpdatedObject1", + + "EventStreamCloudEventGroupUpdatedObject1TypeEnum", + + "EventStreamCloudEventGroupUpdatedObject2", + + "EventStreamCloudEventGroupUpdatedObject2TypeEnum", + + "EventStreamCloudEventGroupUpdatedTypeEnum", + + "EventStreamCloudEventOffsetOnlyMessage", + + "EventStreamCloudEventOffsetOnlyMessageTypeEnum", + + "EventStreamCloudEventOrgConnectionAdded", + + "EventStreamCloudEventOrgConnectionAddedCloudEvent", + + "EventStreamCloudEventOrgConnectionAddedCloudEventTypeEnum", + + "EventStreamCloudEventOrgConnectionAddedData", + + "EventStreamCloudEventOrgConnectionAddedObject", + + "EventStreamCloudEventOrgConnectionAddedObjectConnection", + + "EventStreamCloudEventOrgConnectionAddedObjectOrganization", + + "EventStreamCloudEventOrgConnectionAddedTypeEnum", + + "EventStreamCloudEventOrgConnectionRemoved", + + "EventStreamCloudEventOrgConnectionRemovedCloudEvent", + + "EventStreamCloudEventOrgConnectionRemovedCloudEventTypeEnum", + + "EventStreamCloudEventOrgConnectionRemovedData", + + "EventStreamCloudEventOrgConnectionRemovedObject", + + "EventStreamCloudEventOrgConnectionRemovedObjectConnection", + + "EventStreamCloudEventOrgConnectionRemovedObjectOrganization", + + "EventStreamCloudEventOrgConnectionRemovedTypeEnum", + + "EventStreamCloudEventOrgConnectionUpdated", + + "EventStreamCloudEventOrgConnectionUpdatedCloudEvent", + + "EventStreamCloudEventOrgConnectionUpdatedCloudEventTypeEnum", + + "EventStreamCloudEventOrgConnectionUpdatedData", + + "EventStreamCloudEventOrgConnectionUpdatedObject", + + "EventStreamCloudEventOrgConnectionUpdatedObjectConnection", + + "EventStreamCloudEventOrgConnectionUpdatedObjectOrganization", + + "EventStreamCloudEventOrgConnectionUpdatedTypeEnum", + + "EventStreamCloudEventOrgCreated", + + "EventStreamCloudEventOrgCreatedCloudEvent", + + "EventStreamCloudEventOrgCreatedCloudEventTypeEnum", + + "EventStreamCloudEventOrgCreatedData", + + "EventStreamCloudEventOrgCreatedObject", + + "EventStreamCloudEventOrgCreatedObjectBranding", + + "EventStreamCloudEventOrgCreatedObjectBrandingColors", + + "EventStreamCloudEventOrgCreatedObjectMetadata", + + "EventStreamCloudEventOrgCreatedTypeEnum", + + "EventStreamCloudEventOrgDeleted", + + "EventStreamCloudEventOrgDeletedCloudEvent", + + "EventStreamCloudEventOrgDeletedCloudEventTypeEnum", + + "EventStreamCloudEventOrgDeletedData", + + "EventStreamCloudEventOrgDeletedObject", + + "EventStreamCloudEventOrgDeletedObjectMetadata", + + "EventStreamCloudEventOrgDeletedTypeEnum", + + "EventStreamCloudEventOrgGroupRoleAssigned", + + "EventStreamCloudEventOrgGroupRoleAssignedCloudEvent", + + "EventStreamCloudEventOrgGroupRoleAssignedCloudEventTypeEnum", + + "EventStreamCloudEventOrgGroupRoleAssignedData", + + "EventStreamCloudEventOrgGroupRoleAssignedObject", + + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup", + + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup0", + + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup0TypeEnum", + + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup1", + + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup1TypeEnum", + + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup2", + + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup2TypeEnum", + + "EventStreamCloudEventOrgGroupRoleAssignedObjectOrganization", + + "EventStreamCloudEventOrgGroupRoleAssignedObjectRole", + + "EventStreamCloudEventOrgGroupRoleAssignedTypeEnum", + + "EventStreamCloudEventOrgGroupRoleDeleted", + + "EventStreamCloudEventOrgGroupRoleDeletedCloudEvent", + + "EventStreamCloudEventOrgGroupRoleDeletedCloudEventTypeEnum", + + "EventStreamCloudEventOrgGroupRoleDeletedData", + + "EventStreamCloudEventOrgGroupRoleDeletedObject", + + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup", + + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup0", + + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup0TypeEnum", + + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup1", + + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup1TypeEnum", + + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup2", + + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup2TypeEnum", + + "EventStreamCloudEventOrgGroupRoleDeletedObjectOrganization", + + "EventStreamCloudEventOrgGroupRoleDeletedObjectRole", + + "EventStreamCloudEventOrgGroupRoleDeletedTypeEnum", + + "EventStreamCloudEventOrgMemberAdded", + + "EventStreamCloudEventOrgMemberAddedCloudEvent", + + "EventStreamCloudEventOrgMemberAddedCloudEventTypeEnum", + + "EventStreamCloudEventOrgMemberAddedData", + + "EventStreamCloudEventOrgMemberAddedObject", + + "EventStreamCloudEventOrgMemberAddedObjectOrganization", + + "EventStreamCloudEventOrgMemberAddedObjectUser", + + "EventStreamCloudEventOrgMemberAddedTypeEnum", + + "EventStreamCloudEventOrgMemberDeleted", + + "EventStreamCloudEventOrgMemberDeletedCloudEvent", + + "EventStreamCloudEventOrgMemberDeletedCloudEventTypeEnum", + + "EventStreamCloudEventOrgMemberDeletedData", + + "EventStreamCloudEventOrgMemberDeletedObject", + + "EventStreamCloudEventOrgMemberDeletedObjectOrganization", + + "EventStreamCloudEventOrgMemberDeletedObjectUser", + + "EventStreamCloudEventOrgMemberDeletedTypeEnum", + + "EventStreamCloudEventOrgMemberRoleAssigned", + + "EventStreamCloudEventOrgMemberRoleAssignedCloudEvent", + + "EventStreamCloudEventOrgMemberRoleAssignedCloudEventTypeEnum", + + "EventStreamCloudEventOrgMemberRoleAssignedData", + + "EventStreamCloudEventOrgMemberRoleAssignedObject", + + "EventStreamCloudEventOrgMemberRoleAssignedObjectOrganization", + + "EventStreamCloudEventOrgMemberRoleAssignedObjectRole", + + "EventStreamCloudEventOrgMemberRoleAssignedObjectUser", + + "EventStreamCloudEventOrgMemberRoleAssignedTypeEnum", + + "EventStreamCloudEventOrgMemberRoleDeleted", + + "EventStreamCloudEventOrgMemberRoleDeletedCloudEvent", + + "EventStreamCloudEventOrgMemberRoleDeletedCloudEventTypeEnum", + + "EventStreamCloudEventOrgMemberRoleDeletedData", + + "EventStreamCloudEventOrgMemberRoleDeletedObject", + + "EventStreamCloudEventOrgMemberRoleDeletedObjectOrganization", + + "EventStreamCloudEventOrgMemberRoleDeletedObjectRole", + + "EventStreamCloudEventOrgMemberRoleDeletedObjectUser", + + "EventStreamCloudEventOrgMemberRoleDeletedTypeEnum", + + "EventStreamCloudEventOrgUpdated", + + "EventStreamCloudEventOrgUpdatedCloudEvent", + + "EventStreamCloudEventOrgUpdatedCloudEventTypeEnum", + + "EventStreamCloudEventOrgUpdatedData", + + "EventStreamCloudEventOrgUpdatedObject", + + "EventStreamCloudEventOrgUpdatedObjectBranding", + + "EventStreamCloudEventOrgUpdatedObjectBrandingColors", + + "EventStreamCloudEventOrgUpdatedObjectMetadata", + + "EventStreamCloudEventOrgUpdatedTypeEnum", + + "EventStreamCloudEventUserCreated", + + "EventStreamCloudEventUserCreatedCloudEvent", + + "EventStreamCloudEventUserCreatedCloudEventTypeEnum", + + "EventStreamCloudEventUserCreatedData", + + "EventStreamCloudEventUserCreatedObject", + + "EventStreamCloudEventUserCreatedObjectAppMetadata", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItem", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemCustom", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomIsSocialEnum", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomProfileData", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomProviderEnum", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomUserId", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabase", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseIsSocialEnum", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseProfileData", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseProviderEnum", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseUserId", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterprise", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseIsSocialEnum", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseProfileData", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseProviderEnum", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseUserId", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordless", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessIsSocialEnum", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessProfileData", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessProviderEnum", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessUserId", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemSocial", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialIsSocialEnum", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialProfileData", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialProviderEnum", + + "EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialUserId", + + "EventStreamCloudEventUserCreatedObjectUserMetadata", + + "EventStreamCloudEventUserCreatedTypeEnum", + + "EventStreamCloudEventUserDeleted", + + "EventStreamCloudEventUserDeletedCloudEvent", + + "EventStreamCloudEventUserDeletedCloudEventTypeEnum", + + "EventStreamCloudEventUserDeletedData", + + "EventStreamCloudEventUserDeletedObject", + + "EventStreamCloudEventUserDeletedObjectAppMetadata", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItem", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemCustom", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomIsSocialEnum", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomProfileData", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomProviderEnum", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomUserId", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabase", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseIsSocialEnum", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseProfileData", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseProviderEnum", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseUserId", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterprise", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseIsSocialEnum", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseProfileData", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseProviderEnum", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseUserId", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordless", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessIsSocialEnum", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessProfileData", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessProviderEnum", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessUserId", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemSocial", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialIsSocialEnum", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialProfileData", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialProviderEnum", + + "EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialUserId", + + "EventStreamCloudEventUserDeletedObjectUserMetadata", + + "EventStreamCloudEventUserDeletedTypeEnum", + + "EventStreamCloudEventUserUpdated", + + "EventStreamCloudEventUserUpdatedCloudEvent", + + "EventStreamCloudEventUserUpdatedCloudEventTypeEnum", + + "EventStreamCloudEventUserUpdatedData", + + "EventStreamCloudEventUserUpdatedObject", + + "EventStreamCloudEventUserUpdatedObjectAppMetadata", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItem", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustom", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomIsSocialEnum", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomProfileData", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomProviderEnum", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomUserId", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabase", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseIsSocialEnum", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseProfileData", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseProviderEnum", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseUserId", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterprise", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseIsSocialEnum", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseProfileData", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseProviderEnum", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseUserId", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordless", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessIsSocialEnum", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessProfileData", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessProviderEnum", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessUserId", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocial", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialIsSocialEnum", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialProfileData", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialProviderEnum", + + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialUserId", + + "EventStreamCloudEventUserUpdatedObjectUserMetadata", + + "EventStreamCloudEventUserUpdatedTypeEnum", + "EventStreamDelivery", + "EventStreamDeliveryAttempt", + "EventStreamDeliveryEventTypeEnum", + @@ -2760,9 +6911,35 @@ __all__ = [ + "EventStreamEventBridgeDestinationTypeEnum", + "EventStreamEventBridgeResponseContent", + "EventStreamEventTypeEnum", + - "EventStreamMetric", + "EventStreamResponseContent", + "EventStreamStatusEnum", + + "EventStreamSubscribeEventsEventTypeEnum", + + "EventStreamSubscribeEventsEventTypeParam", + + "EventStreamSubscribeEventsResponseContent", + + "EventStreamSubscribeEventsResponseContent_Error", + + "EventStreamSubscribeEventsResponseContent_GroupCreated", + + "EventStreamSubscribeEventsResponseContent_GroupDeleted", + + "EventStreamSubscribeEventsResponseContent_GroupMemberAdded", + + "EventStreamSubscribeEventsResponseContent_GroupMemberDeleted", + + "EventStreamSubscribeEventsResponseContent_GroupRoleAssigned", + + "EventStreamSubscribeEventsResponseContent_GroupRoleDeleted", + + "EventStreamSubscribeEventsResponseContent_GroupUpdated", + + "EventStreamSubscribeEventsResponseContent_OffsetOnly", + + "EventStreamSubscribeEventsResponseContent_OrganizationConnectionAdded", + + "EventStreamSubscribeEventsResponseContent_OrganizationConnectionRemoved", + + "EventStreamSubscribeEventsResponseContent_OrganizationConnectionUpdated", + + "EventStreamSubscribeEventsResponseContent_OrganizationCreated", + + "EventStreamSubscribeEventsResponseContent_OrganizationDeleted", + + "EventStreamSubscribeEventsResponseContent_OrganizationGroupRoleAssigned", + + "EventStreamSubscribeEventsResponseContent_OrganizationGroupRoleDeleted", + + "EventStreamSubscribeEventsResponseContent_OrganizationMemberAdded", + + "EventStreamSubscribeEventsResponseContent_OrganizationMemberDeleted", + + "EventStreamSubscribeEventsResponseContent_OrganizationMemberRoleAssigned", + + "EventStreamSubscribeEventsResponseContent_OrganizationMemberRoleDeleted", + + "EventStreamSubscribeEventsResponseContent_OrganizationUpdated", + + "EventStreamSubscribeEventsResponseContent_UserCreated", + + "EventStreamSubscribeEventsResponseContent_UserDeleted", + + "EventStreamSubscribeEventsResponseContent_UserUpdated", + "EventStreamSubscription", + "EventStreamTestEventTypeEnum", + "EventStreamWebhookAuthorizationResponse", + @@ -2771,89 +6948,154 @@ __all__ = [ + "EventStreamWebhookBearerAuth", + "EventStreamWebhookBearerAuthMethodEnum", + "EventStreamWebhookConfiguration", + + "EventStreamWebhookCustomHeaderAuth", + + "EventStreamWebhookCustomHeaderAuthMethodEnum", + "EventStreamWebhookDestination", + "EventStreamWebhookDestinationTypeEnum", + "EventStreamWebhookResponseContent", + - "EventStreamWindow", + "EventStreamsCreateRequest", + + "ExpressConfiguration", + + "ExpressConfigurationOrNull", + "ExtensibilityEmailProviderCredentials", + "FederatedConnectionTokenSet", + "FlowAction", + "FlowActionActivecampaign", + "FlowActionActivecampaignListContacts", + + "FlowActionActivecampaignListContactsAction", + "FlowActionActivecampaignListContactsParams", + + "FlowActionActivecampaignListContactsType", + "FlowActionActivecampaignUpsertContact", + + "FlowActionActivecampaignUpsertContactAction", + "FlowActionActivecampaignUpsertContactParams", + "FlowActionActivecampaignUpsertContactParamsCustomFields", + + "FlowActionActivecampaignUpsertContactType", + "FlowActionAirtable", + "FlowActionAirtableCreateRecord", + + "FlowActionAirtableCreateRecordAction", + "FlowActionAirtableCreateRecordParams", + "FlowActionAirtableCreateRecordParamsFields", + + "FlowActionAirtableCreateRecordType", + "FlowActionAirtableListRecords", + + "FlowActionAirtableListRecordsAction", + "FlowActionAirtableListRecordsParams", + + "FlowActionAirtableListRecordsType", + "FlowActionAirtableUpdateRecord", + + "FlowActionAirtableUpdateRecordAction", + "FlowActionAirtableUpdateRecordParams", + "FlowActionAirtableUpdateRecordParamsFields", + + "FlowActionAirtableUpdateRecordType", + "FlowActionAuth0", + "FlowActionAuth0CreateUser", + + "FlowActionAuth0CreateUserAction", + "FlowActionAuth0CreateUserParams", + "FlowActionAuth0CreateUserParamsPayload", + + "FlowActionAuth0CreateUserType", + "FlowActionAuth0GetUser", + + "FlowActionAuth0GetUserAction", + "FlowActionAuth0GetUserParams", + + "FlowActionAuth0GetUserType", + + "FlowActionAuth0MakeCall", + + "FlowActionAuth0MakeCallAction", + + "FlowActionAuth0MakeCallParams", + + "FlowActionAuth0MakeCallParamsCustomVars", + + "FlowActionAuth0MakeCallType", + + "FlowActionAuth0SendEmail", + + "FlowActionAuth0SendEmailAction", + + "FlowActionAuth0SendEmailParams", + + "FlowActionAuth0SendEmailParamsFrom", + + "FlowActionAuth0SendEmailParamsFromEmail", + + "FlowActionAuth0SendEmailParamsTo", + + "FlowActionAuth0SendEmailType", + "FlowActionAuth0SendRequest", + + "FlowActionAuth0SendRequestAction", + "FlowActionAuth0SendRequestParams", + + "FlowActionAuth0SendRequestParamsCustomVars", + "FlowActionAuth0SendRequestParamsHeaders", + "FlowActionAuth0SendRequestParamsMethod", + "FlowActionAuth0SendRequestParamsPayload", + "FlowActionAuth0SendRequestParamsPayloadObject", + "FlowActionAuth0SendRequestParamsQueryParams", + + "FlowActionAuth0SendRequestParamsQueryParamsValue", + + "FlowActionAuth0SendRequestType", + + "FlowActionAuth0SendSms", + + "FlowActionAuth0SendSmsAction", + + "FlowActionAuth0SendSmsParams", + + "FlowActionAuth0SendSmsParamsCustomVars", + + "FlowActionAuth0SendSmsType", + "FlowActionAuth0UpdateUser", + + "FlowActionAuth0UpdateUserAction", + "FlowActionAuth0UpdateUserParams", + "FlowActionAuth0UpdateUserParamsChanges", + + "FlowActionAuth0UpdateUserType", + "FlowActionBigquery", + "FlowActionBigqueryInsertRows", + + "FlowActionBigqueryInsertRowsAction", + "FlowActionBigqueryInsertRowsParams", + "FlowActionBigqueryInsertRowsParamsData", + + "FlowActionBigqueryInsertRowsType", + "FlowActionClearbit", + "FlowActionClearbitFindCompany", + + "FlowActionClearbitFindCompanyAction", + "FlowActionClearbitFindCompanyParams", + + "FlowActionClearbitFindCompanyType", + "FlowActionClearbitFindPerson", + + "FlowActionClearbitFindPersonAction", + "FlowActionClearbitFindPersonParams", + + "FlowActionClearbitFindPersonType", + "FlowActionEmail", + "FlowActionEmailVerifyEmail", + + "FlowActionEmailVerifyEmailAction", + "FlowActionEmailVerifyEmailParams", + "FlowActionEmailVerifyEmailParamsRules", + + "FlowActionEmailVerifyEmailType", + "FlowActionFlow", + "FlowActionFlowBooleanCondition", + + "FlowActionFlowBooleanConditionAction", + "FlowActionFlowBooleanConditionParams", + + "FlowActionFlowBooleanConditionType", + "FlowActionFlowDelayFlow", + + "FlowActionFlowDelayFlowAction", + "FlowActionFlowDelayFlowParams", + "FlowActionFlowDelayFlowParamsNumber", + "FlowActionFlowDelayFlowParamsUnits", + + "FlowActionFlowDelayFlowType", + "FlowActionFlowDoNothing", + + "FlowActionFlowDoNothingAction", + "FlowActionFlowDoNothingParams", + + "FlowActionFlowDoNothingType", + "FlowActionFlowErrorMessage", + + "FlowActionFlowErrorMessageAction", + "FlowActionFlowErrorMessageParams", + + "FlowActionFlowErrorMessageType", + "FlowActionFlowMapValue", + + "FlowActionFlowMapValueAction", + "FlowActionFlowMapValueParams", + "FlowActionFlowMapValueParamsCases", + "FlowActionFlowMapValueParamsFallback", + "FlowActionFlowMapValueParamsFallbackObject", + "FlowActionFlowMapValueParamsInput", + + "FlowActionFlowMapValueType", + "FlowActionFlowReturnJson", + + "FlowActionFlowReturnJsonAction", + "FlowActionFlowReturnJsonParams", + "FlowActionFlowReturnJsonParamsPayload", + "FlowActionFlowReturnJsonParamsPayloadObject", + + "FlowActionFlowReturnJsonType", + "FlowActionFlowStoreVars", + + "FlowActionFlowStoreVarsAction", + "FlowActionFlowStoreVarsParams", + "FlowActionFlowStoreVarsParamsVars", + + "FlowActionFlowStoreVarsType", + "FlowActionGoogleSheets", + "FlowActionGoogleSheetsAddRow", + + "FlowActionGoogleSheetsAddRowAction", + "FlowActionGoogleSheetsAddRowParams", + "FlowActionGoogleSheetsAddRowParamsSheetId", + "FlowActionGoogleSheetsAddRowParamsValues", + + "FlowActionGoogleSheetsAddRowType", + "FlowActionHttp", + "FlowActionHttpSendRequest", + + "FlowActionHttpSendRequestAction", + "FlowActionHttpSendRequestParams", + "FlowActionHttpSendRequestParamsBasicAuth", + "FlowActionHttpSendRequestParamsContentType", + @@ -2862,134 +7104,260 @@ __all__ = [ + "FlowActionHttpSendRequestParamsPayload", + "FlowActionHttpSendRequestParamsPayloadObject", + "FlowActionHttpSendRequestParamsQueryParams", + + "FlowActionHttpSendRequestParamsQueryParamsValue", + + "FlowActionHttpSendRequestType", + "FlowActionHubspot", + "FlowActionHubspotEnrollContact", + + "FlowActionHubspotEnrollContactAction", + "FlowActionHubspotEnrollContactParams", + "FlowActionHubspotEnrollContactParamsWorkflowId", + + "FlowActionHubspotEnrollContactType", + "FlowActionHubspotGetContact", + + "FlowActionHubspotGetContactAction", + "FlowActionHubspotGetContactParams", + + "FlowActionHubspotGetContactType", + "FlowActionHubspotUpsertContact", + + "FlowActionHubspotUpsertContactAction", + "FlowActionHubspotUpsertContactParams", + "FlowActionHubspotUpsertContactParamsProperty", + + "FlowActionHubspotUpsertContactType", + "FlowActionJson", + "FlowActionJsonCreateJson", + + "FlowActionJsonCreateJsonAction", + "FlowActionJsonCreateJsonParams", + "FlowActionJsonCreateJsonParamsObject", + + "FlowActionJsonCreateJsonType", + "FlowActionJsonParseJson", + + "FlowActionJsonParseJsonAction", + "FlowActionJsonParseJsonParams", + + "FlowActionJsonParseJsonType", + "FlowActionJsonSerializeJson", + + "FlowActionJsonSerializeJsonAction", + "FlowActionJsonSerializeJsonParams", + "FlowActionJsonSerializeJsonParamsObject", + "FlowActionJsonSerializeJsonParamsObjectObject", + + "FlowActionJsonSerializeJsonType", + "FlowActionJwt", + "FlowActionJwtDecodeJwt", + + "FlowActionJwtDecodeJwtAction", + "FlowActionJwtDecodeJwtParams", + + "FlowActionJwtDecodeJwtType", + "FlowActionJwtSignJwt", + + "FlowActionJwtSignJwtAction", + "FlowActionJwtSignJwtParams", + "FlowActionJwtSignJwtParamsPayload", + + "FlowActionJwtSignJwtType", + "FlowActionJwtVerifyJwt", + + "FlowActionJwtVerifyJwtAction", + "FlowActionJwtVerifyJwtParams", + + "FlowActionJwtVerifyJwtType", + "FlowActionMailchimp", + "FlowActionMailchimpUpsertMember", + + "FlowActionMailchimpUpsertMemberAction", + "FlowActionMailchimpUpsertMemberParams", + "FlowActionMailchimpUpsertMemberParamsMember", + "FlowActionMailchimpUpsertMemberParamsMemberMergeFields", + + "FlowActionMailchimpUpsertMemberType", + "FlowActionMailjet", + "FlowActionMailjetSendEmail", + + "FlowActionMailjetSendEmailAction", + "FlowActionMailjetSendEmailParams", + "FlowActionMailjetSendEmailParamsContent", + "FlowActionMailjetSendEmailParamsTemplateId", + + "FlowActionMailjetSendEmailType", + "FlowActionOtp", + "FlowActionOtpGenerateCode", + + "FlowActionOtpGenerateCodeAction", + "FlowActionOtpGenerateCodeParams", + + "FlowActionOtpGenerateCodeType", + "FlowActionOtpVerifyCode", + + "FlowActionOtpVerifyCodeAction", + "FlowActionOtpVerifyCodeParams", + "FlowActionOtpVerifyCodeParamsCode", + + "FlowActionOtpVerifyCodeType", + "FlowActionPipedrive", + "FlowActionPipedriveAddDeal", + + "FlowActionPipedriveAddDealAction", + "FlowActionPipedriveAddDealParams", + "FlowActionPipedriveAddDealParamsFields", + "FlowActionPipedriveAddDealParamsOrganizationId", + "FlowActionPipedriveAddDealParamsPersonId", + "FlowActionPipedriveAddDealParamsStageId", + "FlowActionPipedriveAddDealParamsUserId", + + "FlowActionPipedriveAddDealType", + "FlowActionPipedriveAddOrganization", + + "FlowActionPipedriveAddOrganizationAction", + "FlowActionPipedriveAddOrganizationParams", + "FlowActionPipedriveAddOrganizationParamsFields", + "FlowActionPipedriveAddOrganizationParamsOwnerId", + + "FlowActionPipedriveAddOrganizationType", + "FlowActionPipedriveAddPerson", + + "FlowActionPipedriveAddPersonAction", + "FlowActionPipedriveAddPersonParams", + "FlowActionPipedriveAddPersonParamsFields", + "FlowActionPipedriveAddPersonParamsOrganizationId", + "FlowActionPipedriveAddPersonParamsOwnerId", + + "FlowActionPipedriveAddPersonType", + "FlowActionSalesforce", + "FlowActionSalesforceCreateLead", + + "FlowActionSalesforceCreateLeadAction", + "FlowActionSalesforceCreateLeadParams", + "FlowActionSalesforceCreateLeadParamsPayload", + + "FlowActionSalesforceCreateLeadType", + "FlowActionSalesforceGetLead", + + "FlowActionSalesforceGetLeadAction", + "FlowActionSalesforceGetLeadParams", + + "FlowActionSalesforceGetLeadType", + "FlowActionSalesforceSearchLeads", + + "FlowActionSalesforceSearchLeadsAction", + "FlowActionSalesforceSearchLeadsParams", + "FlowActionSalesforceSearchLeadsParamsSearchField", + + "FlowActionSalesforceSearchLeadsType", + "FlowActionSalesforceUpdateLead", + + "FlowActionSalesforceUpdateLeadAction", + "FlowActionSalesforceUpdateLeadParams", + "FlowActionSalesforceUpdateLeadParamsPayload", + + "FlowActionSalesforceUpdateLeadType", + "FlowActionSendgrid", + "FlowActionSendgridSendEmail", + + "FlowActionSendgridSendEmailAction", + "FlowActionSendgridSendEmailParams", + "FlowActionSendgridSendEmailParamsPerson", + + "FlowActionSendgridSendEmailType", + "FlowActionSlack", + "FlowActionSlackPostMessage", + + "FlowActionSlackPostMessageAction", + "FlowActionSlackPostMessageParams", + "FlowActionSlackPostMessageParamsAttachment", + "FlowActionSlackPostMessageParamsAttachmentColor", + "FlowActionSlackPostMessageParamsAttachmentField", + + "FlowActionSlackPostMessageType", + "FlowActionStripe", + "FlowActionStripeAddTaxId", + + "FlowActionStripeAddTaxIdAction", + "FlowActionStripeAddTaxIdParams", + + "FlowActionStripeAddTaxIdType", + "FlowActionStripeAddress", + "FlowActionStripeCreateCustomer", + + "FlowActionStripeCreateCustomerAction", + "FlowActionStripeCreateCustomerParams", + + "FlowActionStripeCreateCustomerType", + "FlowActionStripeCreatePortalSession", + + "FlowActionStripeCreatePortalSessionAction", + "FlowActionStripeCreatePortalSessionParams", + + "FlowActionStripeCreatePortalSessionType", + "FlowActionStripeDeleteTaxId", + + "FlowActionStripeDeleteTaxIdAction", + "FlowActionStripeDeleteTaxIdParams", + + "FlowActionStripeDeleteTaxIdType", + "FlowActionStripeFindCustomers", + + "FlowActionStripeFindCustomersAction", + "FlowActionStripeFindCustomersParams", + + "FlowActionStripeFindCustomersType", + "FlowActionStripeGetCustomer", + + "FlowActionStripeGetCustomerAction", + "FlowActionStripeGetCustomerParams", + + "FlowActionStripeGetCustomerType", + "FlowActionStripeMetadata", + "FlowActionStripeTaxId", + "FlowActionStripeUpdateCustomer", + + "FlowActionStripeUpdateCustomerAction", + "FlowActionStripeUpdateCustomerParams", + + "FlowActionStripeUpdateCustomerType", + "FlowActionTelegram", + "FlowActionTelegramSendMessage", + + "FlowActionTelegramSendMessageAction", + "FlowActionTelegramSendMessageParams", + + "FlowActionTelegramSendMessageType", + "FlowActionTwilio", + "FlowActionTwilioMakeCall", + + "FlowActionTwilioMakeCallAction", + "FlowActionTwilioMakeCallParams", + + "FlowActionTwilioMakeCallType", + "FlowActionTwilioSendSms", + + "FlowActionTwilioSendSmsAction", + "FlowActionTwilioSendSmsParams", + + "FlowActionTwilioSendSmsType", + "FlowActionWhatsapp", + "FlowActionWhatsappSendMessage", + + "FlowActionWhatsappSendMessageAction", + "FlowActionWhatsappSendMessageParams", + "FlowActionWhatsappSendMessageParamsPayload", + "FlowActionWhatsappSendMessageParamsPayloadObject", + "FlowActionWhatsappSendMessageParamsType", + + "FlowActionWhatsappSendMessageType", + "FlowActionXml", + "FlowActionXmlParseXml", + + "FlowActionXmlParseXmlAction", + "FlowActionXmlParseXmlParams", + + "FlowActionXmlParseXmlType", + "FlowActionXmlSerializeXml", + + "FlowActionXmlSerializeXmlAction", + "FlowActionXmlSerializeXmlParams", + "FlowActionXmlSerializeXmlParamsObject", + "FlowActionXmlSerializeXmlParamsObjectObject", + + "FlowActionXmlSerializeXmlType", + "FlowActionZapier", + "FlowActionZapierTriggerWebhook", + + "FlowActionZapierTriggerWebhookAction", + "FlowActionZapierTriggerWebhookParams", + "FlowActionZapierTriggerWebhookParamsMethod", + + "FlowActionZapierTriggerWebhookType", + "FlowExecutionDebug", + "FlowExecutionSummary", + "FlowSummary", + + "FlowsVaultConnectioSetupApiKey", + + "FlowsVaultConnectioSetupApiKeyWithBaseUrl", + + "FlowsVaultConnectioSetupBigqueryOauthJwt", + + "FlowsVaultConnectioSetupHttpBearer", + + "FlowsVaultConnectioSetupJwt", + + "FlowsVaultConnectioSetupJwtAlgorithmEnum", + + "FlowsVaultConnectioSetupMailjetApiKey", + + "FlowsVaultConnectioSetupOauthApp", + + "FlowsVaultConnectioSetupOauthCode", + + "FlowsVaultConnectioSetupSecretApiKey", + + "FlowsVaultConnectioSetupStripeKeyPair", + + "FlowsVaultConnectioSetupToken", + + "FlowsVaultConnectioSetupTwilioApiKey", + + "FlowsVaultConnectioSetupTypeApiKeyEnum", + + "FlowsVaultConnectioSetupTypeBearerEnum", + + "FlowsVaultConnectioSetupTypeJwtEnum", + + "FlowsVaultConnectioSetupTypeKeyPairEnum", + + "FlowsVaultConnectioSetupTypeOauthAppEnum", + + "FlowsVaultConnectioSetupTypeOauthCodeEnum", + + "FlowsVaultConnectioSetupTypeOauthJwtEnum", + + "FlowsVaultConnectioSetupTypeTokenEnum", + + "FlowsVaultConnectioSetupTypeWebhookEnum", + + "FlowsVaultConnectioSetupWebhook", + + "FlowsVaultConnectionAppIdActivecampaignEnum", + + "FlowsVaultConnectionAppIdAirtableEnum", + + "FlowsVaultConnectionAppIdAuth0Enum", + + "FlowsVaultConnectionAppIdBigqueryEnum", + + "FlowsVaultConnectionAppIdClearbitEnum", + + "FlowsVaultConnectionAppIdDocusignEnum", + + "FlowsVaultConnectionAppIdGoogleSheetsEnum", + + "FlowsVaultConnectionAppIdHttpEnum", + + "FlowsVaultConnectionAppIdHubspotEnum", + + "FlowsVaultConnectionAppIdJwtEnum", + + "FlowsVaultConnectionAppIdMailchimpEnum", + + "FlowsVaultConnectionAppIdMailjetEnum", + + "FlowsVaultConnectionAppIdPipedriveEnum", + + "FlowsVaultConnectionAppIdSalesforceEnum", + + "FlowsVaultConnectionAppIdSendgridEnum", + + "FlowsVaultConnectionAppIdSlackEnum", + + "FlowsVaultConnectionAppIdStripeEnum", + + "FlowsVaultConnectionAppIdTelegramEnum", + + "FlowsVaultConnectionAppIdTwilioEnum", + + "FlowsVaultConnectionAppIdWhatsappEnum", + + "FlowsVaultConnectionAppIdZapierEnum", + + "FlowsVaultConnectionHttpApiKeySetup", + + "FlowsVaultConnectionHttpApiKeySetupInEnum", + + "FlowsVaultConnectionHttpBasicAuthSetup", + + "FlowsVaultConnectionHttpOauthClientCredentialsSetup", + + "FlowsVaultConnectionSetupTypeApiKeyEnum", + + "FlowsVaultConnectionSetupTypeBasicAuthEnum", + + "FlowsVaultConnectionSetupTypeOauthClientCredentialsEnum", + + "FlowsVaultConnectionSummary", + "ForbiddenError", + "FormBlock", + "FormBlockDivider", + @@ -3148,35 +7516,51 @@ __all__ = [ + "FormWidgetTypeRecaptchaConst", + "FormsRequestParametersHydrateEnum", + "GetActionExecutionResponseContent", + + "GetActionModuleActionsResponseContent", + + "GetActionModuleResponseContent", + + "GetActionModuleVersionResponseContent", + + "GetActionModuleVersionsResponseContent", + + "GetActionModulesResponseContent", + "GetActionResponseContent", + "GetActionVersionResponseContent", + "GetActiveUsersCountStatsResponseContent", + "GetAculResponseContent", + + "GetAttackProtectionCaptchaResponseContent", + + "GetBotDetectionSettingsResponseContent", + "GetBrandingDefaultThemeResponseContent", + "GetBrandingPhoneProviderResponseContent", + "GetBrandingResponseContent", + "GetBrandingThemeResponseContent", + "GetBreachedPasswordDetectionSettingsResponseContent", + "GetBruteForceSettingsResponseContent", + - "GetBruteForceSettingsResponseContentMode", + - "GetBruteForceSettingsResponseContentShieldsItem", + "GetClientCredentialResponseContent", + + "GetClientGrantResponseContent", + "GetClientResponseContent", + "GetConnectionEnabledClientsResponseContent", + + "GetConnectionProfileResponseContent", + + "GetConnectionProfileTemplateResponseContent", + "GetConnectionResponseContent", + "GetCustomDomainResponseContent", + "GetCustomSigningKeysResponseContent", + "GetCustomTextsByLanguageResponseContent", + + "GetDefaultCanonicalDomainResponseContent", + + "GetDefaultCustomDomainResponseContent", + + "GetDefaultDomainResponseContent", + + "GetDirectoryProvisioningDefaultMappingResponseContent", + + "GetDirectoryProvisioningResponseContent", + "GetEmailProviderResponseContent", + "GetEmailTemplateResponseContent", + "GetEncryptionKeyResponseContent", + "GetEventStreamDeliveryHistoryResponseContent", + "GetEventStreamResponseContent", + - "GetEventStreamStatsResponseContent", + + "GetFlowExecutionRequestParametersHydrateEnum", + "GetFlowExecutionResponseContent", + "GetFlowRequestParametersHydrateEnum", + "GetFlowResponseContent", + + "GetFlowsVaultConnectionResponseContent", + "GetFormResponseContent", + + "GetGroupMembersResponseContent", + + "GetGroupResponseContent", + "GetGuardianEnrollmentResponseContent", + "GetGuardianFactorDuoSettingsResponseContent", + "GetGuardianFactorPhoneMessageTypesResponseContent", + @@ -3195,18 +7579,25 @@ __all__ = [ + "GetJobGenericErrorResponseContent", + "GetJobImportUserError", + "GetJobResponseContent", + + "GetJobSummary", + "GetJobUserError", + "GetLogResponseContent", + "GetLogStreamResponseContent", + "GetNetworkAclsResponseContent", + + "GetOrganizationAllConnectionResponseContent", + "GetOrganizationByNameResponseContent", + "GetOrganizationConnectionResponseContent", + + "GetOrganizationDiscoveryDomainByNameResponseContent", + + "GetOrganizationDiscoveryDomainResponseContent", + "GetOrganizationInvitationResponseContent", + "GetOrganizationResponseContent", + "GetPartialsResponseContent", + "GetPhoneTemplateResponseContent", + "GetRefreshTokenResponseContent", + + "GetRefreshTokensPaginatedResponseContent", + "GetResourceServerResponseContent", + + "GetRiskAssessmentsSettingsNewDeviceResponseContent", + + "GetRiskAssessmentsSettingsResponseContent", + "GetRoleResponseContent", + "GetRuleResponseContent", + "GetScimConfigurationDefaultMappingResponseContent", + @@ -3222,9 +7613,17 @@ __all__ = [ + "GetTokenExchangeProfileResponseContent", + "GetUniversalLoginTemplate", + "GetUniversalLoginTemplateResponseContent", + + "GetUserAttributeProfileResponseContent", + + "GetUserAttributeProfileTemplateResponseContent", + "GetUserAuthenticationMethodResponseContent", + + "GetUserGroupsPaginatedResponseContent", + "GetUserResponseContent", + "GetVerifiableCredentialTemplateResponseContent", + + "GoneError", + + "Group", + + "GroupMember", + + "GroupMemberTypeEnum", + + "GroupTypeEnum", + "GuardianEnrollmentDate", + "GuardianEnrollmentFactorEnum", + "GuardianEnrollmentStatus", + @@ -3239,6 +7638,7 @@ __all__ = [ + "HttpCustomHeader", + "Identity", + "IdentityProviderEnum", + + "IdentityProviderOnlyAuth0Enum", + "ImportEncryptionKeyResponseContent", + "Integration", + "IntegrationFeatureTypeEnum", + @@ -3249,29 +7649,40 @@ __all__ = [ + "IntegrationSemVer", + "InternalServerError", + "JobFileFormatEnum", + + "LinkedClientConfiguration", + "ListActionBindingsPaginatedResponseContent", + "ListActionTriggersResponseContent", + "ListActionVersionsPaginatedResponseContent", + "ListActionsPaginatedResponseContent", + "ListAculsOffsetPaginatedResponseContent", + + "ListAculsResponseContentItem", + "ListBrandingPhoneProvidersResponseContent", + "ListClientConnectionsResponseContent", + "ListClientGrantOrganizationsPaginatedResponseContent", + "ListClientGrantPaginatedResponseContent", + "ListClientsOffsetPaginatedResponseContent", + + "ListConnectionProfileTemplateResponseContent", + + "ListConnectionProfilesPaginatedResponseContent", + "ListConnectionsCheckpointPaginatedResponseContent", + "ListCustomDomainsResponseContent", + "ListDeviceCredentialsOffsetPaginatedResponseContent", + + "ListDirectoryProvisioningsResponseContent", + "ListEncryptionKeyOffsetPaginatedResponseContent", + + "ListEventStreamsResponseContent", + "ListFlowExecutionsPaginatedResponseContent", + "ListFlowsOffsetPaginatedResponseContent", + + "ListFlowsRequestParametersHydrateEnum", + + "ListFlowsVaultConnectionsOffsetPaginatedResponseContent", + "ListFormsOffsetPaginatedResponseContent", + + "ListGroupsPaginatedResponseContent", + "ListGuardianPoliciesResponseContent", + "ListHooksOffsetPaginatedResponseContent", + "ListLogOffsetPaginatedResponseContent", + "ListNetworkAclsOffsetPaginatedResponseContent", + + "ListOrganizationAllConnectionsOffsetPaginatedResponseContent", + "ListOrganizationClientGrantsOffsetPaginatedResponseContent", + "ListOrganizationConnectionsOffsetPaginatedResponseContent", + + "ListOrganizationDiscoveryDomainsResponseContent", + "ListOrganizationInvitationsOffsetPaginatedResponseContent", + "ListOrganizationMemberRolesOffsetPaginatedResponseContent", + "ListOrganizationMembersPaginatedResponseContent", + @@ -3283,12 +7694,17 @@ __all__ = [ + "ListRoleUsersPaginatedResponseContent", + "ListRolesOffsetPaginatedResponseContent", + "ListRulesOffsetPaginatedResponseContent", + + "ListScimConfigurationsResponseContent", + "ListSelfServiceProfileCustomTextResponseContent", + "ListSelfServiceProfilesPaginatedResponseContent", + + "ListSynchronizedGroupsResponseContent", + "ListTokenExchangeProfileResponseContent", + + "ListUserAttributeProfileTemplateResponseContent", + + "ListUserAttributeProfilesPaginatedResponseContent", + "ListUserAuthenticationMethodsOffsetPaginatedResponseContent", + "ListUserBlocksByIdentifierResponseContent", + "ListUserBlocksResponseContent", + + "ListUserConnectedAccountsResponseContent", + "ListUserGrantsOffsetPaginatedResponseContent", + "ListUserOrganizationsOffsetPaginatedResponseContent", + "ListUserPermissionsOffsetPaginatedResponseContent", + @@ -3344,7 +7760,6 @@ __all__ = [ "LogStreamSumoResponseSchema", "LogStreamSumoSink", - + "ManagementClient", + "ManagementClient", + - "AsyncManagementClient", "MdlPresentationProperties", "MdlPresentationRequest", "MdlPresentationRequestProperties", - @@ -7972,6 +7983,7 @@ __all__ = [ + @@ -3359,6 +7774,8 @@ __all__ = [ + "NetworkAclActionLogEnum", + "NetworkAclActionRedirectEnum", + "NetworkAclMatch", + + "NetworkAclMatchConnectingIpv4Cidr", + + "NetworkAclMatchConnectingIpv6Cidr", + "NetworkAclMatchIpv4Cidr", + "NetworkAclMatchIpv6Cidr", + "NetworkAclRule", + @@ -3368,11 +7785,15 @@ __all__ = [ + "OauthScope", + "Organization", + "OrganizationAccessLevelEnum", + + "OrganizationAccessLevelEnumWithNull", + + "OrganizationAllConnectionPost", + "OrganizationBranding", + "OrganizationBrandingColors", + "OrganizationClientGrant", + "OrganizationConnection", + "OrganizationConnectionInformation", + + "OrganizationDiscoveryDomain", + + "OrganizationDiscoveryDomainStatus", + "OrganizationEnabledConnection", + "OrganizationInvitation", + "OrganizationInvitationInvitee", + @@ -3383,6 +7804,12 @@ __all__ = [ + "OrganizationUsageEnum", + "PartialGroupsEnum", + "PartialPhoneTemplateContent", + + "PasswordCharacterTypeEnum", + + "PasswordCharacterTypeRulePolicyEnum", + + "PasswordDefaultDictionariesEnum", + + "PasswordIdenticalCharactersPolicyEnum", + + "PasswordMaxLengthExceededPolicyEnum", + + "PasswordSequentialCharactersPolicyEnum", + "PatchClientCredentialResponseContent", + "PatchSupplementalSignalsResponseContent", + "PaymentRequiredError", + @@ -3400,9 +7827,13 @@ __all__ = [ + "PhoneTemplateContent", + "PhoneTemplateNotificationTypeEnum", + "PostClientCredentialResponseContent", + + "PostConnectionKeysAlgEnum", + + "PostConnectionKeysRequestContent", + + "PostConnectionsKeysResponseContent", + + "PostConnectionsKeysResponseContentItem", + + "PreconditionFailedError", + "PreferredAuthenticationMethodEnum", + - "PrivateKeyJwt", + - "PrivateKeyJwtCredentials", + + "PreviewCimdMetadataResponseContent", + "PromptGroupNameEnum", + "PromptLanguageEnum", + "PublicKeyCredential", + @@ -3412,18 +7843,27 @@ __all__ = [ + "RefreshTokenDateObject", + "RefreshTokenDevice", + "RefreshTokenExpirationTypeEnum", + + "RefreshTokenMetadata", + "RefreshTokenResourceServer", + "RefreshTokenResponseContent", + "RefreshTokenRotationTypeEnum", + "RefreshTokenSessionId", + "RegenerateUsersRecoveryCodeResponseContent", + + "RegisterCimdClientResponseContent", + "ResetPhoneTemplateRequestContent", + "ResetPhoneTemplateResponseContent", + "ResourceServer", + + "ResourceServerAuthorizationPolicy", + "ResourceServerConsentPolicyEnum", + "ResourceServerProofOfPossession", + "ResourceServerProofOfPossessionMechanismEnum", + + "ResourceServerProofOfPossessionRequiredForEnum", + "ResourceServerScope", + + "ResourceServerSubjectTypeAuthorization", + + "ResourceServerSubjectTypeAuthorizationClient", + + "ResourceServerSubjectTypeAuthorizationClientPolicyEnum", + + "ResourceServerSubjectTypeAuthorizationUser", + + "ResourceServerSubjectTypeAuthorizationUserPolicyEnum", + "ResourceServerTokenDialectResponseEnum", + "ResourceServerTokenDialectSchemaEnum", + "ResourceServerTokenEncryption", + @@ -3434,6 +7874,7 @@ __all__ = [ + "RevokedSigningKeysResponseContent", + "Role", + "RoleUser", + + "RollbackActionModuleResponseContent", + "RotateClientSecretResponseContent", + "RotateConnectionKeysRequestContent", + "RotateConnectionKeysSigningAlgEnum", + @@ -3441,6 +7882,7 @@ __all__ = [ + "RotateSigningKeysResponseContent", + "Rule", + "RulesConfig", + + "ScimConfiguration", + "ScimMappingItem", + "ScimTokenItem", + "ScreenGroupNameEnum", + @@ -3457,7 +7899,9 @@ __all__ = [ + "SelfServiceProfileSsoTicketConnectionOptions", + "SelfServiceProfileSsoTicketDomainAliasesConfig", + "SelfServiceProfileSsoTicketDomainVerificationEnum", + + "SelfServiceProfileSsoTicketEnabledFeatures", + "SelfServiceProfileSsoTicketEnabledOrganization", + + "SelfServiceProfileSsoTicketGoogleWorkspaceConfig", + "SelfServiceProfileSsoTicketIdpInitiatedClientProtocolEnum", + "SelfServiceProfileSsoTicketIdpInitiatedOptions", + "SelfServiceProfileSsoTicketProvisioningConfig", + @@ -3475,6 +7919,7 @@ __all__ = [ + "SessionDate", + "SessionDeviceMetadata", + "SessionIp", + + "SessionMetadata", + "SessionResponseContent", + "SetCustomSigningKeysResponseContent", + "SetEmailTemplateResponseContent", + @@ -3485,11 +7930,8 @@ __all__ = [ + "SetGuardianFactorSmsTemplatesResponseContent", + "SetGuardianFactorsProviderPhoneResponseContent", + "SetGuardianFactorsProviderPhoneTwilioResponseContent", + - "SetGuardianFactorsProviderPushNotificationApnsRequestContent", + "SetGuardianFactorsProviderPushNotificationApnsResponseContent", + - "SetGuardianFactorsProviderPushNotificationFcmRequestContent", + "SetGuardianFactorsProviderPushNotificationFcmResponseContent", + - "SetGuardianFactorsProviderPushNotificationFcmv1RequestContent", + "SetGuardianFactorsProviderPushNotificationFcmv1ResponseContent", + "SetGuardianFactorsProviderPushNotificationResponseContent", + "SetGuardianFactorsProviderPushNotificationSnsResponseContent", + @@ -3520,15 +7962,20 @@ __all__ = [ + "SuspiciousIpThrottlingPreUserRegistrationStage", + "SuspiciousIpThrottlingShieldsEnum", + "SuspiciousIpThrottlingStage", + + "SynchronizeGroupsEnum", + + "SynchronizedGroupPayload", + "TenantOidcLogoutSettings", + "TenantSettingsDeviceFlow", + "TenantSettingsDeviceFlowCharset", + + "TenantSettingsDynamicClientRegistrationSecurityMode", + "TenantSettingsErrorPage", + "TenantSettingsFlags", + "TenantSettingsGuardianPage", + "TenantSettingsMtls", + "TenantSettingsPasswordPage", + + "TenantSettingsResourceParameterProfile", + "TenantSettingsSessions", + + "TenantSettingsSupportedLocalesEnum", + "TestActionPayload", + "TestActionResponseContent", + "TestActionResultPayload", + @@ -3536,6 +7983,7 @@ __all__ = [ "TestEventDataContent", "TokenExchangeProfileResponseContent", "TokenExchangeProfileTypeEnum", @@ -102,6 +6751,213 @@ patches: "TokenQuota", "TokenQuotaClientCredentials", "TokenQuotaConfiguration", + @@ -3546,54 +7994,151 @@ __all__ = [ + "UnauthorizedError", + "UniversalLoginExperienceEnum", + "UpdateActionBindingsResponseContent", + + "UpdateActionModuleResponseContent", + "UpdateActionResponseContent", + "UpdateAculResponseContent", + + "UpdateAttackProtectionCaptchaResponseContent", + + "UpdateBotDetectionSettingsResponseContent", + "UpdateBrandingColors", + "UpdateBrandingFont", + + "UpdateBrandingIdentifiers", + + "UpdateBrandingLoginDisplayEnum", + "UpdateBrandingPageBackground", + + "UpdateBrandingPhoneDisplay", + + "UpdateBrandingPhoneFormattingEnum", + + "UpdateBrandingPhoneMaskingEnum", + "UpdateBrandingPhoneProviderResponseContent", + "UpdateBrandingResponseContent", + "UpdateBrandingThemeResponseContent", + "UpdateBreachedPasswordDetectionSettingsResponseContent", + "UpdateBruteForceSettingsResponseContent", + - "UpdateBruteForceSettingsResponseContentMode", + - "UpdateBruteForceSettingsResponseContentShieldsItem", + "UpdateClientGrantResponseContent", + "UpdateClientResponseContent", + "UpdateConnectionOptions", + + "UpdateConnectionProfileResponseContent", + + "UpdateConnectionRequestContentAd", + + "UpdateConnectionRequestContentAdfs", + + "UpdateConnectionRequestContentAmazon", + + "UpdateConnectionRequestContentApple", + + "UpdateConnectionRequestContentAuth0", + + "UpdateConnectionRequestContentAuth0Oidc", + + "UpdateConnectionRequestContentAzureAd", + + "UpdateConnectionRequestContentBaidu", + + "UpdateConnectionRequestContentBitbucket", + + "UpdateConnectionRequestContentBitly", + + "UpdateConnectionRequestContentBox", + + "UpdateConnectionRequestContentCustom", + + "UpdateConnectionRequestContentDaccount", + + "UpdateConnectionRequestContentDropbox", + + "UpdateConnectionRequestContentDwolla", + + "UpdateConnectionRequestContentEmail", + + "UpdateConnectionRequestContentEvernote", + + "UpdateConnectionRequestContentEvernoteSandbox", + + "UpdateConnectionRequestContentExact", + + "UpdateConnectionRequestContentFacebook", + + "UpdateConnectionRequestContentFitbit", + + "UpdateConnectionRequestContentGitHub", + + "UpdateConnectionRequestContentGoogleApps", + + "UpdateConnectionRequestContentGoogleOAuth2", + + "UpdateConnectionRequestContentInstagram", + + "UpdateConnectionRequestContentIp", + + "UpdateConnectionRequestContentLine", + + "UpdateConnectionRequestContentLinkedin", + + "UpdateConnectionRequestContentOAuth1", + + "UpdateConnectionRequestContentOAuth2", + + "UpdateConnectionRequestContentOffice365", + + "UpdateConnectionRequestContentOidc", + + "UpdateConnectionRequestContentOkta", + + "UpdateConnectionRequestContentPaypal", + + "UpdateConnectionRequestContentPaypalSandbox", + + "UpdateConnectionRequestContentPingFederate", + + "UpdateConnectionRequestContentPlanningCenter", + + "UpdateConnectionRequestContentSalesforce", + + "UpdateConnectionRequestContentSalesforceCommunity", + + "UpdateConnectionRequestContentSalesforceSandbox", + + "UpdateConnectionRequestContentSaml", + + "UpdateConnectionRequestContentSharepoint", + + "UpdateConnectionRequestContentShop", + + "UpdateConnectionRequestContentShopify", + + "UpdateConnectionRequestContentSms", + + "UpdateConnectionRequestContentSoundcloud", + + "UpdateConnectionRequestContentThirtySevenSignals", + + "UpdateConnectionRequestContentTwitter", + + "UpdateConnectionRequestContentUntappd", + + "UpdateConnectionRequestContentVkontakte", + + "UpdateConnectionRequestContentWeibo", + + "UpdateConnectionRequestContentWindowsLive", + + "UpdateConnectionRequestContentWordpress", + + "UpdateConnectionRequestContentYahoo", + + "UpdateConnectionRequestContentYandex", + "UpdateConnectionResponseContent", + "UpdateCustomDomainResponseContent", + + "UpdateDefaultCanonicalDomainResponseContent", + + "UpdateDefaultCustomDomainResponseContent", + + "UpdateDefaultDomainResponseContent", + + "UpdateDirectoryProvisioningRequestContent", + + "UpdateDirectoryProvisioningResponseContent", + "UpdateEmailProviderResponseContent", + "UpdateEmailTemplateResponseContent", + "UpdateEnabledClientConnectionsRequestContent", + "UpdateEnabledClientConnectionsRequestContentItem", + "UpdateEventStreamResponseContent", + "UpdateFlowResponseContent", + + "UpdateFlowsVaultConnectionResponseContent", + + "UpdateFlowsVaultConnectionSetup", + "UpdateFormResponseContent", + "UpdateGuardianFactorDuoSettingsResponseContent", + + "UpdateGuardianFactorsProviderPushNotificationApnsResponseContent", + + "UpdateGuardianFactorsProviderPushNotificationFcmResponseContent", + + "UpdateGuardianFactorsProviderPushNotificationFcmv1ResponseContent", + "UpdateGuardianFactorsProviderPushNotificationSnsResponseContent", + "UpdateHookResponseContent", + "UpdateHookSecretRequestContent", + "UpdateLogStreamResponseContent", + "UpdateNetworkAclResponseContent", + + "UpdateOrganizationAllConnectionResponseContent", + "UpdateOrganizationConnectionResponseContent", + + "UpdateOrganizationDiscoveryDomainResponseContent", + "UpdateOrganizationResponseContent", + "UpdatePhoneTemplateResponseContent", + + "UpdateRefreshTokenResponseContent", + "UpdateResourceServerResponseContent", + + "UpdateRiskAssessmentsSettingsNewDeviceResponseContent", + + "UpdateRiskAssessmentsSettingsResponseContent", + "UpdateRoleResponseContent", + "UpdateRuleResponseContent", + "UpdateScimConfigurationResponseContent", + "UpdateSelfServiceProfileResponseContent", + + "UpdateSessionResponseContent", + "UpdateSettingsResponseContent", + "UpdateSuspiciousIpThrottlingSettingsResponseContent", + "UpdateTenantSettingsResponseContent", + "UpdateTokenQuota", + "UpdateUniversalLoginTemplateRequestContent", + "UpdateUniversalLoginTemplateRequestContentTemplate", + + "UpdateUserAttributeProfileResponseContent", + "UpdateUserAuthenticationMethodResponseContent", + "UpdateUserResponseContent", + "UpdateVerifiableCredentialTemplateResponseContent", + "UserAppMetadataSchema", + + "UserAttributeProfile", + + "UserAttributeProfileId", + + "UserAttributeProfileName", + + "UserAttributeProfileOidcMapping", + + "UserAttributeProfilePatchUserId", + + "UserAttributeProfileSamlMapping", + + "UserAttributeProfileStrategyOverrides", + + "UserAttributeProfileStrategyOverridesMapping", + + "UserAttributeProfileStrategyOverridesUserId", + + "UserAttributeProfileStrategyOverridesUserIdMapping", + + "UserAttributeProfileTemplate", + + "UserAttributeProfileTemplateItem", + + "UserAttributeProfileUserAttributeAdditionalProperties", + + "UserAttributeProfileUserAttributes", + + "UserAttributeProfileUserId", + + "UserAttributeProfileUserIdOidcMappingEnum", + + "UserAttributeProfileUserIdOidcStrategyOverrideMapping", + + "UserAttributeProfileUserIdSamlMapping", + "UserAuthenticationMethod", + "UserAuthenticationMethodProperties", + "UserAuthenticationMethodPropertiesEnum", + @@ -3602,7 +8147,8 @@ __all__ = [ + "UserEnrollmentAuthMethodEnum", + "UserEnrollmentStatusEnum", + "UserGrant", + - "UserIdEnum", + + "UserGroupsResponseSchema", + + "UserId", + "UserIdentity", + "UserIdentityProviderEnum", + "UserIdentitySchema", + @@ -3621,6 +8167,8 @@ __all__ = [ + "VerificationMethodEnum", + "VerifyCustomDomainResponseContent", + "VerifyEmailTicketResponseContent", + + "X509CertificateCredential", + + "X509CertificateCredentialTypeEnum", + "__version__", + "actions", + "anomaly", + @@ -3628,14 +8176,17 @@ __all__ = [ + "branding", + "client_grants", + "clients", + + "connection_profiles", + "connections", + "custom_domains", + "device_credentials", + "email_templates", + "emails", + "event_streams", + + "events", + "flows", + "forms", + + "groups", + "guardian", + "hooks", + "jobs", + @@ -3647,6 +8198,7 @@ __all__ = [ + "prompts", + "refresh_tokens", + "resource_servers", + + "risk_assessments", + "roles", + "rules", + "rules_configs", + @@ -3657,6 +8209,7 @@ __all__ = [ + "tenants", + "tickets", + "token_exchange_profiles", + + "user_attribute_profiles", + "user_blocks", + "user_grants", + "users", theirs_snapshot: src/auth0/management/__init__.py: | # This file was auto-generated by Fern from our API Definition. @@ -8321,3 +15177,843 @@ patches: "users", "verifiable_credentials", ] + status: unresolved + - id: patch-f182694f + content_hash: sha256:5b0050902cba2aa5b86585d4eabba3987354307a1721cf12a9a94422ee371470 + original_commit: f182694f50720cacb568ff5c7a1894b0dd972373 + original_message: "fix: Add top-level `py.typed` marker to resolve IDE import errors (#829)" + original_author: Snehil Kishore + base_generation: c1c18146c845e6c7916d0490f7ef02807f9bfebf + files: + - src/auth0/py.typed + patch_content: |+ + From f182694f50720cacb568ff5c7a1894b0dd972373 Mon Sep 17 00:00:00 2001 + From: Snehil Kishore + Date: Mon, 4 May 2026 15:36:32 +0530 + Subject: [PATCH] fix: Add top-level `py.typed` marker to resolve IDE import + errors (#829) + + ## Changes + + - Adds a `py.typed` marker at the root package level + (`src/auth0/py.typed`). + + The marker previously only existed under `src/auth0/management/`, + causing IDEs like PyCharm to fall back to outdated [typeshed + stubs](https://github.com/python/typeshed/pull/14697) and report + unresolved imports for `ManagementClient`, `ApiError`, and other + classes. A root-level marker signals IDEs to use the package's own + inline types instead. + + Closes #824 + Related: #804, #793 + --- + .fernignore | 3 ++- + src/auth0/py.typed | 0 + 2 files changed, 2 insertions(+), 1 deletion(-) + create mode 100644 src/auth0/py.typed + + diff --git a/.fernignore b/.fernignore + index f0e9481..9c29793 100644 + --- a/.fernignore + +++ b/.fernignore + @@ -16,8 +16,9 @@ CHANGELOG.md + src/auth0/authentication/ + tests/authentication/ + + -# Root auth0 __init__.py + +# Root auth0 __init__.py and py.typed marker + src/auth0/__init__.py + +src/auth0/py.typed + + # Telemetry customization (Auth0 format with dynamic versioning) + src/auth0/management/core/client_wrapper.py + diff --git a/src/auth0/py.typed b/src/auth0/py.typed + new file mode 100644 + index 0000000..e69de29 + -- + 2.52.0 + + theirs_snapshot: + src/auth0/py.typed: "" + user_owned: true + - id: patch-1026b4d8 + content_hash: sha256:d1944b0fa60d6251e0f6411e9ea7255795874b63e979590195c9c52cb9e48c77 + original_commit: 1026b4d84790f1037f99df904ddf58d68f944224 + original_message: Release 5.4.0 (#838) + original_author: Snehil Kishore + base_generation: c1c18146c845e6c7916d0490f7ef02807f9bfebf + files: + - .version + - CHANGELOG.md + - pyproject.toml + patch_content: |+ + From 1026b4d84790f1037f99df904ddf58d68f944224 Mon Sep 17 00:00:00 2001 + From: Snehil Kishore + Date: Mon, 4 May 2026 16:34:45 +0530 + Subject: [PATCH] Release 5.4.0 (#838) + + **Added** + - chore: Add events module, async token support, and connection retry + resilience [\#835](https://github.com/auth0/auth0-python/pull/835) + ([fern-api[bot]](https://github.com/apps/fern-api)) + + **Changed** + - [fern-replay] Initialize Replay for SDK customizations + [\#833](https://github.com/auth0/auth0-python/pull/833) + ([fern-api[bot]](https://github.com/apps/fern-api), + [developerkunal](https://github.com/developerkunal)) + + **Fixed** + - fix: Add top-level `py.typed` marker to resolve IDE import errors + [\#829](https://github.com/auth0/auth0-python/pull/829) + ([kishore7snehil](https://github.com/kishore7snehil)) + --- + .version | 2 +- + CHANGELOG.md | 12 ++++++++++++ + pyproject.toml | 2 +- + 3 files changed, 14 insertions(+), 2 deletions(-) + + diff --git a/.version b/.version + index e230c83..1e20ec3 100644 + --- a/.version + +++ b/.version + @@ -1 +1 @@ + -5.3.0 + \ No newline at end of file + +5.4.0 + \ No newline at end of file + diff --git a/CHANGELOG.md b/CHANGELOG.md + index 061116a..025b731 100644 + --- a/CHANGELOG.md + +++ b/CHANGELOG.md + @@ -1,5 +1,17 @@ + # Change Log + + +## [5.4.0](https://github.com/auth0/auth0-python/tree/5.4.0) (2026-05-04) + +[Full Changelog](https://github.com/auth0/auth0-python/compare/5.3.0...5.4.0) + + + +**Added** + +- chore: Add events module, async token support, and connection retry resilience [\#835](https://github.com/auth0/auth0-python/pull/835) ([fern-api[bot]](https://github.com/apps/fern-api)) + + + +**Changed** + +- [fern-replay] Initialize Replay for SDK customizations [\#833](https://github.com/auth0/auth0-python/pull/833) ([fern-api[bot]](https://github.com/apps/fern-api), [developerkunal](https://github.com/developerkunal)) + + + +**Fixed** + +- fix: Add top-level `py.typed` marker to resolve IDE import errors [\#829](https://github.com/auth0/auth0-python/pull/829) ([kishore7snehil](https://github.com/kishore7snehil)) + + + ## [5.3.0](https://github.com/auth0/auth0-python/tree/5.3.0) (2026-04-09) + [Full Changelog](https://github.com/auth0/auth0-python/compare/5.2.0...5.3.0) + + diff --git a/pyproject.toml b/pyproject.toml + index eabea62..c96a12b 100644 + --- a/pyproject.toml + +++ b/pyproject.toml + @@ -3,7 +3,7 @@ name = "auth0-python" + + [tool.poetry] + name = "auth0-python" + -version = "5.3.0" + +version = "5.4.0" + description = "Auth0 Python SDK - Management and Authentication APIs" + readme = "README.md" + authors = ["Auth0 "] + -- + 2.52.0 + + theirs_snapshot: + .version: 5.4.0 + CHANGELOG.md: | + # Change Log + + ## [5.4.0](https://github.com/auth0/auth0-python/tree/5.4.0) (2026-05-04) + [Full Changelog](https://github.com/auth0/auth0-python/compare/5.3.0...5.4.0) + + **Added** + - chore: Add events module, async token support, and connection retry resilience [\#835](https://github.com/auth0/auth0-python/pull/835) ([fern-api[bot]](https://github.com/apps/fern-api)) + + **Changed** + - [fern-replay] Initialize Replay for SDK customizations [\#833](https://github.com/auth0/auth0-python/pull/833) ([fern-api[bot]](https://github.com/apps/fern-api), [developerkunal](https://github.com/developerkunal)) + + **Fixed** + - fix: Add top-level `py.typed` marker to resolve IDE import errors [\#829](https://github.com/auth0/auth0-python/pull/829) ([kishore7snehil](https://github.com/kishore7snehil)) + + ## [5.3.0](https://github.com/auth0/auth0-python/tree/5.3.0) (2026-04-09) + [Full Changelog](https://github.com/auth0/auth0-python/compare/5.2.0...5.3.0) + + **Added** + - feat: Add CIMD support, organization connections, group deletion, refresh token listing; remove AOL/Flickr/Yammer providers [\#816](https://github.com/auth0/auth0-python/pull/816) ([fern-api[bot]](https://github.com/apps/fern-api)) + - feat:Add `Auth0-Custom-Domain` header support for Multiple Custom Domains (MCD) [\#799](https://github.com/auth0/auth0-python/pull/799) ([kishore7snehil](https://github.com/kishore7snehil)) + + ## [5.2.0](https://github.com/auth0/auth0-python/tree/5.2.0) (2026-03-30) + [Full Changelog](https://github.com/auth0/auth0-python/compare/5.1.0...5.2.0) + + **⚠️ Breaking: Python 3.8 support dropped** + - Python 3.8 reached end-of-life in October 2024. This release requires **Python >=3.9.2**. Users on Python 3.8 should remain on v5.1.0 until they upgrade their Python version. [\#808](https://github.com/auth0/auth0-python/pull/808) ([kishore7snehil](https://github.com/kishore7snehil)) + + **Added** + - feat: Add default domain endpoints, connection key provisioning, tenant SCIM listing; remove MiiCard/Renren providers [\#801](https://github.com/auth0/auth0-python/pull/801) ([fern-api[bot]](https://github.com/apps/fern-api)) + - feat: Add client_info support for custom telemetry in Authentication and Management clients [\#802](https://github.com/auth0/auth0-python/pull/802) ([kishore7snehil](https://github.com/kishore7snehil)) + - feat: Add SDK logging infrastructure with configurable log levels and header redaction [\#785](https://github.com/auth0/auth0-python/pull/785) ([fern-api[bot]](https://github.com/apps/fern-api)) + + **Fixed** + - fix: Pagination page advancement incorrectly skipping pages [\#785](https://github.com/auth0/auth0-python/pull/785) ([fern-api[bot]](https://github.com/apps/fern-api)) + + **Changed** + - chore: Update ruff, aiohttp, cryptography, urllib3, codecov-action; replace Snyk with SCA scan [\#808](https://github.com/auth0/auth0-python/pull/808) ([kishore7snehil](https://github.com/kishore7snehil)) + + ## [5.1.0](https://github.com/auth0/auth0-python/tree/5.1.0) (2026-02-11) + [Full Changelog](https://github.com/auth0/auth0-python/compare/5.0.0...5.1.0) + + **Fixed** + - fix: Remove placeholder defaults from optional parameters + additional updates [\#778](https://github.com/auth0/auth0-python/pull/778) ([fern-api[bot]](https://github.com/apps/fern-api)) + + ## [5.0.0](https://github.com/auth0/auth0-python/tree/5.0.0) (2026-02-04) + [Full Changelog](https://github.com/auth0/auth0-python/compare/4.13.0...5.0.0) + + 📢 This is the official v5.0.0 release with significant improvements and breaking changes. + + **Breaking Changes** + + - **Complete rewrite of Management API client** - Generated from Auth0's OpenAPI specifications using [Fern](https://buildwithfern.com) + - **Python 3.7 support dropped** - Minimum required version is now Python 3.8 + - **Management API client restructured** - Methods organized into modular sub-clients for better discoverability + - **Method signatures changed** - Consistent and predictable naming conventions across all endpoints + - **Response types changed** - Strongly-typed Pydantic models replace generic dictionaries + - **Import paths changed** - `from auth0.management.core.api_error import ApiError` instead of `from auth0.exceptions import Auth0Error` + - **Pagination defaults changed** - `include_totals=True` is now the default for list operations + - **Client initialization simplified** - `ManagementClient` takes `domain` instead of full `base_url` + + **Added** + + - First-class async support with `AsyncAuth0` and `AsyncManagementClient` + - Automatic token management with client credentials in `ManagementClient` + - Built-in pagination support with `include_totals=True` by default + - Type-safe request/response objects using Pydantic models + - Better IntelliSense and code completion support + - Comprehensive API reference documentation + - Migration guide for upgrading from v4.x + + **Changed** + + - Management API client fully regenerated using Fern + - Package structure reorganized with hierarchical sub-clients + - Error handling updated to use `ApiError` base class + - Documentation updated with v5 examples + + **Note** + + - Authentication API remains **fully backward compatible** - no changes required + - See [v5_MIGRATION_GUIDE.md](https://github.com/auth0/auth0-python/blob/master/v5_MIGRATION_GUIDE.md) for detailed upgrade instructions + + + ## [4.13.0](https://github.com/auth0/auth0-python/tree/4.13.0) (2025-09-17) + [Full Changelog](https://github.com/auth0/auth0-python/compare/4.12.0...4.13.0) + + **Added** + - fix(backchannel): expose headers on `slow_down` errors (HTTP 429s) [\#744](https://github.com/auth0/auth0-python/pull/744) ([pmalouin](https://github.com/pmalouin)) + + ## [4.12.0](https://github.com/auth0/auth0-python/tree/4.12.0) (2025-09-15) + [Full Changelog](https://github.com/auth0/auth0-python/compare/4.11.0...4.12.0) + + **Added** + - Updates for CIBA with email [\#720](https://github.com/auth0/auth0-python/pull/720) ([adamjmcgrath](https://github.com/adamjmcgrath)) + + ## [4.11.0](https://github.com/auth0/auth0-python/tree/4.11.0) (2025-09-11) + [Full Changelog](https://github.com/auth0/auth0-python/compare/4.10.0...4.11.0) + + **Added** + - feat: Support For Network ACL Endpoints [\#706](https://github.com/auth0/auth0-python/pull/706) ([kishore7snehil](https://github.com/kishore7snehil)) + + **Fixed** + - chore: fix workflow syntax errors and update dependencies [\#724](https://github.com/auth0/auth0-python/pull/724) ([kishore7snehil](https://github.com/kishore7snehil)) + + ## [4.10.0](https://github.com/auth0/auth0-python/tree/4.10.0) (2025-06-05) + [Full Changelog](https://github.com/auth0/auth0-python/compare/4.9.0...4.10.0) + + **Added** + - chore: merge community PRs – bugfixes, features, and dependency upgrades [\#696](https://github.com/auth0/auth0-python/pull/696) ([kishore7snehil](https://github.com/kishore7snehil)) + + **Fixed** + - fix: handle `authorization_details` in back_channel_login [\#695](https://github.com/auth0/auth0-python/pull/695) ([kishore7snehil](https://github.com/kishore7snehil)) + + ## [4.9.0](https://github.com/auth0/auth0-python/tree/4.9.0) (2025-04-01) + [Full Changelog](https://github.com/auth0/auth0-python/compare/4.8.1...4.9.0) + + **Added** + - feat: Federated Connections Support [\#682](https://github.com/auth0/auth0-python/pull/682) ([kishore7snehil](https://github.com/kishore7snehil)) + - Adding Support For CIBA with RAR [\#679](https://github.com/auth0/auth0-python/pull/679) ([kishore7snehil](https://github.com/kishore7snehil)) + + ## [4.8.1](https://github.com/auth0/auth0-python/tree/4.8.1) (2025-02-24) + [Full Changelog](https://github.com/auth0/auth0-python/compare/4.8.0...4.8.1) + + **Fixed** + - Fix: Unauthorized Access Error For PAR [\#671](https://github.com/auth0/auth0-python/pull/671) ([kishore7snehil](https://github.com/kishore7snehil)) + + ## [4.8.0](https://github.com/auth0/auth0-python/tree/4.8.0) (2025-01-29) + [Full Changelog](https://github.com/auth0/auth0-python/compare/4.7.2...4.8.0) + + **Added** + - Adding Support For RAR and JAR Requests [\#659](https://github.com/auth0/auth0-python/pull/659) ([kishore7snehil](https://github.com/kishore7snehil)) + - Adding Support For Back Channel Login [\#643](https://github.com/auth0/auth0-python/pull/643) ([kishore7snehil](https://github.com/kishore7snehil)) + + **Fixed** + - Consolidated Community PRs and Dependency Upgrades [\#660](https://github.com/auth0/auth0-python/pull/660) ([kishore7snehil](https://github.com/kishore7snehil)) + - [fix typo in docstring](https://github.com/auth0/auth0-python/pull/637) ([@CarlosEduR ](https://github.com/CarlosEduR)) + - [Added support for "include_totals" to all_organization_member_roles](https://github.com/auth0/auth0-python/pull/635) ([@jpayton-cx](https://github.com/jpayton-cx)) + - [Fixed Version Table](https://github.com/auth0/auth0-python/pull/633) ([@sanchez](https://github.com/sanchez)) + - [Remove upper bounds on all python dependency versions](https://github.com/auth0/auth0-python/pull/628) ([@ngfeldman](https://github.com/ngfeldman)) + - [Adding secrets to Codecov Action Upload](https://github.com/auth0/auth0-python/pull/624) ([@developerkunal](https://github.com/developerkunal)) + - Updating Dependancies And Workflow Action Versions [\#653](https://github.com/auth0/auth0-python/pull/653) ([kishore7snehil](https://github.com/kishore7snehil)) + - Fixing the Github Workflow Issues [\#644](https://github.com/auth0/auth0-python/pull/644) ([kishore7snehil](https://github.com/kishore7snehil)) + + ## [4.7.2](https://github.com/auth0/auth0-python/tree/4.7.2) (2024-09-10) + [Full Changelog](https://github.com/auth0/auth0-python/compare/4.7.1...4.7.2) + + **Security** + - Update cryptography requirements.txt [\#630](https://github.com/auth0/auth0-python/pull/630) ([duedares-rvj](https://github.com/duedares-rvj)) + + ## [4.7.1](https://github.com/auth0/auth0-python/tree/4.7.1) (2024-02-26) + [Full Changelog](https://github.com/auth0/auth0-python/compare/4.7.0...4.7.1) + + **Security** + - Update cryptography requirements.txt [\#597](https://github.com/auth0/auth0-python/pull/597) ([skjensen](https://github.com/skjensen)) + + ## [4.7.0](https://github.com/auth0/auth0-python/tree/4.7.0) (2023-12-05) + [Full Changelog](https://github.com/auth0/auth0-python/compare/4.6.1...4.7.0) + + **⚠️ BREAKING CHANGES** + - Add python 3.12 support, drop 3.7 [\#562](https://github.com/auth0/auth0-python/pull/562) ([adamjmcgrath](https://github.com/adamjmcgrath)) + + **Added** + - [SDK-4138] Add support for Pushed Authorization Requests (PAR) [\#560](https://github.com/auth0/auth0-python/pull/560) ([adamjmcgrath](https://github.com/adamjmcgrath)) + + ## [4.6.1](https://github.com/auth0/auth0-python/tree/4.6.1) (2023-11-29) + [Full Changelog](https://github.com/auth0/auth0-python/compare/4.6.0...4.6.1) + + **Fixed** + - Fix rest_async and async tests [\#556](https://github.com/auth0/auth0-python/pull/556) ([adamjmcgrath](https://github.com/adamjmcgrath)) + - fix type hint for link_user_account [\#552](https://github.com/auth0/auth0-python/pull/552) ([tzzh](https://github.com/tzzh)) + + ## [4.6.0](https://github.com/auth0/auth0-python/tree/4.6.0) (2023-11-09) + [Full Changelog](https://github.com/auth0/auth0-python/compare/4.5.0...4.6.0) + + **Added** + - [SDK-4544] Add orgs in client credentials support [\#549](https://github.com/auth0/auth0-python/pull/549) ([adamjmcgrath](https://github.com/adamjmcgrath)) + - Authentication API, the Database classs, Add the organization param to the change_password method [\#539](https://github.com/auth0/auth0-python/pull/539) ([shchotse](https://github.com/shchotse)) + - Retry all methods on 429 [\#518](https://github.com/auth0/auth0-python/pull/518) ([adamjmcgrath](https://github.com/adamjmcgrath)) + + ## [4.5.0](https://github.com/auth0/auth0-python/tree/4.5.0) (2023-10-20) + [Full Changelog](https://github.com/auth0/auth0-python/compare/4.4.2...4.5.0) + + **Added** + - [SDK-4656] Add fields to all_organization_members [\#537](https://github.com/auth0/auth0-python/pull/537) ([adamjmcgrath](https://github.com/adamjmcgrath)) + + ## [4.4.2](https://github.com/auth0/auth0-python/tree/4.4.2) (2023-08-31) + [Full Changelog](https://github.com/auth0/auth0-python/compare/4.4.1...4.4.2) + + **Fixed** + - Fix python dependency version [\#522](https://github.com/auth0/auth0-python/pull/522) ([adamjmcgrath](https://github.com/adamjmcgrath)) + - Revert publishing types [\#521](https://github.com/auth0/auth0-python/pull/521) ([adamjmcgrath](https://github.com/adamjmcgrath)) + + ## [4.4.1](https://github.com/auth0/auth0-python/tree/4.4.1) (2023-08-21) + [Full Changelog](https://github.com/auth0/auth0-python/compare/4.4.0...4.4.1) + + **Fixed** + - Fix for async types [\#515](https://github.com/auth0/auth0-python/pull/515) ([adamjmcgrath](https://github.com/adamjmcgrath)) + + ## [4.4.0](https://github.com/auth0/auth0-python/tree/4.4.0) (2023-07-25) + [Full Changelog](https://github.com/auth0/auth0-python/compare/4.3.0...4.4.0) + + **Added** + - [SDK-4394] Add organization name validation [\#507](https://github.com/auth0/auth0-python/pull/507) ([adamjmcgrath](https://github.com/adamjmcgrath)) + - Add type hints to `management` [\#497](https://github.com/auth0/auth0-python/pull/497) ([Viicos](https://github.com/Viicos)) + + **Fixed** + - Fix asyncify for users client where token is not required [\#506](https://github.com/auth0/auth0-python/pull/506) ([cgearing](https://github.com/cgearing)) + + ## [4.3.0](https://github.com/auth0/auth0-python/tree/4.3.0) (2023-06-26) + [Full Changelog](https://github.com/auth0/auth0-python/compare/4.2.0...4.3.0) + + **Added** + - Add forwardedFor option to password grant login [\#501](https://github.com/auth0/auth0-python/pull/501) ([adamjmcgrath](https://github.com/adamjmcgrath)) + - Add connections.all name parameter [\#500](https://github.com/auth0/auth0-python/pull/500) ([adamjmcgrath](https://github.com/adamjmcgrath)) + - Add type hints to base and `authentication` [\#472](https://github.com/auth0/auth0-python/pull/472) ([Viicos](https://github.com/Viicos)) + + **Fixed** + - Fix async auth client [\#499](https://github.com/auth0/auth0-python/pull/499) ([adamjmcgrath](https://github.com/adamjmcgrath)) + - Fix update_template_universal_login [\#495](https://github.com/auth0/auth0-python/pull/495) ([adamjmcgrath](https://github.com/adamjmcgrath)) + + ## [4.2.0](https://github.com/auth0/auth0-python/tree/4.2.0) (2023-05-02) + [Full Changelog](https://github.com/auth0/auth0-python/compare/4.1.1...4.2.0) + + **Added** + - Add cache_ttl param to AsymmetricSignatureVerifier [\#490](https://github.com/auth0/auth0-python/pull/490) ([matei-radu](https://github.com/matei-radu)) + + ## [4.1.1](https://github.com/auth0/auth0-python/tree/4.1.1) (2023-04-13) + [Full Changelog](https://github.com/auth0/auth0-python/compare/4.1.0...4.1.1) + + **Fixed** + - Make pw realm params optional [\#484](https://github.com/auth0/auth0-python/pull/484) ([adamjmcgrath](https://github.com/adamjmcgrath)) + - Fix intellisense on Auth0 class [\#486](https://github.com/auth0/auth0-python/pull/486) ([adamjmcgrath](https://github.com/adamjmcgrath)) + + ## [4.1.0](https://github.com/auth0/auth0-python/tree/4.1.0) (2023-03-14) + [Full Changelog](https://github.com/auth0/auth0-python/compare/4.0.0...4.1.0) + + **Added** + - Add branding theme endpoints [\#477](https://github.com/auth0/auth0-python/pull/477) ([adamjmcgrath](https://github.com/adamjmcgrath)) + - [SDK-4011] Add API2 Factor Management Endpoints [\#476](https://github.com/auth0/auth0-python/pull/476) ([adamjmcgrath](https://github.com/adamjmcgrath)) + - Use declarative setup with `pyproject.toml` [\#474](https://github.com/auth0/auth0-python/pull/474) ([Viicos](https://github.com/Viicos)) + + ## [4.0.0](https://github.com/auth0/auth0-python/tree/4.0.0) (2023-01-19) + [Full Changelog](https://github.com/auth0/auth0-python/compare/3.24.1...4.0.0) + + **Added** + - Add support for private_key_jwt [\#456](https://github.com/auth0/auth0-python/pull/456) ([adamjmcgrath](https://github.com/adamjmcgrath)) + - Add support for managing client credentials [\#459](https://github.com/auth0/auth0-python/pull/459) ([adamjmcgrath](https://github.com/adamjmcgrath)) + + **Security** + - Update pyjwt [\#460](https://github.com/auth0/auth0-python/pull/460) ([adamjmcgrath](https://github.com/adamjmcgrath)) + + **Changed** + - Publish Python Support Schedule [\#454](https://github.com/auth0/auth0-python/pull/454) ([evansims](https://github.com/evansims)) + + **⚠️ BREAKING CHANGES** + - Remove deprecated methods [\#461](https://github.com/auth0/auth0-python/pull/461) ([adamjmcgrath](https://github.com/adamjmcgrath)) + - Remove v3 folder [\#462](https://github.com/auth0/auth0-python/pull/462) ([adamjmcgrath](https://github.com/adamjmcgrath)) + + See the [V4_MIGRATION_GUIDE](https://github.com/auth0/auth0-python/blob/master/V4_MIGRATION_GUIDE.md) for more info. + + ## [3.24.1](https://github.com/auth0/auth0-python/tree/3.24.1) (2023-01-19) + [Full Changelog](https://github.com/auth0/auth0-python/compare/3.24.0...3.24.1) + + **Fixed** + - Remove unnecessary type param from update_template_universal_login [\#463](https://github.com/auth0/auth0-python/pull/463) ([adamjmcgrath](https://github.com/adamjmcgrath)) + + ## [3.24.0](https://github.com/auth0/auth0-python/tree/3.24.0) (2022-10-17) + [Full Changelog](https://github.com/auth0/auth0-python/compare/3.23.1...3.24.0) + + **Added** + - [SDK-3714] Async token verifier [\#445](https://github.com/auth0/auth0-python/pull/445) ([adamjmcgrath](https://github.com/adamjmcgrath)) + - Add AsyncAuth0 to share a session among many services [\#443](https://github.com/auth0/auth0-python/pull/443) ([adamjmcgrath](https://github.com/adamjmcgrath)) + + **Fixed** + - Bugfix 414 missing import [\#442](https://github.com/auth0/auth0-python/pull/442) ([adamjmcgrath](https://github.com/adamjmcgrath)) + + ## [3.23.1](https://github.com/auth0/auth0-python/tree/3.23.1) (2022-06-10) + [Full Changelog](https://github.com/auth0/auth0-python/compare/3.23.0...3.23.1) + + **Fixed** + - Pass rest_options through Auth0 constructor [\#354](https://github.com/auth0/auth0-python/pull/354) ([adamjmcgrath](https://github.com/adamjmcgrath)) + + + 3.23.0 + ------------------ + + **Added** + - Asyncio Support [\#312](https://github.com/auth0/auth0-python/pull/312) ([adamjmcgrath](https://github.com/adamjmcgrath)) + - Add `/api/v2/branding` endpoints support [\#313](https://github.com/auth0/auth0-python/pull/313) ([evansims](https://github.com/evansims)) + + 3.22.0 + ------------------ + + **Added** + - [SDK-3174] Add `DELETE` method for `/api/v2/users/{id}/authenticators` endpoint [\#301](https://github.com/auth0/auth0-python/pull/301) ([akmjenkins](https://github.com/akmjenkins)) + - [SDK-3175] Return token claims in TokenVerifier.verify() [\#273](https://github.com/auth0/auth0-python/pull/273) ([bisguzar](https://github.com/bisguzar)) + + **Fixed** + - [SDK-3173] Default to 'None' for `deployed` on GET /api/v2/actions/actions endpoint [\#309](https://github.com/auth0/auth0-python/pull/309) ([evansims](https://github.com/evansims)) + + 3.21.0 + ------------------ + + **Added** + - Add pagination to device credentials [\#300](https://github.com/auth0/auth0-python/pull/300) ([fionnulak](https://github.com/fionnulak)) + + 3.20.0 + ------------------ + + **Added** + - Add attack protection endpoints [\#303](https://github.com/auth0/auth0-python/pull/303) ([adamjmcgrath](https://github.com/adamjmcgrath)) + + 3.19.0 + ------------------ + + **Added** + - Add actions to Auth0 class [\#293](https://github.com/auth0/auth0-python/pull/293) ([jrzerr](https://github.com/jrzerr)) + - Added support for prompts API [\#291](https://github.com/auth0/auth0-python/pull/291) ([lorinkoz](https://github.com/lorinkoz)) + + **Changed** + - Remove references to ID token in generic token classes [\#295](https://github.com/auth0/auth0-python/pull/295) ([lbalmaceda](https://github.com/lbalmaceda)) + + **Fixed** + - Use assertNotEqual instead of assertNotEquals for Python 3.11 compatibility. [\#294](https://github.com/auth0/auth0-python/pull/294) ([tirkarthi](https://github.com/tirkarthi)) + + 3.18.0 + ------------------ + + **Added** + - [SDK-2720] Add support for actions APIs [\#289](https://github.com/auth0/auth0-python/pull/289) ([jimmyjames](https://github.com/jimmyjames)) + + 3.17.0 + ------------------ + + **Added** + - Make the CI fail when the docs syntax is invalid [\#287](https://github.com/auth0/auth0-python/pull/287) ([lbalmaceda](https://github.com/lbalmaceda)) + - [SDK-2687] Implement automatic rate-limit handling [\#285](https://github.com/auth0/auth0-python/pull/285) ([evansims](https://github.com/evansims)) + - Use Sphinx to generate API docs [\#281](https://github.com/auth0/auth0-python/pull/281) ([lbalmaceda](https://github.com/lbalmaceda)) + - Add Passwordless Login function [\#279](https://github.com/auth0/auth0-python/pull/279) ([lbalmaceda](https://github.com/lbalmaceda)) + - [SDK 2665] Update endpoint methods to support 'from' and 'take' checkpoint pagination parameters, where appropriate [\#278](https://github.com/auth0/auth0-python/pull/278) ([evansims](https://github.com/evansims)) + + **Deprecated** + - Deprecate /oauth/ro for passwordless [\#280](https://github.com/auth0/auth0-python/pull/280) ([lbalmaceda](https://github.com/lbalmaceda)) + + 3.16.2 + ------------------ + + **Fixed** + - Re-Route Job Results endpoint [\#275](https://github.com/auth0/auth0-python/pull/275) ([lbalmaceda](https://github.com/lbalmaceda)) + + 3.16.1 + ------------------ + + **Fixed** + - Remove requirements.txt file [\#270](https://github.com/auth0/auth0-python/pull/270) ([lbalmaceda](https://github.com/lbalmaceda)) + - Repair Organisation get by name URL. [\#269](https://github.com/auth0/auth0-python/pull/269) ([queenvictoria](https://github.com/queenvictoria)) + + 3.16.0 + ------------------ + + **Added** + - Add access token validation guidance for organizations [\#262](https://github.com/auth0/auth0-python/pull/262) ([lbalmaceda](https://github.com/lbalmaceda)) + - Add support for Organization MGMT API endpoints [SDK-2439] [\#261](https://github.com/auth0/auth0-python/pull/261) ([lbalmaceda](https://github.com/lbalmaceda)) + - Add scope to refresh_token [\#256](https://github.com/auth0/auth0-python/pull/256) ([criles25](https://github.com/criles25)) + - Allow configuration of outgoing request protocol [\#254](https://github.com/auth0/auth0-python/pull/254) ([garry-jeromson](https://github.com/garry-jeromson)) + + 3.15.0 + ------------------ + + **Added** + - Add support for organizations feature [\#258](https://github.com/auth0/auth0-python/pull/258) ([jimmyjames](https://github.com/jimmyjames)) + + 3.14.0 + ------------------ + + **Added** + - Adds a new user method invalidate_remembered_browsers [\#248](https://github.com/auth0/auth0-python/pull/248) ([kpurdon](https://github.com/kpurdon)) + + 3.13.0 + ------------------ + + **Added** + - Add support for Log Streams API [\#236](https://github.com/auth0/auth0-python/pull/236) ([lbalmaceda](https://github.com/lbalmaceda)) + + **Fixed** + - Fix imports on the management/__init__.py file [\#235](https://github.com/auth0/auth0-python/pull/235) ([matthewarmand](https://github.com/matthewarmand)) + + 3.12.0 + ------------------ + + **Added** + - Add missing user profile properties to the signup endpoint [\#231](https://github.com/auth0/auth0-python/pull/231) ([lbalmaceda](https://github.com/lbalmaceda)) + - Add Hooks management API [\#227](https://github.com/auth0/auth0-python/pull/227) ([guillp](https://github.com/guillp)) + - Add missing external_id property to the import users job [\#222](https://github.com/auth0/auth0-python/pull/222) ([lbalmaceda](https://github.com/lbalmaceda)) + + **Changed** + - Remove iat claim value check [\#223](https://github.com/auth0/auth0-python/pull/223) ([lbalmaceda](https://github.com/lbalmaceda)) + + **Fixed** + - Skip sending optional parameters on POST request when unspecified [\#230](https://github.com/auth0/auth0-python/pull/230) ([lbalmaceda](https://github.com/lbalmaceda)) + + 3.11.0 + ------------------ + + **Added** + - Add send_completion_email to users import job [\#220](https://github.com/auth0/auth0-python/pull/220) ([lbalmaceda](https://github.com/lbalmaceda)) + - Expose the time at which the Rate Limit will reset [\#219](https://github.com/auth0/auth0-python/pull/219) ([lbalmaceda](https://github.com/lbalmaceda)) + + **Removed** + - Add deprecation note for DELETE /users (all users) [\#217](https://github.com/auth0/auth0-python/pull/217) ([lbalmaceda](https://github.com/lbalmaceda)) + + 3.10.0 + ------------------ + + **Security** + - Improved OIDC compliance [\#213](https://github.com/auth0/auth0-python/pull/213) ([lbalmaceda](https://github.com/lbalmaceda)) + + **Added** + - Add connect/read timeout option [\#215](https://github.com/auth0/auth0-python/pull/215) ([lbalmaceda](https://github.com/lbalmaceda)) + + 3.9.2 + ------------------ + + **Fixed** + - Accept client_secret as passwordless/start param [\#211](https://github.com/auth0/auth0-python/pull/211) ([lbalmaceda](https://github.com/lbalmaceda)) + + 3.9.1 + ------------------ + + **Changed** + - Update minimum "requests" version to 2.14.0 [\#204](https://github.com/auth0/auth0-python/pull/204) ([lbalmaceda](https://github.com/lbalmaceda)) + + 3.9.0 + ------------------ + + **Added** + - Add Roles and Permissions endpoints [\#202](https://github.com/auth0/auth0-python/pull/202) ([lbalmaceda](https://github.com/lbalmaceda)) + + 3.8.1 + ------------------ + + July 18, 2019: This release included an unintentionally breaking change affecting those users that were manually parsing the response from GET requests. e.g. /userinfo or /authorize. The `AuthenticationBase#get` method was incorrectly parsing the request result into a String. + + From this release on, making a GET request returns a Dictionary instead. + + **Breaking Change** + - Fix request creation when headers are the default [\#198](https://github.com/auth0/auth0-python/pull/198) ([lbalmaceda](https://github.com/lbalmaceda)). + + + 3.8.0 + ------------------ + + **Fixed** + - rules_config.unset fix [\#195](https://github.com/auth0/auth0-python/pull/195) ([jhunken](https://github.com/jhunken)) + + **Security** + - Update requests dependency to latest version [\#196](https://github.com/auth0/auth0-python/pull/196) ([lbalmaceda](https://github.com/lbalmaceda)) + + 3.7.2 + ------------------ + + **Fixed** + - Fix HTTP method used for rotating Client secret [\#191](https://github.com/auth0/auth0-python/pull/191) ([lbalmaceda](https://github.com/lbalmaceda)) + + 3.7.1 + ------------------ + + **Fixed** + - Update telemetry format [\#187](https://github.com/auth0/auth0-python/pull/187) ([lbalmaceda](https://github.com/lbalmaceda)) + + + 3.7.0 + ------------------ + + **Changed** + - Remove default value for search_engine [\#185](https://github.com/auth0/auth0-python/pull/185) ([lbalmaceda](https://github.com/lbalmaceda)) + + + 3.6.1 + ------------------ + + **Fixed** + - Fixed Management API Grants class instantiation [\#179](https://github.com/auth0/auth0-python/pull/179) ([beck3905](https://github.com/beck3905)) + + + 3.6.0 + ------------------ + + **Added** + - Add grants, custom domains, rules_configs to API [\#177](https://github.com/auth0/auth0-python/pull/177) ([sagnew-dg](https://github.com/sagnew-dg)) + + + 3.5.0 + ------------------ + + **Added** + - Add Revoke Refresh Token endpoint [\#170](https://github.com/auth0/auth0-python/pull/170) ([lbalmaceda](https://github.com/lbalmaceda)) + - Add /dbconnections/signup with username and metadata [\#169](https://github.com/auth0/auth0-python/pull/169) ([lbalmaceda](https://github.com/lbalmaceda)) + + + 3.4.0 + ------------------ + + **Added** + - Add `client_id` param to ClientGrants.all [\#159](https://github.com/auth0/auth0-python/pull/159) ([danishprakash](https://github.com/danishprakash)) + - Add telemetry headers to AuthenticationBase [\#152](https://github.com/auth0/auth0-python/pull/152) ([crgk](https://github.com/crgk)) + - Add pre-commit pypgrade hook and update supported versions [\#124](https://github.com/auth0/auth0-python/pull/124) ([hugovk](https://github.com/hugovk)) + - Implemented delete_user_by_email and test for connections [\#122](https://github.com/auth0/auth0-python/pull/122) ([runz0rd](https://github.com/runz0rd)) + - Adds user export job creation. [\#112](https://github.com/auth0/auth0-python/pull/112) ([dmark](https://github.com/dmark)) + + **Changed** + - String Formatting Updated [\#141](https://github.com/auth0/auth0-python/pull/141) ([vkmrishad](https://github.com/vkmrishad)) + - Uses Python built-in modules to retrieve Python and auth0-python version number [\#125](https://github.com/auth0/auth0-python/pull/125) ([edawine](https://github.com/edawine)) + + **Fixed** + - Stop lower-casing email on user search [\#167](https://github.com/auth0/auth0-python/pull/167) ([helmus](https://github.com/helmus)) + - Always include Content-Type header in management requests [\#158](https://github.com/auth0/auth0-python/pull/158) ([crgk](https://github.com/crgk)) + + + 3.3.0 + ------------------ + + **Added** + - Add pagination to Clients and Connections + - Add pagination to Client Grants, Resource Servers and Rules + - Add Email-Templates Management API endpoints + + **Fixed** + - Replace default mutable arguments with None + - Fix JSON error message handling for Management API + + + 3.2.2 + ------------------ + + **Fixed** + - Upload the correct package contents to Pypi. + + + 3.2.0 + ------------------ + + **Added** + - Raise Auth0Error for bad status code [\#98](https://github.com/auth0/auth0-python/pull/98) ([beck3905](https://github.com/beck3905)) + + **Fixed** + - Correctly throw an exception when handing a text response [\#92](https://github.com/auth0/auth0-python/pull/92) ([benbc](https://github.com/benbc)) + - Instantiate UserBlocks for consistency [\#90](https://github.com/auth0/auth0-python/pull/90) ([mattdodge](https://github.com/mattdodge)) + + 3.1.4 + ------------------ + + Authentication API + - Improve handling of inconsistent API error responses. + + 3.1.3 + ------------------ + + Management API + - Added `upsert` parameter to `import_users` job. + + 3.1.2 + ------------------ + + Authentication API + - Added `refresh_token` method to get_token + + 3.1.0 + ------------------ + + Authentication API + - Added Logout Functionality + + 3.0.0 + ------------------ + + Authentication API + - Added Support for API Authorization. `oauth/token` endpoint + - Client Credentials Grant + - Authorization Code Grant + - Authorization Code PKCE Grant + - Resource Owner Password Realm Grant + - Added Support for API Authorization. `authorize` endpoint + - Authorization Code Grant + + Management API v2 + - Added Support for Guardian + - Added Support to retrieve Logs + - Added Support to manage Resource Servers + - Added Support to manage Client Grants + - Added Support to manage User blocks + pyproject.toml: | + [project] + name = "auth0-python" + + [tool.poetry] + name = "auth0-python" + version = "5.4.0" + description = "Auth0 Python SDK - Management and Authentication APIs" + readme = "README.md" + authors = ["Auth0 "] + license = "MIT" + keywords = ["auth0", "authentication", "authorization", "oauth", "openid"] + + classifiers = [ + "Intended Audience :: Developers", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", + "Operating System :: OS Independent", + "Operating System :: POSIX", + "Operating System :: MacOS", + "Operating System :: POSIX :: Linux", + "Operating System :: Microsoft :: Windows", + "Topic :: Software Development :: Libraries :: Python Modules", + "Typing :: Typed" + ] + packages = [ + { include = "auth0", from = "src"} + ] + + [tool.poetry.urls] + Repository = 'https://github.com/auth0/auth0-python' + Homepage = 'https://auth0.com' + + [tool.poetry.dependencies] + python = ">=3.9.2,<4.0" + httpx = ">=0.21.2" + pydantic = ">= 1.9.2" + pydantic-core = ">=2.18.2" + typing_extensions = ">= 4.0.0" + # Authentication API dependencies + aiohttp = ">=3.11.18" + cryptography = ">=44.0.0" + pyjwt = ">=2.8.0" + requests = ">=2.32.3" + urllib3 = ">=2.3.0" + + [tool.poetry.group.dev.dependencies] + mypy = "==1.13.0" + pytest = "^7.4.0" + pytest-asyncio = "^0.23.5" + pytest-xdist = "^3.6.1" + python-dateutil = "^2.9.0" + types-python-dateutil = "^2.9.0.20240316" + types-requests = "^2.31.0" + ruff = "==0.15.8" + # Authentication API test dependencies + aioresponses = "^0.7.8" + mock = "^5.1.0" + pytest-aiohttp = "^1.0.4" + pytest-cov = "^4.1.0" + responses = ">=0.23.3" + + [tool.pytest.ini_options] + asyncio_mode = "auto" + + [tool.mypy] + plugins = ["pydantic.mypy"] + # Exclude Authentication API, not built for mypy + exclude = ["src/auth0/authentication/"] + + [tool.ruff] + line-length = 120 + + [tool.ruff.lint] + select = [ + "E", # pycodestyle errors + "F", # pyflakes + "I", # isort + ] + ignore = [ + "E402", # Module level import not at top of file + "E501", # Line too long + "E711", # Comparison to `None` should be `cond is not None` + "E712", # Avoid equality comparisons to `True`; use `if ...:` checks + "E721", # Use `is` and `is not` for type comparisons, or `isinstance()` for insinstance checks + "E722", # Do not use bare `except` + "E731", # Do not assign a `lambda` expression, use a `def` + "F821", # Undefined name + "F841" # Local variable ... is assigned to but never used + ] + + [tool.ruff.lint.isort] + section-order = ["future", "standard-library", "third-party", "first-party"] + + [build-system] + requires = ["poetry-core"] + build-backend = "poetry.core.masonry.api" + user_owned: true diff --git a/src/auth0/management/__init__.py b/src/auth0/management/__init__.py index 2822ff36..565fcf51 100644 --- a/src/auth0/management/__init__.py +++ b/src/auth0/management/__init__.py @@ -2741,6 +2741,8 @@ from .environment import Auth0Environment from .event_streams import EventStreamsCreateRequest from .version import __version__ + from .management_client import AsyncManagementClient, CustomDomainHeader, ManagementClient + from .token_provider import AsyncTokenProvider, TokenProvider _dynamic_imports: typing.Dict[str, str] = { "Action": ".types", "ActionBase": ".types", @@ -3759,6 +3761,7 @@ "CredentialDeviceTypeEnum": ".types", "CredentialId": ".types", "CustomDomain": ".types", + "CustomDomainHeader": ".management_client", "CustomDomainCustomClientIpHeader": ".types", "CustomDomainCustomClientIpHeaderEnum": ".types", "CustomDomainProvisioningTypeEnum": ".types", @@ -5016,6 +5019,7 @@ "LogStreamSumoEnum": ".types", "LogStreamSumoResponseSchema": ".types", "LogStreamSumoSink": ".types", + "ManagementClient": ".management_client", "MdlPresentationProperties": ".types", "MdlPresentationRequest": ".types", "MdlPresentationRequestProperties": ".types", @@ -5242,6 +5246,7 @@ "TokenQuota": ".types", "TokenQuotaClientCredentials": ".types", "TokenQuotaConfiguration": ".types", + "TokenProvider": ".token_provider", "TooManyRequestsError": ".errors", "TooManyRequestsSchema": ".types", "TooManyRequestsSchemaError": ".types", @@ -7995,6 +8000,7 @@ def __dir__(): "TestEventDataContent", "TokenExchangeProfileResponseContent", "TokenExchangeProfileTypeEnum", + "TokenProvider", "TokenQuota", "TokenQuotaClientCredentials", "TokenQuotaConfiguration", From 5f8f88bb6188fb8fc889c75d92046faf021fb1d3 Mon Sep 17 00:00:00 2001 From: Fern Support <126544928+fern-support@users.noreply.github.com> Date: Tue, 19 May 2026 06:24:53 -0500 Subject: [PATCH 3/6] fix: resolve [fern-replay] conflict in management/__init__.py (#842) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Summary Resolves the unresolved \`patch-4894603d\` conflict surfaced by Replay in #841. Adds one commit on top of \`fern-bot/2026-05-18_04-50-14_812\` that re-applies the custom wiring in \`src/auth0/management/__init__.py\` against the new generation output, and updates \`.fern/replay.lock\` to reflect the resolution. ## What the conflict was The new generation in #841 added new types (\`BadRequestSchema\`, \`ForbiddenSchema\`, \`TooManyRequestsSchema\`, \`UnauthorizedSchema\`, \`FlowsVaultConnectio*\`, \`CredentialDeviceTypeEnum\`) immediately adjacent to the existing customer wiring entries (\`AsyncManagementClient\`, \`AsyncTokenProvider\`, \`ManagementClient\`, \`TokenProvider\`) in \`__init__.py\`'s sorted \`_dynamic_imports\` dict and \`__all__\` list. The 3-way merge correctly flagged this as a conflict — both sides added entries to the same sorted regions. \`fern replay resolve\` produced 7 conflict-marker regions. All 7 are purely additive (one side's entries are a strict subset of the other; the merged result is the union). No same-key replacements, no overlapping changes. ## Resolution table | Region | Line | Resolution | Reason | |---|---|---|---| | 1 | 84 | Took Generated side | Generator added \`BadRequestSchema\`, \`BadRequestSchemaError\` | | 2 | 1834 | Took Generated side | Generator added \`FlowsVaultConnectio*\` types | | 3 | 2875 | Took customer side | Preserves \`AsyncManagementClient\`/\`AsyncTokenProvider\` wiring in \`_dynamic_imports\` | | 4 | 2913 | Took Generated side | Generator added \`BadRequestSchema\`/\`BadRequestSchemaError\` keys | | 5 | 5667 | Took customer side | Preserves \`AsyncManagementClient\`/\`AsyncTokenProvider\` wiring in \`__all__\` | | 6 | 5705 | Took Generated side | Generator added \`BadRequestSchema\`/\`BadRequestSchemaError\` to \`__all__\` | | 7 | 7915 | Took customer side | Preserves \`ManagementClient\` in \`__all__\` | After resolution, \`fern replay resolve\` Phase 2 finalized the commit and updated the lockfile. ## Verification After this PR merges into the \`fern-bot/2026-05-18_04-50-14_812\` branch: - All 11 customer-wiring entries are present in \`src/auth0/management/__init__.py\` (imports, \`_dynamic_imports\` keys, \`__all__\` entries) - \`.fern/replay.lock\` no longer has any patch with \`status: unresolved\` or \`status: resolving\` - The \`[fern-replay] Resolved conflicts\` commit is classified by the detector as a generation boundary, so future regens treat it correctly - The diff vs master is now only the new generator-added types (legitimate spec evolution), no missing wiring ## Once merged The bot branch will reflect the resolved state. PR #841 then becomes a clean merge into \`master\`. Co-authored-by: Tanmay Singh --- .fern/replay.lock | 6939 +----------------------------- src/auth0/management/__init__.py | 5 + 2 files changed, 63 insertions(+), 6881 deletions(-) diff --git a/.fern/replay.lock b/.fern/replay.lock index 5a38c93d..2235bfe8 100644 --- a/.fern/replay.lock +++ b/.fern/replay.lock @@ -22,4261 +22,48 @@ generations: current_generation: c1c18146c845e6c7916d0490f7ef02807f9bfebf patches: - id: patch-4894603d - content_hash: sha256:133cad2c952ebdd38ff6bb571dbb738617f4a5303c272ff82cbdf9d04267aa90 + content_hash: sha256:2ca56f02c24fc60f076b081eb5d06f4848d08c24003b591d61421d753128b106 original_commit: 4894603d03409962bc60a34712de8abffe919e2c original_message: "chore: Restore custom wiring in management/__init__.py" original_author: Kunal Dawar - base_generation: ffe61f6a098cb25a875019a37f2615045b97344e + base_generation: c1c18146c845e6c7916d0490f7ef02807f9bfebf files: - src/auth0/management/__init__.py patch_content: | diff --git a/src/auth0/management/__init__.py b/src/auth0/management/__init__.py - index c89e28b..e20a000 100644 + index 2822ff3..e537579 100644 --- a/src/auth0/management/__init__.py +++ b/src/auth0/management/__init__.py - @@ -19,6 +19,15 @@ if typing.TYPE_CHECKING: - ActionError, - ActionExecutionResult, - ActionExecutionStatusEnum, - + ActionModuleAction, - + ActionModuleDependency, - + ActionModuleDependencyRequest, - + ActionModuleListItem, - + ActionModuleReference, - + ActionModuleSecret, - + ActionModuleSecretRequest, - + ActionModuleVersion, - + ActionModuleVersionReference, - ActionSecretRequest, - ActionSecretResponse, - ActionTrigger, - @@ -28,26 +37,69 @@ if typing.TYPE_CHECKING: - ActionVersionBuildStatusEnum, - ActionVersionDependency, - AculClientFilter, - + AculClientFilterById, - + AculClientFilterByMetadata, - AculClientMetadata, - + AculConfigs, - + AculConfigsItem, - + AculContextConfiguration, - + AculContextConfigurationItem, - + AculContextEnum, - AculDomainFilter, - + AculDomainFilterById, - + AculDomainFilterByMetadata, - AculDomainMetadata, - AculFilters, - AculHeadTag, - AculHeadTagAttributes, - + AculHeadTagContent, - AculMatchTypeEnum, - AculOrganizationFilter, - + AculOrganizationFilterById, - + AculOrganizationFilterByMetadata, - AculOrganizationMetadata, - AculRenderingModeEnum, - - AculResponseContent, - AddOrganizationConnectionResponseContent, - AnomalyIpFormat, - AppMetadata, - + AssessorsTypeEnum, - AssociateOrganizationClientGrantResponseContent, - + AsyncApprovalNotificationsChannelsEnum, - + AttackProtectionCaptchaArkoseResponseContent, - + AttackProtectionCaptchaAuthChallengeRequest, - + AttackProtectionCaptchaAuthChallengeResponseContent, - + AttackProtectionCaptchaFriendlyCaptchaResponseContent, - + AttackProtectionCaptchaHcaptchaResponseContent, - + AttackProtectionCaptchaProviderId, - + AttackProtectionCaptchaRecaptchaEnterpriseResponseContent, - + AttackProtectionCaptchaRecaptchaV2ResponseContent, - + AttackProtectionCaptchaSimpleCaptchaResponseContent, - + AttackProtectionUpdateCaptchaArkose, - + AttackProtectionUpdateCaptchaFriendlyCaptcha, - + AttackProtectionUpdateCaptchaHcaptcha, - + AttackProtectionUpdateCaptchaRecaptchaEnterprise, - + AttackProtectionUpdateCaptchaRecaptchaV2, - AuthenticationMethodTypeEnum, - AuthenticationTypeEnum, - + BotDetectionAllowlist, - + BotDetectionChallengePolicyPasswordFlowEnum, - + BotDetectionChallengePolicyPasswordResetFlowEnum, - + BotDetectionChallengePolicyPasswordlessFlowEnum, - + BotDetectionCidrBlock, - + BotDetectionIPv4, - + BotDetectionIPv6, - + BotDetectionIPv6CidrBlock, - + BotDetectionIpAddressOrCidrBlock, - + BotDetectionLevelEnum, - + BotDetectionMonitoringModeEnabled, - BrandingColors, - BrandingFont, - + BrandingIdentifiers, - + BrandingLoginDisplayEnum, - BrandingPageBackground, - + BrandingPhoneDisplay, - + BrandingPhoneFormattingEnum, - + BrandingPhoneMaskingEnum, - BrandingThemeBorders, - BrandingThemeBordersButtonsStyleEnum, - BrandingThemeBordersInputsStyleEnum, - @@ -75,7 +127,18 @@ if typing.TYPE_CHECKING: - BreachedPasswordDetectionPreUserRegistrationStage, - BreachedPasswordDetectionShieldsEnum, - BreachedPasswordDetectionStage, - + BruteForceProtectionModeEnum, - + BruteForceProtectionShieldsEnum, - + BulkUpdateAculResponseContent, - + CertificateSubjectDnCredential, - + CertificateSubjectDnCredentialTypeEnum, - + ChangePasswordTicketIdentity, - ChangePasswordTicketResponseContent, - + CimdMappedClientAuthenticationMethods, - + CimdMappedClientAuthenticationMethodsPrivateKeyJwt, - + CimdMappedClientFields, - + CimdMappedPrivateKeyJwtCredential, - + CimdValidationResult, - Client, - ClientAddonAws, - ClientAddonAzureBlob, - @@ -111,58 +174,335 @@ if typing.TYPE_CHECKING: - ClientAddonZoom, - ClientAddons, - ClientAppTypeEnum, - + ClientAsyncApprovalNotificationsChannelsApiPatchConfiguration, - + ClientAsyncApprovalNotificationsChannelsApiPostConfiguration, - ClientAuthenticationMethod, - + ClientAuthenticationMethodPrivateKeyJwt, - + ClientAuthenticationMethodPrivateKeyJwtCredentials, - ClientAuthenticationMethodSelfSignedTlsClientAuth, - + ClientAuthenticationMethodSelfSignedTlsClientAuthCredentials, - ClientAuthenticationMethodTlsClientAuth, - + ClientAuthenticationMethodTlsClientAuthCredentials, - ClientComplianceLevelEnum, - ClientCreateAuthenticationMethod, - + ClientCreateAuthenticationMethodPrivateKeyJwt, - + ClientCreateAuthenticationMethodPrivateKeyJwtCredentials, - + ClientCreateAuthenticationMethodTlsClientAuth, - + ClientCreateAuthenticationMethodTlsClientAuthCredentials, - ClientCredential, - ClientCredentialAlgorithmEnum, - ClientCredentialTypeEnum, - ClientDefaultOrganization, - ClientDefaultOrganizationFlowsEnum, - ClientEncryptionKey, - + ClientExternalMetadataCreatedByEnum, - + ClientExternalMetadataTypeEnum, - ClientGrantAllowAnyOrganizationEnum, - + ClientGrantDefaultForEnum, - ClientGrantOrganizationNullableUsageEnum, - ClientGrantOrganizationUsageEnum, - ClientGrantResponseContent, - + ClientGrantSubjectTypeEnum, - ClientJwtConfiguration, - ClientJwtConfigurationScopes, - ClientMetadata, - ClientMobile, - ClientMobileAndroid, - ClientMobileiOs, - + ClientMyOrganizationConfigurationAllowedStrategiesEnum, - + ClientMyOrganizationDeletionBehaviorEnum, - + ClientMyOrganizationPatchConfiguration, - + ClientMyOrganizationPostConfiguration, - + ClientMyOrganizationResponseConfiguration, - ClientOidcBackchannelLogoutInitiators, - ClientOidcBackchannelLogoutInitiatorsEnum, - ClientOidcBackchannelLogoutInitiatorsModeEnum, - + ClientOidcBackchannelLogoutSessionMetadata, - ClientOidcBackchannelLogoutSettings, - + ClientOrganizationDiscoveryEnum, - ClientOrganizationRequireBehaviorEnum, - ClientOrganizationRequireBehaviorPatchEnum, - ClientOrganizationUsageEnum, - ClientOrganizationUsagePatchEnum, - + ClientRedirectionPolicyEnum, - ClientRefreshTokenConfiguration, - + ClientRefreshTokenPolicy, - ClientSessionTransferAllowedAuthenticationMethodsEnum, - ClientSessionTransferConfiguration, - + ClientSessionTransferDelegationConfiguration, - + ClientSessionTransferDelegationDeviceBindingEnum, - ClientSessionTransferDeviceBindingEnum, - ClientSignedRequestObjectWithCredentialId, - ClientSignedRequestObjectWithPublicKey, - ClientSigningKey, - ClientSigningKeys, - + ClientThirdPartySecurityModeEnum, - ClientTokenEndpointAuthMethodEnum, - ClientTokenEndpointAuthMethodOrNullEnum, - + ClientTokenExchangeConfiguration, - + ClientTokenExchangeConfigurationOrNull, - + ClientTokenExchangeTypeEnum, - + ConnectedAccount, - + ConnectedAccountAccessTypeEnum, - + ConnectionAccessTokenUrloAuth1, - + ConnectionAcrValuesSupported, - + ConnectionAdminAccessTokenExpiresInGoogleApps, - + ConnectionAdminAccessTokenGoogleApps, - + ConnectionAdminRefreshTokenGoogleApps, - + ConnectionAgentIpad, - + ConnectionAgentModeAd, - + ConnectionAgentVersionAd, - + ConnectionAllowedAudiencesGoogleOAuth2, - + ConnectionApiBehaviorEnum, - + ConnectionApiEnableGroups, - + ConnectionApiEnableGroupsGoogleApps, - + ConnectionApiEnableUsers, - + ConnectionApiEnableUsersGoogleApps, - + ConnectionAppDomainAzureAd, - + ConnectionAssertionDecryptionAlgorithmProfileEnum, - + ConnectionAssertionDecryptionSettings, - ConnectionAttributeIdentifier, - + ConnectionAttributeMapAttributes, - + ConnectionAttributeMapOidc, - + ConnectionAttributeMapOkta, - + ConnectionAttributeMapUserinfoScope, - ConnectionAttributes, - + ConnectionAuthParamsAdditionalPropertiesOAuth2, - + ConnectionAuthParamsEmail, - + ConnectionAuthParamsMap, - + ConnectionAuthParamsOAuth2, - ConnectionAuthenticationMethods, - + ConnectionAuthenticationPurpose, - + ConnectionAuthorizationEndpoint, - + ConnectionBaseUrlExact, - + ConnectionBruteForceProtection, - + ConnectionCalculatedThumbprintSaml, - + ConnectionCertsAd, - + ConnectionClaimTypesSupported, - + ConnectionClaimsLocalesSupported, - + ConnectionClaimsParameterSupported, - + ConnectionClaimsSupported, - + ConnectionClientId, - + ConnectionClientIdAmazon, - + ConnectionClientIdAzureAd, - + ConnectionClientIdBitbucket, - + ConnectionClientIdExact, - + ConnectionClientIdFacebook, - + ConnectionClientIdGoogleApps, - + ConnectionClientIdGoogleOAuth2, - + ConnectionClientIdLine, - + ConnectionClientIdLinkedin, - + ConnectionClientIdOAuth1, - + ConnectionClientIdOAuth2, - + ConnectionClientIdOidc, - + ConnectionClientIdPaypal, - + ConnectionClientIdSalesforce, - + ConnectionClientIdWindowsLive, - + ConnectionClientProtocolSaml, - + ConnectionClientSecret, - + ConnectionClientSecretAmazon, - + ConnectionClientSecretAzureAd, - + ConnectionClientSecretBitbucket, - + ConnectionClientSecretExact, - + ConnectionClientSecretFacebook, - + ConnectionClientSecretGoogleApps, - + ConnectionClientSecretGoogleOAuth2, - + ConnectionClientSecretLine, - + ConnectionClientSecretLinkedin, - + ConnectionClientSecretOAuth1, - + ConnectionClientSecretOAuth2, - + ConnectionClientSecretOidc, - + ConnectionClientSecretPaypal, - + ConnectionClientSecretSalesforce, - + ConnectionClientSecretWindowsLive, - + ConnectionCommon, - + ConnectionCommunityBaseUrlSalesforce, - + ConnectionConfiguration, - + ConnectionConnectedAccountsPurpose, - + ConnectionConnectedAccountsPurposeXaa, - + ConnectionConnectionSettings, - + ConnectionConnectionSettingsPkceEnum, - + ConnectionCustomHeadersOAuth2, - ConnectionCustomScripts, - + ConnectionDebugSaml, - + ConnectionDecryptionKeySaml, - + ConnectionDecryptionKeySamlCert, - + ConnectionDestinationUrlSaml, - + ConnectionDigestAlgorithmEnumSaml, - + ConnectionDigestAlgorithmSaml, - + ConnectionDisableSelfServiceChangePassword, - + ConnectionDisableSignup, - + ConnectionDisableSignupSms, - + ConnectionDiscoveryUrl, - + ConnectionDisplayName, - + ConnectionDisplayValuesSupported, - + ConnectionDomainAliases, - + ConnectionDomainAliasesAd, - + ConnectionDomainAliasesAzureAd, - + ConnectionDomainAliasesItemsOne, - + ConnectionDomainAliasesSaml, - + ConnectionDomainGoogleApps, - + ConnectionDomainOkta, - + ConnectionDpopSigningAlgEnum, - + ConnectionDpopSigningAlgValuesSupported, - + ConnectionEmailBodyEmail, - + ConnectionEmailEmail, - + ConnectionEmailEmailSyntax, - + ConnectionEmailFromEmail, - + ConnectionEmailOtpAuthenticationMethod, - + ConnectionEmailSubjectEmail, - + ConnectionEnableScriptContext, - ConnectionEnabledClient, - + ConnectionEnabledClients, - + ConnectionEnabledDatabaseCustomization, - + ConnectionEndSessionEndpoint, - + ConnectionEntityIdSaml, - + ConnectionExtAdmin, - + ConnectionExtAgreedTerms, - + ConnectionExtAgreedTermsGoogleApps, - + ConnectionExtAssignedPlans, - + ConnectionExtGroups, - + ConnectionExtGroupsAzureAd, - + ConnectionExtGroupsGoogleApps, - + ConnectionExtIsAdminGoogleApps, - + ConnectionExtIsSuspended, - + ConnectionExtIsSuspendedGoogleApps, - + ConnectionExtProfile, - + ConnectionFederatedConnectionsAccessTokens, - + ConnectionFieldsMap, - + ConnectionFieldsMapSaml, - + ConnectionFieldsMapSamlValue, - ConnectionForList, - ConnectionForOrganization, - + ConnectionForwardReqInfoSms, - + ConnectionFreeformScopesAmazon, - + ConnectionFreeformScopesGoogleOAuth2, - + ConnectionFreeformScopesLinkedin, - + ConnectionFreeformScopesPaypal, - + ConnectionFreeformScopesSalesforce, - + ConnectionFreeformScopesWindowsLive, - + ConnectionFromSms, - ConnectionGatewayAuthentication, - + ConnectionGatewayAuthenticationAudienceSms, - + ConnectionGatewayAuthenticationMethodSms, - + ConnectionGatewayAuthenticationSms, - + ConnectionGatewayAuthenticationSubjectSms, - + ConnectionGatewayUrlSms, - + ConnectionGlobalTokenRevocationJwtIssSaml, - + ConnectionGlobalTokenRevocationJwtSubSaml, - + ConnectionGrantTypesSupported, - + ConnectionHandleLoginFromSocialGoogleApps, - + ConnectionHttpsUrlWithHttpFallback, - + ConnectionHttpsUrlWithHttpFallback2048, - + ConnectionHttpsUrlWithHttpFallback255, - + ConnectionIconUrl, - + ConnectionIconUrlAdfs, - + ConnectionIconUrlAzureAd, - + ConnectionIconUrlGoogleApps, - + ConnectionIconUrlGoogleOAuth2, - + ConnectionIconUrlSaml, - + ConnectionId, - + ConnectionIdTokenEncryptionAlgValuesSupported, - + ConnectionIdTokenEncryptionEncValuesSupported, - + ConnectionIdTokenSignedResponseAlgEnum, - + ConnectionIdTokenSignedResponseAlgs, - + ConnectionIdTokenSigningAlgValuesSupported, - + ConnectionIdentifierPrecedence, - ConnectionIdentifierPrecedenceEnum, - + ConnectionIdentityApiAzureAd, - + ConnectionIdentityApiEnumAzureAd, - ConnectionIdentityProviderEnum, - + ConnectionImportMode, - + ConnectionIpsAd, - + ConnectionIsDomainConnection, - + ConnectionIssuer, - + ConnectionJwksUri, - ConnectionKey, - ConnectionKeyUseEnum, - + ConnectionMappingModeEnumOidc, - + ConnectionMappingModeEnumOkta, - + ConnectionMaxGroupsToRetrieve, - + ConnectionMessagingServiceSidSms, - + ConnectionMetadataUrlSaml, - + ConnectionMetadataXml, - + ConnectionMetadataXmlAdfs, - + ConnectionMetadataXmlSaml, - + ConnectionMfa, - + ConnectionName, - + ConnectionNamePrefixTemplate, - + ConnectionNonPersistentAttrs, - + ConnectionOpPolicyUri, - + ConnectionOpTosUri, - ConnectionOptions, - + ConnectionOptionsAd, - + ConnectionOptionsAdfs, - + ConnectionOptionsAmazon, - + ConnectionOptionsApple, - + ConnectionOptionsAuth0, - + ConnectionOptionsAuth0Oidc, - + ConnectionOptionsAzureAd, - + ConnectionOptionsBaidu, - + ConnectionOptionsBitbucket, - + ConnectionOptionsBitly, - + ConnectionOptionsBox, - + ConnectionOptionsClientIdGithub, - + ConnectionOptionsClientIdTwitter, - + ConnectionOptionsClientSecretGithub, - + ConnectionOptionsClientSecretTwitter, - + ConnectionOptionsCommon, - + ConnectionOptionsCommonOidc, - + ConnectionOptionsCommonSaml, - + ConnectionOptionsCustom, - + ConnectionOptionsDaccount, - + ConnectionOptionsDeflateSaml, - + ConnectionOptionsDropbox, - + ConnectionOptionsDwolla, - + ConnectionOptionsEmail, - + ConnectionOptionsEvernote, - + ConnectionOptionsExact, - + ConnectionOptionsFacebook, - + ConnectionOptionsFitbit, - + ConnectionOptionsFreeformScopesGithub, - + ConnectionOptionsGitHub, - + ConnectionOptionsGoogleApps, - + ConnectionOptionsGoogleOAuth2, - + ConnectionOptionsIdpInitiatedClientProtocolEnumSaml, - + ConnectionOptionsIdpinitiatedSaml, - + ConnectionOptionsInstagram, - + ConnectionOptionsIp, - + ConnectionOptionsLine, - + ConnectionOptionsLinkedin, - + ConnectionOptionsOAuth1, - + ConnectionOptionsOAuth1Common, - + ConnectionOptionsOAuth2, - + ConnectionOptionsOAuth2Common, - + ConnectionOptionsOffice365, - + ConnectionOptionsOidc, - + ConnectionOptionsOidcMetadata, - + ConnectionOptionsOkta, - + ConnectionOptionsPaypal, - + ConnectionOptionsPingFederate, - + ConnectionOptionsPlanningCenter, - + ConnectionOptionsProtocolEnumTwitter, - + ConnectionOptionsSalesforce, - + ConnectionOptionsSalesforceCommunity, - + ConnectionOptionsSaml, - + ConnectionOptionsScopeGithub, - + ConnectionOptionsScopeTwitter, - + ConnectionOptionsSharepoint, - + ConnectionOptionsShop, - + ConnectionOptionsShopify, - + ConnectionOptionsSms, - + ConnectionOptionsSoundcloud, - + ConnectionOptionsThirtySevenSignals, - + ConnectionOptionsTwitter, - + ConnectionOptionsUntappd, - + ConnectionOptionsVkontakte, - + ConnectionOptionsWeibo, - + ConnectionOptionsWindowsLive, - + ConnectionOptionsWordpress, - + ConnectionOptionsYahoo, - + ConnectionOptionsYandex, - ConnectionPasskeyAuthenticationMethod, - ConnectionPasskeyChallengeUiEnum, - ConnectionPasskeyOptions, - @@ -171,21 +511,381 @@ if typing.TYPE_CHECKING: - ConnectionPasswordDictionaryOptions, - ConnectionPasswordHistoryOptions, - ConnectionPasswordNoPersonalInfoOptions, - + ConnectionPasswordOptions, - + ConnectionPasswordOptionsComplexity, - + ConnectionPasswordOptionsDictionary, - + ConnectionPasswordOptionsHistory, - + ConnectionPasswordOptionsProfileData, - ConnectionPasswordPolicyEnum, - + ConnectionPhoneOtpAuthenticationMethod, - + ConnectionPingFederateBaseUrl, - + ConnectionPingFederateBaseUrlPingFederate, - + ConnectionProfile, - + ConnectionProfileBitbucket, - + ConnectionProfileConfig, - + ConnectionProfileEnabledFeatures, - + ConnectionProfileId, - + ConnectionProfileName, - + ConnectionProfileOrganization, - + ConnectionProfileOrganizationAssignMembershipOnLoginEnum, - + ConnectionProfileOrganizationShowAsButtonEnum, - + ConnectionProfileStrategyOverride, - + ConnectionProfileStrategyOverrides, - + ConnectionProfileStrategyOverridesConnectionConfig, - + ConnectionProfileStrategyOverridesEnabledFeatures, - + ConnectionProfileTemplate, - + ConnectionProfileTemplateItem, - ConnectionPropertiesOptions, - + ConnectionProtocolBindingEnumSaml, - + ConnectionProtocolBindingSaml, - + ConnectionProviderEnumSms, - + ConnectionProviderSms, - + ConnectionProvisioningTicketUrl, - + ConnectionPurposes, - + ConnectionRealmFallback, - + ConnectionRealms, - + ConnectionRecipientUrlSaml, - + ConnectionRegistrationEndpoint, - + ConnectionRequestObjectEncryptionAlgValuesSupported, - + ConnectionRequestObjectEncryptionEncValuesSupported, - + ConnectionRequestObjectSigningAlgValuesSupported, - + ConnectionRequestParameterSupported, - + ConnectionRequestTemplateSaml, - + ConnectionRequestTokenUrloAuth1, - + ConnectionRequestUriParameterSupported, - + ConnectionRequireRequestUriRegistration, - + ConnectionRequiresUsername, - + ConnectionResponseCommon, - + ConnectionResponseContentAd, - + ConnectionResponseContentAdStrategy, - + ConnectionResponseContentAdfs, - + ConnectionResponseContentAdfsStrategy, - + ConnectionResponseContentAmazon, - + ConnectionResponseContentAmazonStrategy, - + ConnectionResponseContentApple, - + ConnectionResponseContentAppleStrategy, - + ConnectionResponseContentAuth0, - + ConnectionResponseContentAuth0Oidc, - + ConnectionResponseContentAuth0OidcStrategy, - + ConnectionResponseContentAuth0Strategy, - + ConnectionResponseContentAzureAd, - + ConnectionResponseContentAzureAdStrategy, - + ConnectionResponseContentBaidu, - + ConnectionResponseContentBaiduStrategy, - + ConnectionResponseContentBitbucket, - + ConnectionResponseContentBitbucketStrategy, - + ConnectionResponseContentBitly, - + ConnectionResponseContentBitlyStrategy, - + ConnectionResponseContentBox, - + ConnectionResponseContentBoxStrategy, - + ConnectionResponseContentCustom, - + ConnectionResponseContentCustomStrategy, - + ConnectionResponseContentDaccount, - + ConnectionResponseContentDaccountStrategy, - + ConnectionResponseContentDropbox, - + ConnectionResponseContentDropboxStrategy, - + ConnectionResponseContentDwolla, - + ConnectionResponseContentDwollaStrategy, - + ConnectionResponseContentEmail, - + ConnectionResponseContentEmailStrategy, - + ConnectionResponseContentEvernote, - + ConnectionResponseContentEvernoteSandbox, - + ConnectionResponseContentEvernoteSandboxStrategy, - + ConnectionResponseContentEvernoteStrategy, - + ConnectionResponseContentExact, - + ConnectionResponseContentExactStrategy, - + ConnectionResponseContentFacebook, - + ConnectionResponseContentFacebookStrategy, - + ConnectionResponseContentFitbit, - + ConnectionResponseContentFitbitStrategy, - + ConnectionResponseContentGitHub, - + ConnectionResponseContentGitHubStrategy, - + ConnectionResponseContentGoogleApps, - + ConnectionResponseContentGoogleAppsStrategy, - + ConnectionResponseContentGoogleOAuth2, - + ConnectionResponseContentGoogleOAuth2Strategy, - + ConnectionResponseContentInstagram, - + ConnectionResponseContentInstagramStrategy, - + ConnectionResponseContentIp, - + ConnectionResponseContentIpStrategy, - + ConnectionResponseContentLine, - + ConnectionResponseContentLineStrategy, - + ConnectionResponseContentLinkedin, - + ConnectionResponseContentLinkedinStrategy, - + ConnectionResponseContentOAuth1, - + ConnectionResponseContentOAuth1Strategy, - + ConnectionResponseContentOAuth2, - + ConnectionResponseContentOAuth2Strategy, - + ConnectionResponseContentOffice365, - + ConnectionResponseContentOffice365Strategy, - + ConnectionResponseContentOidc, - + ConnectionResponseContentOidcStrategy, - + ConnectionResponseContentOkta, - + ConnectionResponseContentOktaStrategy, - + ConnectionResponseContentPaypal, - + ConnectionResponseContentPaypalSandbox, - + ConnectionResponseContentPaypalSandboxStrategy, - + ConnectionResponseContentPaypalStrategy, - + ConnectionResponseContentPingFederate, - + ConnectionResponseContentPingFederateStrategy, - + ConnectionResponseContentPlanningCenter, - + ConnectionResponseContentPlanningCenterStrategy, - + ConnectionResponseContentSalesforce, - + ConnectionResponseContentSalesforceCommunity, - + ConnectionResponseContentSalesforceCommunityStrategy, - + ConnectionResponseContentSalesforceSandbox, - + ConnectionResponseContentSalesforceSandboxStrategy, - + ConnectionResponseContentSalesforceStrategy, - + ConnectionResponseContentSaml, - + ConnectionResponseContentSamlStrategy, - + ConnectionResponseContentSharepoint, - + ConnectionResponseContentSharepointStrategy, - + ConnectionResponseContentShop, - + ConnectionResponseContentShopStrategy, - + ConnectionResponseContentShopify, - + ConnectionResponseContentShopifyStrategy, - + ConnectionResponseContentSms, - + ConnectionResponseContentSmsStrategy, - + ConnectionResponseContentSoundcloud, - + ConnectionResponseContentSoundcloudStrategy, - + ConnectionResponseContentThirtySevenSignals, - + ConnectionResponseContentThirtySevenSignalsStrategy, - + ConnectionResponseContentTwitter, - + ConnectionResponseContentTwitterStrategy, - + ConnectionResponseContentUntappd, - + ConnectionResponseContentUntappdStrategy, - + ConnectionResponseContentVkontakte, - + ConnectionResponseContentVkontakteStrategy, - + ConnectionResponseContentWeibo, - + ConnectionResponseContentWeiboStrategy, - + ConnectionResponseContentWindowsLive, - + ConnectionResponseContentWindowsLiveStrategy, - + ConnectionResponseContentWordpress, - + ConnectionResponseContentWordpressStrategy, - + ConnectionResponseContentYahoo, - + ConnectionResponseContentYahooStrategy, - + ConnectionResponseContentYandex, - + ConnectionResponseContentYandexStrategy, - + ConnectionResponseModesSupported, - + ConnectionResponseTypesSupported, - + ConnectionScopeAmazon, - + ConnectionScopeArray, - + ConnectionScopeArrayFacebook, - + ConnectionScopeArrayWindowsLive, - + ConnectionScopeAzureAd, - + ConnectionScopeFacebook, - + ConnectionScopeGoogleApps, - + ConnectionScopeGoogleOAuth2, - + ConnectionScopeItem, - + ConnectionScopeItemGoogleApps, - + ConnectionScopeLinkedin, - + ConnectionScopeOAuth2, - + ConnectionScopeOidc, - + ConnectionScopePaypal, - + ConnectionScopeSalesforce, - + ConnectionScopesSupported, - + ConnectionScriptsOAuth1, - + ConnectionScriptsOAuth2, - + ConnectionSendBackChannelNonce, - + ConnectionServiceDocumentation, - ConnectionSetUserRootAttributesEnum, - + ConnectionSha1Thumbprint, - + ConnectionShouldTrustEmailVerifiedConnectionEnum, - + ConnectionShowAsButton, - + ConnectionSignInEndpointAd, - + ConnectionSignInEndpointAdfs, - + ConnectionSignInEndpointSaml, - + ConnectionSignOutEndpointSaml, - + ConnectionSignSamlRequestSaml, - + ConnectionSignatureAlgorithmEnumSaml, - + ConnectionSignatureAlgorithmSaml, - + ConnectionSignatureMethodOAuth1, - + ConnectionSigningCertSaml, - + ConnectionSigningCertificateDerSaml, - + ConnectionSigningCertificatePemPingFederate, - + ConnectionSigningCertificatePemSaml, - + ConnectionSigningKeySaml, - + ConnectionSignupBehaviorEnum, - ConnectionStrategyEnum, - + ConnectionStrategyVersionEnumLinkedin, - + ConnectionStrategyVersionEnumWindowsLive, - + ConnectionSubjectTypesSupported, - + ConnectionTemplateSms, - + ConnectionTemplateSyntaxEnumSms, - + ConnectionTenantDomain, - + ConnectionTenantDomainAd, - + ConnectionTenantDomainAzureAdOne, - + ConnectionTenantDomainGoogleApps, - + ConnectionTenantDomainSaml, - + ConnectionTenantIdAzureAd, - + ConnectionThumbprints, - + ConnectionThumbprintsAd, - + ConnectionThumbprintsSaml, - + ConnectionTokenEndpoint, - + ConnectionTokenEndpointAuthMethodEnum, - + ConnectionTokenEndpointAuthMethodsSupported, - + ConnectionTokenEndpointAuthSigningAlgEnum, - + ConnectionTokenEndpointAuthSigningAlgValuesSupported, - + ConnectionTokenEndpointJwtcaAudFormatEnumOidc, - + ConnectionTotpEmail, - + ConnectionTotpLengthEmail, - + ConnectionTotpLengthPasswordless, - + ConnectionTotpLengthSms, - + ConnectionTotpSms, - + ConnectionTotpTimeStepEmail, - + ConnectionTotpTimeStepPasswordless, - + ConnectionTotpTimeStepSms, - + ConnectionTwilioSidSms, - + ConnectionTwilioTokenSms, - + ConnectionTypeEnumOidc, - + ConnectionTypeEnumOkta, - + ConnectionUiLocalesSupported, - + ConnectionUpstreamAdditionalProperties, - + ConnectionUpstreamAlias, - + ConnectionUpstreamAliasEnum, - ConnectionUpstreamParams, - + ConnectionUpstreamParamsFacebook, - + ConnectionUpstreamValue, - + ConnectionUseCommonEndpointAzureAd, - + ConnectionUserAuthorizationUrloAuth1, - + ConnectionUserIdAttributeSaml, - + ConnectionUseridAttributeAzureAd, - + ConnectionUseridAttributeEnumAzureAd, - + ConnectionUserinfoEncryptionAlgValuesSupported, - + ConnectionUserinfoEncryptionEncValuesSupported, - + ConnectionUserinfoEndpoint, - + ConnectionUserinfoSigningAlgValuesSupported, - ConnectionUsernameValidationOptions, - ConnectionValidationOptions, - + ConnectionWaadProtocol, - + ConnectionWaadProtocolEnumAzureAd, - ConnectionsMetadata, - + CreateActionModuleResponseContent, - + CreateActionModuleVersionResponseContent, - CreateActionResponseContent, - CreateBrandingPhoneProviderResponseContent, - CreateBrandingThemeResponseContent, - + CreateClientAuthenticationMethodSelfSignedTlsClientAuth, - + CreateClientAuthenticationMethodSelfSignedTlsClientAuthCredentials, - CreateClientGrantResponseContent, - CreateClientResponseContent, - + CreateConnectionCommon, - + CreateConnectionProfileResponseContent, - + CreateConnectionRequestContentAd, - + CreateConnectionRequestContentAdStrategy, - + CreateConnectionRequestContentAdfs, - + CreateConnectionRequestContentAdfsStrategy, - + CreateConnectionRequestContentAmazon, - + CreateConnectionRequestContentAmazonStrategy, - + CreateConnectionRequestContentApple, - + CreateConnectionRequestContentAppleStrategy, - + CreateConnectionRequestContentAuth0, - + CreateConnectionRequestContentAuth0Oidc, - + CreateConnectionRequestContentAuth0OidcStrategy, - + CreateConnectionRequestContentAuth0Strategy, - + CreateConnectionRequestContentAzureAd, - + CreateConnectionRequestContentAzureAdStrategy, - + CreateConnectionRequestContentBaidu, - + CreateConnectionRequestContentBaiduStrategy, - + CreateConnectionRequestContentBitbucket, - + CreateConnectionRequestContentBitbucketStrategy, - + CreateConnectionRequestContentBitly, - + CreateConnectionRequestContentBitlyStrategy, - + CreateConnectionRequestContentBox, - + CreateConnectionRequestContentBoxStrategy, - + CreateConnectionRequestContentCustom, - + CreateConnectionRequestContentCustomStrategy, - + CreateConnectionRequestContentDaccount, - + CreateConnectionRequestContentDaccountStrategy, - + CreateConnectionRequestContentDropbox, - + CreateConnectionRequestContentDropboxStrategy, - + CreateConnectionRequestContentDwolla, - + CreateConnectionRequestContentDwollaStrategy, - + CreateConnectionRequestContentEmail, - + CreateConnectionRequestContentEmailStrategy, - + CreateConnectionRequestContentEvernote, - + CreateConnectionRequestContentEvernoteSandbox, - + CreateConnectionRequestContentEvernoteSandboxStrategy, - + CreateConnectionRequestContentEvernoteStrategy, - + CreateConnectionRequestContentExact, - + CreateConnectionRequestContentExactStrategy, - + CreateConnectionRequestContentFacebook, - + CreateConnectionRequestContentFacebookStrategy, - + CreateConnectionRequestContentFitbit, - + CreateConnectionRequestContentFitbitStrategy, - + CreateConnectionRequestContentGitHub, - + CreateConnectionRequestContentGitHubStrategy, - + CreateConnectionRequestContentGoogleApps, - + CreateConnectionRequestContentGoogleAppsStrategy, - + CreateConnectionRequestContentGoogleOAuth2, - + CreateConnectionRequestContentGoogleOAuth2Strategy, - + CreateConnectionRequestContentInstagram, - + CreateConnectionRequestContentInstagramStrategy, - + CreateConnectionRequestContentIp, - + CreateConnectionRequestContentIpStrategy, - + CreateConnectionRequestContentLine, - + CreateConnectionRequestContentLineStrategy, - + CreateConnectionRequestContentLinkedin, - + CreateConnectionRequestContentLinkedinStrategy, - + CreateConnectionRequestContentOAuth1, - + CreateConnectionRequestContentOAuth1Strategy, - + CreateConnectionRequestContentOAuth2, - + CreateConnectionRequestContentOAuth2Strategy, - + CreateConnectionRequestContentOffice365, - + CreateConnectionRequestContentOffice365Strategy, - + CreateConnectionRequestContentOidc, - + CreateConnectionRequestContentOidcStrategy, - + CreateConnectionRequestContentOkta, - + CreateConnectionRequestContentOktaStrategy, - + CreateConnectionRequestContentPaypal, - + CreateConnectionRequestContentPaypalSandbox, - + CreateConnectionRequestContentPaypalSandboxStrategy, - + CreateConnectionRequestContentPaypalStrategy, - + CreateConnectionRequestContentPingFederate, - + CreateConnectionRequestContentPingFederateStrategy, - + CreateConnectionRequestContentPlanningCenter, - + CreateConnectionRequestContentPlanningCenterStrategy, - + CreateConnectionRequestContentSalesforce, - + CreateConnectionRequestContentSalesforceCommunity, - + CreateConnectionRequestContentSalesforceCommunityStrategy, - + CreateConnectionRequestContentSalesforceSandbox, - + CreateConnectionRequestContentSalesforceSandboxStrategy, - + CreateConnectionRequestContentSalesforceStrategy, - + CreateConnectionRequestContentSaml, - + CreateConnectionRequestContentSamlStrategy, - + CreateConnectionRequestContentSharepoint, - + CreateConnectionRequestContentSharepointStrategy, - + CreateConnectionRequestContentShop, - + CreateConnectionRequestContentShopStrategy, - + CreateConnectionRequestContentShopify, - + CreateConnectionRequestContentShopifyStrategy, - + CreateConnectionRequestContentSms, - + CreateConnectionRequestContentSmsStrategy, - + CreateConnectionRequestContentSoundcloud, - + CreateConnectionRequestContentSoundcloudStrategy, - + CreateConnectionRequestContentThirtySevenSignals, - + CreateConnectionRequestContentThirtySevenSignalsStrategy, - + CreateConnectionRequestContentTwitter, - + CreateConnectionRequestContentTwitterStrategy, - + CreateConnectionRequestContentUntappd, - + CreateConnectionRequestContentUntappdStrategy, - + CreateConnectionRequestContentVkontakte, - + CreateConnectionRequestContentVkontakteStrategy, - + CreateConnectionRequestContentWeibo, - + CreateConnectionRequestContentWeiboStrategy, - + CreateConnectionRequestContentWindowsLive, - + CreateConnectionRequestContentWindowsLiveStrategy, - + CreateConnectionRequestContentWordpress, - + CreateConnectionRequestContentWordpressStrategy, - + CreateConnectionRequestContentYahoo, - + CreateConnectionRequestContentYahooStrategy, - + CreateConnectionRequestContentYandex, - + CreateConnectionRequestContentYandexStrategy, - CreateConnectionResponseContent, - CreateCustomDomainResponseContent, - + CreateDirectoryProvisioningRequestContent, - + CreateDirectoryProvisioningResponseContent, - + CreateDirectorySynchronizationResponseContent, - CreateEmailProviderResponseContent, - CreateEmailTemplateResponseContent, - CreateEncryptionKeyPublicWrappingResponseContent, - @@ -200,6 +900,79 @@ if typing.TYPE_CHECKING: - CreateExportUsersFields, - CreateExportUsersResponseContent, - CreateFlowResponseContent, - + CreateFlowsVaultConnectionActivecampaign, - + CreateFlowsVaultConnectionActivecampaignApiKey, - + CreateFlowsVaultConnectionActivecampaignUninitialized, - + CreateFlowsVaultConnectionAirtable, - + CreateFlowsVaultConnectionAirtableApiKey, - + CreateFlowsVaultConnectionAirtableUninitialized, - + CreateFlowsVaultConnectionAuth0, - + CreateFlowsVaultConnectionAuth0OauthApp, - + CreateFlowsVaultConnectionAuth0Uninitialized, - + CreateFlowsVaultConnectionBigquery, - + CreateFlowsVaultConnectionBigqueryJwt, - + CreateFlowsVaultConnectionBigqueryUninitialized, - + CreateFlowsVaultConnectionClearbit, - + CreateFlowsVaultConnectionClearbitApiKey, - + CreateFlowsVaultConnectionClearbitUninitialized, - + CreateFlowsVaultConnectionDocusign, - + CreateFlowsVaultConnectionDocusignOauthCode, - + CreateFlowsVaultConnectionDocusignUninitialized, - + CreateFlowsVaultConnectionGoogleSheets, - + CreateFlowsVaultConnectionGoogleSheetsOauthCode, - + CreateFlowsVaultConnectionGoogleSheetsUninitialized, - + CreateFlowsVaultConnectionHttp, - + CreateFlowsVaultConnectionHttpApiKey, - + CreateFlowsVaultConnectionHttpBasicAuth, - + CreateFlowsVaultConnectionHttpBearer, - + CreateFlowsVaultConnectionHttpOauthClientCredentials, - + CreateFlowsVaultConnectionHttpUninitialized, - + CreateFlowsVaultConnectionHubspot, - + CreateFlowsVaultConnectionHubspotApiKey, - + CreateFlowsVaultConnectionHubspotOauthCode, - + CreateFlowsVaultConnectionHubspotUninitialized, - + CreateFlowsVaultConnectionJwt, - + CreateFlowsVaultConnectionJwtJwt, - + CreateFlowsVaultConnectionJwtUninitialized, - + CreateFlowsVaultConnectionMailchimp, - + CreateFlowsVaultConnectionMailchimpApiKey, - + CreateFlowsVaultConnectionMailchimpOauthCode, - + CreateFlowsVaultConnectionMailchimpUninitialized, - + CreateFlowsVaultConnectionMailjet, - + CreateFlowsVaultConnectionMailjetApiKey, - + CreateFlowsVaultConnectionMailjetUninitialized, - + CreateFlowsVaultConnectionPipedrive, - + CreateFlowsVaultConnectionPipedriveOauthCode, - + CreateFlowsVaultConnectionPipedriveToken, - + CreateFlowsVaultConnectionPipedriveUninitialized, - + CreateFlowsVaultConnectionRequestContent, - + CreateFlowsVaultConnectionResponseContent, - + CreateFlowsVaultConnectionSalesforce, - + CreateFlowsVaultConnectionSalesforceOauthCode, - + CreateFlowsVaultConnectionSalesforceUninitialized, - + CreateFlowsVaultConnectionSendgrid, - + CreateFlowsVaultConnectionSendgridApiKey, - + CreateFlowsVaultConnectionSendgridUninitialized, - + CreateFlowsVaultConnectionSlack, - + CreateFlowsVaultConnectionSlackOauthCode, - + CreateFlowsVaultConnectionSlackUninitialized, - + CreateFlowsVaultConnectionSlackWebhook, - + CreateFlowsVaultConnectionStripe, - + CreateFlowsVaultConnectionStripeKeyPair, - + CreateFlowsVaultConnectionStripeOauthCode, - + CreateFlowsVaultConnectionStripeUninitialized, - + CreateFlowsVaultConnectionTelegram, - + CreateFlowsVaultConnectionTelegramToken, - + CreateFlowsVaultConnectionTelegramUninitialized, - + CreateFlowsVaultConnectionTwilio, - + CreateFlowsVaultConnectionTwilioApiKey, - + CreateFlowsVaultConnectionTwilioUninitialized, - + CreateFlowsVaultConnectionWhatsapp, - + CreateFlowsVaultConnectionWhatsappToken, - + CreateFlowsVaultConnectionWhatsappUninitialized, - + CreateFlowsVaultConnectionZapier, - + CreateFlowsVaultConnectionZapierUninitialized, - + CreateFlowsVaultConnectionZapierWebhook, - CreateFormResponseContent, - CreateGuardianEnrollmentTicketResponseContent, - CreateHookResponseContent, - @@ -215,6 +988,8 @@ if typing.TYPE_CHECKING: - CreateLogStreamSegmentRequestBody, - CreateLogStreamSplunkRequestBody, - CreateLogStreamSumoRequestBody, - + CreateOrganizationAllConnectionResponseContent, - + CreateOrganizationDiscoveryDomainResponseContent, - CreateOrganizationInvitationResponseContent, - CreateOrganizationResponseContent, - CreatePhoneProviderSendTestResponseContent, - @@ -231,6 +1006,7 @@ if typing.TYPE_CHECKING: - CreateSelfServiceProfileSsoTicketResponseContent, - CreateTokenExchangeProfileResponseContent, - CreateTokenQuota, - + CreateUserAttributeProfileResponseContent, - CreateUserAuthenticationMethodResponseContent, - CreateUserResponseContent, - CreateVerifiableCredentialTemplateResponseContent, - @@ -242,6 +1018,7 @@ if typing.TYPE_CHECKING: - CustomDomainCustomClientIpHeader, - CustomDomainCustomClientIpHeaderEnum, - CustomDomainProvisioningTypeEnum, - + CustomDomainStatusFilterEnum, - CustomDomainTlsPolicyEnum, - CustomDomainTypeEnum, - CustomDomainVerificationMethodEnum, - @@ -255,20 +1032,27 @@ if typing.TYPE_CHECKING: - CustomSigningKeyTypeEnum, - CustomSigningKeyUseEnum, - DailyStats, - + DefaultMethodEmailIdentifierEnum, - DefaultTokenQuota, - DeleteHookSecretRequestContent, - DeleteUserIdentityResponseContent, - DeleteUserIdentityResponseContentItem, - DeployActionResponseContent, - - DeployActionVersionRequestBodyParams, - DeployActionVersionRequestContent, - DeployActionVersionResponseContent, - DeviceCredential, - DeviceCredentialPublicKeyTypeEnum, - DeviceCredentialTypeEnum, - + DirectoryProvisioning, - + DirectoryProvisioningMappingItem, - + DomainCertificate, - + DomainCertificateAuthorityEnum, - + DomainCertificateStatusEnum, - + DomainMetadata, - DomainVerification, - DomainVerificationMethod, - DomainVerificationMethodNameEnum, - + DomainVerificationStatusEnum, - EmailAttribute, - EmailMailgunRegionEnum, - EmailProviderCredentials, - @@ -286,6 +1070,7 @@ if typing.TYPE_CHECKING: - EmailSparkPostRegionEnum, - EmailSpecificProviderSettingsWithAdditionalProperties, - EmailTemplateNameEnum, - + EnabledFeaturesEnum, - EncryptionKey, - EncryptionKeyPublicWrappingAlgorithm, - EncryptionKeyState, - @@ -294,8 +1079,336 @@ if typing.TYPE_CHECKING: - EventStreamActionDestination, - EventStreamActionDestinationTypeEnum, - EventStreamActionResponseContent, - - EventStreamBucketInterval, - EventStreamCloudEvent, - + EventStreamCloudEventA0PurposeEnum, - + EventStreamCloudEventContext, - + EventStreamCloudEventContextClient, - + EventStreamCloudEventContextClientMetadata, - + EventStreamCloudEventContextConnection, - + EventStreamCloudEventContextRequest, - + EventStreamCloudEventContextRequestGeo, - + EventStreamCloudEventContextTenant, - + EventStreamCloudEventErrorCodeEnum, - + EventStreamCloudEventErrorDetail, - + EventStreamCloudEventErrorMessage, - + EventStreamCloudEventErrorMessageTypeEnum, - + EventStreamCloudEventGroupCreated, - + EventStreamCloudEventGroupCreatedCloudEvent, - + EventStreamCloudEventGroupCreatedCloudEventTypeEnum, - + EventStreamCloudEventGroupCreatedData, - + EventStreamCloudEventGroupCreatedObject, - + EventStreamCloudEventGroupCreatedObject0, - + EventStreamCloudEventGroupCreatedObject0TypeEnum, - + EventStreamCloudEventGroupCreatedObject1, - + EventStreamCloudEventGroupCreatedObject1TypeEnum, - + EventStreamCloudEventGroupCreatedObject2, - + EventStreamCloudEventGroupCreatedObject2TypeEnum, - + EventStreamCloudEventGroupCreatedTypeEnum, - + EventStreamCloudEventGroupDeleted, - + EventStreamCloudEventGroupDeletedCloudEvent, - + EventStreamCloudEventGroupDeletedCloudEventTypeEnum, - + EventStreamCloudEventGroupDeletedData, - + EventStreamCloudEventGroupDeletedObject, - + EventStreamCloudEventGroupDeletedObject0, - + EventStreamCloudEventGroupDeletedObject0TypeEnum, - + EventStreamCloudEventGroupDeletedObject1, - + EventStreamCloudEventGroupDeletedObject1TypeEnum, - + EventStreamCloudEventGroupDeletedObject2, - + EventStreamCloudEventGroupDeletedObject2TypeEnum, - + EventStreamCloudEventGroupDeletedTypeEnum, - + EventStreamCloudEventGroupMemberAdded, - + EventStreamCloudEventGroupMemberAddedCloudEvent, - + EventStreamCloudEventGroupMemberAddedCloudEventTypeEnum, - + EventStreamCloudEventGroupMemberAddedData, - + EventStreamCloudEventGroupMemberAddedObject, - + EventStreamCloudEventGroupMemberAddedObjectGroup, - + EventStreamCloudEventGroupMemberAddedObjectGroup0, - + EventStreamCloudEventGroupMemberAddedObjectGroup0TypeEnum, - + EventStreamCloudEventGroupMemberAddedObjectGroup1, - + EventStreamCloudEventGroupMemberAddedObjectGroup1TypeEnum, - + EventStreamCloudEventGroupMemberAddedObjectGroup2, - + EventStreamCloudEventGroupMemberAddedObjectGroup2TypeEnum, - + EventStreamCloudEventGroupMemberAddedObjectMember, - + EventStreamCloudEventGroupMemberAddedObjectMember0, - + EventStreamCloudEventGroupMemberAddedObjectMember0MemberTypeEnum, - + EventStreamCloudEventGroupMemberAddedObjectMember1, - + EventStreamCloudEventGroupMemberAddedObjectMember1MemberTypeEnum, - + EventStreamCloudEventGroupMemberAddedTypeEnum, - + EventStreamCloudEventGroupMemberDeleted, - + EventStreamCloudEventGroupMemberDeletedCloudEvent, - + EventStreamCloudEventGroupMemberDeletedCloudEventTypeEnum, - + EventStreamCloudEventGroupMemberDeletedData, - + EventStreamCloudEventGroupMemberDeletedObject, - + EventStreamCloudEventGroupMemberDeletedObjectGroup, - + EventStreamCloudEventGroupMemberDeletedObjectGroup0, - + EventStreamCloudEventGroupMemberDeletedObjectGroup0TypeEnum, - + EventStreamCloudEventGroupMemberDeletedObjectGroup1, - + EventStreamCloudEventGroupMemberDeletedObjectGroup1TypeEnum, - + EventStreamCloudEventGroupMemberDeletedObjectGroup2, - + EventStreamCloudEventGroupMemberDeletedObjectGroup2TypeEnum, - + EventStreamCloudEventGroupMemberDeletedObjectMember, - + EventStreamCloudEventGroupMemberDeletedObjectMember0, - + EventStreamCloudEventGroupMemberDeletedObjectMember0MemberTypeEnum, - + EventStreamCloudEventGroupMemberDeletedObjectMember1, - + EventStreamCloudEventGroupMemberDeletedObjectMember1MemberTypeEnum, - + EventStreamCloudEventGroupMemberDeletedTypeEnum, - + EventStreamCloudEventGroupRoleAssigned, - + EventStreamCloudEventGroupRoleAssignedCloudEvent, - + EventStreamCloudEventGroupRoleAssignedCloudEventTypeEnum, - + EventStreamCloudEventGroupRoleAssignedData, - + EventStreamCloudEventGroupRoleAssignedObject, - + EventStreamCloudEventGroupRoleAssignedObjectGroup, - + EventStreamCloudEventGroupRoleAssignedObjectGroup0, - + EventStreamCloudEventGroupRoleAssignedObjectGroup0TypeEnum, - + EventStreamCloudEventGroupRoleAssignedObjectGroup1, - + EventStreamCloudEventGroupRoleAssignedObjectGroup1TypeEnum, - + EventStreamCloudEventGroupRoleAssignedObjectGroup2, - + EventStreamCloudEventGroupRoleAssignedObjectGroup2TypeEnum, - + EventStreamCloudEventGroupRoleAssignedObjectRole, - + EventStreamCloudEventGroupRoleAssignedTypeEnum, - + EventStreamCloudEventGroupRoleDeleted, - + EventStreamCloudEventGroupRoleDeletedCloudEvent, - + EventStreamCloudEventGroupRoleDeletedCloudEventTypeEnum, - + EventStreamCloudEventGroupRoleDeletedData, - + EventStreamCloudEventGroupRoleDeletedObject, - + EventStreamCloudEventGroupRoleDeletedObjectGroup, - + EventStreamCloudEventGroupRoleDeletedObjectGroup0, - + EventStreamCloudEventGroupRoleDeletedObjectGroup0TypeEnum, - + EventStreamCloudEventGroupRoleDeletedObjectGroup1, - + EventStreamCloudEventGroupRoleDeletedObjectGroup1TypeEnum, - + EventStreamCloudEventGroupRoleDeletedObjectGroup2, - + EventStreamCloudEventGroupRoleDeletedObjectGroup2TypeEnum, - + EventStreamCloudEventGroupRoleDeletedObjectRole, - + EventStreamCloudEventGroupRoleDeletedTypeEnum, - + EventStreamCloudEventGroupUpdated, - + EventStreamCloudEventGroupUpdatedCloudEvent, - + EventStreamCloudEventGroupUpdatedCloudEventTypeEnum, - + EventStreamCloudEventGroupUpdatedData, - + EventStreamCloudEventGroupUpdatedObject, - + EventStreamCloudEventGroupUpdatedObject0, - + EventStreamCloudEventGroupUpdatedObject0TypeEnum, - + EventStreamCloudEventGroupUpdatedObject1, - + EventStreamCloudEventGroupUpdatedObject1TypeEnum, - + EventStreamCloudEventGroupUpdatedObject2, - + EventStreamCloudEventGroupUpdatedObject2TypeEnum, - + EventStreamCloudEventGroupUpdatedTypeEnum, - + EventStreamCloudEventOffsetOnlyMessage, - + EventStreamCloudEventOffsetOnlyMessageTypeEnum, - + EventStreamCloudEventOrgConnectionAdded, - + EventStreamCloudEventOrgConnectionAddedCloudEvent, - + EventStreamCloudEventOrgConnectionAddedCloudEventTypeEnum, - + EventStreamCloudEventOrgConnectionAddedData, - + EventStreamCloudEventOrgConnectionAddedObject, - + EventStreamCloudEventOrgConnectionAddedObjectConnection, - + EventStreamCloudEventOrgConnectionAddedObjectOrganization, - + EventStreamCloudEventOrgConnectionAddedTypeEnum, - + EventStreamCloudEventOrgConnectionRemoved, - + EventStreamCloudEventOrgConnectionRemovedCloudEvent, - + EventStreamCloudEventOrgConnectionRemovedCloudEventTypeEnum, - + EventStreamCloudEventOrgConnectionRemovedData, - + EventStreamCloudEventOrgConnectionRemovedObject, - + EventStreamCloudEventOrgConnectionRemovedObjectConnection, - + EventStreamCloudEventOrgConnectionRemovedObjectOrganization, - + EventStreamCloudEventOrgConnectionRemovedTypeEnum, - + EventStreamCloudEventOrgConnectionUpdated, - + EventStreamCloudEventOrgConnectionUpdatedCloudEvent, - + EventStreamCloudEventOrgConnectionUpdatedCloudEventTypeEnum, - + EventStreamCloudEventOrgConnectionUpdatedData, - + EventStreamCloudEventOrgConnectionUpdatedObject, - + EventStreamCloudEventOrgConnectionUpdatedObjectConnection, - + EventStreamCloudEventOrgConnectionUpdatedObjectOrganization, - + EventStreamCloudEventOrgConnectionUpdatedTypeEnum, - + EventStreamCloudEventOrgCreated, - + EventStreamCloudEventOrgCreatedCloudEvent, - + EventStreamCloudEventOrgCreatedCloudEventTypeEnum, - + EventStreamCloudEventOrgCreatedData, - + EventStreamCloudEventOrgCreatedObject, - + EventStreamCloudEventOrgCreatedObjectBranding, - + EventStreamCloudEventOrgCreatedObjectBrandingColors, - + EventStreamCloudEventOrgCreatedObjectMetadata, - + EventStreamCloudEventOrgCreatedTypeEnum, - + EventStreamCloudEventOrgDeleted, - + EventStreamCloudEventOrgDeletedCloudEvent, - + EventStreamCloudEventOrgDeletedCloudEventTypeEnum, - + EventStreamCloudEventOrgDeletedData, - + EventStreamCloudEventOrgDeletedObject, - + EventStreamCloudEventOrgDeletedObjectMetadata, - + EventStreamCloudEventOrgDeletedTypeEnum, - + EventStreamCloudEventOrgGroupRoleAssigned, - + EventStreamCloudEventOrgGroupRoleAssignedCloudEvent, - + EventStreamCloudEventOrgGroupRoleAssignedCloudEventTypeEnum, - + EventStreamCloudEventOrgGroupRoleAssignedData, - + EventStreamCloudEventOrgGroupRoleAssignedObject, - + EventStreamCloudEventOrgGroupRoleAssignedObjectGroup, - + EventStreamCloudEventOrgGroupRoleAssignedObjectGroup0, - + EventStreamCloudEventOrgGroupRoleAssignedObjectGroup0TypeEnum, - + EventStreamCloudEventOrgGroupRoleAssignedObjectGroup1, - + EventStreamCloudEventOrgGroupRoleAssignedObjectGroup1TypeEnum, - + EventStreamCloudEventOrgGroupRoleAssignedObjectGroup2, - + EventStreamCloudEventOrgGroupRoleAssignedObjectGroup2TypeEnum, - + EventStreamCloudEventOrgGroupRoleAssignedObjectOrganization, - + EventStreamCloudEventOrgGroupRoleAssignedObjectRole, - + EventStreamCloudEventOrgGroupRoleAssignedTypeEnum, - + EventStreamCloudEventOrgGroupRoleDeleted, - + EventStreamCloudEventOrgGroupRoleDeletedCloudEvent, - + EventStreamCloudEventOrgGroupRoleDeletedCloudEventTypeEnum, - + EventStreamCloudEventOrgGroupRoleDeletedData, - + EventStreamCloudEventOrgGroupRoleDeletedObject, - + EventStreamCloudEventOrgGroupRoleDeletedObjectGroup, - + EventStreamCloudEventOrgGroupRoleDeletedObjectGroup0, - + EventStreamCloudEventOrgGroupRoleDeletedObjectGroup0TypeEnum, - + EventStreamCloudEventOrgGroupRoleDeletedObjectGroup1, - + EventStreamCloudEventOrgGroupRoleDeletedObjectGroup1TypeEnum, - + EventStreamCloudEventOrgGroupRoleDeletedObjectGroup2, - + EventStreamCloudEventOrgGroupRoleDeletedObjectGroup2TypeEnum, - + EventStreamCloudEventOrgGroupRoleDeletedObjectOrganization, - + EventStreamCloudEventOrgGroupRoleDeletedObjectRole, - + EventStreamCloudEventOrgGroupRoleDeletedTypeEnum, - + EventStreamCloudEventOrgMemberAdded, - + EventStreamCloudEventOrgMemberAddedCloudEvent, - + EventStreamCloudEventOrgMemberAddedCloudEventTypeEnum, - + EventStreamCloudEventOrgMemberAddedData, - + EventStreamCloudEventOrgMemberAddedObject, - + EventStreamCloudEventOrgMemberAddedObjectOrganization, - + EventStreamCloudEventOrgMemberAddedObjectUser, - + EventStreamCloudEventOrgMemberAddedTypeEnum, - + EventStreamCloudEventOrgMemberDeleted, - + EventStreamCloudEventOrgMemberDeletedCloudEvent, - + EventStreamCloudEventOrgMemberDeletedCloudEventTypeEnum, - + EventStreamCloudEventOrgMemberDeletedData, - + EventStreamCloudEventOrgMemberDeletedObject, - + EventStreamCloudEventOrgMemberDeletedObjectOrganization, - + EventStreamCloudEventOrgMemberDeletedObjectUser, - + EventStreamCloudEventOrgMemberDeletedTypeEnum, - + EventStreamCloudEventOrgMemberRoleAssigned, - + EventStreamCloudEventOrgMemberRoleAssignedCloudEvent, - + EventStreamCloudEventOrgMemberRoleAssignedCloudEventTypeEnum, - + EventStreamCloudEventOrgMemberRoleAssignedData, - + EventStreamCloudEventOrgMemberRoleAssignedObject, - + EventStreamCloudEventOrgMemberRoleAssignedObjectOrganization, - + EventStreamCloudEventOrgMemberRoleAssignedObjectRole, - + EventStreamCloudEventOrgMemberRoleAssignedObjectUser, - + EventStreamCloudEventOrgMemberRoleAssignedTypeEnum, - + EventStreamCloudEventOrgMemberRoleDeleted, - + EventStreamCloudEventOrgMemberRoleDeletedCloudEvent, - + EventStreamCloudEventOrgMemberRoleDeletedCloudEventTypeEnum, - + EventStreamCloudEventOrgMemberRoleDeletedData, - + EventStreamCloudEventOrgMemberRoleDeletedObject, - + EventStreamCloudEventOrgMemberRoleDeletedObjectOrganization, - + EventStreamCloudEventOrgMemberRoleDeletedObjectRole, - + EventStreamCloudEventOrgMemberRoleDeletedObjectUser, - + EventStreamCloudEventOrgMemberRoleDeletedTypeEnum, - + EventStreamCloudEventOrgUpdated, - + EventStreamCloudEventOrgUpdatedCloudEvent, - + EventStreamCloudEventOrgUpdatedCloudEventTypeEnum, - + EventStreamCloudEventOrgUpdatedData, - + EventStreamCloudEventOrgUpdatedObject, - + EventStreamCloudEventOrgUpdatedObjectBranding, - + EventStreamCloudEventOrgUpdatedObjectBrandingColors, - + EventStreamCloudEventOrgUpdatedObjectMetadata, - + EventStreamCloudEventOrgUpdatedTypeEnum, - + EventStreamCloudEventUserCreated, - + EventStreamCloudEventUserCreatedCloudEvent, - + EventStreamCloudEventUserCreatedCloudEventTypeEnum, - + EventStreamCloudEventUserCreatedData, - + EventStreamCloudEventUserCreatedObject, - + EventStreamCloudEventUserCreatedObjectAppMetadata, - + EventStreamCloudEventUserCreatedObjectIdentitiesItem, - + EventStreamCloudEventUserCreatedObjectIdentitiesItemCustom, - + EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomIsSocialEnum, - + EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomProfileData, - + EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomProviderEnum, - + EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomUserId, - + EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabase, - + EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseIsSocialEnum, - + EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseProfileData, - + EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseProviderEnum, - + EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseUserId, - + EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterprise, - + EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseIsSocialEnum, - + EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseProfileData, - + EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseProviderEnum, - + EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseUserId, - + EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordless, - + EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessIsSocialEnum, - + EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessProfileData, - + EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessProviderEnum, - + EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessUserId, - + EventStreamCloudEventUserCreatedObjectIdentitiesItemSocial, - + EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialIsSocialEnum, - + EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialProfileData, - + EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialProviderEnum, - + EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialUserId, - + EventStreamCloudEventUserCreatedObjectUserMetadata, - + EventStreamCloudEventUserCreatedTypeEnum, - + EventStreamCloudEventUserDeleted, - + EventStreamCloudEventUserDeletedCloudEvent, - + EventStreamCloudEventUserDeletedCloudEventTypeEnum, - + EventStreamCloudEventUserDeletedData, - + EventStreamCloudEventUserDeletedObject, - + EventStreamCloudEventUserDeletedObjectAppMetadata, - + EventStreamCloudEventUserDeletedObjectIdentitiesItem, - + EventStreamCloudEventUserDeletedObjectIdentitiesItemCustom, - + EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomIsSocialEnum, - + EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomProfileData, - + EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomProviderEnum, - + EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomUserId, - + EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabase, - + EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseIsSocialEnum, - + EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseProfileData, - + EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseProviderEnum, - + EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseUserId, - + EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterprise, - + EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseIsSocialEnum, - + EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseProfileData, - + EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseProviderEnum, - + EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseUserId, - + EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordless, - + EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessIsSocialEnum, - + EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessProfileData, - + EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessProviderEnum, - + EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessUserId, - + EventStreamCloudEventUserDeletedObjectIdentitiesItemSocial, - + EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialIsSocialEnum, - + EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialProfileData, - + EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialProviderEnum, - + EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialUserId, - + EventStreamCloudEventUserDeletedObjectUserMetadata, - + EventStreamCloudEventUserDeletedTypeEnum, - + EventStreamCloudEventUserUpdated, - + EventStreamCloudEventUserUpdatedCloudEvent, - + EventStreamCloudEventUserUpdatedCloudEventTypeEnum, - + EventStreamCloudEventUserUpdatedData, - + EventStreamCloudEventUserUpdatedObject, - + EventStreamCloudEventUserUpdatedObjectAppMetadata, - + EventStreamCloudEventUserUpdatedObjectIdentitiesItem, - + EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustom, - + EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomIsSocialEnum, - + EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomProfileData, - + EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomProviderEnum, - + EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomUserId, - + EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabase, - + EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseIsSocialEnum, - + EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseProfileData, - + EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseProviderEnum, - + EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseUserId, - + EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterprise, - + EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseIsSocialEnum, - + EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseProfileData, - + EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseProviderEnum, - + EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseUserId, - + EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordless, - + EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessIsSocialEnum, - + EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessProfileData, - + EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessProviderEnum, - + EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessUserId, - + EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocial, - + EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialIsSocialEnum, - + EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialProfileData, - + EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialProviderEnum, - + EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialUserId, - + EventStreamCloudEventUserUpdatedObjectUserMetadata, - + EventStreamCloudEventUserUpdatedTypeEnum, - EventStreamDelivery, - EventStreamDeliveryAttempt, - EventStreamDeliveryEventTypeEnum, - @@ -307,9 +1420,35 @@ if typing.TYPE_CHECKING: - EventStreamEventBridgeDestinationTypeEnum, - EventStreamEventBridgeResponseContent, - EventStreamEventTypeEnum, - - EventStreamMetric, - EventStreamResponseContent, - EventStreamStatusEnum, - + EventStreamSubscribeEventsEventTypeEnum, - + EventStreamSubscribeEventsEventTypeParam, - + EventStreamSubscribeEventsResponseContent, - + EventStreamSubscribeEventsResponseContent_Error, - + EventStreamSubscribeEventsResponseContent_GroupCreated, - + EventStreamSubscribeEventsResponseContent_GroupDeleted, - + EventStreamSubscribeEventsResponseContent_GroupMemberAdded, - + EventStreamSubscribeEventsResponseContent_GroupMemberDeleted, - + EventStreamSubscribeEventsResponseContent_GroupRoleAssigned, - + EventStreamSubscribeEventsResponseContent_GroupRoleDeleted, - + EventStreamSubscribeEventsResponseContent_GroupUpdated, - + EventStreamSubscribeEventsResponseContent_OffsetOnly, - + EventStreamSubscribeEventsResponseContent_OrganizationConnectionAdded, - + EventStreamSubscribeEventsResponseContent_OrganizationConnectionRemoved, - + EventStreamSubscribeEventsResponseContent_OrganizationConnectionUpdated, - + EventStreamSubscribeEventsResponseContent_OrganizationCreated, - + EventStreamSubscribeEventsResponseContent_OrganizationDeleted, - + EventStreamSubscribeEventsResponseContent_OrganizationGroupRoleAssigned, - + EventStreamSubscribeEventsResponseContent_OrganizationGroupRoleDeleted, - + EventStreamSubscribeEventsResponseContent_OrganizationMemberAdded, - + EventStreamSubscribeEventsResponseContent_OrganizationMemberDeleted, - + EventStreamSubscribeEventsResponseContent_OrganizationMemberRoleAssigned, - + EventStreamSubscribeEventsResponseContent_OrganizationMemberRoleDeleted, - + EventStreamSubscribeEventsResponseContent_OrganizationUpdated, - + EventStreamSubscribeEventsResponseContent_UserCreated, - + EventStreamSubscribeEventsResponseContent_UserDeleted, - + EventStreamSubscribeEventsResponseContent_UserUpdated, - EventStreamSubscription, - EventStreamTestEventTypeEnum, - EventStreamWebhookAuthorizationResponse, - @@ -318,88 +1457,153 @@ if typing.TYPE_CHECKING: - EventStreamWebhookBearerAuth, - EventStreamWebhookBearerAuthMethodEnum, - EventStreamWebhookConfiguration, - + EventStreamWebhookCustomHeaderAuth, - + EventStreamWebhookCustomHeaderAuthMethodEnum, - EventStreamWebhookDestination, - EventStreamWebhookDestinationTypeEnum, - EventStreamWebhookResponseContent, - - EventStreamWindow, - + ExpressConfiguration, - + ExpressConfigurationOrNull, - ExtensibilityEmailProviderCredentials, - FederatedConnectionTokenSet, - FlowAction, - FlowActionActivecampaign, - FlowActionActivecampaignListContacts, - + FlowActionActivecampaignListContactsAction, - FlowActionActivecampaignListContactsParams, - + FlowActionActivecampaignListContactsType, - FlowActionActivecampaignUpsertContact, - + FlowActionActivecampaignUpsertContactAction, - FlowActionActivecampaignUpsertContactParams, - FlowActionActivecampaignUpsertContactParamsCustomFields, - + FlowActionActivecampaignUpsertContactType, - FlowActionAirtable, - FlowActionAirtableCreateRecord, - + FlowActionAirtableCreateRecordAction, - FlowActionAirtableCreateRecordParams, - FlowActionAirtableCreateRecordParamsFields, - + FlowActionAirtableCreateRecordType, - FlowActionAirtableListRecords, - + FlowActionAirtableListRecordsAction, - FlowActionAirtableListRecordsParams, - + FlowActionAirtableListRecordsType, - FlowActionAirtableUpdateRecord, - + FlowActionAirtableUpdateRecordAction, - FlowActionAirtableUpdateRecordParams, - FlowActionAirtableUpdateRecordParamsFields, - + FlowActionAirtableUpdateRecordType, - FlowActionAuth0, - FlowActionAuth0CreateUser, - + FlowActionAuth0CreateUserAction, - FlowActionAuth0CreateUserParams, - FlowActionAuth0CreateUserParamsPayload, - + FlowActionAuth0CreateUserType, - FlowActionAuth0GetUser, - + FlowActionAuth0GetUserAction, - FlowActionAuth0GetUserParams, - + FlowActionAuth0GetUserType, - + FlowActionAuth0MakeCall, - + FlowActionAuth0MakeCallAction, - + FlowActionAuth0MakeCallParams, - + FlowActionAuth0MakeCallParamsCustomVars, - + FlowActionAuth0MakeCallType, - + FlowActionAuth0SendEmail, - + FlowActionAuth0SendEmailAction, - + FlowActionAuth0SendEmailParams, - + FlowActionAuth0SendEmailParamsFrom, - + FlowActionAuth0SendEmailParamsFromEmail, - + FlowActionAuth0SendEmailParamsTo, - + FlowActionAuth0SendEmailType, - FlowActionAuth0SendRequest, - + FlowActionAuth0SendRequestAction, - FlowActionAuth0SendRequestParams, - + FlowActionAuth0SendRequestParamsCustomVars, - FlowActionAuth0SendRequestParamsHeaders, - FlowActionAuth0SendRequestParamsMethod, - FlowActionAuth0SendRequestParamsPayload, - FlowActionAuth0SendRequestParamsPayloadObject, - FlowActionAuth0SendRequestParamsQueryParams, - + FlowActionAuth0SendRequestParamsQueryParamsValue, - + FlowActionAuth0SendRequestType, - + FlowActionAuth0SendSms, - + FlowActionAuth0SendSmsAction, - + FlowActionAuth0SendSmsParams, - + FlowActionAuth0SendSmsParamsCustomVars, - + FlowActionAuth0SendSmsType, - FlowActionAuth0UpdateUser, - + FlowActionAuth0UpdateUserAction, - FlowActionAuth0UpdateUserParams, - FlowActionAuth0UpdateUserParamsChanges, - + FlowActionAuth0UpdateUserType, - FlowActionBigquery, - FlowActionBigqueryInsertRows, - + FlowActionBigqueryInsertRowsAction, - FlowActionBigqueryInsertRowsParams, - FlowActionBigqueryInsertRowsParamsData, - + FlowActionBigqueryInsertRowsType, - FlowActionClearbit, - FlowActionClearbitFindCompany, - + FlowActionClearbitFindCompanyAction, - FlowActionClearbitFindCompanyParams, - + FlowActionClearbitFindCompanyType, - FlowActionClearbitFindPerson, - + FlowActionClearbitFindPersonAction, - FlowActionClearbitFindPersonParams, - + FlowActionClearbitFindPersonType, - FlowActionEmail, - FlowActionEmailVerifyEmail, - + FlowActionEmailVerifyEmailAction, - FlowActionEmailVerifyEmailParams, - FlowActionEmailVerifyEmailParamsRules, - + FlowActionEmailVerifyEmailType, - FlowActionFlow, - FlowActionFlowBooleanCondition, - + FlowActionFlowBooleanConditionAction, - FlowActionFlowBooleanConditionParams, - + FlowActionFlowBooleanConditionType, - FlowActionFlowDelayFlow, - + FlowActionFlowDelayFlowAction, - FlowActionFlowDelayFlowParams, - FlowActionFlowDelayFlowParamsNumber, - FlowActionFlowDelayFlowParamsUnits, - + FlowActionFlowDelayFlowType, - FlowActionFlowDoNothing, - + FlowActionFlowDoNothingAction, - FlowActionFlowDoNothingParams, - + FlowActionFlowDoNothingType, - FlowActionFlowErrorMessage, - + FlowActionFlowErrorMessageAction, - FlowActionFlowErrorMessageParams, - + FlowActionFlowErrorMessageType, - FlowActionFlowMapValue, - + FlowActionFlowMapValueAction, - FlowActionFlowMapValueParams, - FlowActionFlowMapValueParamsCases, - FlowActionFlowMapValueParamsFallback, - FlowActionFlowMapValueParamsFallbackObject, - FlowActionFlowMapValueParamsInput, - + FlowActionFlowMapValueType, - FlowActionFlowReturnJson, - + FlowActionFlowReturnJsonAction, - FlowActionFlowReturnJsonParams, - FlowActionFlowReturnJsonParamsPayload, - FlowActionFlowReturnJsonParamsPayloadObject, - + FlowActionFlowReturnJsonType, - FlowActionFlowStoreVars, - + FlowActionFlowStoreVarsAction, - FlowActionFlowStoreVarsParams, - FlowActionFlowStoreVarsParamsVars, - + FlowActionFlowStoreVarsType, - FlowActionGoogleSheets, - FlowActionGoogleSheetsAddRow, - + FlowActionGoogleSheetsAddRowAction, - FlowActionGoogleSheetsAddRowParams, - FlowActionGoogleSheetsAddRowParamsSheetId, - FlowActionGoogleSheetsAddRowParamsValues, - + FlowActionGoogleSheetsAddRowType, - FlowActionHttp, - FlowActionHttpSendRequest, - + FlowActionHttpSendRequestAction, - FlowActionHttpSendRequestParams, - FlowActionHttpSendRequestParamsBasicAuth, - FlowActionHttpSendRequestParamsContentType, - @@ -408,134 +1612,260 @@ if typing.TYPE_CHECKING: - FlowActionHttpSendRequestParamsPayload, - FlowActionHttpSendRequestParamsPayloadObject, - FlowActionHttpSendRequestParamsQueryParams, - + FlowActionHttpSendRequestParamsQueryParamsValue, - + FlowActionHttpSendRequestType, - FlowActionHubspot, - FlowActionHubspotEnrollContact, - + FlowActionHubspotEnrollContactAction, - FlowActionHubspotEnrollContactParams, - FlowActionHubspotEnrollContactParamsWorkflowId, - + FlowActionHubspotEnrollContactType, - FlowActionHubspotGetContact, - + FlowActionHubspotGetContactAction, - FlowActionHubspotGetContactParams, - + FlowActionHubspotGetContactType, - FlowActionHubspotUpsertContact, - + FlowActionHubspotUpsertContactAction, - FlowActionHubspotUpsertContactParams, - FlowActionHubspotUpsertContactParamsProperty, - + FlowActionHubspotUpsertContactType, - FlowActionJson, - FlowActionJsonCreateJson, - + FlowActionJsonCreateJsonAction, - FlowActionJsonCreateJsonParams, - FlowActionJsonCreateJsonParamsObject, - + FlowActionJsonCreateJsonType, - FlowActionJsonParseJson, - + FlowActionJsonParseJsonAction, - FlowActionJsonParseJsonParams, - + FlowActionJsonParseJsonType, - FlowActionJsonSerializeJson, - + FlowActionJsonSerializeJsonAction, - FlowActionJsonSerializeJsonParams, - FlowActionJsonSerializeJsonParamsObject, - FlowActionJsonSerializeJsonParamsObjectObject, - + FlowActionJsonSerializeJsonType, - FlowActionJwt, - FlowActionJwtDecodeJwt, - + FlowActionJwtDecodeJwtAction, - FlowActionJwtDecodeJwtParams, - + FlowActionJwtDecodeJwtType, - FlowActionJwtSignJwt, - + FlowActionJwtSignJwtAction, - FlowActionJwtSignJwtParams, - FlowActionJwtSignJwtParamsPayload, - + FlowActionJwtSignJwtType, - FlowActionJwtVerifyJwt, - + FlowActionJwtVerifyJwtAction, - FlowActionJwtVerifyJwtParams, - + FlowActionJwtVerifyJwtType, - FlowActionMailchimp, - FlowActionMailchimpUpsertMember, - + FlowActionMailchimpUpsertMemberAction, - FlowActionMailchimpUpsertMemberParams, - FlowActionMailchimpUpsertMemberParamsMember, - FlowActionMailchimpUpsertMemberParamsMemberMergeFields, - + FlowActionMailchimpUpsertMemberType, - FlowActionMailjet, - FlowActionMailjetSendEmail, - + FlowActionMailjetSendEmailAction, - FlowActionMailjetSendEmailParams, - FlowActionMailjetSendEmailParamsContent, - FlowActionMailjetSendEmailParamsTemplateId, - + FlowActionMailjetSendEmailType, - FlowActionOtp, - FlowActionOtpGenerateCode, - + FlowActionOtpGenerateCodeAction, - FlowActionOtpGenerateCodeParams, - + FlowActionOtpGenerateCodeType, - FlowActionOtpVerifyCode, - + FlowActionOtpVerifyCodeAction, - FlowActionOtpVerifyCodeParams, - FlowActionOtpVerifyCodeParamsCode, - + FlowActionOtpVerifyCodeType, - FlowActionPipedrive, - FlowActionPipedriveAddDeal, - + FlowActionPipedriveAddDealAction, - FlowActionPipedriveAddDealParams, - FlowActionPipedriveAddDealParamsFields, - FlowActionPipedriveAddDealParamsOrganizationId, - FlowActionPipedriveAddDealParamsPersonId, - FlowActionPipedriveAddDealParamsStageId, - FlowActionPipedriveAddDealParamsUserId, - + FlowActionPipedriveAddDealType, - FlowActionPipedriveAddOrganization, - + FlowActionPipedriveAddOrganizationAction, - FlowActionPipedriveAddOrganizationParams, - FlowActionPipedriveAddOrganizationParamsFields, - FlowActionPipedriveAddOrganizationParamsOwnerId, - + FlowActionPipedriveAddOrganizationType, - FlowActionPipedriveAddPerson, - + FlowActionPipedriveAddPersonAction, - FlowActionPipedriveAddPersonParams, - FlowActionPipedriveAddPersonParamsFields, - FlowActionPipedriveAddPersonParamsOrganizationId, - FlowActionPipedriveAddPersonParamsOwnerId, - + FlowActionPipedriveAddPersonType, - FlowActionSalesforce, - FlowActionSalesforceCreateLead, - + FlowActionSalesforceCreateLeadAction, - FlowActionSalesforceCreateLeadParams, - FlowActionSalesforceCreateLeadParamsPayload, - + FlowActionSalesforceCreateLeadType, - FlowActionSalesforceGetLead, - + FlowActionSalesforceGetLeadAction, - FlowActionSalesforceGetLeadParams, - + FlowActionSalesforceGetLeadType, - FlowActionSalesforceSearchLeads, - + FlowActionSalesforceSearchLeadsAction, - FlowActionSalesforceSearchLeadsParams, - FlowActionSalesforceSearchLeadsParamsSearchField, - + FlowActionSalesforceSearchLeadsType, - FlowActionSalesforceUpdateLead, - + FlowActionSalesforceUpdateLeadAction, - FlowActionSalesforceUpdateLeadParams, - FlowActionSalesforceUpdateLeadParamsPayload, - + FlowActionSalesforceUpdateLeadType, - FlowActionSendgrid, - FlowActionSendgridSendEmail, - + FlowActionSendgridSendEmailAction, - FlowActionSendgridSendEmailParams, - FlowActionSendgridSendEmailParamsPerson, - + FlowActionSendgridSendEmailType, - FlowActionSlack, - FlowActionSlackPostMessage, - + FlowActionSlackPostMessageAction, - FlowActionSlackPostMessageParams, - FlowActionSlackPostMessageParamsAttachment, - FlowActionSlackPostMessageParamsAttachmentColor, - FlowActionSlackPostMessageParamsAttachmentField, - + FlowActionSlackPostMessageType, - FlowActionStripe, - FlowActionStripeAddTaxId, - + FlowActionStripeAddTaxIdAction, - FlowActionStripeAddTaxIdParams, - + FlowActionStripeAddTaxIdType, - FlowActionStripeAddress, - FlowActionStripeCreateCustomer, - + FlowActionStripeCreateCustomerAction, - FlowActionStripeCreateCustomerParams, - + FlowActionStripeCreateCustomerType, - FlowActionStripeCreatePortalSession, - + FlowActionStripeCreatePortalSessionAction, - FlowActionStripeCreatePortalSessionParams, - + FlowActionStripeCreatePortalSessionType, - FlowActionStripeDeleteTaxId, - + FlowActionStripeDeleteTaxIdAction, - FlowActionStripeDeleteTaxIdParams, - + FlowActionStripeDeleteTaxIdType, - FlowActionStripeFindCustomers, - + FlowActionStripeFindCustomersAction, - FlowActionStripeFindCustomersParams, - + FlowActionStripeFindCustomersType, - FlowActionStripeGetCustomer, - + FlowActionStripeGetCustomerAction, - FlowActionStripeGetCustomerParams, - + FlowActionStripeGetCustomerType, - FlowActionStripeMetadata, - FlowActionStripeTaxId, - FlowActionStripeUpdateCustomer, - + FlowActionStripeUpdateCustomerAction, - FlowActionStripeUpdateCustomerParams, - + FlowActionStripeUpdateCustomerType, - FlowActionTelegram, - FlowActionTelegramSendMessage, - + FlowActionTelegramSendMessageAction, - FlowActionTelegramSendMessageParams, - + FlowActionTelegramSendMessageType, - FlowActionTwilio, - FlowActionTwilioMakeCall, - + FlowActionTwilioMakeCallAction, - FlowActionTwilioMakeCallParams, - + FlowActionTwilioMakeCallType, - FlowActionTwilioSendSms, - + FlowActionTwilioSendSmsAction, - FlowActionTwilioSendSmsParams, - + FlowActionTwilioSendSmsType, - FlowActionWhatsapp, - FlowActionWhatsappSendMessage, - + FlowActionWhatsappSendMessageAction, - FlowActionWhatsappSendMessageParams, - FlowActionWhatsappSendMessageParamsPayload, - FlowActionWhatsappSendMessageParamsPayloadObject, - FlowActionWhatsappSendMessageParamsType, - + FlowActionWhatsappSendMessageType, - FlowActionXml, - FlowActionXmlParseXml, - + FlowActionXmlParseXmlAction, - FlowActionXmlParseXmlParams, - + FlowActionXmlParseXmlType, - FlowActionXmlSerializeXml, - + FlowActionXmlSerializeXmlAction, - FlowActionXmlSerializeXmlParams, - FlowActionXmlSerializeXmlParamsObject, - FlowActionXmlSerializeXmlParamsObjectObject, - + FlowActionXmlSerializeXmlType, - FlowActionZapier, - FlowActionZapierTriggerWebhook, - + FlowActionZapierTriggerWebhookAction, - FlowActionZapierTriggerWebhookParams, - FlowActionZapierTriggerWebhookParamsMethod, - + FlowActionZapierTriggerWebhookType, - FlowExecutionDebug, - FlowExecutionSummary, - FlowSummary, - + FlowsVaultConnectioSetupApiKey, - + FlowsVaultConnectioSetupApiKeyWithBaseUrl, - + FlowsVaultConnectioSetupBigqueryOauthJwt, - + FlowsVaultConnectioSetupHttpBearer, - + FlowsVaultConnectioSetupJwt, - + FlowsVaultConnectioSetupJwtAlgorithmEnum, - + FlowsVaultConnectioSetupMailjetApiKey, - + FlowsVaultConnectioSetupOauthApp, - + FlowsVaultConnectioSetupOauthCode, - + FlowsVaultConnectioSetupSecretApiKey, - + FlowsVaultConnectioSetupStripeKeyPair, - + FlowsVaultConnectioSetupToken, - + FlowsVaultConnectioSetupTwilioApiKey, - + FlowsVaultConnectioSetupTypeApiKeyEnum, - + FlowsVaultConnectioSetupTypeBearerEnum, - + FlowsVaultConnectioSetupTypeJwtEnum, - + FlowsVaultConnectioSetupTypeKeyPairEnum, - + FlowsVaultConnectioSetupTypeOauthAppEnum, - + FlowsVaultConnectioSetupTypeOauthCodeEnum, - + FlowsVaultConnectioSetupTypeOauthJwtEnum, - + FlowsVaultConnectioSetupTypeTokenEnum, - + FlowsVaultConnectioSetupTypeWebhookEnum, - + FlowsVaultConnectioSetupWebhook, - + FlowsVaultConnectionAppIdActivecampaignEnum, - + FlowsVaultConnectionAppIdAirtableEnum, - + FlowsVaultConnectionAppIdAuth0Enum, - + FlowsVaultConnectionAppIdBigqueryEnum, - + FlowsVaultConnectionAppIdClearbitEnum, - + FlowsVaultConnectionAppIdDocusignEnum, - + FlowsVaultConnectionAppIdGoogleSheetsEnum, - + FlowsVaultConnectionAppIdHttpEnum, - + FlowsVaultConnectionAppIdHubspotEnum, - + FlowsVaultConnectionAppIdJwtEnum, - + FlowsVaultConnectionAppIdMailchimpEnum, - + FlowsVaultConnectionAppIdMailjetEnum, - + FlowsVaultConnectionAppIdPipedriveEnum, - + FlowsVaultConnectionAppIdSalesforceEnum, - + FlowsVaultConnectionAppIdSendgridEnum, - + FlowsVaultConnectionAppIdSlackEnum, - + FlowsVaultConnectionAppIdStripeEnum, - + FlowsVaultConnectionAppIdTelegramEnum, - + FlowsVaultConnectionAppIdTwilioEnum, - + FlowsVaultConnectionAppIdWhatsappEnum, - + FlowsVaultConnectionAppIdZapierEnum, - + FlowsVaultConnectionHttpApiKeySetup, - + FlowsVaultConnectionHttpApiKeySetupInEnum, - + FlowsVaultConnectionHttpBasicAuthSetup, - + FlowsVaultConnectionHttpOauthClientCredentialsSetup, - + FlowsVaultConnectionSetupTypeApiKeyEnum, - + FlowsVaultConnectionSetupTypeBasicAuthEnum, - + FlowsVaultConnectionSetupTypeOauthClientCredentialsEnum, - + FlowsVaultConnectionSummary, - FormBlock, - FormBlockDivider, - FormBlockDividerConfig, - @@ -693,35 +2023,51 @@ if typing.TYPE_CHECKING: - FormWidgetTypeRecaptchaConst, - FormsRequestParametersHydrateEnum, - GetActionExecutionResponseContent, - + GetActionModuleActionsResponseContent, - + GetActionModuleResponseContent, - + GetActionModuleVersionResponseContent, - + GetActionModuleVersionsResponseContent, - + GetActionModulesResponseContent, - GetActionResponseContent, - GetActionVersionResponseContent, - GetActiveUsersCountStatsResponseContent, - GetAculResponseContent, - + GetAttackProtectionCaptchaResponseContent, - + GetBotDetectionSettingsResponseContent, - GetBrandingDefaultThemeResponseContent, - GetBrandingPhoneProviderResponseContent, - GetBrandingResponseContent, - GetBrandingThemeResponseContent, - GetBreachedPasswordDetectionSettingsResponseContent, - GetBruteForceSettingsResponseContent, - - GetBruteForceSettingsResponseContentMode, - - GetBruteForceSettingsResponseContentShieldsItem, - GetClientCredentialResponseContent, - + GetClientGrantResponseContent, - GetClientResponseContent, - GetConnectionEnabledClientsResponseContent, - + GetConnectionProfileResponseContent, - + GetConnectionProfileTemplateResponseContent, - GetConnectionResponseContent, - GetCustomDomainResponseContent, - GetCustomSigningKeysResponseContent, - GetCustomTextsByLanguageResponseContent, - + GetDefaultCanonicalDomainResponseContent, - + GetDefaultCustomDomainResponseContent, - + GetDefaultDomainResponseContent, - + GetDirectoryProvisioningDefaultMappingResponseContent, - + GetDirectoryProvisioningResponseContent, - GetEmailProviderResponseContent, - GetEmailTemplateResponseContent, - GetEncryptionKeyResponseContent, - GetEventStreamDeliveryHistoryResponseContent, - GetEventStreamResponseContent, - - GetEventStreamStatsResponseContent, - + GetFlowExecutionRequestParametersHydrateEnum, - GetFlowExecutionResponseContent, - GetFlowRequestParametersHydrateEnum, - GetFlowResponseContent, - + GetFlowsVaultConnectionResponseContent, - GetFormResponseContent, - + GetGroupMembersResponseContent, - + GetGroupResponseContent, - GetGuardianEnrollmentResponseContent, - GetGuardianFactorDuoSettingsResponseContent, - GetGuardianFactorPhoneMessageTypesResponseContent, - @@ -740,18 +2086,25 @@ if typing.TYPE_CHECKING: - GetJobGenericErrorResponseContent, - GetJobImportUserError, - GetJobResponseContent, - + GetJobSummary, - GetJobUserError, - GetLogResponseContent, - GetLogStreamResponseContent, - GetNetworkAclsResponseContent, - + GetOrganizationAllConnectionResponseContent, - GetOrganizationByNameResponseContent, - GetOrganizationConnectionResponseContent, - + GetOrganizationDiscoveryDomainByNameResponseContent, - + GetOrganizationDiscoveryDomainResponseContent, - GetOrganizationInvitationResponseContent, - GetOrganizationResponseContent, - GetPartialsResponseContent, - GetPhoneTemplateResponseContent, - GetRefreshTokenResponseContent, - + GetRefreshTokensPaginatedResponseContent, - GetResourceServerResponseContent, - + GetRiskAssessmentsSettingsNewDeviceResponseContent, - + GetRiskAssessmentsSettingsResponseContent, - GetRoleResponseContent, - GetRuleResponseContent, - GetScimConfigurationDefaultMappingResponseContent, - @@ -767,9 +2120,16 @@ if typing.TYPE_CHECKING: - GetTokenExchangeProfileResponseContent, - GetUniversalLoginTemplate, - GetUniversalLoginTemplateResponseContent, - + GetUserAttributeProfileResponseContent, - + GetUserAttributeProfileTemplateResponseContent, - GetUserAuthenticationMethodResponseContent, - + GetUserGroupsPaginatedResponseContent, - GetUserResponseContent, - GetVerifiableCredentialTemplateResponseContent, - + Group, - + GroupMember, - + GroupMemberTypeEnum, - + GroupTypeEnum, - GuardianEnrollmentDate, - GuardianEnrollmentFactorEnum, - GuardianEnrollmentStatus, - @@ -784,6 +2144,7 @@ if typing.TYPE_CHECKING: - HttpCustomHeader, - Identity, - IdentityProviderEnum, - + IdentityProviderOnlyAuth0Enum, - ImportEncryptionKeyResponseContent, - Integration, - IntegrationFeatureTypeEnum, - @@ -793,29 +2154,40 @@ if typing.TYPE_CHECKING: - IntegrationRequiredParamTypeEnum, - IntegrationSemVer, - JobFileFormatEnum, - + LinkedClientConfiguration, - ListActionBindingsPaginatedResponseContent, - ListActionTriggersResponseContent, - ListActionVersionsPaginatedResponseContent, - ListActionsPaginatedResponseContent, - ListAculsOffsetPaginatedResponseContent, - + ListAculsResponseContentItem, - ListBrandingPhoneProvidersResponseContent, - ListClientConnectionsResponseContent, - ListClientGrantOrganizationsPaginatedResponseContent, - ListClientGrantPaginatedResponseContent, - ListClientsOffsetPaginatedResponseContent, - + ListConnectionProfileTemplateResponseContent, - + ListConnectionProfilesPaginatedResponseContent, - ListConnectionsCheckpointPaginatedResponseContent, - ListCustomDomainsResponseContent, - ListDeviceCredentialsOffsetPaginatedResponseContent, - + ListDirectoryProvisioningsResponseContent, - ListEncryptionKeyOffsetPaginatedResponseContent, - + ListEventStreamsResponseContent, - ListFlowExecutionsPaginatedResponseContent, - ListFlowsOffsetPaginatedResponseContent, - + ListFlowsRequestParametersHydrateEnum, - + ListFlowsVaultConnectionsOffsetPaginatedResponseContent, - ListFormsOffsetPaginatedResponseContent, - + ListGroupsPaginatedResponseContent, - ListGuardianPoliciesResponseContent, - ListHooksOffsetPaginatedResponseContent, - ListLogOffsetPaginatedResponseContent, - ListNetworkAclsOffsetPaginatedResponseContent, - + ListOrganizationAllConnectionsOffsetPaginatedResponseContent, - ListOrganizationClientGrantsOffsetPaginatedResponseContent, - ListOrganizationConnectionsOffsetPaginatedResponseContent, - + ListOrganizationDiscoveryDomainsResponseContent, - ListOrganizationInvitationsOffsetPaginatedResponseContent, - ListOrganizationMemberRolesOffsetPaginatedResponseContent, - ListOrganizationMembersPaginatedResponseContent, - @@ -827,12 +2199,17 @@ if typing.TYPE_CHECKING: - ListRoleUsersPaginatedResponseContent, - ListRolesOffsetPaginatedResponseContent, - ListRulesOffsetPaginatedResponseContent, - + ListScimConfigurationsResponseContent, - ListSelfServiceProfileCustomTextResponseContent, - ListSelfServiceProfilesPaginatedResponseContent, - + ListSynchronizedGroupsResponseContent, - ListTokenExchangeProfileResponseContent, - + ListUserAttributeProfileTemplateResponseContent, - + ListUserAttributeProfilesPaginatedResponseContent, - ListUserAuthenticationMethodsOffsetPaginatedResponseContent, - ListUserBlocksByIdentifierResponseContent, - ListUserBlocksResponseContent, - + ListUserConnectedAccountsResponseContent, - ListUserGrantsOffsetPaginatedResponseContent, - ListUserOrganizationsOffsetPaginatedResponseContent, - ListUserPermissionsOffsetPaginatedResponseContent, - @@ -901,6 +2278,8 @@ if typing.TYPE_CHECKING: - NetworkAclActionLogEnum, - NetworkAclActionRedirectEnum, - NetworkAclMatch, - + NetworkAclMatchConnectingIpv4Cidr, - + NetworkAclMatchConnectingIpv6Cidr, - NetworkAclMatchIpv4Cidr, - NetworkAclMatchIpv6Cidr, - NetworkAclRule, - @@ -909,11 +2288,15 @@ if typing.TYPE_CHECKING: - OauthScope, - Organization, - OrganizationAccessLevelEnum, - + OrganizationAccessLevelEnumWithNull, - + OrganizationAllConnectionPost, - OrganizationBranding, - OrganizationBrandingColors, - OrganizationClientGrant, - OrganizationConnection, - OrganizationConnectionInformation, - + OrganizationDiscoveryDomain, - + OrganizationDiscoveryDomainStatus, - OrganizationEnabledConnection, - OrganizationInvitation, - OrganizationInvitationInvitee, - @@ -924,6 +2307,12 @@ if typing.TYPE_CHECKING: - OrganizationUsageEnum, - PartialGroupsEnum, - PartialPhoneTemplateContent, - + PasswordCharacterTypeEnum, - + PasswordCharacterTypeRulePolicyEnum, - + PasswordDefaultDictionariesEnum, - + PasswordIdenticalCharactersPolicyEnum, - + PasswordMaxLengthExceededPolicyEnum, - + PasswordSequentialCharactersPolicyEnum, - PatchClientCredentialResponseContent, - PatchSupplementalSignalsResponseContent, - PermissionRequestPayload, - @@ -940,9 +2329,12 @@ if typing.TYPE_CHECKING: - PhoneTemplateContent, - PhoneTemplateNotificationTypeEnum, - PostClientCredentialResponseContent, - + PostConnectionKeysAlgEnum, - + PostConnectionKeysRequestContent, - + PostConnectionsKeysResponseContent, - + PostConnectionsKeysResponseContentItem, - PreferredAuthenticationMethodEnum, - - PrivateKeyJwt, - - PrivateKeyJwtCredentials, - + PreviewCimdMetadataResponseContent, - PromptGroupNameEnum, - PromptLanguageEnum, - PublicKeyCredential, - @@ -952,18 +2344,27 @@ if typing.TYPE_CHECKING: - RefreshTokenDateObject, - RefreshTokenDevice, - RefreshTokenExpirationTypeEnum, - + RefreshTokenMetadata, - RefreshTokenResourceServer, - RefreshTokenResponseContent, - RefreshTokenRotationTypeEnum, - RefreshTokenSessionId, - RegenerateUsersRecoveryCodeResponseContent, - + RegisterCimdClientResponseContent, - ResetPhoneTemplateRequestContent, - ResetPhoneTemplateResponseContent, - ResourceServer, - + ResourceServerAuthorizationPolicy, - ResourceServerConsentPolicyEnum, - ResourceServerProofOfPossession, - ResourceServerProofOfPossessionMechanismEnum, - + ResourceServerProofOfPossessionRequiredForEnum, - ResourceServerScope, - + ResourceServerSubjectTypeAuthorization, - + ResourceServerSubjectTypeAuthorizationClient, - + ResourceServerSubjectTypeAuthorizationClientPolicyEnum, - + ResourceServerSubjectTypeAuthorizationUser, - + ResourceServerSubjectTypeAuthorizationUserPolicyEnum, - ResourceServerTokenDialectResponseEnum, - ResourceServerTokenDialectSchemaEnum, - ResourceServerTokenEncryption, - @@ -974,6 +2375,7 @@ if typing.TYPE_CHECKING: - RevokedSigningKeysResponseContent, - Role, - RoleUser, - + RollbackActionModuleResponseContent, - RotateClientSecretResponseContent, - RotateConnectionKeysRequestContent, - RotateConnectionKeysSigningAlgEnum, - @@ -981,6 +2383,7 @@ if typing.TYPE_CHECKING: - RotateSigningKeysResponseContent, - Rule, - RulesConfig, - + ScimConfiguration, - ScimMappingItem, - ScimTokenItem, - ScreenGroupNameEnum, - @@ -997,7 +2400,9 @@ if typing.TYPE_CHECKING: - SelfServiceProfileSsoTicketConnectionOptions, - SelfServiceProfileSsoTicketDomainAliasesConfig, - SelfServiceProfileSsoTicketDomainVerificationEnum, - + SelfServiceProfileSsoTicketEnabledFeatures, - SelfServiceProfileSsoTicketEnabledOrganization, - + SelfServiceProfileSsoTicketGoogleWorkspaceConfig, - SelfServiceProfileSsoTicketIdpInitiatedClientProtocolEnum, - SelfServiceProfileSsoTicketIdpInitiatedOptions, - SelfServiceProfileSsoTicketProvisioningConfig, - @@ -1014,6 +2419,7 @@ if typing.TYPE_CHECKING: - SessionDate, - SessionDeviceMetadata, - SessionIp, - + SessionMetadata, - SessionResponseContent, - SetCustomSigningKeysResponseContent, - SetEmailTemplateResponseContent, - @@ -1024,11 +2430,8 @@ if typing.TYPE_CHECKING: - SetGuardianFactorSmsTemplatesResponseContent, - SetGuardianFactorsProviderPhoneResponseContent, - SetGuardianFactorsProviderPhoneTwilioResponseContent, - - SetGuardianFactorsProviderPushNotificationApnsRequestContent, - SetGuardianFactorsProviderPushNotificationApnsResponseContent, - - SetGuardianFactorsProviderPushNotificationFcmRequestContent, - SetGuardianFactorsProviderPushNotificationFcmResponseContent, - - SetGuardianFactorsProviderPushNotificationFcmv1RequestContent, - SetGuardianFactorsProviderPushNotificationFcmv1ResponseContent, - SetGuardianFactorsProviderPushNotificationResponseContent, - SetGuardianFactorsProviderPushNotificationSnsResponseContent, - @@ -1059,15 +2462,20 @@ if typing.TYPE_CHECKING: - SuspiciousIpThrottlingPreUserRegistrationStage, - SuspiciousIpThrottlingShieldsEnum, - SuspiciousIpThrottlingStage, - + SynchronizeGroupsEnum, - + SynchronizedGroupPayload, - TenantOidcLogoutSettings, - TenantSettingsDeviceFlow, - TenantSettingsDeviceFlowCharset, - + TenantSettingsDynamicClientRegistrationSecurityMode, - TenantSettingsErrorPage, - TenantSettingsFlags, - TenantSettingsGuardianPage, - TenantSettingsMtls, - TenantSettingsPasswordPage, - + TenantSettingsResourceParameterProfile, - TenantSettingsSessions, - + TenantSettingsSupportedLocalesEnum, - TestActionPayload, - TestActionResponseContent, - TestActionResultPayload, - @@ -1083,54 +2491,151 @@ if typing.TYPE_CHECKING: - TwilioProviderDeliveryMethodEnum, - UniversalLoginExperienceEnum, - UpdateActionBindingsResponseContent, - + UpdateActionModuleResponseContent, - UpdateActionResponseContent, - UpdateAculResponseContent, - + UpdateAttackProtectionCaptchaResponseContent, - + UpdateBotDetectionSettingsResponseContent, - UpdateBrandingColors, - UpdateBrandingFont, - + UpdateBrandingIdentifiers, - + UpdateBrandingLoginDisplayEnum, - UpdateBrandingPageBackground, - + UpdateBrandingPhoneDisplay, - + UpdateBrandingPhoneFormattingEnum, - + UpdateBrandingPhoneMaskingEnum, - UpdateBrandingPhoneProviderResponseContent, - UpdateBrandingResponseContent, - UpdateBrandingThemeResponseContent, - UpdateBreachedPasswordDetectionSettingsResponseContent, - UpdateBruteForceSettingsResponseContent, - - UpdateBruteForceSettingsResponseContentMode, - - UpdateBruteForceSettingsResponseContentShieldsItem, - UpdateClientGrantResponseContent, - UpdateClientResponseContent, - UpdateConnectionOptions, - + UpdateConnectionProfileResponseContent, - + UpdateConnectionRequestContentAd, - + UpdateConnectionRequestContentAdfs, - + UpdateConnectionRequestContentAmazon, - + UpdateConnectionRequestContentApple, - + UpdateConnectionRequestContentAuth0, - + UpdateConnectionRequestContentAuth0Oidc, - + UpdateConnectionRequestContentAzureAd, - + UpdateConnectionRequestContentBaidu, - + UpdateConnectionRequestContentBitbucket, - + UpdateConnectionRequestContentBitly, - + UpdateConnectionRequestContentBox, - + UpdateConnectionRequestContentCustom, - + UpdateConnectionRequestContentDaccount, - + UpdateConnectionRequestContentDropbox, - + UpdateConnectionRequestContentDwolla, - + UpdateConnectionRequestContentEmail, - + UpdateConnectionRequestContentEvernote, - + UpdateConnectionRequestContentEvernoteSandbox, - + UpdateConnectionRequestContentExact, - + UpdateConnectionRequestContentFacebook, - + UpdateConnectionRequestContentFitbit, - + UpdateConnectionRequestContentGitHub, - + UpdateConnectionRequestContentGoogleApps, - + UpdateConnectionRequestContentGoogleOAuth2, - + UpdateConnectionRequestContentInstagram, - + UpdateConnectionRequestContentIp, - + UpdateConnectionRequestContentLine, - + UpdateConnectionRequestContentLinkedin, - + UpdateConnectionRequestContentOAuth1, - + UpdateConnectionRequestContentOAuth2, - + UpdateConnectionRequestContentOffice365, - + UpdateConnectionRequestContentOidc, - + UpdateConnectionRequestContentOkta, - + UpdateConnectionRequestContentPaypal, - + UpdateConnectionRequestContentPaypalSandbox, - + UpdateConnectionRequestContentPingFederate, - + UpdateConnectionRequestContentPlanningCenter, - + UpdateConnectionRequestContentSalesforce, - + UpdateConnectionRequestContentSalesforceCommunity, - + UpdateConnectionRequestContentSalesforceSandbox, - + UpdateConnectionRequestContentSaml, - + UpdateConnectionRequestContentSharepoint, - + UpdateConnectionRequestContentShop, - + UpdateConnectionRequestContentShopify, - + UpdateConnectionRequestContentSms, - + UpdateConnectionRequestContentSoundcloud, - + UpdateConnectionRequestContentThirtySevenSignals, - + UpdateConnectionRequestContentTwitter, - + UpdateConnectionRequestContentUntappd, - + UpdateConnectionRequestContentVkontakte, - + UpdateConnectionRequestContentWeibo, - + UpdateConnectionRequestContentWindowsLive, - + UpdateConnectionRequestContentWordpress, - + UpdateConnectionRequestContentYahoo, - + UpdateConnectionRequestContentYandex, - UpdateConnectionResponseContent, - UpdateCustomDomainResponseContent, - + UpdateDefaultCanonicalDomainResponseContent, - + UpdateDefaultCustomDomainResponseContent, - + UpdateDefaultDomainResponseContent, - + UpdateDirectoryProvisioningRequestContent, - + UpdateDirectoryProvisioningResponseContent, - UpdateEmailProviderResponseContent, - UpdateEmailTemplateResponseContent, - UpdateEnabledClientConnectionsRequestContent, - UpdateEnabledClientConnectionsRequestContentItem, - UpdateEventStreamResponseContent, - UpdateFlowResponseContent, - + UpdateFlowsVaultConnectionResponseContent, - + UpdateFlowsVaultConnectionSetup, - UpdateFormResponseContent, - UpdateGuardianFactorDuoSettingsResponseContent, - + UpdateGuardianFactorsProviderPushNotificationApnsResponseContent, - + UpdateGuardianFactorsProviderPushNotificationFcmResponseContent, - + UpdateGuardianFactorsProviderPushNotificationFcmv1ResponseContent, - UpdateGuardianFactorsProviderPushNotificationSnsResponseContent, - UpdateHookResponseContent, - UpdateHookSecretRequestContent, - UpdateLogStreamResponseContent, - UpdateNetworkAclResponseContent, - + UpdateOrganizationAllConnectionResponseContent, - UpdateOrganizationConnectionResponseContent, - + UpdateOrganizationDiscoveryDomainResponseContent, - UpdateOrganizationResponseContent, - UpdatePhoneTemplateResponseContent, - + UpdateRefreshTokenResponseContent, - UpdateResourceServerResponseContent, - + UpdateRiskAssessmentsSettingsNewDeviceResponseContent, - + UpdateRiskAssessmentsSettingsResponseContent, - UpdateRoleResponseContent, - UpdateRuleResponseContent, - UpdateScimConfigurationResponseContent, - UpdateSelfServiceProfileResponseContent, - + UpdateSessionResponseContent, - UpdateSettingsResponseContent, - UpdateSuspiciousIpThrottlingSettingsResponseContent, - UpdateTenantSettingsResponseContent, - UpdateTokenQuota, - UpdateUniversalLoginTemplateRequestContent, - UpdateUniversalLoginTemplateRequestContentTemplate, - + UpdateUserAttributeProfileResponseContent, - UpdateUserAuthenticationMethodResponseContent, - UpdateUserResponseContent, - UpdateVerifiableCredentialTemplateResponseContent, - UserAppMetadataSchema, - + UserAttributeProfile, - + UserAttributeProfileId, - + UserAttributeProfileName, - + UserAttributeProfileOidcMapping, - + UserAttributeProfilePatchUserId, - + UserAttributeProfileSamlMapping, - + UserAttributeProfileStrategyOverrides, - + UserAttributeProfileStrategyOverridesMapping, - + UserAttributeProfileStrategyOverridesUserId, - + UserAttributeProfileStrategyOverridesUserIdMapping, - + UserAttributeProfileTemplate, - + UserAttributeProfileTemplateItem, - + UserAttributeProfileUserAttributeAdditionalProperties, - + UserAttributeProfileUserAttributes, - + UserAttributeProfileUserId, - + UserAttributeProfileUserIdOidcMappingEnum, - + UserAttributeProfileUserIdOidcStrategyOverrideMapping, - + UserAttributeProfileUserIdSamlMapping, - UserAuthenticationMethod, - UserAuthenticationMethodProperties, - UserAuthenticationMethodPropertiesEnum, - @@ -1139,7 +2644,8 @@ if typing.TYPE_CHECKING: - UserEnrollmentAuthMethodEnum, - UserEnrollmentStatusEnum, - UserGrant, - - UserIdEnum, - + UserGroupsResponseSchema, - + UserId, - UserIdentity, - UserIdentityProviderEnum, - UserIdentitySchema, - @@ -1158,15 +2664,19 @@ if typing.TYPE_CHECKING: - VerificationMethodEnum, - VerifyCustomDomainResponseContent, - VerifyEmailTicketResponseContent, - + X509CertificateCredential, - + X509CertificateCredentialTypeEnum, - ) - from .errors import ( - BadRequestError, - ConflictError, - ContentTooLargeError, - ForbiddenError, - + GoneError, - InternalServerError, - NotFoundError, - PaymentRequiredError, - + PreconditionFailedError, - ServiceUnavailableError, - TooManyRequestsError, - UnauthorizedError, - @@ -1178,14 +2688,17 @@ if typing.TYPE_CHECKING: - branding, - client_grants, - clients, - + connection_profiles, - connections, - custom_domains, - device_credentials, - email_templates, - emails, - event_streams, - + events, - flows, - forms, - + groups, - guardian, - hooks, - jobs, - @@ -1197,6 +2710,7 @@ if typing.TYPE_CHECKING: - prompts, - refresh_tokens, - resource_servers, - + risk_assessments, - roles, - rules, - rules_configs, - @@ -1207,16 +2721,19 @@ if typing.TYPE_CHECKING: - tenants, - tickets, - token_exchange_profiles, - + user_attribute_profiles, - user_blocks, - user_grants, - users, - verifiable_credentials, - ) - + from ._default_clients import DefaultAioHttpClient, DefaultAsyncHttpxClient - from .client import AsyncAuth0, Auth0 + @@ -2741,6 +2741,8 @@ if typing.TYPE_CHECKING: from .environment import Auth0Environment from .event_streams import EventStreamsCreateRequest - - from .management_client import AsyncManagementClient, CustomDomainHeader, ManagementClient from .version import __version__ + from .management_client import AsyncManagementClient, CustomDomainHeader, ManagementClient + from .token_provider import AsyncTokenProvider, TokenProvider _dynamic_imports: typing.Dict[str, str] = { "Action": ".types", "ActionBase": ".types", - @@ -1230,6 +2747,15 @@ _dynamic_imports: typing.Dict[str, str] = { - "ActionError": ".types", - "ActionExecutionResult": ".types", - "ActionExecutionStatusEnum": ".types", - + "ActionModuleAction": ".types", - + "ActionModuleDependency": ".types", - + "ActionModuleDependencyRequest": ".types", - + "ActionModuleListItem": ".types", - + "ActionModuleReference": ".types", - + "ActionModuleSecret": ".types", - + "ActionModuleSecretRequest": ".types", - + "ActionModuleVersion": ".types", - + "ActionModuleVersionReference": ".types", - "ActionSecretRequest": ".types", - "ActionSecretResponse": ".types", - "ActionTrigger": ".types", - @@ -1239,33 +2765,75 @@ _dynamic_imports: typing.Dict[str, str] = { - "ActionVersionBuildStatusEnum": ".types", - "ActionVersionDependency": ".types", - "AculClientFilter": ".types", - + "AculClientFilterById": ".types", - + "AculClientFilterByMetadata": ".types", - "AculClientMetadata": ".types", - + "AculConfigs": ".types", - + "AculConfigsItem": ".types", - + "AculContextConfiguration": ".types", - + "AculContextConfigurationItem": ".types", - + "AculContextEnum": ".types", - "AculDomainFilter": ".types", - + "AculDomainFilterById": ".types", - + "AculDomainFilterByMetadata": ".types", - "AculDomainMetadata": ".types", - "AculFilters": ".types", - "AculHeadTag": ".types", - "AculHeadTagAttributes": ".types", - + "AculHeadTagContent": ".types", - "AculMatchTypeEnum": ".types", - "AculOrganizationFilter": ".types", - + "AculOrganizationFilterById": ".types", - + "AculOrganizationFilterByMetadata": ".types", - "AculOrganizationMetadata": ".types", - "AculRenderingModeEnum": ".types", - - "AculResponseContent": ".types", - "AddOrganizationConnectionResponseContent": ".types", - "AnomalyIpFormat": ".types", - "AppMetadata": ".types", - + "AssessorsTypeEnum": ".types", + @@ -2801,6 +2803,8 @@ _dynamic_imports: typing.Dict[str, str] = { "AssociateOrganizationClientGrantResponseContent": ".types", - + "AsyncApprovalNotificationsChannelsEnum": ".types", + "AsyncApprovalNotificationsChannelsEnum": ".types", "AsyncAuth0": ".client", - "AsyncManagementClient": ".management_client", - "AsyncTokenProvider": ".token_provider", - + "AttackProtectionCaptchaArkoseResponseContent": ".types", - + "AttackProtectionCaptchaAuthChallengeRequest": ".types", - + "AttackProtectionCaptchaAuthChallengeResponseContent": ".types", - + "AttackProtectionCaptchaFriendlyCaptchaResponseContent": ".types", - + "AttackProtectionCaptchaHcaptchaResponseContent": ".types", - + "AttackProtectionCaptchaProviderId": ".types", - + "AttackProtectionCaptchaRecaptchaEnterpriseResponseContent": ".types", - + "AttackProtectionCaptchaRecaptchaV2ResponseContent": ".types", - + "AttackProtectionCaptchaSimpleCaptchaResponseContent": ".types", - + "AttackProtectionUpdateCaptchaArkose": ".types", - + "AttackProtectionUpdateCaptchaFriendlyCaptcha": ".types", - + "AttackProtectionUpdateCaptchaHcaptcha": ".types", - + "AttackProtectionUpdateCaptchaRecaptchaEnterprise": ".types", - + "AttackProtectionUpdateCaptchaRecaptchaV2": ".types", - "Auth0": ".client", - "Auth0Environment": ".environment", - - "ManagementClient": ".management_client", - "AuthenticationMethodTypeEnum": ".types", - "AuthenticationTypeEnum": ".types", - "BadRequestError": ".errors", - + "BotDetectionAllowlist": ".types", - + "BotDetectionChallengePolicyPasswordFlowEnum": ".types", - + "BotDetectionChallengePolicyPasswordResetFlowEnum": ".types", - + "BotDetectionChallengePolicyPasswordlessFlowEnum": ".types", - + "BotDetectionCidrBlock": ".types", - + "BotDetectionIPv4": ".types", - + "BotDetectionIPv6": ".types", - + "BotDetectionIPv6CidrBlock": ".types", - + "BotDetectionIpAddressOrCidrBlock": ".types", - + "BotDetectionLevelEnum": ".types", - + "BotDetectionMonitoringModeEnabled": ".types", - "BrandingColors": ".types", - "BrandingFont": ".types", - + "BrandingIdentifiers": ".types", - + "BrandingLoginDisplayEnum": ".types", - "BrandingPageBackground": ".types", - + "BrandingPhoneDisplay": ".types", - + "BrandingPhoneFormattingEnum": ".types", - + "BrandingPhoneMaskingEnum": ".types", - "BrandingThemeBorders": ".types", - "BrandingThemeBordersButtonsStyleEnum": ".types", - "BrandingThemeBordersInputsStyleEnum": ".types", - @@ -1293,7 +2861,18 @@ _dynamic_imports: typing.Dict[str, str] = { - "BreachedPasswordDetectionPreUserRegistrationStage": ".types", - "BreachedPasswordDetectionShieldsEnum": ".types", - "BreachedPasswordDetectionStage": ".types", - + "BruteForceProtectionModeEnum": ".types", - + "BruteForceProtectionShieldsEnum": ".types", - + "BulkUpdateAculResponseContent": ".types", - + "CertificateSubjectDnCredential": ".types", - + "CertificateSubjectDnCredentialTypeEnum": ".types", - + "ChangePasswordTicketIdentity": ".types", - "ChangePasswordTicketResponseContent": ".types", - + "CimdMappedClientAuthenticationMethods": ".types", - + "CimdMappedClientAuthenticationMethodsPrivateKeyJwt": ".types", - + "CimdMappedClientFields": ".types", - + "CimdMappedPrivateKeyJwtCredential": ".types", - + "CimdValidationResult": ".types", - "Client": ".types", - "ClientAddonAws": ".types", - "ClientAddonAzureBlob": ".types", - @@ -1329,59 +2908,336 @@ _dynamic_imports: typing.Dict[str, str] = { - "ClientAddonZoom": ".types", - "ClientAddons": ".types", - "ClientAppTypeEnum": ".types", - + "ClientAsyncApprovalNotificationsChannelsApiPatchConfiguration": ".types", - + "ClientAsyncApprovalNotificationsChannelsApiPostConfiguration": ".types", - "ClientAuthenticationMethod": ".types", - + "ClientAuthenticationMethodPrivateKeyJwt": ".types", - + "ClientAuthenticationMethodPrivateKeyJwtCredentials": ".types", - "ClientAuthenticationMethodSelfSignedTlsClientAuth": ".types", - + "ClientAuthenticationMethodSelfSignedTlsClientAuthCredentials": ".types", - "ClientAuthenticationMethodTlsClientAuth": ".types", - + "ClientAuthenticationMethodTlsClientAuthCredentials": ".types", - "ClientComplianceLevelEnum": ".types", - "ClientCreateAuthenticationMethod": ".types", - + "ClientCreateAuthenticationMethodPrivateKeyJwt": ".types", - + "ClientCreateAuthenticationMethodPrivateKeyJwtCredentials": ".types", - + "ClientCreateAuthenticationMethodTlsClientAuth": ".types", - + "ClientCreateAuthenticationMethodTlsClientAuthCredentials": ".types", - "ClientCredential": ".types", - "ClientCredentialAlgorithmEnum": ".types", - "ClientCredentialTypeEnum": ".types", - "ClientDefaultOrganization": ".types", - "ClientDefaultOrganizationFlowsEnum": ".types", - "ClientEncryptionKey": ".types", - + "ClientExternalMetadataCreatedByEnum": ".types", - + "ClientExternalMetadataTypeEnum": ".types", - "ClientGrantAllowAnyOrganizationEnum": ".types", - + "ClientGrantDefaultForEnum": ".types", - "ClientGrantOrganizationNullableUsageEnum": ".types", - "ClientGrantOrganizationUsageEnum": ".types", - "ClientGrantResponseContent": ".types", - + "ClientGrantSubjectTypeEnum": ".types", - "ClientJwtConfiguration": ".types", - "ClientJwtConfigurationScopes": ".types", - "ClientMetadata": ".types", - "ClientMobile": ".types", - "ClientMobileAndroid": ".types", - "ClientMobileiOs": ".types", - + "ClientMyOrganizationConfigurationAllowedStrategiesEnum": ".types", - + "ClientMyOrganizationDeletionBehaviorEnum": ".types", - + "ClientMyOrganizationPatchConfiguration": ".types", - + "ClientMyOrganizationPostConfiguration": ".types", - + "ClientMyOrganizationResponseConfiguration": ".types", - "ClientOidcBackchannelLogoutInitiators": ".types", - "ClientOidcBackchannelLogoutInitiatorsEnum": ".types", - "ClientOidcBackchannelLogoutInitiatorsModeEnum": ".types", - + "ClientOidcBackchannelLogoutSessionMetadata": ".types", - "ClientOidcBackchannelLogoutSettings": ".types", - + "ClientOrganizationDiscoveryEnum": ".types", - "ClientOrganizationRequireBehaviorEnum": ".types", - "ClientOrganizationRequireBehaviorPatchEnum": ".types", - "ClientOrganizationUsageEnum": ".types", - "ClientOrganizationUsagePatchEnum": ".types", - + "ClientRedirectionPolicyEnum": ".types", - "ClientRefreshTokenConfiguration": ".types", - + "ClientRefreshTokenPolicy": ".types", - "ClientSessionTransferAllowedAuthenticationMethodsEnum": ".types", - "ClientSessionTransferConfiguration": ".types", - + "ClientSessionTransferDelegationConfiguration": ".types", - + "ClientSessionTransferDelegationDeviceBindingEnum": ".types", - "ClientSessionTransferDeviceBindingEnum": ".types", - "ClientSignedRequestObjectWithCredentialId": ".types", - "ClientSignedRequestObjectWithPublicKey": ".types", - "ClientSigningKey": ".types", - "ClientSigningKeys": ".types", - + "ClientThirdPartySecurityModeEnum": ".types", - "ClientTokenEndpointAuthMethodEnum": ".types", - "ClientTokenEndpointAuthMethodOrNullEnum": ".types", - + "ClientTokenExchangeConfiguration": ".types", - + "ClientTokenExchangeConfigurationOrNull": ".types", - + "ClientTokenExchangeTypeEnum": ".types", - "ConflictError": ".errors", - + "ConnectedAccount": ".types", - + "ConnectedAccountAccessTypeEnum": ".types", - + "ConnectionAccessTokenUrloAuth1": ".types", - + "ConnectionAcrValuesSupported": ".types", - + "ConnectionAdminAccessTokenExpiresInGoogleApps": ".types", - + "ConnectionAdminAccessTokenGoogleApps": ".types", - + "ConnectionAdminRefreshTokenGoogleApps": ".types", - + "ConnectionAgentIpad": ".types", - + "ConnectionAgentModeAd": ".types", - + "ConnectionAgentVersionAd": ".types", - + "ConnectionAllowedAudiencesGoogleOAuth2": ".types", - + "ConnectionApiBehaviorEnum": ".types", - + "ConnectionApiEnableGroups": ".types", - + "ConnectionApiEnableGroupsGoogleApps": ".types", - + "ConnectionApiEnableUsers": ".types", - + "ConnectionApiEnableUsersGoogleApps": ".types", - + "ConnectionAppDomainAzureAd": ".types", - + "ConnectionAssertionDecryptionAlgorithmProfileEnum": ".types", - + "ConnectionAssertionDecryptionSettings": ".types", - "ConnectionAttributeIdentifier": ".types", - + "ConnectionAttributeMapAttributes": ".types", - + "ConnectionAttributeMapOidc": ".types", - + "ConnectionAttributeMapOkta": ".types", - + "ConnectionAttributeMapUserinfoScope": ".types", - "ConnectionAttributes": ".types", - + "ConnectionAuthParamsAdditionalPropertiesOAuth2": ".types", - + "ConnectionAuthParamsEmail": ".types", - + "ConnectionAuthParamsMap": ".types", - + "ConnectionAuthParamsOAuth2": ".types", - "ConnectionAuthenticationMethods": ".types", - + "ConnectionAuthenticationPurpose": ".types", - + "ConnectionAuthorizationEndpoint": ".types", - + "ConnectionBaseUrlExact": ".types", - + "ConnectionBruteForceProtection": ".types", - + "ConnectionCalculatedThumbprintSaml": ".types", - + "ConnectionCertsAd": ".types", - + "ConnectionClaimTypesSupported": ".types", - + "ConnectionClaimsLocalesSupported": ".types", - + "ConnectionClaimsParameterSupported": ".types", - + "ConnectionClaimsSupported": ".types", - + "ConnectionClientId": ".types", - + "ConnectionClientIdAmazon": ".types", - + "ConnectionClientIdAzureAd": ".types", - + "ConnectionClientIdBitbucket": ".types", - + "ConnectionClientIdExact": ".types", - + "ConnectionClientIdFacebook": ".types", - + "ConnectionClientIdGoogleApps": ".types", - + "ConnectionClientIdGoogleOAuth2": ".types", - + "ConnectionClientIdLine": ".types", - + "ConnectionClientIdLinkedin": ".types", - + "ConnectionClientIdOAuth1": ".types", - + "ConnectionClientIdOAuth2": ".types", - + "ConnectionClientIdOidc": ".types", - + "ConnectionClientIdPaypal": ".types", - + "ConnectionClientIdSalesforce": ".types", - + "ConnectionClientIdWindowsLive": ".types", - + "ConnectionClientProtocolSaml": ".types", - + "ConnectionClientSecret": ".types", - + "ConnectionClientSecretAmazon": ".types", - + "ConnectionClientSecretAzureAd": ".types", - + "ConnectionClientSecretBitbucket": ".types", - + "ConnectionClientSecretExact": ".types", - + "ConnectionClientSecretFacebook": ".types", - + "ConnectionClientSecretGoogleApps": ".types", - + "ConnectionClientSecretGoogleOAuth2": ".types", - + "ConnectionClientSecretLine": ".types", - + "ConnectionClientSecretLinkedin": ".types", - + "ConnectionClientSecretOAuth1": ".types", - + "ConnectionClientSecretOAuth2": ".types", - + "ConnectionClientSecretOidc": ".types", - + "ConnectionClientSecretPaypal": ".types", - + "ConnectionClientSecretSalesforce": ".types", - + "ConnectionClientSecretWindowsLive": ".types", - + "ConnectionCommon": ".types", - + "ConnectionCommunityBaseUrlSalesforce": ".types", - + "ConnectionConfiguration": ".types", - + "ConnectionConnectedAccountsPurpose": ".types", - + "ConnectionConnectedAccountsPurposeXaa": ".types", - + "ConnectionConnectionSettings": ".types", - + "ConnectionConnectionSettingsPkceEnum": ".types", - + "ConnectionCustomHeadersOAuth2": ".types", - "ConnectionCustomScripts": ".types", - + "ConnectionDebugSaml": ".types", - + "ConnectionDecryptionKeySaml": ".types", - + "ConnectionDecryptionKeySamlCert": ".types", - + "ConnectionDestinationUrlSaml": ".types", - + "ConnectionDigestAlgorithmEnumSaml": ".types", - + "ConnectionDigestAlgorithmSaml": ".types", - + "ConnectionDisableSelfServiceChangePassword": ".types", - + "ConnectionDisableSignup": ".types", - + "ConnectionDisableSignupSms": ".types", - + "ConnectionDiscoveryUrl": ".types", - + "ConnectionDisplayName": ".types", - + "ConnectionDisplayValuesSupported": ".types", - + "ConnectionDomainAliases": ".types", - + "ConnectionDomainAliasesAd": ".types", - + "ConnectionDomainAliasesAzureAd": ".types", - + "ConnectionDomainAliasesItemsOne": ".types", - + "ConnectionDomainAliasesSaml": ".types", - + "ConnectionDomainGoogleApps": ".types", - + "ConnectionDomainOkta": ".types", - + "ConnectionDpopSigningAlgEnum": ".types", - + "ConnectionDpopSigningAlgValuesSupported": ".types", - + "ConnectionEmailBodyEmail": ".types", - + "ConnectionEmailEmail": ".types", - + "ConnectionEmailEmailSyntax": ".types", - + "ConnectionEmailFromEmail": ".types", - + "ConnectionEmailOtpAuthenticationMethod": ".types", - + "ConnectionEmailSubjectEmail": ".types", - + "ConnectionEnableScriptContext": ".types", - "ConnectionEnabledClient": ".types", - + "ConnectionEnabledClients": ".types", - + "ConnectionEnabledDatabaseCustomization": ".types", - + "ConnectionEndSessionEndpoint": ".types", - + "ConnectionEntityIdSaml": ".types", - + "ConnectionExtAdmin": ".types", - + "ConnectionExtAgreedTerms": ".types", - + "ConnectionExtAgreedTermsGoogleApps": ".types", - + "ConnectionExtAssignedPlans": ".types", - + "ConnectionExtGroups": ".types", - + "ConnectionExtGroupsAzureAd": ".types", - + "ConnectionExtGroupsGoogleApps": ".types", - + "ConnectionExtIsAdminGoogleApps": ".types", - + "ConnectionExtIsSuspended": ".types", - + "ConnectionExtIsSuspendedGoogleApps": ".types", - + "ConnectionExtProfile": ".types", - + "ConnectionFederatedConnectionsAccessTokens": ".types", - + "ConnectionFieldsMap": ".types", - + "ConnectionFieldsMapSaml": ".types", - + "ConnectionFieldsMapSamlValue": ".types", - "ConnectionForList": ".types", - "ConnectionForOrganization": ".types", - + "ConnectionForwardReqInfoSms": ".types", - + "ConnectionFreeformScopesAmazon": ".types", - + "ConnectionFreeformScopesGoogleOAuth2": ".types", - + "ConnectionFreeformScopesLinkedin": ".types", - + "ConnectionFreeformScopesPaypal": ".types", - + "ConnectionFreeformScopesSalesforce": ".types", - + "ConnectionFreeformScopesWindowsLive": ".types", - + "ConnectionFromSms": ".types", - "ConnectionGatewayAuthentication": ".types", - + "ConnectionGatewayAuthenticationAudienceSms": ".types", - + "ConnectionGatewayAuthenticationMethodSms": ".types", - + "ConnectionGatewayAuthenticationSms": ".types", - + "ConnectionGatewayAuthenticationSubjectSms": ".types", - + "ConnectionGatewayUrlSms": ".types", - + "ConnectionGlobalTokenRevocationJwtIssSaml": ".types", - + "ConnectionGlobalTokenRevocationJwtSubSaml": ".types", - + "ConnectionGrantTypesSupported": ".types", - + "ConnectionHandleLoginFromSocialGoogleApps": ".types", - + "ConnectionHttpsUrlWithHttpFallback": ".types", - + "ConnectionHttpsUrlWithHttpFallback2048": ".types", - + "ConnectionHttpsUrlWithHttpFallback255": ".types", - + "ConnectionIconUrl": ".types", - + "ConnectionIconUrlAdfs": ".types", - + "ConnectionIconUrlAzureAd": ".types", - + "ConnectionIconUrlGoogleApps": ".types", - + "ConnectionIconUrlGoogleOAuth2": ".types", - + "ConnectionIconUrlSaml": ".types", - + "ConnectionId": ".types", - + "ConnectionIdTokenEncryptionAlgValuesSupported": ".types", - + "ConnectionIdTokenEncryptionEncValuesSupported": ".types", - + "ConnectionIdTokenSignedResponseAlgEnum": ".types", - + "ConnectionIdTokenSignedResponseAlgs": ".types", - + "ConnectionIdTokenSigningAlgValuesSupported": ".types", - + "ConnectionIdentifierPrecedence": ".types", - "ConnectionIdentifierPrecedenceEnum": ".types", - + "ConnectionIdentityApiAzureAd": ".types", - + "ConnectionIdentityApiEnumAzureAd": ".types", - "ConnectionIdentityProviderEnum": ".types", - + "ConnectionImportMode": ".types", - + "ConnectionIpsAd": ".types", - + "ConnectionIsDomainConnection": ".types", - + "ConnectionIssuer": ".types", - + "ConnectionJwksUri": ".types", - "ConnectionKey": ".types", - "ConnectionKeyUseEnum": ".types", - + "ConnectionMappingModeEnumOidc": ".types", - + "ConnectionMappingModeEnumOkta": ".types", - + "ConnectionMaxGroupsToRetrieve": ".types", - + "ConnectionMessagingServiceSidSms": ".types", - + "ConnectionMetadataUrlSaml": ".types", - + "ConnectionMetadataXml": ".types", - + "ConnectionMetadataXmlAdfs": ".types", - + "ConnectionMetadataXmlSaml": ".types", - + "ConnectionMfa": ".types", - + "ConnectionName": ".types", - + "ConnectionNamePrefixTemplate": ".types", - + "ConnectionNonPersistentAttrs": ".types", - + "ConnectionOpPolicyUri": ".types", - + "ConnectionOpTosUri": ".types", - "ConnectionOptions": ".types", - + "ConnectionOptionsAd": ".types", - + "ConnectionOptionsAdfs": ".types", - + "ConnectionOptionsAmazon": ".types", - + "ConnectionOptionsApple": ".types", - + "ConnectionOptionsAuth0": ".types", - + "ConnectionOptionsAuth0Oidc": ".types", - + "ConnectionOptionsAzureAd": ".types", - + "ConnectionOptionsBaidu": ".types", - + "ConnectionOptionsBitbucket": ".types", - + "ConnectionOptionsBitly": ".types", - + "ConnectionOptionsBox": ".types", - + "ConnectionOptionsClientIdGithub": ".types", - + "ConnectionOptionsClientIdTwitter": ".types", - + "ConnectionOptionsClientSecretGithub": ".types", - + "ConnectionOptionsClientSecretTwitter": ".types", - + "ConnectionOptionsCommon": ".types", - + "ConnectionOptionsCommonOidc": ".types", - + "ConnectionOptionsCommonSaml": ".types", - + "ConnectionOptionsCustom": ".types", - + "ConnectionOptionsDaccount": ".types", - + "ConnectionOptionsDeflateSaml": ".types", - + "ConnectionOptionsDropbox": ".types", - + "ConnectionOptionsDwolla": ".types", - + "ConnectionOptionsEmail": ".types", - + "ConnectionOptionsEvernote": ".types", - + "ConnectionOptionsExact": ".types", - + "ConnectionOptionsFacebook": ".types", - + "ConnectionOptionsFitbit": ".types", - + "ConnectionOptionsFreeformScopesGithub": ".types", - + "ConnectionOptionsGitHub": ".types", - + "ConnectionOptionsGoogleApps": ".types", - + "ConnectionOptionsGoogleOAuth2": ".types", - + "ConnectionOptionsIdpInitiatedClientProtocolEnumSaml": ".types", - + "ConnectionOptionsIdpinitiatedSaml": ".types", - + "ConnectionOptionsInstagram": ".types", - + "ConnectionOptionsIp": ".types", - + "ConnectionOptionsLine": ".types", - + "ConnectionOptionsLinkedin": ".types", - + "ConnectionOptionsOAuth1": ".types", - + "ConnectionOptionsOAuth1Common": ".types", - + "ConnectionOptionsOAuth2": ".types", - + "ConnectionOptionsOAuth2Common": ".types", - + "ConnectionOptionsOffice365": ".types", - + "ConnectionOptionsOidc": ".types", - + "ConnectionOptionsOidcMetadata": ".types", - + "ConnectionOptionsOkta": ".types", - + "ConnectionOptionsPaypal": ".types", - + "ConnectionOptionsPingFederate": ".types", - + "ConnectionOptionsPlanningCenter": ".types", - + "ConnectionOptionsProtocolEnumTwitter": ".types", - + "ConnectionOptionsSalesforce": ".types", - + "ConnectionOptionsSalesforceCommunity": ".types", - + "ConnectionOptionsSaml": ".types", - + "ConnectionOptionsScopeGithub": ".types", - + "ConnectionOptionsScopeTwitter": ".types", - + "ConnectionOptionsSharepoint": ".types", - + "ConnectionOptionsShop": ".types", - + "ConnectionOptionsShopify": ".types", - + "ConnectionOptionsSms": ".types", - + "ConnectionOptionsSoundcloud": ".types", - + "ConnectionOptionsThirtySevenSignals": ".types", - + "ConnectionOptionsTwitter": ".types", - + "ConnectionOptionsUntappd": ".types", - + "ConnectionOptionsVkontakte": ".types", - + "ConnectionOptionsWeibo": ".types", - + "ConnectionOptionsWindowsLive": ".types", - + "ConnectionOptionsWordpress": ".types", - + "ConnectionOptionsYahoo": ".types", - + "ConnectionOptionsYandex": ".types", - "ConnectionPasskeyAuthenticationMethod": ".types", - "ConnectionPasskeyChallengeUiEnum": ".types", - "ConnectionPasskeyOptions": ".types", - @@ -1390,22 +3246,382 @@ _dynamic_imports: typing.Dict[str, str] = { - "ConnectionPasswordDictionaryOptions": ".types", - "ConnectionPasswordHistoryOptions": ".types", - "ConnectionPasswordNoPersonalInfoOptions": ".types", - + "ConnectionPasswordOptions": ".types", - + "ConnectionPasswordOptionsComplexity": ".types", - + "ConnectionPasswordOptionsDictionary": ".types", - + "ConnectionPasswordOptionsHistory": ".types", - + "ConnectionPasswordOptionsProfileData": ".types", - "ConnectionPasswordPolicyEnum": ".types", - + "ConnectionPhoneOtpAuthenticationMethod": ".types", - + "ConnectionPingFederateBaseUrl": ".types", - + "ConnectionPingFederateBaseUrlPingFederate": ".types", - + "ConnectionProfile": ".types", - + "ConnectionProfileBitbucket": ".types", - + "ConnectionProfileConfig": ".types", - + "ConnectionProfileEnabledFeatures": ".types", - + "ConnectionProfileId": ".types", - + "ConnectionProfileName": ".types", - + "ConnectionProfileOrganization": ".types", - + "ConnectionProfileOrganizationAssignMembershipOnLoginEnum": ".types", - + "ConnectionProfileOrganizationShowAsButtonEnum": ".types", - + "ConnectionProfileStrategyOverride": ".types", - + "ConnectionProfileStrategyOverrides": ".types", - + "ConnectionProfileStrategyOverridesConnectionConfig": ".types", - + "ConnectionProfileStrategyOverridesEnabledFeatures": ".types", - + "ConnectionProfileTemplate": ".types", - + "ConnectionProfileTemplateItem": ".types", - "ConnectionPropertiesOptions": ".types", - + "ConnectionProtocolBindingEnumSaml": ".types", - + "ConnectionProtocolBindingSaml": ".types", - + "ConnectionProviderEnumSms": ".types", - + "ConnectionProviderSms": ".types", - + "ConnectionProvisioningTicketUrl": ".types", - + "ConnectionPurposes": ".types", - + "ConnectionRealmFallback": ".types", - + "ConnectionRealms": ".types", - + "ConnectionRecipientUrlSaml": ".types", - + "ConnectionRegistrationEndpoint": ".types", - + "ConnectionRequestObjectEncryptionAlgValuesSupported": ".types", - + "ConnectionRequestObjectEncryptionEncValuesSupported": ".types", - + "ConnectionRequestObjectSigningAlgValuesSupported": ".types", - + "ConnectionRequestParameterSupported": ".types", - + "ConnectionRequestTemplateSaml": ".types", - + "ConnectionRequestTokenUrloAuth1": ".types", - + "ConnectionRequestUriParameterSupported": ".types", - + "ConnectionRequireRequestUriRegistration": ".types", - + "ConnectionRequiresUsername": ".types", - + "ConnectionResponseCommon": ".types", - + "ConnectionResponseContentAd": ".types", - + "ConnectionResponseContentAdStrategy": ".types", - + "ConnectionResponseContentAdfs": ".types", - + "ConnectionResponseContentAdfsStrategy": ".types", - + "ConnectionResponseContentAmazon": ".types", - + "ConnectionResponseContentAmazonStrategy": ".types", - + "ConnectionResponseContentApple": ".types", - + "ConnectionResponseContentAppleStrategy": ".types", - + "ConnectionResponseContentAuth0": ".types", - + "ConnectionResponseContentAuth0Oidc": ".types", - + "ConnectionResponseContentAuth0OidcStrategy": ".types", - + "ConnectionResponseContentAuth0Strategy": ".types", - + "ConnectionResponseContentAzureAd": ".types", - + "ConnectionResponseContentAzureAdStrategy": ".types", - + "ConnectionResponseContentBaidu": ".types", - + "ConnectionResponseContentBaiduStrategy": ".types", - + "ConnectionResponseContentBitbucket": ".types", - + "ConnectionResponseContentBitbucketStrategy": ".types", - + "ConnectionResponseContentBitly": ".types", - + "ConnectionResponseContentBitlyStrategy": ".types", - + "ConnectionResponseContentBox": ".types", - + "ConnectionResponseContentBoxStrategy": ".types", - + "ConnectionResponseContentCustom": ".types", - + "ConnectionResponseContentCustomStrategy": ".types", - + "ConnectionResponseContentDaccount": ".types", - + "ConnectionResponseContentDaccountStrategy": ".types", - + "ConnectionResponseContentDropbox": ".types", - + "ConnectionResponseContentDropboxStrategy": ".types", - + "ConnectionResponseContentDwolla": ".types", - + "ConnectionResponseContentDwollaStrategy": ".types", - + "ConnectionResponseContentEmail": ".types", - + "ConnectionResponseContentEmailStrategy": ".types", - + "ConnectionResponseContentEvernote": ".types", - + "ConnectionResponseContentEvernoteSandbox": ".types", - + "ConnectionResponseContentEvernoteSandboxStrategy": ".types", - + "ConnectionResponseContentEvernoteStrategy": ".types", - + "ConnectionResponseContentExact": ".types", - + "ConnectionResponseContentExactStrategy": ".types", - + "ConnectionResponseContentFacebook": ".types", - + "ConnectionResponseContentFacebookStrategy": ".types", - + "ConnectionResponseContentFitbit": ".types", - + "ConnectionResponseContentFitbitStrategy": ".types", - + "ConnectionResponseContentGitHub": ".types", - + "ConnectionResponseContentGitHubStrategy": ".types", - + "ConnectionResponseContentGoogleApps": ".types", - + "ConnectionResponseContentGoogleAppsStrategy": ".types", - + "ConnectionResponseContentGoogleOAuth2": ".types", - + "ConnectionResponseContentGoogleOAuth2Strategy": ".types", - + "ConnectionResponseContentInstagram": ".types", - + "ConnectionResponseContentInstagramStrategy": ".types", - + "ConnectionResponseContentIp": ".types", - + "ConnectionResponseContentIpStrategy": ".types", - + "ConnectionResponseContentLine": ".types", - + "ConnectionResponseContentLineStrategy": ".types", - + "ConnectionResponseContentLinkedin": ".types", - + "ConnectionResponseContentLinkedinStrategy": ".types", - + "ConnectionResponseContentOAuth1": ".types", - + "ConnectionResponseContentOAuth1Strategy": ".types", - + "ConnectionResponseContentOAuth2": ".types", - + "ConnectionResponseContentOAuth2Strategy": ".types", - + "ConnectionResponseContentOffice365": ".types", - + "ConnectionResponseContentOffice365Strategy": ".types", - + "ConnectionResponseContentOidc": ".types", - + "ConnectionResponseContentOidcStrategy": ".types", - + "ConnectionResponseContentOkta": ".types", - + "ConnectionResponseContentOktaStrategy": ".types", - + "ConnectionResponseContentPaypal": ".types", - + "ConnectionResponseContentPaypalSandbox": ".types", - + "ConnectionResponseContentPaypalSandboxStrategy": ".types", - + "ConnectionResponseContentPaypalStrategy": ".types", - + "ConnectionResponseContentPingFederate": ".types", - + "ConnectionResponseContentPingFederateStrategy": ".types", - + "ConnectionResponseContentPlanningCenter": ".types", - + "ConnectionResponseContentPlanningCenterStrategy": ".types", - + "ConnectionResponseContentSalesforce": ".types", - + "ConnectionResponseContentSalesforceCommunity": ".types", - + "ConnectionResponseContentSalesforceCommunityStrategy": ".types", - + "ConnectionResponseContentSalesforceSandbox": ".types", - + "ConnectionResponseContentSalesforceSandboxStrategy": ".types", - + "ConnectionResponseContentSalesforceStrategy": ".types", - + "ConnectionResponseContentSaml": ".types", - + "ConnectionResponseContentSamlStrategy": ".types", - + "ConnectionResponseContentSharepoint": ".types", - + "ConnectionResponseContentSharepointStrategy": ".types", - + "ConnectionResponseContentShop": ".types", - + "ConnectionResponseContentShopStrategy": ".types", - + "ConnectionResponseContentShopify": ".types", - + "ConnectionResponseContentShopifyStrategy": ".types", - + "ConnectionResponseContentSms": ".types", - + "ConnectionResponseContentSmsStrategy": ".types", - + "ConnectionResponseContentSoundcloud": ".types", - + "ConnectionResponseContentSoundcloudStrategy": ".types", - + "ConnectionResponseContentThirtySevenSignals": ".types", - + "ConnectionResponseContentThirtySevenSignalsStrategy": ".types", - + "ConnectionResponseContentTwitter": ".types", - + "ConnectionResponseContentTwitterStrategy": ".types", - + "ConnectionResponseContentUntappd": ".types", - + "ConnectionResponseContentUntappdStrategy": ".types", - + "ConnectionResponseContentVkontakte": ".types", - + "ConnectionResponseContentVkontakteStrategy": ".types", - + "ConnectionResponseContentWeibo": ".types", - + "ConnectionResponseContentWeiboStrategy": ".types", - + "ConnectionResponseContentWindowsLive": ".types", - + "ConnectionResponseContentWindowsLiveStrategy": ".types", - + "ConnectionResponseContentWordpress": ".types", - + "ConnectionResponseContentWordpressStrategy": ".types", - + "ConnectionResponseContentYahoo": ".types", - + "ConnectionResponseContentYahooStrategy": ".types", - + "ConnectionResponseContentYandex": ".types", - + "ConnectionResponseContentYandexStrategy": ".types", - + "ConnectionResponseModesSupported": ".types", - + "ConnectionResponseTypesSupported": ".types", - + "ConnectionScopeAmazon": ".types", - + "ConnectionScopeArray": ".types", - + "ConnectionScopeArrayFacebook": ".types", - + "ConnectionScopeArrayWindowsLive": ".types", - + "ConnectionScopeAzureAd": ".types", - + "ConnectionScopeFacebook": ".types", - + "ConnectionScopeGoogleApps": ".types", - + "ConnectionScopeGoogleOAuth2": ".types", - + "ConnectionScopeItem": ".types", - + "ConnectionScopeItemGoogleApps": ".types", - + "ConnectionScopeLinkedin": ".types", - + "ConnectionScopeOAuth2": ".types", - + "ConnectionScopeOidc": ".types", - + "ConnectionScopePaypal": ".types", - + "ConnectionScopeSalesforce": ".types", - + "ConnectionScopesSupported": ".types", - + "ConnectionScriptsOAuth1": ".types", - + "ConnectionScriptsOAuth2": ".types", - + "ConnectionSendBackChannelNonce": ".types", - + "ConnectionServiceDocumentation": ".types", - "ConnectionSetUserRootAttributesEnum": ".types", - + "ConnectionSha1Thumbprint": ".types", - + "ConnectionShouldTrustEmailVerifiedConnectionEnum": ".types", - + "ConnectionShowAsButton": ".types", - + "ConnectionSignInEndpointAd": ".types", - + "ConnectionSignInEndpointAdfs": ".types", - + "ConnectionSignInEndpointSaml": ".types", - + "ConnectionSignOutEndpointSaml": ".types", - + "ConnectionSignSamlRequestSaml": ".types", - + "ConnectionSignatureAlgorithmEnumSaml": ".types", - + "ConnectionSignatureAlgorithmSaml": ".types", - + "ConnectionSignatureMethodOAuth1": ".types", - + "ConnectionSigningCertSaml": ".types", - + "ConnectionSigningCertificateDerSaml": ".types", - + "ConnectionSigningCertificatePemPingFederate": ".types", - + "ConnectionSigningCertificatePemSaml": ".types", - + "ConnectionSigningKeySaml": ".types", - + "ConnectionSignupBehaviorEnum": ".types", - "ConnectionStrategyEnum": ".types", - + "ConnectionStrategyVersionEnumLinkedin": ".types", - + "ConnectionStrategyVersionEnumWindowsLive": ".types", - + "ConnectionSubjectTypesSupported": ".types", - + "ConnectionTemplateSms": ".types", - + "ConnectionTemplateSyntaxEnumSms": ".types", - + "ConnectionTenantDomain": ".types", - + "ConnectionTenantDomainAd": ".types", - + "ConnectionTenantDomainAzureAdOne": ".types", - + "ConnectionTenantDomainGoogleApps": ".types", - + "ConnectionTenantDomainSaml": ".types", - + "ConnectionTenantIdAzureAd": ".types", - + "ConnectionThumbprints": ".types", - + "ConnectionThumbprintsAd": ".types", - + "ConnectionThumbprintsSaml": ".types", - + "ConnectionTokenEndpoint": ".types", - + "ConnectionTokenEndpointAuthMethodEnum": ".types", - + "ConnectionTokenEndpointAuthMethodsSupported": ".types", - + "ConnectionTokenEndpointAuthSigningAlgEnum": ".types", - + "ConnectionTokenEndpointAuthSigningAlgValuesSupported": ".types", - + "ConnectionTokenEndpointJwtcaAudFormatEnumOidc": ".types", - + "ConnectionTotpEmail": ".types", - + "ConnectionTotpLengthEmail": ".types", - + "ConnectionTotpLengthPasswordless": ".types", - + "ConnectionTotpLengthSms": ".types", - + "ConnectionTotpSms": ".types", - + "ConnectionTotpTimeStepEmail": ".types", - + "ConnectionTotpTimeStepPasswordless": ".types", - + "ConnectionTotpTimeStepSms": ".types", - + "ConnectionTwilioSidSms": ".types", - + "ConnectionTwilioTokenSms": ".types", - + "ConnectionTypeEnumOidc": ".types", - + "ConnectionTypeEnumOkta": ".types", - + "ConnectionUiLocalesSupported": ".types", - + "ConnectionUpstreamAdditionalProperties": ".types", - + "ConnectionUpstreamAlias": ".types", - + "ConnectionUpstreamAliasEnum": ".types", - "ConnectionUpstreamParams": ".types", - + "ConnectionUpstreamParamsFacebook": ".types", - + "ConnectionUpstreamValue": ".types", - + "ConnectionUseCommonEndpointAzureAd": ".types", - + "ConnectionUserAuthorizationUrloAuth1": ".types", - + "ConnectionUserIdAttributeSaml": ".types", - + "ConnectionUseridAttributeAzureAd": ".types", - + "ConnectionUseridAttributeEnumAzureAd": ".types", - + "ConnectionUserinfoEncryptionAlgValuesSupported": ".types", - + "ConnectionUserinfoEncryptionEncValuesSupported": ".types", - + "ConnectionUserinfoEndpoint": ".types", - + "ConnectionUserinfoSigningAlgValuesSupported": ".types", - "ConnectionUsernameValidationOptions": ".types", - "ConnectionValidationOptions": ".types", - + "ConnectionWaadProtocol": ".types", - + "ConnectionWaadProtocolEnumAzureAd": ".types", - "ConnectionsMetadata": ".types", - "ContentTooLargeError": ".errors", - + "CreateActionModuleResponseContent": ".types", - + "CreateActionModuleVersionResponseContent": ".types", - "CreateActionResponseContent": ".types", - "CreateBrandingPhoneProviderResponseContent": ".types", - "CreateBrandingThemeResponseContent": ".types", - + "CreateClientAuthenticationMethodSelfSignedTlsClientAuth": ".types", - + "CreateClientAuthenticationMethodSelfSignedTlsClientAuthCredentials": ".types", - "CreateClientGrantResponseContent": ".types", - "CreateClientResponseContent": ".types", - + "CreateConnectionCommon": ".types", - + "CreateConnectionProfileResponseContent": ".types", - + "CreateConnectionRequestContentAd": ".types", - + "CreateConnectionRequestContentAdStrategy": ".types", - + "CreateConnectionRequestContentAdfs": ".types", - + "CreateConnectionRequestContentAdfsStrategy": ".types", - + "CreateConnectionRequestContentAmazon": ".types", - + "CreateConnectionRequestContentAmazonStrategy": ".types", - + "CreateConnectionRequestContentApple": ".types", - + "CreateConnectionRequestContentAppleStrategy": ".types", - + "CreateConnectionRequestContentAuth0": ".types", - + "CreateConnectionRequestContentAuth0Oidc": ".types", - + "CreateConnectionRequestContentAuth0OidcStrategy": ".types", - + "CreateConnectionRequestContentAuth0Strategy": ".types", - + "CreateConnectionRequestContentAzureAd": ".types", - + "CreateConnectionRequestContentAzureAdStrategy": ".types", - + "CreateConnectionRequestContentBaidu": ".types", - + "CreateConnectionRequestContentBaiduStrategy": ".types", - + "CreateConnectionRequestContentBitbucket": ".types", - + "CreateConnectionRequestContentBitbucketStrategy": ".types", - + "CreateConnectionRequestContentBitly": ".types", - + "CreateConnectionRequestContentBitlyStrategy": ".types", - + "CreateConnectionRequestContentBox": ".types", - + "CreateConnectionRequestContentBoxStrategy": ".types", - + "CreateConnectionRequestContentCustom": ".types", - + "CreateConnectionRequestContentCustomStrategy": ".types", - + "CreateConnectionRequestContentDaccount": ".types", - + "CreateConnectionRequestContentDaccountStrategy": ".types", - + "CreateConnectionRequestContentDropbox": ".types", - + "CreateConnectionRequestContentDropboxStrategy": ".types", - + "CreateConnectionRequestContentDwolla": ".types", - + "CreateConnectionRequestContentDwollaStrategy": ".types", - + "CreateConnectionRequestContentEmail": ".types", - + "CreateConnectionRequestContentEmailStrategy": ".types", - + "CreateConnectionRequestContentEvernote": ".types", - + "CreateConnectionRequestContentEvernoteSandbox": ".types", - + "CreateConnectionRequestContentEvernoteSandboxStrategy": ".types", - + "CreateConnectionRequestContentEvernoteStrategy": ".types", - + "CreateConnectionRequestContentExact": ".types", - + "CreateConnectionRequestContentExactStrategy": ".types", - + "CreateConnectionRequestContentFacebook": ".types", - + "CreateConnectionRequestContentFacebookStrategy": ".types", - + "CreateConnectionRequestContentFitbit": ".types", - + "CreateConnectionRequestContentFitbitStrategy": ".types", - + "CreateConnectionRequestContentGitHub": ".types", - + "CreateConnectionRequestContentGitHubStrategy": ".types", - + "CreateConnectionRequestContentGoogleApps": ".types", - + "CreateConnectionRequestContentGoogleAppsStrategy": ".types", - + "CreateConnectionRequestContentGoogleOAuth2": ".types", - + "CreateConnectionRequestContentGoogleOAuth2Strategy": ".types", - + "CreateConnectionRequestContentInstagram": ".types", - + "CreateConnectionRequestContentInstagramStrategy": ".types", - + "CreateConnectionRequestContentIp": ".types", - + "CreateConnectionRequestContentIpStrategy": ".types", - + "CreateConnectionRequestContentLine": ".types", - + "CreateConnectionRequestContentLineStrategy": ".types", - + "CreateConnectionRequestContentLinkedin": ".types", - + "CreateConnectionRequestContentLinkedinStrategy": ".types", - + "CreateConnectionRequestContentOAuth1": ".types", - + "CreateConnectionRequestContentOAuth1Strategy": ".types", - + "CreateConnectionRequestContentOAuth2": ".types", - + "CreateConnectionRequestContentOAuth2Strategy": ".types", - + "CreateConnectionRequestContentOffice365": ".types", - + "CreateConnectionRequestContentOffice365Strategy": ".types", - + "CreateConnectionRequestContentOidc": ".types", - + "CreateConnectionRequestContentOidcStrategy": ".types", - + "CreateConnectionRequestContentOkta": ".types", - + "CreateConnectionRequestContentOktaStrategy": ".types", - + "CreateConnectionRequestContentPaypal": ".types", - + "CreateConnectionRequestContentPaypalSandbox": ".types", - + "CreateConnectionRequestContentPaypalSandboxStrategy": ".types", - + "CreateConnectionRequestContentPaypalStrategy": ".types", - + "CreateConnectionRequestContentPingFederate": ".types", - + "CreateConnectionRequestContentPingFederateStrategy": ".types", - + "CreateConnectionRequestContentPlanningCenter": ".types", - + "CreateConnectionRequestContentPlanningCenterStrategy": ".types", - + "CreateConnectionRequestContentSalesforce": ".types", - + "CreateConnectionRequestContentSalesforceCommunity": ".types", - + "CreateConnectionRequestContentSalesforceCommunityStrategy": ".types", - + "CreateConnectionRequestContentSalesforceSandbox": ".types", - + "CreateConnectionRequestContentSalesforceSandboxStrategy": ".types", - + "CreateConnectionRequestContentSalesforceStrategy": ".types", - + "CreateConnectionRequestContentSaml": ".types", - + "CreateConnectionRequestContentSamlStrategy": ".types", - + "CreateConnectionRequestContentSharepoint": ".types", - + "CreateConnectionRequestContentSharepointStrategy": ".types", - + "CreateConnectionRequestContentShop": ".types", - + "CreateConnectionRequestContentShopStrategy": ".types", - + "CreateConnectionRequestContentShopify": ".types", - + "CreateConnectionRequestContentShopifyStrategy": ".types", - + "CreateConnectionRequestContentSms": ".types", - + "CreateConnectionRequestContentSmsStrategy": ".types", - + "CreateConnectionRequestContentSoundcloud": ".types", - + "CreateConnectionRequestContentSoundcloudStrategy": ".types", - + "CreateConnectionRequestContentThirtySevenSignals": ".types", - + "CreateConnectionRequestContentThirtySevenSignalsStrategy": ".types", - + "CreateConnectionRequestContentTwitter": ".types", - + "CreateConnectionRequestContentTwitterStrategy": ".types", - + "CreateConnectionRequestContentUntappd": ".types", - + "CreateConnectionRequestContentUntappdStrategy": ".types", - + "CreateConnectionRequestContentVkontakte": ".types", - + "CreateConnectionRequestContentVkontakteStrategy": ".types", - + "CreateConnectionRequestContentWeibo": ".types", - + "CreateConnectionRequestContentWeiboStrategy": ".types", - + "CreateConnectionRequestContentWindowsLive": ".types", - + "CreateConnectionRequestContentWindowsLiveStrategy": ".types", - + "CreateConnectionRequestContentWordpress": ".types", - + "CreateConnectionRequestContentWordpressStrategy": ".types", - + "CreateConnectionRequestContentYahoo": ".types", - + "CreateConnectionRequestContentYahooStrategy": ".types", - + "CreateConnectionRequestContentYandex": ".types", - + "CreateConnectionRequestContentYandexStrategy": ".types", - "CreateConnectionResponseContent": ".types", - "CreateCustomDomainResponseContent": ".types", - + "CreateDirectoryProvisioningRequestContent": ".types", - + "CreateDirectoryProvisioningResponseContent": ".types", - + "CreateDirectorySynchronizationResponseContent": ".types", - "CreateEmailProviderResponseContent": ".types", - "CreateEmailTemplateResponseContent": ".types", - "CreateEncryptionKeyPublicWrappingResponseContent": ".types", - @@ -1420,6 +3636,79 @@ _dynamic_imports: typing.Dict[str, str] = { - "CreateExportUsersFields": ".types", - "CreateExportUsersResponseContent": ".types", - "CreateFlowResponseContent": ".types", - + "CreateFlowsVaultConnectionActivecampaign": ".types", - + "CreateFlowsVaultConnectionActivecampaignApiKey": ".types", - + "CreateFlowsVaultConnectionActivecampaignUninitialized": ".types", - + "CreateFlowsVaultConnectionAirtable": ".types", - + "CreateFlowsVaultConnectionAirtableApiKey": ".types", - + "CreateFlowsVaultConnectionAirtableUninitialized": ".types", - + "CreateFlowsVaultConnectionAuth0": ".types", - + "CreateFlowsVaultConnectionAuth0OauthApp": ".types", - + "CreateFlowsVaultConnectionAuth0Uninitialized": ".types", - + "CreateFlowsVaultConnectionBigquery": ".types", - + "CreateFlowsVaultConnectionBigqueryJwt": ".types", - + "CreateFlowsVaultConnectionBigqueryUninitialized": ".types", - + "CreateFlowsVaultConnectionClearbit": ".types", - + "CreateFlowsVaultConnectionClearbitApiKey": ".types", - + "CreateFlowsVaultConnectionClearbitUninitialized": ".types", - + "CreateFlowsVaultConnectionDocusign": ".types", - + "CreateFlowsVaultConnectionDocusignOauthCode": ".types", - + "CreateFlowsVaultConnectionDocusignUninitialized": ".types", - + "CreateFlowsVaultConnectionGoogleSheets": ".types", - + "CreateFlowsVaultConnectionGoogleSheetsOauthCode": ".types", - + "CreateFlowsVaultConnectionGoogleSheetsUninitialized": ".types", - + "CreateFlowsVaultConnectionHttp": ".types", - + "CreateFlowsVaultConnectionHttpApiKey": ".types", - + "CreateFlowsVaultConnectionHttpBasicAuth": ".types", - + "CreateFlowsVaultConnectionHttpBearer": ".types", - + "CreateFlowsVaultConnectionHttpOauthClientCredentials": ".types", - + "CreateFlowsVaultConnectionHttpUninitialized": ".types", - + "CreateFlowsVaultConnectionHubspot": ".types", - + "CreateFlowsVaultConnectionHubspotApiKey": ".types", - + "CreateFlowsVaultConnectionHubspotOauthCode": ".types", - + "CreateFlowsVaultConnectionHubspotUninitialized": ".types", - + "CreateFlowsVaultConnectionJwt": ".types", - + "CreateFlowsVaultConnectionJwtJwt": ".types", - + "CreateFlowsVaultConnectionJwtUninitialized": ".types", - + "CreateFlowsVaultConnectionMailchimp": ".types", - + "CreateFlowsVaultConnectionMailchimpApiKey": ".types", - + "CreateFlowsVaultConnectionMailchimpOauthCode": ".types", - + "CreateFlowsVaultConnectionMailchimpUninitialized": ".types", - + "CreateFlowsVaultConnectionMailjet": ".types", - + "CreateFlowsVaultConnectionMailjetApiKey": ".types", - + "CreateFlowsVaultConnectionMailjetUninitialized": ".types", - + "CreateFlowsVaultConnectionPipedrive": ".types", - + "CreateFlowsVaultConnectionPipedriveOauthCode": ".types", - + "CreateFlowsVaultConnectionPipedriveToken": ".types", - + "CreateFlowsVaultConnectionPipedriveUninitialized": ".types", - + "CreateFlowsVaultConnectionRequestContent": ".types", - + "CreateFlowsVaultConnectionResponseContent": ".types", - + "CreateFlowsVaultConnectionSalesforce": ".types", - + "CreateFlowsVaultConnectionSalesforceOauthCode": ".types", - + "CreateFlowsVaultConnectionSalesforceUninitialized": ".types", - + "CreateFlowsVaultConnectionSendgrid": ".types", - + "CreateFlowsVaultConnectionSendgridApiKey": ".types", - + "CreateFlowsVaultConnectionSendgridUninitialized": ".types", - + "CreateFlowsVaultConnectionSlack": ".types", - + "CreateFlowsVaultConnectionSlackOauthCode": ".types", - + "CreateFlowsVaultConnectionSlackUninitialized": ".types", - + "CreateFlowsVaultConnectionSlackWebhook": ".types", - + "CreateFlowsVaultConnectionStripe": ".types", - + "CreateFlowsVaultConnectionStripeKeyPair": ".types", - + "CreateFlowsVaultConnectionStripeOauthCode": ".types", - + "CreateFlowsVaultConnectionStripeUninitialized": ".types", - + "CreateFlowsVaultConnectionTelegram": ".types", - + "CreateFlowsVaultConnectionTelegramToken": ".types", - + "CreateFlowsVaultConnectionTelegramUninitialized": ".types", - + "CreateFlowsVaultConnectionTwilio": ".types", - + "CreateFlowsVaultConnectionTwilioApiKey": ".types", - + "CreateFlowsVaultConnectionTwilioUninitialized": ".types", - + "CreateFlowsVaultConnectionWhatsapp": ".types", - + "CreateFlowsVaultConnectionWhatsappToken": ".types", - + "CreateFlowsVaultConnectionWhatsappUninitialized": ".types", - + "CreateFlowsVaultConnectionZapier": ".types", - + "CreateFlowsVaultConnectionZapierUninitialized": ".types", - + "CreateFlowsVaultConnectionZapierWebhook": ".types", - "CreateFormResponseContent": ".types", - "CreateGuardianEnrollmentTicketResponseContent": ".types", - "CreateHookResponseContent": ".types", - @@ -1435,6 +3724,8 @@ _dynamic_imports: typing.Dict[str, str] = { - "CreateLogStreamSegmentRequestBody": ".types", - "CreateLogStreamSplunkRequestBody": ".types", - "CreateLogStreamSumoRequestBody": ".types", - + "CreateOrganizationAllConnectionResponseContent": ".types", - + "CreateOrganizationDiscoveryDomainResponseContent": ".types", - "CreateOrganizationInvitationResponseContent": ".types", - "CreateOrganizationResponseContent": ".types", - "CreatePhoneProviderSendTestResponseContent": ".types", - @@ -1451,6 +3742,7 @@ _dynamic_imports: typing.Dict[str, str] = { - "CreateSelfServiceProfileSsoTicketResponseContent": ".types", - "CreateTokenExchangeProfileResponseContent": ".types", - "CreateTokenQuota": ".types", - + "CreateUserAttributeProfileResponseContent": ".types", - "CreateUserAuthenticationMethodResponseContent": ".types", - "CreateUserResponseContent": ".types", - "CreateVerifiableCredentialTemplateResponseContent": ".types", - @@ -1458,11 +3750,12 @@ _dynamic_imports: typing.Dict[str, str] = { + + "AsyncManagementClient": ".management_client", + + "AsyncTokenProvider": ".token_provider", + "AttackProtectionCaptchaArkoseResponseContent": ".types", + "AttackProtectionCaptchaAuthChallengeRequest": ".types", + "AttackProtectionCaptchaAuthChallengeResponseContent": ".types", + @@ -3756,9 +3760,9 @@ _dynamic_imports: typing.Dict[str, str] = { + "CreateVerificationEmailResponseContent": ".types", "CreatedAuthenticationMethodTypeEnum": ".types", "CreatedUserAuthenticationMethodTypeEnum": ".types", + - "CredentialDeviceTypeEnum": ".types", "CredentialId": ".types", - - "CustomDomainHeader": ".management_client", "CustomDomain": ".types", + "CustomDomainHeader": ".management_client", "CustomDomainCustomClientIpHeader": ".types", "CustomDomainCustomClientIpHeaderEnum": ".types", "CustomDomainProvisioningTypeEnum": ".types", - + "CustomDomainStatusFilterEnum": ".types", - "CustomDomainTlsPolicyEnum": ".types", - "CustomDomainTypeEnum": ".types", - "CustomDomainVerificationMethodEnum": ".types", - @@ -1476,20 +3769,29 @@ _dynamic_imports: typing.Dict[str, str] = { - "CustomSigningKeyTypeEnum": ".types", - "CustomSigningKeyUseEnum": ".types", - "DailyStats": ".types", - + "DefaultAioHttpClient": "._default_clients", - + "DefaultAsyncHttpxClient": "._default_clients", - + "DefaultMethodEmailIdentifierEnum": ".types", - "DefaultTokenQuota": ".types", - "DeleteHookSecretRequestContent": ".types", - "DeleteUserIdentityResponseContent": ".types", - "DeleteUserIdentityResponseContentItem": ".types", - "DeployActionResponseContent": ".types", - - "DeployActionVersionRequestBodyParams": ".types", - "DeployActionVersionRequestContent": ".types", - "DeployActionVersionResponseContent": ".types", - "DeviceCredential": ".types", - "DeviceCredentialPublicKeyTypeEnum": ".types", - "DeviceCredentialTypeEnum": ".types", - + "DirectoryProvisioning": ".types", - + "DirectoryProvisioningMappingItem": ".types", - + "DomainCertificate": ".types", - + "DomainCertificateAuthorityEnum": ".types", - + "DomainCertificateStatusEnum": ".types", - + "DomainMetadata": ".types", - "DomainVerification": ".types", - "DomainVerificationMethod": ".types", - "DomainVerificationMethodNameEnum": ".types", - + "DomainVerificationStatusEnum": ".types", - "EmailAttribute": ".types", - "EmailMailgunRegionEnum": ".types", - "EmailProviderCredentials": ".types", - @@ -1507,6 +3809,7 @@ _dynamic_imports: typing.Dict[str, str] = { - "EmailSparkPostRegionEnum": ".types", - "EmailSpecificProviderSettingsWithAdditionalProperties": ".types", - "EmailTemplateNameEnum": ".types", - + "EnabledFeaturesEnum": ".types", - "EncryptionKey": ".types", - "EncryptionKeyPublicWrappingAlgorithm": ".types", - "EncryptionKeyState": ".types", - @@ -1515,8 +3818,336 @@ _dynamic_imports: typing.Dict[str, str] = { - "EventStreamActionDestination": ".types", - "EventStreamActionDestinationTypeEnum": ".types", - "EventStreamActionResponseContent": ".types", - - "EventStreamBucketInterval": ".types", - "EventStreamCloudEvent": ".types", - + "EventStreamCloudEventA0PurposeEnum": ".types", - + "EventStreamCloudEventContext": ".types", - + "EventStreamCloudEventContextClient": ".types", - + "EventStreamCloudEventContextClientMetadata": ".types", - + "EventStreamCloudEventContextConnection": ".types", - + "EventStreamCloudEventContextRequest": ".types", - + "EventStreamCloudEventContextRequestGeo": ".types", - + "EventStreamCloudEventContextTenant": ".types", - + "EventStreamCloudEventErrorCodeEnum": ".types", - + "EventStreamCloudEventErrorDetail": ".types", - + "EventStreamCloudEventErrorMessage": ".types", - + "EventStreamCloudEventErrorMessageTypeEnum": ".types", - + "EventStreamCloudEventGroupCreated": ".types", - + "EventStreamCloudEventGroupCreatedCloudEvent": ".types", - + "EventStreamCloudEventGroupCreatedCloudEventTypeEnum": ".types", - + "EventStreamCloudEventGroupCreatedData": ".types", - + "EventStreamCloudEventGroupCreatedObject": ".types", - + "EventStreamCloudEventGroupCreatedObject0": ".types", - + "EventStreamCloudEventGroupCreatedObject0TypeEnum": ".types", - + "EventStreamCloudEventGroupCreatedObject1": ".types", - + "EventStreamCloudEventGroupCreatedObject1TypeEnum": ".types", - + "EventStreamCloudEventGroupCreatedObject2": ".types", - + "EventStreamCloudEventGroupCreatedObject2TypeEnum": ".types", - + "EventStreamCloudEventGroupCreatedTypeEnum": ".types", - + "EventStreamCloudEventGroupDeleted": ".types", - + "EventStreamCloudEventGroupDeletedCloudEvent": ".types", - + "EventStreamCloudEventGroupDeletedCloudEventTypeEnum": ".types", - + "EventStreamCloudEventGroupDeletedData": ".types", - + "EventStreamCloudEventGroupDeletedObject": ".types", - + "EventStreamCloudEventGroupDeletedObject0": ".types", - + "EventStreamCloudEventGroupDeletedObject0TypeEnum": ".types", - + "EventStreamCloudEventGroupDeletedObject1": ".types", - + "EventStreamCloudEventGroupDeletedObject1TypeEnum": ".types", - + "EventStreamCloudEventGroupDeletedObject2": ".types", - + "EventStreamCloudEventGroupDeletedObject2TypeEnum": ".types", - + "EventStreamCloudEventGroupDeletedTypeEnum": ".types", - + "EventStreamCloudEventGroupMemberAdded": ".types", - + "EventStreamCloudEventGroupMemberAddedCloudEvent": ".types", - + "EventStreamCloudEventGroupMemberAddedCloudEventTypeEnum": ".types", - + "EventStreamCloudEventGroupMemberAddedData": ".types", - + "EventStreamCloudEventGroupMemberAddedObject": ".types", - + "EventStreamCloudEventGroupMemberAddedObjectGroup": ".types", - + "EventStreamCloudEventGroupMemberAddedObjectGroup0": ".types", - + "EventStreamCloudEventGroupMemberAddedObjectGroup0TypeEnum": ".types", - + "EventStreamCloudEventGroupMemberAddedObjectGroup1": ".types", - + "EventStreamCloudEventGroupMemberAddedObjectGroup1TypeEnum": ".types", - + "EventStreamCloudEventGroupMemberAddedObjectGroup2": ".types", - + "EventStreamCloudEventGroupMemberAddedObjectGroup2TypeEnum": ".types", - + "EventStreamCloudEventGroupMemberAddedObjectMember": ".types", - + "EventStreamCloudEventGroupMemberAddedObjectMember0": ".types", - + "EventStreamCloudEventGroupMemberAddedObjectMember0MemberTypeEnum": ".types", - + "EventStreamCloudEventGroupMemberAddedObjectMember1": ".types", - + "EventStreamCloudEventGroupMemberAddedObjectMember1MemberTypeEnum": ".types", - + "EventStreamCloudEventGroupMemberAddedTypeEnum": ".types", - + "EventStreamCloudEventGroupMemberDeleted": ".types", - + "EventStreamCloudEventGroupMemberDeletedCloudEvent": ".types", - + "EventStreamCloudEventGroupMemberDeletedCloudEventTypeEnum": ".types", - + "EventStreamCloudEventGroupMemberDeletedData": ".types", - + "EventStreamCloudEventGroupMemberDeletedObject": ".types", - + "EventStreamCloudEventGroupMemberDeletedObjectGroup": ".types", - + "EventStreamCloudEventGroupMemberDeletedObjectGroup0": ".types", - + "EventStreamCloudEventGroupMemberDeletedObjectGroup0TypeEnum": ".types", - + "EventStreamCloudEventGroupMemberDeletedObjectGroup1": ".types", - + "EventStreamCloudEventGroupMemberDeletedObjectGroup1TypeEnum": ".types", - + "EventStreamCloudEventGroupMemberDeletedObjectGroup2": ".types", - + "EventStreamCloudEventGroupMemberDeletedObjectGroup2TypeEnum": ".types", - + "EventStreamCloudEventGroupMemberDeletedObjectMember": ".types", - + "EventStreamCloudEventGroupMemberDeletedObjectMember0": ".types", - + "EventStreamCloudEventGroupMemberDeletedObjectMember0MemberTypeEnum": ".types", - + "EventStreamCloudEventGroupMemberDeletedObjectMember1": ".types", - + "EventStreamCloudEventGroupMemberDeletedObjectMember1MemberTypeEnum": ".types", - + "EventStreamCloudEventGroupMemberDeletedTypeEnum": ".types", - + "EventStreamCloudEventGroupRoleAssigned": ".types", - + "EventStreamCloudEventGroupRoleAssignedCloudEvent": ".types", - + "EventStreamCloudEventGroupRoleAssignedCloudEventTypeEnum": ".types", - + "EventStreamCloudEventGroupRoleAssignedData": ".types", - + "EventStreamCloudEventGroupRoleAssignedObject": ".types", - + "EventStreamCloudEventGroupRoleAssignedObjectGroup": ".types", - + "EventStreamCloudEventGroupRoleAssignedObjectGroup0": ".types", - + "EventStreamCloudEventGroupRoleAssignedObjectGroup0TypeEnum": ".types", - + "EventStreamCloudEventGroupRoleAssignedObjectGroup1": ".types", - + "EventStreamCloudEventGroupRoleAssignedObjectGroup1TypeEnum": ".types", - + "EventStreamCloudEventGroupRoleAssignedObjectGroup2": ".types", - + "EventStreamCloudEventGroupRoleAssignedObjectGroup2TypeEnum": ".types", - + "EventStreamCloudEventGroupRoleAssignedObjectRole": ".types", - + "EventStreamCloudEventGroupRoleAssignedTypeEnum": ".types", - + "EventStreamCloudEventGroupRoleDeleted": ".types", - + "EventStreamCloudEventGroupRoleDeletedCloudEvent": ".types", - + "EventStreamCloudEventGroupRoleDeletedCloudEventTypeEnum": ".types", - + "EventStreamCloudEventGroupRoleDeletedData": ".types", - + "EventStreamCloudEventGroupRoleDeletedObject": ".types", - + "EventStreamCloudEventGroupRoleDeletedObjectGroup": ".types", - + "EventStreamCloudEventGroupRoleDeletedObjectGroup0": ".types", - + "EventStreamCloudEventGroupRoleDeletedObjectGroup0TypeEnum": ".types", - + "EventStreamCloudEventGroupRoleDeletedObjectGroup1": ".types", - + "EventStreamCloudEventGroupRoleDeletedObjectGroup1TypeEnum": ".types", - + "EventStreamCloudEventGroupRoleDeletedObjectGroup2": ".types", - + "EventStreamCloudEventGroupRoleDeletedObjectGroup2TypeEnum": ".types", - + "EventStreamCloudEventGroupRoleDeletedObjectRole": ".types", - + "EventStreamCloudEventGroupRoleDeletedTypeEnum": ".types", - + "EventStreamCloudEventGroupUpdated": ".types", - + "EventStreamCloudEventGroupUpdatedCloudEvent": ".types", - + "EventStreamCloudEventGroupUpdatedCloudEventTypeEnum": ".types", - + "EventStreamCloudEventGroupUpdatedData": ".types", - + "EventStreamCloudEventGroupUpdatedObject": ".types", - + "EventStreamCloudEventGroupUpdatedObject0": ".types", - + "EventStreamCloudEventGroupUpdatedObject0TypeEnum": ".types", - + "EventStreamCloudEventGroupUpdatedObject1": ".types", - + "EventStreamCloudEventGroupUpdatedObject1TypeEnum": ".types", - + "EventStreamCloudEventGroupUpdatedObject2": ".types", - + "EventStreamCloudEventGroupUpdatedObject2TypeEnum": ".types", - + "EventStreamCloudEventGroupUpdatedTypeEnum": ".types", - + "EventStreamCloudEventOffsetOnlyMessage": ".types", - + "EventStreamCloudEventOffsetOnlyMessageTypeEnum": ".types", - + "EventStreamCloudEventOrgConnectionAdded": ".types", - + "EventStreamCloudEventOrgConnectionAddedCloudEvent": ".types", - + "EventStreamCloudEventOrgConnectionAddedCloudEventTypeEnum": ".types", - + "EventStreamCloudEventOrgConnectionAddedData": ".types", - + "EventStreamCloudEventOrgConnectionAddedObject": ".types", - + "EventStreamCloudEventOrgConnectionAddedObjectConnection": ".types", - + "EventStreamCloudEventOrgConnectionAddedObjectOrganization": ".types", - + "EventStreamCloudEventOrgConnectionAddedTypeEnum": ".types", - + "EventStreamCloudEventOrgConnectionRemoved": ".types", - + "EventStreamCloudEventOrgConnectionRemovedCloudEvent": ".types", - + "EventStreamCloudEventOrgConnectionRemovedCloudEventTypeEnum": ".types", - + "EventStreamCloudEventOrgConnectionRemovedData": ".types", - + "EventStreamCloudEventOrgConnectionRemovedObject": ".types", - + "EventStreamCloudEventOrgConnectionRemovedObjectConnection": ".types", - + "EventStreamCloudEventOrgConnectionRemovedObjectOrganization": ".types", - + "EventStreamCloudEventOrgConnectionRemovedTypeEnum": ".types", - + "EventStreamCloudEventOrgConnectionUpdated": ".types", - + "EventStreamCloudEventOrgConnectionUpdatedCloudEvent": ".types", - + "EventStreamCloudEventOrgConnectionUpdatedCloudEventTypeEnum": ".types", - + "EventStreamCloudEventOrgConnectionUpdatedData": ".types", - + "EventStreamCloudEventOrgConnectionUpdatedObject": ".types", - + "EventStreamCloudEventOrgConnectionUpdatedObjectConnection": ".types", - + "EventStreamCloudEventOrgConnectionUpdatedObjectOrganization": ".types", - + "EventStreamCloudEventOrgConnectionUpdatedTypeEnum": ".types", - + "EventStreamCloudEventOrgCreated": ".types", - + "EventStreamCloudEventOrgCreatedCloudEvent": ".types", - + "EventStreamCloudEventOrgCreatedCloudEventTypeEnum": ".types", - + "EventStreamCloudEventOrgCreatedData": ".types", - + "EventStreamCloudEventOrgCreatedObject": ".types", - + "EventStreamCloudEventOrgCreatedObjectBranding": ".types", - + "EventStreamCloudEventOrgCreatedObjectBrandingColors": ".types", - + "EventStreamCloudEventOrgCreatedObjectMetadata": ".types", - + "EventStreamCloudEventOrgCreatedTypeEnum": ".types", - + "EventStreamCloudEventOrgDeleted": ".types", - + "EventStreamCloudEventOrgDeletedCloudEvent": ".types", - + "EventStreamCloudEventOrgDeletedCloudEventTypeEnum": ".types", - + "EventStreamCloudEventOrgDeletedData": ".types", - + "EventStreamCloudEventOrgDeletedObject": ".types", - + "EventStreamCloudEventOrgDeletedObjectMetadata": ".types", - + "EventStreamCloudEventOrgDeletedTypeEnum": ".types", - + "EventStreamCloudEventOrgGroupRoleAssigned": ".types", - + "EventStreamCloudEventOrgGroupRoleAssignedCloudEvent": ".types", - + "EventStreamCloudEventOrgGroupRoleAssignedCloudEventTypeEnum": ".types", - + "EventStreamCloudEventOrgGroupRoleAssignedData": ".types", - + "EventStreamCloudEventOrgGroupRoleAssignedObject": ".types", - + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup": ".types", - + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup0": ".types", - + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup0TypeEnum": ".types", - + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup1": ".types", - + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup1TypeEnum": ".types", - + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup2": ".types", - + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup2TypeEnum": ".types", - + "EventStreamCloudEventOrgGroupRoleAssignedObjectOrganization": ".types", - + "EventStreamCloudEventOrgGroupRoleAssignedObjectRole": ".types", - + "EventStreamCloudEventOrgGroupRoleAssignedTypeEnum": ".types", - + "EventStreamCloudEventOrgGroupRoleDeleted": ".types", - + "EventStreamCloudEventOrgGroupRoleDeletedCloudEvent": ".types", - + "EventStreamCloudEventOrgGroupRoleDeletedCloudEventTypeEnum": ".types", - + "EventStreamCloudEventOrgGroupRoleDeletedData": ".types", - + "EventStreamCloudEventOrgGroupRoleDeletedObject": ".types", - + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup": ".types", - + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup0": ".types", - + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup0TypeEnum": ".types", - + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup1": ".types", - + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup1TypeEnum": ".types", - + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup2": ".types", - + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup2TypeEnum": ".types", - + "EventStreamCloudEventOrgGroupRoleDeletedObjectOrganization": ".types", - + "EventStreamCloudEventOrgGroupRoleDeletedObjectRole": ".types", - + "EventStreamCloudEventOrgGroupRoleDeletedTypeEnum": ".types", - + "EventStreamCloudEventOrgMemberAdded": ".types", - + "EventStreamCloudEventOrgMemberAddedCloudEvent": ".types", - + "EventStreamCloudEventOrgMemberAddedCloudEventTypeEnum": ".types", - + "EventStreamCloudEventOrgMemberAddedData": ".types", - + "EventStreamCloudEventOrgMemberAddedObject": ".types", - + "EventStreamCloudEventOrgMemberAddedObjectOrganization": ".types", - + "EventStreamCloudEventOrgMemberAddedObjectUser": ".types", - + "EventStreamCloudEventOrgMemberAddedTypeEnum": ".types", - + "EventStreamCloudEventOrgMemberDeleted": ".types", - + "EventStreamCloudEventOrgMemberDeletedCloudEvent": ".types", - + "EventStreamCloudEventOrgMemberDeletedCloudEventTypeEnum": ".types", - + "EventStreamCloudEventOrgMemberDeletedData": ".types", - + "EventStreamCloudEventOrgMemberDeletedObject": ".types", - + "EventStreamCloudEventOrgMemberDeletedObjectOrganization": ".types", - + "EventStreamCloudEventOrgMemberDeletedObjectUser": ".types", - + "EventStreamCloudEventOrgMemberDeletedTypeEnum": ".types", - + "EventStreamCloudEventOrgMemberRoleAssigned": ".types", - + "EventStreamCloudEventOrgMemberRoleAssignedCloudEvent": ".types", - + "EventStreamCloudEventOrgMemberRoleAssignedCloudEventTypeEnum": ".types", - + "EventStreamCloudEventOrgMemberRoleAssignedData": ".types", - + "EventStreamCloudEventOrgMemberRoleAssignedObject": ".types", - + "EventStreamCloudEventOrgMemberRoleAssignedObjectOrganization": ".types", - + "EventStreamCloudEventOrgMemberRoleAssignedObjectRole": ".types", - + "EventStreamCloudEventOrgMemberRoleAssignedObjectUser": ".types", - + "EventStreamCloudEventOrgMemberRoleAssignedTypeEnum": ".types", - + "EventStreamCloudEventOrgMemberRoleDeleted": ".types", - + "EventStreamCloudEventOrgMemberRoleDeletedCloudEvent": ".types", - + "EventStreamCloudEventOrgMemberRoleDeletedCloudEventTypeEnum": ".types", - + "EventStreamCloudEventOrgMemberRoleDeletedData": ".types", - + "EventStreamCloudEventOrgMemberRoleDeletedObject": ".types", - + "EventStreamCloudEventOrgMemberRoleDeletedObjectOrganization": ".types", - + "EventStreamCloudEventOrgMemberRoleDeletedObjectRole": ".types", - + "EventStreamCloudEventOrgMemberRoleDeletedObjectUser": ".types", - + "EventStreamCloudEventOrgMemberRoleDeletedTypeEnum": ".types", - + "EventStreamCloudEventOrgUpdated": ".types", - + "EventStreamCloudEventOrgUpdatedCloudEvent": ".types", - + "EventStreamCloudEventOrgUpdatedCloudEventTypeEnum": ".types", - + "EventStreamCloudEventOrgUpdatedData": ".types", - + "EventStreamCloudEventOrgUpdatedObject": ".types", - + "EventStreamCloudEventOrgUpdatedObjectBranding": ".types", - + "EventStreamCloudEventOrgUpdatedObjectBrandingColors": ".types", - + "EventStreamCloudEventOrgUpdatedObjectMetadata": ".types", - + "EventStreamCloudEventOrgUpdatedTypeEnum": ".types", - + "EventStreamCloudEventUserCreated": ".types", - + "EventStreamCloudEventUserCreatedCloudEvent": ".types", - + "EventStreamCloudEventUserCreatedCloudEventTypeEnum": ".types", - + "EventStreamCloudEventUserCreatedData": ".types", - + "EventStreamCloudEventUserCreatedObject": ".types", - + "EventStreamCloudEventUserCreatedObjectAppMetadata": ".types", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItem": ".types", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemCustom": ".types", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomIsSocialEnum": ".types", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomProfileData": ".types", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomProviderEnum": ".types", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomUserId": ".types", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabase": ".types", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseIsSocialEnum": ".types", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseProfileData": ".types", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseProviderEnum": ".types", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseUserId": ".types", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterprise": ".types", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseIsSocialEnum": ".types", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseProfileData": ".types", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseProviderEnum": ".types", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseUserId": ".types", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordless": ".types", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessIsSocialEnum": ".types", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessProfileData": ".types", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessProviderEnum": ".types", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessUserId": ".types", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemSocial": ".types", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialIsSocialEnum": ".types", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialProfileData": ".types", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialProviderEnum": ".types", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialUserId": ".types", - + "EventStreamCloudEventUserCreatedObjectUserMetadata": ".types", - + "EventStreamCloudEventUserCreatedTypeEnum": ".types", - + "EventStreamCloudEventUserDeleted": ".types", - + "EventStreamCloudEventUserDeletedCloudEvent": ".types", - + "EventStreamCloudEventUserDeletedCloudEventTypeEnum": ".types", - + "EventStreamCloudEventUserDeletedData": ".types", - + "EventStreamCloudEventUserDeletedObject": ".types", - + "EventStreamCloudEventUserDeletedObjectAppMetadata": ".types", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItem": ".types", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemCustom": ".types", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomIsSocialEnum": ".types", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomProfileData": ".types", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomProviderEnum": ".types", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomUserId": ".types", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabase": ".types", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseIsSocialEnum": ".types", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseProfileData": ".types", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseProviderEnum": ".types", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseUserId": ".types", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterprise": ".types", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseIsSocialEnum": ".types", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseProfileData": ".types", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseProviderEnum": ".types", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseUserId": ".types", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordless": ".types", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessIsSocialEnum": ".types", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessProfileData": ".types", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessProviderEnum": ".types", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessUserId": ".types", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemSocial": ".types", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialIsSocialEnum": ".types", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialProfileData": ".types", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialProviderEnum": ".types", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialUserId": ".types", - + "EventStreamCloudEventUserDeletedObjectUserMetadata": ".types", - + "EventStreamCloudEventUserDeletedTypeEnum": ".types", - + "EventStreamCloudEventUserUpdated": ".types", - + "EventStreamCloudEventUserUpdatedCloudEvent": ".types", - + "EventStreamCloudEventUserUpdatedCloudEventTypeEnum": ".types", - + "EventStreamCloudEventUserUpdatedData": ".types", - + "EventStreamCloudEventUserUpdatedObject": ".types", - + "EventStreamCloudEventUserUpdatedObjectAppMetadata": ".types", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItem": ".types", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustom": ".types", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomIsSocialEnum": ".types", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomProfileData": ".types", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomProviderEnum": ".types", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomUserId": ".types", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabase": ".types", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseIsSocialEnum": ".types", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseProfileData": ".types", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseProviderEnum": ".types", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseUserId": ".types", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterprise": ".types", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseIsSocialEnum": ".types", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseProfileData": ".types", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseProviderEnum": ".types", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseUserId": ".types", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordless": ".types", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessIsSocialEnum": ".types", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessProfileData": ".types", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessProviderEnum": ".types", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessUserId": ".types", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocial": ".types", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialIsSocialEnum": ".types", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialProfileData": ".types", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialProviderEnum": ".types", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialUserId": ".types", - + "EventStreamCloudEventUserUpdatedObjectUserMetadata": ".types", - + "EventStreamCloudEventUserUpdatedTypeEnum": ".types", - "EventStreamDelivery": ".types", - "EventStreamDeliveryAttempt": ".types", - "EventStreamDeliveryEventTypeEnum": ".types", - @@ -1528,9 +4159,35 @@ _dynamic_imports: typing.Dict[str, str] = { - "EventStreamEventBridgeDestinationTypeEnum": ".types", - "EventStreamEventBridgeResponseContent": ".types", - "EventStreamEventTypeEnum": ".types", - - "EventStreamMetric": ".types", - "EventStreamResponseContent": ".types", - "EventStreamStatusEnum": ".types", - + "EventStreamSubscribeEventsEventTypeEnum": ".types", - + "EventStreamSubscribeEventsEventTypeParam": ".types", - + "EventStreamSubscribeEventsResponseContent": ".types", - + "EventStreamSubscribeEventsResponseContent_Error": ".types", - + "EventStreamSubscribeEventsResponseContent_GroupCreated": ".types", - + "EventStreamSubscribeEventsResponseContent_GroupDeleted": ".types", - + "EventStreamSubscribeEventsResponseContent_GroupMemberAdded": ".types", - + "EventStreamSubscribeEventsResponseContent_GroupMemberDeleted": ".types", - + "EventStreamSubscribeEventsResponseContent_GroupRoleAssigned": ".types", - + "EventStreamSubscribeEventsResponseContent_GroupRoleDeleted": ".types", - + "EventStreamSubscribeEventsResponseContent_GroupUpdated": ".types", - + "EventStreamSubscribeEventsResponseContent_OffsetOnly": ".types", - + "EventStreamSubscribeEventsResponseContent_OrganizationConnectionAdded": ".types", - + "EventStreamSubscribeEventsResponseContent_OrganizationConnectionRemoved": ".types", - + "EventStreamSubscribeEventsResponseContent_OrganizationConnectionUpdated": ".types", - + "EventStreamSubscribeEventsResponseContent_OrganizationCreated": ".types", - + "EventStreamSubscribeEventsResponseContent_OrganizationDeleted": ".types", - + "EventStreamSubscribeEventsResponseContent_OrganizationGroupRoleAssigned": ".types", - + "EventStreamSubscribeEventsResponseContent_OrganizationGroupRoleDeleted": ".types", - + "EventStreamSubscribeEventsResponseContent_OrganizationMemberAdded": ".types", - + "EventStreamSubscribeEventsResponseContent_OrganizationMemberDeleted": ".types", - + "EventStreamSubscribeEventsResponseContent_OrganizationMemberRoleAssigned": ".types", - + "EventStreamSubscribeEventsResponseContent_OrganizationMemberRoleDeleted": ".types", - + "EventStreamSubscribeEventsResponseContent_OrganizationUpdated": ".types", - + "EventStreamSubscribeEventsResponseContent_UserCreated": ".types", - + "EventStreamSubscribeEventsResponseContent_UserDeleted": ".types", - + "EventStreamSubscribeEventsResponseContent_UserUpdated": ".types", - "EventStreamSubscription": ".types", - "EventStreamTestEventTypeEnum": ".types", - "EventStreamWebhookAuthorizationResponse": ".types", - @@ -1539,89 +4196,154 @@ _dynamic_imports: typing.Dict[str, str] = { - "EventStreamWebhookBearerAuth": ".types", - "EventStreamWebhookBearerAuthMethodEnum": ".types", - "EventStreamWebhookConfiguration": ".types", - + "EventStreamWebhookCustomHeaderAuth": ".types", - + "EventStreamWebhookCustomHeaderAuthMethodEnum": ".types", - "EventStreamWebhookDestination": ".types", - "EventStreamWebhookDestinationTypeEnum": ".types", - "EventStreamWebhookResponseContent": ".types", - - "EventStreamWindow": ".types", - "EventStreamsCreateRequest": ".event_streams", - + "ExpressConfiguration": ".types", - + "ExpressConfigurationOrNull": ".types", - "ExtensibilityEmailProviderCredentials": ".types", - "FederatedConnectionTokenSet": ".types", - "FlowAction": ".types", - "FlowActionActivecampaign": ".types", - "FlowActionActivecampaignListContacts": ".types", - + "FlowActionActivecampaignListContactsAction": ".types", - "FlowActionActivecampaignListContactsParams": ".types", - + "FlowActionActivecampaignListContactsType": ".types", - "FlowActionActivecampaignUpsertContact": ".types", - + "FlowActionActivecampaignUpsertContactAction": ".types", - "FlowActionActivecampaignUpsertContactParams": ".types", - "FlowActionActivecampaignUpsertContactParamsCustomFields": ".types", - + "FlowActionActivecampaignUpsertContactType": ".types", - "FlowActionAirtable": ".types", - "FlowActionAirtableCreateRecord": ".types", - + "FlowActionAirtableCreateRecordAction": ".types", - "FlowActionAirtableCreateRecordParams": ".types", - "FlowActionAirtableCreateRecordParamsFields": ".types", - + "FlowActionAirtableCreateRecordType": ".types", - "FlowActionAirtableListRecords": ".types", - + "FlowActionAirtableListRecordsAction": ".types", - "FlowActionAirtableListRecordsParams": ".types", - + "FlowActionAirtableListRecordsType": ".types", - "FlowActionAirtableUpdateRecord": ".types", - + "FlowActionAirtableUpdateRecordAction": ".types", - "FlowActionAirtableUpdateRecordParams": ".types", - "FlowActionAirtableUpdateRecordParamsFields": ".types", - + "FlowActionAirtableUpdateRecordType": ".types", - "FlowActionAuth0": ".types", - "FlowActionAuth0CreateUser": ".types", - + "FlowActionAuth0CreateUserAction": ".types", - "FlowActionAuth0CreateUserParams": ".types", - "FlowActionAuth0CreateUserParamsPayload": ".types", - + "FlowActionAuth0CreateUserType": ".types", - "FlowActionAuth0GetUser": ".types", - + "FlowActionAuth0GetUserAction": ".types", - "FlowActionAuth0GetUserParams": ".types", - + "FlowActionAuth0GetUserType": ".types", - + "FlowActionAuth0MakeCall": ".types", - + "FlowActionAuth0MakeCallAction": ".types", - + "FlowActionAuth0MakeCallParams": ".types", - + "FlowActionAuth0MakeCallParamsCustomVars": ".types", - + "FlowActionAuth0MakeCallType": ".types", - + "FlowActionAuth0SendEmail": ".types", - + "FlowActionAuth0SendEmailAction": ".types", - + "FlowActionAuth0SendEmailParams": ".types", - + "FlowActionAuth0SendEmailParamsFrom": ".types", - + "FlowActionAuth0SendEmailParamsFromEmail": ".types", - + "FlowActionAuth0SendEmailParamsTo": ".types", - + "FlowActionAuth0SendEmailType": ".types", - "FlowActionAuth0SendRequest": ".types", - + "FlowActionAuth0SendRequestAction": ".types", - "FlowActionAuth0SendRequestParams": ".types", - + "FlowActionAuth0SendRequestParamsCustomVars": ".types", - "FlowActionAuth0SendRequestParamsHeaders": ".types", - "FlowActionAuth0SendRequestParamsMethod": ".types", - "FlowActionAuth0SendRequestParamsPayload": ".types", - "FlowActionAuth0SendRequestParamsPayloadObject": ".types", - "FlowActionAuth0SendRequestParamsQueryParams": ".types", - + "FlowActionAuth0SendRequestParamsQueryParamsValue": ".types", - + "FlowActionAuth0SendRequestType": ".types", - + "FlowActionAuth0SendSms": ".types", - + "FlowActionAuth0SendSmsAction": ".types", - + "FlowActionAuth0SendSmsParams": ".types", - + "FlowActionAuth0SendSmsParamsCustomVars": ".types", - + "FlowActionAuth0SendSmsType": ".types", - "FlowActionAuth0UpdateUser": ".types", - + "FlowActionAuth0UpdateUserAction": ".types", - "FlowActionAuth0UpdateUserParams": ".types", - "FlowActionAuth0UpdateUserParamsChanges": ".types", - + "FlowActionAuth0UpdateUserType": ".types", - "FlowActionBigquery": ".types", - "FlowActionBigqueryInsertRows": ".types", - + "FlowActionBigqueryInsertRowsAction": ".types", - "FlowActionBigqueryInsertRowsParams": ".types", - "FlowActionBigqueryInsertRowsParamsData": ".types", - + "FlowActionBigqueryInsertRowsType": ".types", - "FlowActionClearbit": ".types", - "FlowActionClearbitFindCompany": ".types", - + "FlowActionClearbitFindCompanyAction": ".types", - "FlowActionClearbitFindCompanyParams": ".types", - + "FlowActionClearbitFindCompanyType": ".types", - "FlowActionClearbitFindPerson": ".types", - + "FlowActionClearbitFindPersonAction": ".types", - "FlowActionClearbitFindPersonParams": ".types", - + "FlowActionClearbitFindPersonType": ".types", - "FlowActionEmail": ".types", - "FlowActionEmailVerifyEmail": ".types", - + "FlowActionEmailVerifyEmailAction": ".types", - "FlowActionEmailVerifyEmailParams": ".types", - "FlowActionEmailVerifyEmailParamsRules": ".types", - + "FlowActionEmailVerifyEmailType": ".types", - "FlowActionFlow": ".types", - "FlowActionFlowBooleanCondition": ".types", - + "FlowActionFlowBooleanConditionAction": ".types", - "FlowActionFlowBooleanConditionParams": ".types", - + "FlowActionFlowBooleanConditionType": ".types", - "FlowActionFlowDelayFlow": ".types", - + "FlowActionFlowDelayFlowAction": ".types", - "FlowActionFlowDelayFlowParams": ".types", - "FlowActionFlowDelayFlowParamsNumber": ".types", - "FlowActionFlowDelayFlowParamsUnits": ".types", - + "FlowActionFlowDelayFlowType": ".types", - "FlowActionFlowDoNothing": ".types", - + "FlowActionFlowDoNothingAction": ".types", - "FlowActionFlowDoNothingParams": ".types", - + "FlowActionFlowDoNothingType": ".types", - "FlowActionFlowErrorMessage": ".types", - + "FlowActionFlowErrorMessageAction": ".types", - "FlowActionFlowErrorMessageParams": ".types", - + "FlowActionFlowErrorMessageType": ".types", - "FlowActionFlowMapValue": ".types", - + "FlowActionFlowMapValueAction": ".types", - "FlowActionFlowMapValueParams": ".types", - "FlowActionFlowMapValueParamsCases": ".types", - "FlowActionFlowMapValueParamsFallback": ".types", - "FlowActionFlowMapValueParamsFallbackObject": ".types", - "FlowActionFlowMapValueParamsInput": ".types", - + "FlowActionFlowMapValueType": ".types", - "FlowActionFlowReturnJson": ".types", - + "FlowActionFlowReturnJsonAction": ".types", - "FlowActionFlowReturnJsonParams": ".types", - "FlowActionFlowReturnJsonParamsPayload": ".types", - "FlowActionFlowReturnJsonParamsPayloadObject": ".types", - + "FlowActionFlowReturnJsonType": ".types", - "FlowActionFlowStoreVars": ".types", - + "FlowActionFlowStoreVarsAction": ".types", - "FlowActionFlowStoreVarsParams": ".types", - "FlowActionFlowStoreVarsParamsVars": ".types", - + "FlowActionFlowStoreVarsType": ".types", - "FlowActionGoogleSheets": ".types", - "FlowActionGoogleSheetsAddRow": ".types", - + "FlowActionGoogleSheetsAddRowAction": ".types", - "FlowActionGoogleSheetsAddRowParams": ".types", - "FlowActionGoogleSheetsAddRowParamsSheetId": ".types", - "FlowActionGoogleSheetsAddRowParamsValues": ".types", - + "FlowActionGoogleSheetsAddRowType": ".types", - "FlowActionHttp": ".types", - "FlowActionHttpSendRequest": ".types", - + "FlowActionHttpSendRequestAction": ".types", - "FlowActionHttpSendRequestParams": ".types", - "FlowActionHttpSendRequestParamsBasicAuth": ".types", - "FlowActionHttpSendRequestParamsContentType": ".types", - @@ -1630,134 +4352,260 @@ _dynamic_imports: typing.Dict[str, str] = { - "FlowActionHttpSendRequestParamsPayload": ".types", - "FlowActionHttpSendRequestParamsPayloadObject": ".types", - "FlowActionHttpSendRequestParamsQueryParams": ".types", - + "FlowActionHttpSendRequestParamsQueryParamsValue": ".types", - + "FlowActionHttpSendRequestType": ".types", - "FlowActionHubspot": ".types", - "FlowActionHubspotEnrollContact": ".types", - + "FlowActionHubspotEnrollContactAction": ".types", - "FlowActionHubspotEnrollContactParams": ".types", - "FlowActionHubspotEnrollContactParamsWorkflowId": ".types", - + "FlowActionHubspotEnrollContactType": ".types", - "FlowActionHubspotGetContact": ".types", - + "FlowActionHubspotGetContactAction": ".types", - "FlowActionHubspotGetContactParams": ".types", - + "FlowActionHubspotGetContactType": ".types", - "FlowActionHubspotUpsertContact": ".types", - + "FlowActionHubspotUpsertContactAction": ".types", - "FlowActionHubspotUpsertContactParams": ".types", - "FlowActionHubspotUpsertContactParamsProperty": ".types", - + "FlowActionHubspotUpsertContactType": ".types", - "FlowActionJson": ".types", - "FlowActionJsonCreateJson": ".types", - + "FlowActionJsonCreateJsonAction": ".types", - "FlowActionJsonCreateJsonParams": ".types", - "FlowActionJsonCreateJsonParamsObject": ".types", - + "FlowActionJsonCreateJsonType": ".types", - "FlowActionJsonParseJson": ".types", - + "FlowActionJsonParseJsonAction": ".types", - "FlowActionJsonParseJsonParams": ".types", - + "FlowActionJsonParseJsonType": ".types", - "FlowActionJsonSerializeJson": ".types", - + "FlowActionJsonSerializeJsonAction": ".types", - "FlowActionJsonSerializeJsonParams": ".types", - "FlowActionJsonSerializeJsonParamsObject": ".types", - "FlowActionJsonSerializeJsonParamsObjectObject": ".types", - + "FlowActionJsonSerializeJsonType": ".types", - "FlowActionJwt": ".types", - "FlowActionJwtDecodeJwt": ".types", - + "FlowActionJwtDecodeJwtAction": ".types", - "FlowActionJwtDecodeJwtParams": ".types", - + "FlowActionJwtDecodeJwtType": ".types", - "FlowActionJwtSignJwt": ".types", - + "FlowActionJwtSignJwtAction": ".types", - "FlowActionJwtSignJwtParams": ".types", - "FlowActionJwtSignJwtParamsPayload": ".types", - + "FlowActionJwtSignJwtType": ".types", - "FlowActionJwtVerifyJwt": ".types", - + "FlowActionJwtVerifyJwtAction": ".types", - "FlowActionJwtVerifyJwtParams": ".types", - + "FlowActionJwtVerifyJwtType": ".types", - "FlowActionMailchimp": ".types", - "FlowActionMailchimpUpsertMember": ".types", - + "FlowActionMailchimpUpsertMemberAction": ".types", - "FlowActionMailchimpUpsertMemberParams": ".types", - "FlowActionMailchimpUpsertMemberParamsMember": ".types", - "FlowActionMailchimpUpsertMemberParamsMemberMergeFields": ".types", - + "FlowActionMailchimpUpsertMemberType": ".types", - "FlowActionMailjet": ".types", - "FlowActionMailjetSendEmail": ".types", - + "FlowActionMailjetSendEmailAction": ".types", - "FlowActionMailjetSendEmailParams": ".types", - "FlowActionMailjetSendEmailParamsContent": ".types", - "FlowActionMailjetSendEmailParamsTemplateId": ".types", - + "FlowActionMailjetSendEmailType": ".types", - "FlowActionOtp": ".types", - "FlowActionOtpGenerateCode": ".types", - + "FlowActionOtpGenerateCodeAction": ".types", - "FlowActionOtpGenerateCodeParams": ".types", - + "FlowActionOtpGenerateCodeType": ".types", - "FlowActionOtpVerifyCode": ".types", - + "FlowActionOtpVerifyCodeAction": ".types", - "FlowActionOtpVerifyCodeParams": ".types", - "FlowActionOtpVerifyCodeParamsCode": ".types", - + "FlowActionOtpVerifyCodeType": ".types", - "FlowActionPipedrive": ".types", - "FlowActionPipedriveAddDeal": ".types", - + "FlowActionPipedriveAddDealAction": ".types", - "FlowActionPipedriveAddDealParams": ".types", - "FlowActionPipedriveAddDealParamsFields": ".types", - "FlowActionPipedriveAddDealParamsOrganizationId": ".types", - "FlowActionPipedriveAddDealParamsPersonId": ".types", - "FlowActionPipedriveAddDealParamsStageId": ".types", - "FlowActionPipedriveAddDealParamsUserId": ".types", - + "FlowActionPipedriveAddDealType": ".types", - "FlowActionPipedriveAddOrganization": ".types", - + "FlowActionPipedriveAddOrganizationAction": ".types", - "FlowActionPipedriveAddOrganizationParams": ".types", - "FlowActionPipedriveAddOrganizationParamsFields": ".types", - "FlowActionPipedriveAddOrganizationParamsOwnerId": ".types", - + "FlowActionPipedriveAddOrganizationType": ".types", - "FlowActionPipedriveAddPerson": ".types", - + "FlowActionPipedriveAddPersonAction": ".types", - "FlowActionPipedriveAddPersonParams": ".types", - "FlowActionPipedriveAddPersonParamsFields": ".types", - "FlowActionPipedriveAddPersonParamsOrganizationId": ".types", - "FlowActionPipedriveAddPersonParamsOwnerId": ".types", - + "FlowActionPipedriveAddPersonType": ".types", - "FlowActionSalesforce": ".types", - "FlowActionSalesforceCreateLead": ".types", - + "FlowActionSalesforceCreateLeadAction": ".types", - "FlowActionSalesforceCreateLeadParams": ".types", - "FlowActionSalesforceCreateLeadParamsPayload": ".types", - + "FlowActionSalesforceCreateLeadType": ".types", - "FlowActionSalesforceGetLead": ".types", - + "FlowActionSalesforceGetLeadAction": ".types", - "FlowActionSalesforceGetLeadParams": ".types", - + "FlowActionSalesforceGetLeadType": ".types", - "FlowActionSalesforceSearchLeads": ".types", - + "FlowActionSalesforceSearchLeadsAction": ".types", - "FlowActionSalesforceSearchLeadsParams": ".types", - "FlowActionSalesforceSearchLeadsParamsSearchField": ".types", - + "FlowActionSalesforceSearchLeadsType": ".types", - "FlowActionSalesforceUpdateLead": ".types", - + "FlowActionSalesforceUpdateLeadAction": ".types", - "FlowActionSalesforceUpdateLeadParams": ".types", - "FlowActionSalesforceUpdateLeadParamsPayload": ".types", - + "FlowActionSalesforceUpdateLeadType": ".types", - "FlowActionSendgrid": ".types", - "FlowActionSendgridSendEmail": ".types", - + "FlowActionSendgridSendEmailAction": ".types", - "FlowActionSendgridSendEmailParams": ".types", - "FlowActionSendgridSendEmailParamsPerson": ".types", - + "FlowActionSendgridSendEmailType": ".types", - "FlowActionSlack": ".types", - "FlowActionSlackPostMessage": ".types", - + "FlowActionSlackPostMessageAction": ".types", - "FlowActionSlackPostMessageParams": ".types", - "FlowActionSlackPostMessageParamsAttachment": ".types", - "FlowActionSlackPostMessageParamsAttachmentColor": ".types", - "FlowActionSlackPostMessageParamsAttachmentField": ".types", - + "FlowActionSlackPostMessageType": ".types", - "FlowActionStripe": ".types", - "FlowActionStripeAddTaxId": ".types", - + "FlowActionStripeAddTaxIdAction": ".types", - "FlowActionStripeAddTaxIdParams": ".types", - + "FlowActionStripeAddTaxIdType": ".types", - "FlowActionStripeAddress": ".types", - "FlowActionStripeCreateCustomer": ".types", - + "FlowActionStripeCreateCustomerAction": ".types", - "FlowActionStripeCreateCustomerParams": ".types", - + "FlowActionStripeCreateCustomerType": ".types", - "FlowActionStripeCreatePortalSession": ".types", - + "FlowActionStripeCreatePortalSessionAction": ".types", - "FlowActionStripeCreatePortalSessionParams": ".types", - + "FlowActionStripeCreatePortalSessionType": ".types", - "FlowActionStripeDeleteTaxId": ".types", - + "FlowActionStripeDeleteTaxIdAction": ".types", - "FlowActionStripeDeleteTaxIdParams": ".types", - + "FlowActionStripeDeleteTaxIdType": ".types", - "FlowActionStripeFindCustomers": ".types", - + "FlowActionStripeFindCustomersAction": ".types", - "FlowActionStripeFindCustomersParams": ".types", - + "FlowActionStripeFindCustomersType": ".types", - "FlowActionStripeGetCustomer": ".types", - + "FlowActionStripeGetCustomerAction": ".types", - "FlowActionStripeGetCustomerParams": ".types", - + "FlowActionStripeGetCustomerType": ".types", - "FlowActionStripeMetadata": ".types", - "FlowActionStripeTaxId": ".types", - "FlowActionStripeUpdateCustomer": ".types", - + "FlowActionStripeUpdateCustomerAction": ".types", - "FlowActionStripeUpdateCustomerParams": ".types", - + "FlowActionStripeUpdateCustomerType": ".types", - "FlowActionTelegram": ".types", - "FlowActionTelegramSendMessage": ".types", - + "FlowActionTelegramSendMessageAction": ".types", - "FlowActionTelegramSendMessageParams": ".types", - + "FlowActionTelegramSendMessageType": ".types", - "FlowActionTwilio": ".types", - "FlowActionTwilioMakeCall": ".types", - + "FlowActionTwilioMakeCallAction": ".types", - "FlowActionTwilioMakeCallParams": ".types", - + "FlowActionTwilioMakeCallType": ".types", - "FlowActionTwilioSendSms": ".types", - + "FlowActionTwilioSendSmsAction": ".types", - "FlowActionTwilioSendSmsParams": ".types", - + "FlowActionTwilioSendSmsType": ".types", - "FlowActionWhatsapp": ".types", - "FlowActionWhatsappSendMessage": ".types", - + "FlowActionWhatsappSendMessageAction": ".types", - "FlowActionWhatsappSendMessageParams": ".types", - "FlowActionWhatsappSendMessageParamsPayload": ".types", - "FlowActionWhatsappSendMessageParamsPayloadObject": ".types", - "FlowActionWhatsappSendMessageParamsType": ".types", - + "FlowActionWhatsappSendMessageType": ".types", - "FlowActionXml": ".types", - "FlowActionXmlParseXml": ".types", - + "FlowActionXmlParseXmlAction": ".types", - "FlowActionXmlParseXmlParams": ".types", - + "FlowActionXmlParseXmlType": ".types", - "FlowActionXmlSerializeXml": ".types", - + "FlowActionXmlSerializeXmlAction": ".types", - "FlowActionXmlSerializeXmlParams": ".types", - "FlowActionXmlSerializeXmlParamsObject": ".types", - "FlowActionXmlSerializeXmlParamsObjectObject": ".types", - + "FlowActionXmlSerializeXmlType": ".types", - "FlowActionZapier": ".types", - "FlowActionZapierTriggerWebhook": ".types", - + "FlowActionZapierTriggerWebhookAction": ".types", - "FlowActionZapierTriggerWebhookParams": ".types", - "FlowActionZapierTriggerWebhookParamsMethod": ".types", - + "FlowActionZapierTriggerWebhookType": ".types", - "FlowExecutionDebug": ".types", - "FlowExecutionSummary": ".types", - "FlowSummary": ".types", - + "FlowsVaultConnectioSetupApiKey": ".types", - + "FlowsVaultConnectioSetupApiKeyWithBaseUrl": ".types", - + "FlowsVaultConnectioSetupBigqueryOauthJwt": ".types", - + "FlowsVaultConnectioSetupHttpBearer": ".types", - + "FlowsVaultConnectioSetupJwt": ".types", - + "FlowsVaultConnectioSetupJwtAlgorithmEnum": ".types", - + "FlowsVaultConnectioSetupMailjetApiKey": ".types", - + "FlowsVaultConnectioSetupOauthApp": ".types", - + "FlowsVaultConnectioSetupOauthCode": ".types", - + "FlowsVaultConnectioSetupSecretApiKey": ".types", - + "FlowsVaultConnectioSetupStripeKeyPair": ".types", - + "FlowsVaultConnectioSetupToken": ".types", - + "FlowsVaultConnectioSetupTwilioApiKey": ".types", - + "FlowsVaultConnectioSetupTypeApiKeyEnum": ".types", - + "FlowsVaultConnectioSetupTypeBearerEnum": ".types", - + "FlowsVaultConnectioSetupTypeJwtEnum": ".types", - + "FlowsVaultConnectioSetupTypeKeyPairEnum": ".types", - + "FlowsVaultConnectioSetupTypeOauthAppEnum": ".types", - + "FlowsVaultConnectioSetupTypeOauthCodeEnum": ".types", - + "FlowsVaultConnectioSetupTypeOauthJwtEnum": ".types", - + "FlowsVaultConnectioSetupTypeTokenEnum": ".types", - + "FlowsVaultConnectioSetupTypeWebhookEnum": ".types", - + "FlowsVaultConnectioSetupWebhook": ".types", - + "FlowsVaultConnectionAppIdActivecampaignEnum": ".types", - + "FlowsVaultConnectionAppIdAirtableEnum": ".types", - + "FlowsVaultConnectionAppIdAuth0Enum": ".types", - + "FlowsVaultConnectionAppIdBigqueryEnum": ".types", - + "FlowsVaultConnectionAppIdClearbitEnum": ".types", - + "FlowsVaultConnectionAppIdDocusignEnum": ".types", - + "FlowsVaultConnectionAppIdGoogleSheetsEnum": ".types", - + "FlowsVaultConnectionAppIdHttpEnum": ".types", - + "FlowsVaultConnectionAppIdHubspotEnum": ".types", - + "FlowsVaultConnectionAppIdJwtEnum": ".types", - + "FlowsVaultConnectionAppIdMailchimpEnum": ".types", - + "FlowsVaultConnectionAppIdMailjetEnum": ".types", - + "FlowsVaultConnectionAppIdPipedriveEnum": ".types", - + "FlowsVaultConnectionAppIdSalesforceEnum": ".types", - + "FlowsVaultConnectionAppIdSendgridEnum": ".types", - + "FlowsVaultConnectionAppIdSlackEnum": ".types", - + "FlowsVaultConnectionAppIdStripeEnum": ".types", - + "FlowsVaultConnectionAppIdTelegramEnum": ".types", - + "FlowsVaultConnectionAppIdTwilioEnum": ".types", - + "FlowsVaultConnectionAppIdWhatsappEnum": ".types", - + "FlowsVaultConnectionAppIdZapierEnum": ".types", - + "FlowsVaultConnectionHttpApiKeySetup": ".types", - + "FlowsVaultConnectionHttpApiKeySetupInEnum": ".types", - + "FlowsVaultConnectionHttpBasicAuthSetup": ".types", - + "FlowsVaultConnectionHttpOauthClientCredentialsSetup": ".types", - + "FlowsVaultConnectionSetupTypeApiKeyEnum": ".types", - + "FlowsVaultConnectionSetupTypeBasicAuthEnum": ".types", - + "FlowsVaultConnectionSetupTypeOauthClientCredentialsEnum": ".types", - + "FlowsVaultConnectionSummary": ".types", - "ForbiddenError": ".errors", - "FormBlock": ".types", - "FormBlockDivider": ".types", - @@ -1916,35 +4764,51 @@ _dynamic_imports: typing.Dict[str, str] = { - "FormWidgetTypeRecaptchaConst": ".types", - "FormsRequestParametersHydrateEnum": ".types", - "GetActionExecutionResponseContent": ".types", - + "GetActionModuleActionsResponseContent": ".types", - + "GetActionModuleResponseContent": ".types", - + "GetActionModuleVersionResponseContent": ".types", - + "GetActionModuleVersionsResponseContent": ".types", - + "GetActionModulesResponseContent": ".types", - "GetActionResponseContent": ".types", - "GetActionVersionResponseContent": ".types", - "GetActiveUsersCountStatsResponseContent": ".types", - "GetAculResponseContent": ".types", - + "GetAttackProtectionCaptchaResponseContent": ".types", - + "GetBotDetectionSettingsResponseContent": ".types", - "GetBrandingDefaultThemeResponseContent": ".types", - "GetBrandingPhoneProviderResponseContent": ".types", - "GetBrandingResponseContent": ".types", - "GetBrandingThemeResponseContent": ".types", - "GetBreachedPasswordDetectionSettingsResponseContent": ".types", - "GetBruteForceSettingsResponseContent": ".types", - - "GetBruteForceSettingsResponseContentMode": ".types", - - "GetBruteForceSettingsResponseContentShieldsItem": ".types", - "GetClientCredentialResponseContent": ".types", - + "GetClientGrantResponseContent": ".types", - "GetClientResponseContent": ".types", - "GetConnectionEnabledClientsResponseContent": ".types", - + "GetConnectionProfileResponseContent": ".types", - + "GetConnectionProfileTemplateResponseContent": ".types", - "GetConnectionResponseContent": ".types", - "GetCustomDomainResponseContent": ".types", - "GetCustomSigningKeysResponseContent": ".types", - "GetCustomTextsByLanguageResponseContent": ".types", - + "GetDefaultCanonicalDomainResponseContent": ".types", - + "GetDefaultCustomDomainResponseContent": ".types", - + "GetDefaultDomainResponseContent": ".types", - + "GetDirectoryProvisioningDefaultMappingResponseContent": ".types", - + "GetDirectoryProvisioningResponseContent": ".types", - "GetEmailProviderResponseContent": ".types", - "GetEmailTemplateResponseContent": ".types", - "GetEncryptionKeyResponseContent": ".types", - "GetEventStreamDeliveryHistoryResponseContent": ".types", - "GetEventStreamResponseContent": ".types", - - "GetEventStreamStatsResponseContent": ".types", - + "GetFlowExecutionRequestParametersHydrateEnum": ".types", - "GetFlowExecutionResponseContent": ".types", - "GetFlowRequestParametersHydrateEnum": ".types", - "GetFlowResponseContent": ".types", - + "GetFlowsVaultConnectionResponseContent": ".types", - "GetFormResponseContent": ".types", - + "GetGroupMembersResponseContent": ".types", - + "GetGroupResponseContent": ".types", - "GetGuardianEnrollmentResponseContent": ".types", - "GetGuardianFactorDuoSettingsResponseContent": ".types", - "GetGuardianFactorPhoneMessageTypesResponseContent": ".types", - @@ -1963,18 +4827,25 @@ _dynamic_imports: typing.Dict[str, str] = { - "GetJobGenericErrorResponseContent": ".types", - "GetJobImportUserError": ".types", - "GetJobResponseContent": ".types", - + "GetJobSummary": ".types", - "GetJobUserError": ".types", - "GetLogResponseContent": ".types", - "GetLogStreamResponseContent": ".types", - "GetNetworkAclsResponseContent": ".types", - + "GetOrganizationAllConnectionResponseContent": ".types", - "GetOrganizationByNameResponseContent": ".types", - "GetOrganizationConnectionResponseContent": ".types", - + "GetOrganizationDiscoveryDomainByNameResponseContent": ".types", - + "GetOrganizationDiscoveryDomainResponseContent": ".types", - "GetOrganizationInvitationResponseContent": ".types", - "GetOrganizationResponseContent": ".types", - "GetPartialsResponseContent": ".types", - "GetPhoneTemplateResponseContent": ".types", - "GetRefreshTokenResponseContent": ".types", - + "GetRefreshTokensPaginatedResponseContent": ".types", - "GetResourceServerResponseContent": ".types", - + "GetRiskAssessmentsSettingsNewDeviceResponseContent": ".types", - + "GetRiskAssessmentsSettingsResponseContent": ".types", - "GetRoleResponseContent": ".types", - "GetRuleResponseContent": ".types", - "GetScimConfigurationDefaultMappingResponseContent": ".types", - @@ -1990,9 +4861,17 @@ _dynamic_imports: typing.Dict[str, str] = { - "GetTokenExchangeProfileResponseContent": ".types", - "GetUniversalLoginTemplate": ".types", - "GetUniversalLoginTemplateResponseContent": ".types", - + "GetUserAttributeProfileResponseContent": ".types", - + "GetUserAttributeProfileTemplateResponseContent": ".types", - "GetUserAuthenticationMethodResponseContent": ".types", - + "GetUserGroupsPaginatedResponseContent": ".types", - "GetUserResponseContent": ".types", - "GetVerifiableCredentialTemplateResponseContent": ".types", - + "GoneError": ".errors", - + "Group": ".types", - + "GroupMember": ".types", - + "GroupMemberTypeEnum": ".types", - + "GroupTypeEnum": ".types", - "GuardianEnrollmentDate": ".types", - "GuardianEnrollmentFactorEnum": ".types", - "GuardianEnrollmentStatus": ".types", - @@ -2007,6 +4886,7 @@ _dynamic_imports: typing.Dict[str, str] = { - "HttpCustomHeader": ".types", - "Identity": ".types", - "IdentityProviderEnum": ".types", - + "IdentityProviderOnlyAuth0Enum": ".types", - "ImportEncryptionKeyResponseContent": ".types", - "Integration": ".types", - "IntegrationFeatureTypeEnum": ".types", - @@ -2017,29 +4897,40 @@ _dynamic_imports: typing.Dict[str, str] = { - "IntegrationSemVer": ".types", - "InternalServerError": ".errors", - "JobFileFormatEnum": ".types", - + "LinkedClientConfiguration": ".types", - "ListActionBindingsPaginatedResponseContent": ".types", - "ListActionTriggersResponseContent": ".types", - "ListActionVersionsPaginatedResponseContent": ".types", - "ListActionsPaginatedResponseContent": ".types", - "ListAculsOffsetPaginatedResponseContent": ".types", - + "ListAculsResponseContentItem": ".types", - "ListBrandingPhoneProvidersResponseContent": ".types", - "ListClientConnectionsResponseContent": ".types", - "ListClientGrantOrganizationsPaginatedResponseContent": ".types", - "ListClientGrantPaginatedResponseContent": ".types", - "ListClientsOffsetPaginatedResponseContent": ".types", - + "ListConnectionProfileTemplateResponseContent": ".types", - + "ListConnectionProfilesPaginatedResponseContent": ".types", - "ListConnectionsCheckpointPaginatedResponseContent": ".types", - "ListCustomDomainsResponseContent": ".types", - "ListDeviceCredentialsOffsetPaginatedResponseContent": ".types", - + "ListDirectoryProvisioningsResponseContent": ".types", - "ListEncryptionKeyOffsetPaginatedResponseContent": ".types", - + "ListEventStreamsResponseContent": ".types", - "ListFlowExecutionsPaginatedResponseContent": ".types", - "ListFlowsOffsetPaginatedResponseContent": ".types", - + "ListFlowsRequestParametersHydrateEnum": ".types", - + "ListFlowsVaultConnectionsOffsetPaginatedResponseContent": ".types", - "ListFormsOffsetPaginatedResponseContent": ".types", - + "ListGroupsPaginatedResponseContent": ".types", - "ListGuardianPoliciesResponseContent": ".types", - "ListHooksOffsetPaginatedResponseContent": ".types", - "ListLogOffsetPaginatedResponseContent": ".types", - "ListNetworkAclsOffsetPaginatedResponseContent": ".types", - + "ListOrganizationAllConnectionsOffsetPaginatedResponseContent": ".types", - "ListOrganizationClientGrantsOffsetPaginatedResponseContent": ".types", - "ListOrganizationConnectionsOffsetPaginatedResponseContent": ".types", - + "ListOrganizationDiscoveryDomainsResponseContent": ".types", - "ListOrganizationInvitationsOffsetPaginatedResponseContent": ".types", - "ListOrganizationMemberRolesOffsetPaginatedResponseContent": ".types", - "ListOrganizationMembersPaginatedResponseContent": ".types", - @@ -2051,12 +4942,17 @@ _dynamic_imports: typing.Dict[str, str] = { - "ListRoleUsersPaginatedResponseContent": ".types", - "ListRolesOffsetPaginatedResponseContent": ".types", - "ListRulesOffsetPaginatedResponseContent": ".types", - + "ListScimConfigurationsResponseContent": ".types", - "ListSelfServiceProfileCustomTextResponseContent": ".types", - "ListSelfServiceProfilesPaginatedResponseContent": ".types", - + "ListSynchronizedGroupsResponseContent": ".types", - "ListTokenExchangeProfileResponseContent": ".types", - + "ListUserAttributeProfileTemplateResponseContent": ".types", - + "ListUserAttributeProfilesPaginatedResponseContent": ".types", - "ListUserAuthenticationMethodsOffsetPaginatedResponseContent": ".types", - "ListUserBlocksByIdentifierResponseContent": ".types", - "ListUserBlocksResponseContent": ".types", - + "ListUserConnectedAccountsResponseContent": ".types", - "ListUserGrantsOffsetPaginatedResponseContent": ".types", - "ListUserOrganizationsOffsetPaginatedResponseContent": ".types", - "ListUserPermissionsOffsetPaginatedResponseContent": ".types", - @@ -2111,6 +5007,7 @@ _dynamic_imports: typing.Dict[str, str] = { + @@ -5016,6 +5020,7 @@ _dynamic_imports: typing.Dict[str, str] = { "LogStreamSumoEnum": ".types", "LogStreamSumoResponseSchema": ".types", "LogStreamSumoSink": ".types", @@ -4284,2466 +71,38 @@ patches: "MdlPresentationProperties": ".types", "MdlPresentationRequest": ".types", "MdlPresentationRequestProperties": ".types", - @@ -2125,6 +5022,8 @@ _dynamic_imports: typing.Dict[str, str] = { - "NetworkAclActionLogEnum": ".types", - "NetworkAclActionRedirectEnum": ".types", - "NetworkAclMatch": ".types", - + "NetworkAclMatchConnectingIpv4Cidr": ".types", - + "NetworkAclMatchConnectingIpv6Cidr": ".types", - "NetworkAclMatchIpv4Cidr": ".types", - "NetworkAclMatchIpv6Cidr": ".types", - "NetworkAclRule": ".types", - @@ -2134,11 +5033,15 @@ _dynamic_imports: typing.Dict[str, str] = { - "OauthScope": ".types", - "Organization": ".types", - "OrganizationAccessLevelEnum": ".types", - + "OrganizationAccessLevelEnumWithNull": ".types", - + "OrganizationAllConnectionPost": ".types", - "OrganizationBranding": ".types", - "OrganizationBrandingColors": ".types", - "OrganizationClientGrant": ".types", - "OrganizationConnection": ".types", - "OrganizationConnectionInformation": ".types", - + "OrganizationDiscoveryDomain": ".types", - + "OrganizationDiscoveryDomainStatus": ".types", - "OrganizationEnabledConnection": ".types", - "OrganizationInvitation": ".types", - "OrganizationInvitationInvitee": ".types", - @@ -2149,6 +5052,12 @@ _dynamic_imports: typing.Dict[str, str] = { - "OrganizationUsageEnum": ".types", - "PartialGroupsEnum": ".types", - "PartialPhoneTemplateContent": ".types", - + "PasswordCharacterTypeEnum": ".types", - + "PasswordCharacterTypeRulePolicyEnum": ".types", - + "PasswordDefaultDictionariesEnum": ".types", - + "PasswordIdenticalCharactersPolicyEnum": ".types", - + "PasswordMaxLengthExceededPolicyEnum": ".types", - + "PasswordSequentialCharactersPolicyEnum": ".types", - "PatchClientCredentialResponseContent": ".types", - "PatchSupplementalSignalsResponseContent": ".types", - "PaymentRequiredError": ".errors", - @@ -2166,9 +5075,13 @@ _dynamic_imports: typing.Dict[str, str] = { - "PhoneTemplateContent": ".types", - "PhoneTemplateNotificationTypeEnum": ".types", - "PostClientCredentialResponseContent": ".types", - + "PostConnectionKeysAlgEnum": ".types", - + "PostConnectionKeysRequestContent": ".types", - + "PostConnectionsKeysResponseContent": ".types", - + "PostConnectionsKeysResponseContentItem": ".types", - + "PreconditionFailedError": ".errors", - "PreferredAuthenticationMethodEnum": ".types", - - "PrivateKeyJwt": ".types", - - "PrivateKeyJwtCredentials": ".types", - + "PreviewCimdMetadataResponseContent": ".types", - "PromptGroupNameEnum": ".types", - "PromptLanguageEnum": ".types", - "PublicKeyCredential": ".types", - @@ -2178,18 +5091,27 @@ _dynamic_imports: typing.Dict[str, str] = { - "RefreshTokenDateObject": ".types", - "RefreshTokenDevice": ".types", - "RefreshTokenExpirationTypeEnum": ".types", - + "RefreshTokenMetadata": ".types", - "RefreshTokenResourceServer": ".types", - "RefreshTokenResponseContent": ".types", - "RefreshTokenRotationTypeEnum": ".types", - "RefreshTokenSessionId": ".types", - "RegenerateUsersRecoveryCodeResponseContent": ".types", - + "RegisterCimdClientResponseContent": ".types", - "ResetPhoneTemplateRequestContent": ".types", - "ResetPhoneTemplateResponseContent": ".types", - "ResourceServer": ".types", - + "ResourceServerAuthorizationPolicy": ".types", - "ResourceServerConsentPolicyEnum": ".types", - "ResourceServerProofOfPossession": ".types", - "ResourceServerProofOfPossessionMechanismEnum": ".types", - + "ResourceServerProofOfPossessionRequiredForEnum": ".types", - "ResourceServerScope": ".types", - + "ResourceServerSubjectTypeAuthorization": ".types", - + "ResourceServerSubjectTypeAuthorizationClient": ".types", - + "ResourceServerSubjectTypeAuthorizationClientPolicyEnum": ".types", - + "ResourceServerSubjectTypeAuthorizationUser": ".types", - + "ResourceServerSubjectTypeAuthorizationUserPolicyEnum": ".types", - "ResourceServerTokenDialectResponseEnum": ".types", - "ResourceServerTokenDialectSchemaEnum": ".types", - "ResourceServerTokenEncryption": ".types", - @@ -2200,6 +5122,7 @@ _dynamic_imports: typing.Dict[str, str] = { - "RevokedSigningKeysResponseContent": ".types", - "Role": ".types", - "RoleUser": ".types", - + "RollbackActionModuleResponseContent": ".types", - "RotateClientSecretResponseContent": ".types", - "RotateConnectionKeysRequestContent": ".types", - "RotateConnectionKeysSigningAlgEnum": ".types", - @@ -2207,6 +5130,7 @@ _dynamic_imports: typing.Dict[str, str] = { - "RotateSigningKeysResponseContent": ".types", - "Rule": ".types", - "RulesConfig": ".types", - + "ScimConfiguration": ".types", - "ScimMappingItem": ".types", - "ScimTokenItem": ".types", - "ScreenGroupNameEnum": ".types", - @@ -2223,7 +5147,9 @@ _dynamic_imports: typing.Dict[str, str] = { - "SelfServiceProfileSsoTicketConnectionOptions": ".types", - "SelfServiceProfileSsoTicketDomainAliasesConfig": ".types", - "SelfServiceProfileSsoTicketDomainVerificationEnum": ".types", - + "SelfServiceProfileSsoTicketEnabledFeatures": ".types", - "SelfServiceProfileSsoTicketEnabledOrganization": ".types", - + "SelfServiceProfileSsoTicketGoogleWorkspaceConfig": ".types", - "SelfServiceProfileSsoTicketIdpInitiatedClientProtocolEnum": ".types", - "SelfServiceProfileSsoTicketIdpInitiatedOptions": ".types", - "SelfServiceProfileSsoTicketProvisioningConfig": ".types", - @@ -2241,6 +5167,7 @@ _dynamic_imports: typing.Dict[str, str] = { - "SessionDate": ".types", - "SessionDeviceMetadata": ".types", - "SessionIp": ".types", - + "SessionMetadata": ".types", - "SessionResponseContent": ".types", - "SetCustomSigningKeysResponseContent": ".types", - "SetEmailTemplateResponseContent": ".types", - @@ -2251,11 +5178,8 @@ _dynamic_imports: typing.Dict[str, str] = { - "SetGuardianFactorSmsTemplatesResponseContent": ".types", - "SetGuardianFactorsProviderPhoneResponseContent": ".types", - "SetGuardianFactorsProviderPhoneTwilioResponseContent": ".types", - - "SetGuardianFactorsProviderPushNotificationApnsRequestContent": ".types", - "SetGuardianFactorsProviderPushNotificationApnsResponseContent": ".types", - - "SetGuardianFactorsProviderPushNotificationFcmRequestContent": ".types", - "SetGuardianFactorsProviderPushNotificationFcmResponseContent": ".types", - - "SetGuardianFactorsProviderPushNotificationFcmv1RequestContent": ".types", - "SetGuardianFactorsProviderPushNotificationFcmv1ResponseContent": ".types", - "SetGuardianFactorsProviderPushNotificationResponseContent": ".types", - "SetGuardianFactorsProviderPushNotificationSnsResponseContent": ".types", - @@ -2286,15 +5210,20 @@ _dynamic_imports: typing.Dict[str, str] = { - "SuspiciousIpThrottlingPreUserRegistrationStage": ".types", - "SuspiciousIpThrottlingShieldsEnum": ".types", - "SuspiciousIpThrottlingStage": ".types", - + "SynchronizeGroupsEnum": ".types", - + "SynchronizedGroupPayload": ".types", - "TenantOidcLogoutSettings": ".types", - "TenantSettingsDeviceFlow": ".types", - "TenantSettingsDeviceFlowCharset": ".types", - + "TenantSettingsDynamicClientRegistrationSecurityMode": ".types", - "TenantSettingsErrorPage": ".types", - "TenantSettingsFlags": ".types", - "TenantSettingsGuardianPage": ".types", - "TenantSettingsMtls": ".types", - "TenantSettingsPasswordPage": ".types", - + "TenantSettingsResourceParameterProfile": ".types", - "TenantSettingsSessions": ".types", - + "TenantSettingsSupportedLocalesEnum": ".types", - "TestActionPayload": ".types", - "TestActionResponseContent": ".types", - "TestActionResultPayload": ".types", - @@ -2302,10 +5231,10 @@ _dynamic_imports: typing.Dict[str, str] = { - "TestEventDataContent": ".types", - "TokenExchangeProfileResponseContent": ".types", - "TokenExchangeProfileTypeEnum": ".types", - - "TokenProvider": ".token_provider", + @@ -5242,9 +5247,9 @@ _dynamic_imports: typing.Dict[str, str] = { "TokenQuota": ".types", "TokenQuotaClientCredentials": ".types", "TokenQuotaConfiguration": ".types", + "TokenProvider": ".token_provider", "TooManyRequestsError": ".errors", + "TooManyRequestsSchema": ".types", + - "TooManyRequestsSchemaError": ".types", "TwilioProviderConfiguration": ".types", "TwilioProviderCredentials": ".types", - @@ -2313,54 +5242,151 @@ _dynamic_imports: typing.Dict[str, str] = { - "UnauthorizedError": ".errors", - "UniversalLoginExperienceEnum": ".types", - "UpdateActionBindingsResponseContent": ".types", - + "UpdateActionModuleResponseContent": ".types", - "UpdateActionResponseContent": ".types", - "UpdateAculResponseContent": ".types", - + "UpdateAttackProtectionCaptchaResponseContent": ".types", - + "UpdateBotDetectionSettingsResponseContent": ".types", - "UpdateBrandingColors": ".types", - "UpdateBrandingFont": ".types", - + "UpdateBrandingIdentifiers": ".types", - + "UpdateBrandingLoginDisplayEnum": ".types", - "UpdateBrandingPageBackground": ".types", - + "UpdateBrandingPhoneDisplay": ".types", - + "UpdateBrandingPhoneFormattingEnum": ".types", - + "UpdateBrandingPhoneMaskingEnum": ".types", - "UpdateBrandingPhoneProviderResponseContent": ".types", - "UpdateBrandingResponseContent": ".types", - "UpdateBrandingThemeResponseContent": ".types", - "UpdateBreachedPasswordDetectionSettingsResponseContent": ".types", - "UpdateBruteForceSettingsResponseContent": ".types", - - "UpdateBruteForceSettingsResponseContentMode": ".types", - - "UpdateBruteForceSettingsResponseContentShieldsItem": ".types", - "UpdateClientGrantResponseContent": ".types", - "UpdateClientResponseContent": ".types", - "UpdateConnectionOptions": ".types", - + "UpdateConnectionProfileResponseContent": ".types", - + "UpdateConnectionRequestContentAd": ".types", - + "UpdateConnectionRequestContentAdfs": ".types", - + "UpdateConnectionRequestContentAmazon": ".types", - + "UpdateConnectionRequestContentApple": ".types", - + "UpdateConnectionRequestContentAuth0": ".types", - + "UpdateConnectionRequestContentAuth0Oidc": ".types", - + "UpdateConnectionRequestContentAzureAd": ".types", - + "UpdateConnectionRequestContentBaidu": ".types", - + "UpdateConnectionRequestContentBitbucket": ".types", - + "UpdateConnectionRequestContentBitly": ".types", - + "UpdateConnectionRequestContentBox": ".types", - + "UpdateConnectionRequestContentCustom": ".types", - + "UpdateConnectionRequestContentDaccount": ".types", - + "UpdateConnectionRequestContentDropbox": ".types", - + "UpdateConnectionRequestContentDwolla": ".types", - + "UpdateConnectionRequestContentEmail": ".types", - + "UpdateConnectionRequestContentEvernote": ".types", - + "UpdateConnectionRequestContentEvernoteSandbox": ".types", - + "UpdateConnectionRequestContentExact": ".types", - + "UpdateConnectionRequestContentFacebook": ".types", - + "UpdateConnectionRequestContentFitbit": ".types", - + "UpdateConnectionRequestContentGitHub": ".types", - + "UpdateConnectionRequestContentGoogleApps": ".types", - + "UpdateConnectionRequestContentGoogleOAuth2": ".types", - + "UpdateConnectionRequestContentInstagram": ".types", - + "UpdateConnectionRequestContentIp": ".types", - + "UpdateConnectionRequestContentLine": ".types", - + "UpdateConnectionRequestContentLinkedin": ".types", - + "UpdateConnectionRequestContentOAuth1": ".types", - + "UpdateConnectionRequestContentOAuth2": ".types", - + "UpdateConnectionRequestContentOffice365": ".types", - + "UpdateConnectionRequestContentOidc": ".types", - + "UpdateConnectionRequestContentOkta": ".types", - + "UpdateConnectionRequestContentPaypal": ".types", - + "UpdateConnectionRequestContentPaypalSandbox": ".types", - + "UpdateConnectionRequestContentPingFederate": ".types", - + "UpdateConnectionRequestContentPlanningCenter": ".types", - + "UpdateConnectionRequestContentSalesforce": ".types", - + "UpdateConnectionRequestContentSalesforceCommunity": ".types", - + "UpdateConnectionRequestContentSalesforceSandbox": ".types", - + "UpdateConnectionRequestContentSaml": ".types", - + "UpdateConnectionRequestContentSharepoint": ".types", - + "UpdateConnectionRequestContentShop": ".types", - + "UpdateConnectionRequestContentShopify": ".types", - + "UpdateConnectionRequestContentSms": ".types", - + "UpdateConnectionRequestContentSoundcloud": ".types", - + "UpdateConnectionRequestContentThirtySevenSignals": ".types", - + "UpdateConnectionRequestContentTwitter": ".types", - + "UpdateConnectionRequestContentUntappd": ".types", - + "UpdateConnectionRequestContentVkontakte": ".types", - + "UpdateConnectionRequestContentWeibo": ".types", - + "UpdateConnectionRequestContentWindowsLive": ".types", - + "UpdateConnectionRequestContentWordpress": ".types", - + "UpdateConnectionRequestContentYahoo": ".types", - + "UpdateConnectionRequestContentYandex": ".types", - "UpdateConnectionResponseContent": ".types", - "UpdateCustomDomainResponseContent": ".types", - + "UpdateDefaultCanonicalDomainResponseContent": ".types", - + "UpdateDefaultCustomDomainResponseContent": ".types", - + "UpdateDefaultDomainResponseContent": ".types", - + "UpdateDirectoryProvisioningRequestContent": ".types", - + "UpdateDirectoryProvisioningResponseContent": ".types", - "UpdateEmailProviderResponseContent": ".types", - "UpdateEmailTemplateResponseContent": ".types", - "UpdateEnabledClientConnectionsRequestContent": ".types", - "UpdateEnabledClientConnectionsRequestContentItem": ".types", - "UpdateEventStreamResponseContent": ".types", - "UpdateFlowResponseContent": ".types", - + "UpdateFlowsVaultConnectionResponseContent": ".types", - + "UpdateFlowsVaultConnectionSetup": ".types", - "UpdateFormResponseContent": ".types", - "UpdateGuardianFactorDuoSettingsResponseContent": ".types", - + "UpdateGuardianFactorsProviderPushNotificationApnsResponseContent": ".types", - + "UpdateGuardianFactorsProviderPushNotificationFcmResponseContent": ".types", - + "UpdateGuardianFactorsProviderPushNotificationFcmv1ResponseContent": ".types", - "UpdateGuardianFactorsProviderPushNotificationSnsResponseContent": ".types", - "UpdateHookResponseContent": ".types", - "UpdateHookSecretRequestContent": ".types", - "UpdateLogStreamResponseContent": ".types", - "UpdateNetworkAclResponseContent": ".types", - + "UpdateOrganizationAllConnectionResponseContent": ".types", - "UpdateOrganizationConnectionResponseContent": ".types", - + "UpdateOrganizationDiscoveryDomainResponseContent": ".types", - "UpdateOrganizationResponseContent": ".types", - "UpdatePhoneTemplateResponseContent": ".types", - + "UpdateRefreshTokenResponseContent": ".types", - "UpdateResourceServerResponseContent": ".types", - + "UpdateRiskAssessmentsSettingsNewDeviceResponseContent": ".types", - + "UpdateRiskAssessmentsSettingsResponseContent": ".types", - "UpdateRoleResponseContent": ".types", - "UpdateRuleResponseContent": ".types", - "UpdateScimConfigurationResponseContent": ".types", - "UpdateSelfServiceProfileResponseContent": ".types", - + "UpdateSessionResponseContent": ".types", - "UpdateSettingsResponseContent": ".types", - "UpdateSuspiciousIpThrottlingSettingsResponseContent": ".types", - "UpdateTenantSettingsResponseContent": ".types", - "UpdateTokenQuota": ".types", - "UpdateUniversalLoginTemplateRequestContent": ".types", - "UpdateUniversalLoginTemplateRequestContentTemplate": ".types", - + "UpdateUserAttributeProfileResponseContent": ".types", - "UpdateUserAuthenticationMethodResponseContent": ".types", - "UpdateUserResponseContent": ".types", - "UpdateVerifiableCredentialTemplateResponseContent": ".types", - "UserAppMetadataSchema": ".types", - + "UserAttributeProfile": ".types", - + "UserAttributeProfileId": ".types", - + "UserAttributeProfileName": ".types", - + "UserAttributeProfileOidcMapping": ".types", - + "UserAttributeProfilePatchUserId": ".types", - + "UserAttributeProfileSamlMapping": ".types", - + "UserAttributeProfileStrategyOverrides": ".types", - + "UserAttributeProfileStrategyOverridesMapping": ".types", - + "UserAttributeProfileStrategyOverridesUserId": ".types", - + "UserAttributeProfileStrategyOverridesUserIdMapping": ".types", - + "UserAttributeProfileTemplate": ".types", - + "UserAttributeProfileTemplateItem": ".types", - + "UserAttributeProfileUserAttributeAdditionalProperties": ".types", - + "UserAttributeProfileUserAttributes": ".types", - + "UserAttributeProfileUserId": ".types", - + "UserAttributeProfileUserIdOidcMappingEnum": ".types", - + "UserAttributeProfileUserIdOidcStrategyOverrideMapping": ".types", - + "UserAttributeProfileUserIdSamlMapping": ".types", - "UserAuthenticationMethod": ".types", - "UserAuthenticationMethodProperties": ".types", - "UserAuthenticationMethodPropertiesEnum": ".types", - @@ -2369,7 +5395,8 @@ _dynamic_imports: typing.Dict[str, str] = { - "UserEnrollmentAuthMethodEnum": ".types", - "UserEnrollmentStatusEnum": ".types", - "UserGrant": ".types", - - "UserIdEnum": ".types", - + "UserGroupsResponseSchema": ".types", - + "UserId": ".types", - "UserIdentity": ".types", - "UserIdentityProviderEnum": ".types", - "UserIdentitySchema": ".types", - @@ -2388,6 +5415,8 @@ _dynamic_imports: typing.Dict[str, str] = { - "VerificationMethodEnum": ".types", - "VerifyCustomDomainResponseContent": ".types", - "VerifyEmailTicketResponseContent": ".types", - + "X509CertificateCredential": ".types", - + "X509CertificateCredentialTypeEnum": ".types", - "__version__": ".version", - "actions": ".actions", - "anomaly": ".anomaly", - @@ -2395,14 +5424,17 @@ _dynamic_imports: typing.Dict[str, str] = { - "branding": ".branding", - "client_grants": ".client_grants", - "clients": ".clients", - + "connection_profiles": ".connection_profiles", - "connections": ".connections", - "custom_domains": ".custom_domains", - "device_credentials": ".device_credentials", - "email_templates": ".email_templates", - "emails": ".emails", - "event_streams": ".event_streams", - + "events": ".events", - "flows": ".flows", - "forms": ".forms", - + "groups": ".groups", - "guardian": ".guardian", - "hooks": ".hooks", - "jobs": ".jobs", - @@ -2414,6 +5446,7 @@ _dynamic_imports: typing.Dict[str, str] = { - "prompts": ".prompts", - "refresh_tokens": ".refresh_tokens", - "resource_servers": ".resource_servers", - + "risk_assessments": ".risk_assessments", - "roles": ".roles", - "rules": ".rules", - "rules_configs": ".rules_configs", - @@ -2424,6 +5457,7 @@ _dynamic_imports: typing.Dict[str, str] = { - "tenants": ".tenants", - "tickets": ".tickets", - "token_exchange_profiles": ".token_exchange_profiles", - + "user_attribute_profiles": ".user_attribute_profiles", - "user_blocks": ".user_blocks", - "user_grants": ".user_grants", - "users": ".users", - @@ -2465,6 +5499,15 @@ __all__ = [ - "ActionError", - "ActionExecutionResult", - "ActionExecutionStatusEnum", - + "ActionModuleAction", - + "ActionModuleDependency", - + "ActionModuleDependencyRequest", - + "ActionModuleListItem", - + "ActionModuleReference", - + "ActionModuleSecret", - + "ActionModuleSecretRequest", - + "ActionModuleVersion", - + "ActionModuleVersionReference", - "ActionSecretRequest", - "ActionSecretResponse", - "ActionTrigger", - @@ -2474,30 +5517,75 @@ __all__ = [ - "ActionVersionBuildStatusEnum", - "ActionVersionDependency", - "AculClientFilter", - + "AculClientFilterById", - + "AculClientFilterByMetadata", - "AculClientMetadata", - + "AculConfigs", - + "AculConfigsItem", - + "AculContextConfiguration", - + "AculContextConfigurationItem", - + "AculContextEnum", - "AculDomainFilter", - + "AculDomainFilterById", - + "AculDomainFilterByMetadata", - "AculDomainMetadata", - "AculFilters", - "AculHeadTag", - "AculHeadTagAttributes", - + "AculHeadTagContent", - "AculMatchTypeEnum", - "AculOrganizationFilter", - + "AculOrganizationFilterById", - + "AculOrganizationFilterByMetadata", - "AculOrganizationMetadata", - "AculRenderingModeEnum", - - "AculResponseContent", - "AddOrganizationConnectionResponseContent", - "AnomalyIpFormat", - "AppMetadata", - + "AssessorsTypeEnum", + "TwilioProviderDeliveryMethodEnum": ".types", + @@ -5557,6 +5562,8 @@ __all__ = [ "AssociateOrganizationClientGrantResponseContent", - + "AsyncApprovalNotificationsChannelsEnum", + "AsyncApprovalNotificationsChannelsEnum", "AsyncAuth0", + "AsyncManagementClient", + "AsyncTokenProvider", - + "AttackProtectionCaptchaArkoseResponseContent", - + "AttackProtectionCaptchaAuthChallengeRequest", - + "AttackProtectionCaptchaAuthChallengeResponseContent", - + "AttackProtectionCaptchaFriendlyCaptchaResponseContent", - + "AttackProtectionCaptchaHcaptchaResponseContent", - + "AttackProtectionCaptchaProviderId", - + "AttackProtectionCaptchaRecaptchaEnterpriseResponseContent", - + "AttackProtectionCaptchaRecaptchaV2ResponseContent", - + "AttackProtectionCaptchaSimpleCaptchaResponseContent", - + "AttackProtectionUpdateCaptchaArkose", - + "AttackProtectionUpdateCaptchaFriendlyCaptcha", - + "AttackProtectionUpdateCaptchaHcaptcha", - + "AttackProtectionUpdateCaptchaRecaptchaEnterprise", - + "AttackProtectionUpdateCaptchaRecaptchaV2", - "Auth0", - "Auth0Environment", - "AuthenticationMethodTypeEnum", - "AuthenticationTypeEnum", - "BadRequestError", - + "BotDetectionAllowlist", - + "BotDetectionChallengePolicyPasswordFlowEnum", - + "BotDetectionChallengePolicyPasswordResetFlowEnum", - + "BotDetectionChallengePolicyPasswordlessFlowEnum", - + "BotDetectionCidrBlock", - + "BotDetectionIPv4", - + "BotDetectionIPv6", - + "BotDetectionIPv6CidrBlock", - + "BotDetectionIpAddressOrCidrBlock", - + "BotDetectionLevelEnum", - + "BotDetectionMonitoringModeEnabled", - "BrandingColors", - "BrandingFont", - + "BrandingIdentifiers", - + "BrandingLoginDisplayEnum", - "BrandingPageBackground", - + "BrandingPhoneDisplay", - + "BrandingPhoneFormattingEnum", - + "BrandingPhoneMaskingEnum", - "BrandingThemeBorders", - "BrandingThemeBordersButtonsStyleEnum", - "BrandingThemeBordersInputsStyleEnum", - @@ -2525,7 +5613,18 @@ __all__ = [ - "BreachedPasswordDetectionPreUserRegistrationStage", - "BreachedPasswordDetectionShieldsEnum", - "BreachedPasswordDetectionStage", - + "BruteForceProtectionModeEnum", - + "BruteForceProtectionShieldsEnum", - + "BulkUpdateAculResponseContent", - + "CertificateSubjectDnCredential", - + "CertificateSubjectDnCredentialTypeEnum", - + "ChangePasswordTicketIdentity", - "ChangePasswordTicketResponseContent", - + "CimdMappedClientAuthenticationMethods", - + "CimdMappedClientAuthenticationMethodsPrivateKeyJwt", - + "CimdMappedClientFields", - + "CimdMappedPrivateKeyJwtCredential", - + "CimdValidationResult", - "Client", - "ClientAddonAws", - "ClientAddonAzureBlob", - @@ -2561,59 +5660,336 @@ __all__ = [ - "ClientAddonZoom", - "ClientAddons", - "ClientAppTypeEnum", - + "ClientAsyncApprovalNotificationsChannelsApiPatchConfiguration", - + "ClientAsyncApprovalNotificationsChannelsApiPostConfiguration", - "ClientAuthenticationMethod", - + "ClientAuthenticationMethodPrivateKeyJwt", - + "ClientAuthenticationMethodPrivateKeyJwtCredentials", - "ClientAuthenticationMethodSelfSignedTlsClientAuth", - + "ClientAuthenticationMethodSelfSignedTlsClientAuthCredentials", - "ClientAuthenticationMethodTlsClientAuth", - + "ClientAuthenticationMethodTlsClientAuthCredentials", - "ClientComplianceLevelEnum", - "ClientCreateAuthenticationMethod", - + "ClientCreateAuthenticationMethodPrivateKeyJwt", - + "ClientCreateAuthenticationMethodPrivateKeyJwtCredentials", - + "ClientCreateAuthenticationMethodTlsClientAuth", - + "ClientCreateAuthenticationMethodTlsClientAuthCredentials", - "ClientCredential", - "ClientCredentialAlgorithmEnum", - "ClientCredentialTypeEnum", - "ClientDefaultOrganization", - "ClientDefaultOrganizationFlowsEnum", - "ClientEncryptionKey", - + "ClientExternalMetadataCreatedByEnum", - + "ClientExternalMetadataTypeEnum", - "ClientGrantAllowAnyOrganizationEnum", - + "ClientGrantDefaultForEnum", - "ClientGrantOrganizationNullableUsageEnum", - "ClientGrantOrganizationUsageEnum", - "ClientGrantResponseContent", - + "ClientGrantSubjectTypeEnum", - "ClientJwtConfiguration", - "ClientJwtConfigurationScopes", - "ClientMetadata", - "ClientMobile", - "ClientMobileAndroid", - "ClientMobileiOs", - + "ClientMyOrganizationConfigurationAllowedStrategiesEnum", - + "ClientMyOrganizationDeletionBehaviorEnum", - + "ClientMyOrganizationPatchConfiguration", - + "ClientMyOrganizationPostConfiguration", - + "ClientMyOrganizationResponseConfiguration", - "ClientOidcBackchannelLogoutInitiators", - "ClientOidcBackchannelLogoutInitiatorsEnum", - "ClientOidcBackchannelLogoutInitiatorsModeEnum", - + "ClientOidcBackchannelLogoutSessionMetadata", - "ClientOidcBackchannelLogoutSettings", - + "ClientOrganizationDiscoveryEnum", - "ClientOrganizationRequireBehaviorEnum", - "ClientOrganizationRequireBehaviorPatchEnum", - "ClientOrganizationUsageEnum", - "ClientOrganizationUsagePatchEnum", - + "ClientRedirectionPolicyEnum", - "ClientRefreshTokenConfiguration", - + "ClientRefreshTokenPolicy", - "ClientSessionTransferAllowedAuthenticationMethodsEnum", - "ClientSessionTransferConfiguration", - + "ClientSessionTransferDelegationConfiguration", - + "ClientSessionTransferDelegationDeviceBindingEnum", - "ClientSessionTransferDeviceBindingEnum", - "ClientSignedRequestObjectWithCredentialId", - "ClientSignedRequestObjectWithPublicKey", - "ClientSigningKey", - "ClientSigningKeys", - + "ClientThirdPartySecurityModeEnum", - "ClientTokenEndpointAuthMethodEnum", - "ClientTokenEndpointAuthMethodOrNullEnum", - + "ClientTokenExchangeConfiguration", - + "ClientTokenExchangeConfigurationOrNull", - + "ClientTokenExchangeTypeEnum", - "ConflictError", - + "ConnectedAccount", - + "ConnectedAccountAccessTypeEnum", - + "ConnectionAccessTokenUrloAuth1", - + "ConnectionAcrValuesSupported", - + "ConnectionAdminAccessTokenExpiresInGoogleApps", - + "ConnectionAdminAccessTokenGoogleApps", - + "ConnectionAdminRefreshTokenGoogleApps", - + "ConnectionAgentIpad", - + "ConnectionAgentModeAd", - + "ConnectionAgentVersionAd", - + "ConnectionAllowedAudiencesGoogleOAuth2", - + "ConnectionApiBehaviorEnum", - + "ConnectionApiEnableGroups", - + "ConnectionApiEnableGroupsGoogleApps", - + "ConnectionApiEnableUsers", - + "ConnectionApiEnableUsersGoogleApps", - + "ConnectionAppDomainAzureAd", - + "ConnectionAssertionDecryptionAlgorithmProfileEnum", - + "ConnectionAssertionDecryptionSettings", - "ConnectionAttributeIdentifier", - + "ConnectionAttributeMapAttributes", - + "ConnectionAttributeMapOidc", - + "ConnectionAttributeMapOkta", - + "ConnectionAttributeMapUserinfoScope", - "ConnectionAttributes", - + "ConnectionAuthParamsAdditionalPropertiesOAuth2", - + "ConnectionAuthParamsEmail", - + "ConnectionAuthParamsMap", - + "ConnectionAuthParamsOAuth2", - "ConnectionAuthenticationMethods", - + "ConnectionAuthenticationPurpose", - + "ConnectionAuthorizationEndpoint", - + "ConnectionBaseUrlExact", - + "ConnectionBruteForceProtection", - + "ConnectionCalculatedThumbprintSaml", - + "ConnectionCertsAd", - + "ConnectionClaimTypesSupported", - + "ConnectionClaimsLocalesSupported", - + "ConnectionClaimsParameterSupported", - + "ConnectionClaimsSupported", - + "ConnectionClientId", - + "ConnectionClientIdAmazon", - + "ConnectionClientIdAzureAd", - + "ConnectionClientIdBitbucket", - + "ConnectionClientIdExact", - + "ConnectionClientIdFacebook", - + "ConnectionClientIdGoogleApps", - + "ConnectionClientIdGoogleOAuth2", - + "ConnectionClientIdLine", - + "ConnectionClientIdLinkedin", - + "ConnectionClientIdOAuth1", - + "ConnectionClientIdOAuth2", - + "ConnectionClientIdOidc", - + "ConnectionClientIdPaypal", - + "ConnectionClientIdSalesforce", - + "ConnectionClientIdWindowsLive", - + "ConnectionClientProtocolSaml", - + "ConnectionClientSecret", - + "ConnectionClientSecretAmazon", - + "ConnectionClientSecretAzureAd", - + "ConnectionClientSecretBitbucket", - + "ConnectionClientSecretExact", - + "ConnectionClientSecretFacebook", - + "ConnectionClientSecretGoogleApps", - + "ConnectionClientSecretGoogleOAuth2", - + "ConnectionClientSecretLine", - + "ConnectionClientSecretLinkedin", - + "ConnectionClientSecretOAuth1", - + "ConnectionClientSecretOAuth2", - + "ConnectionClientSecretOidc", - + "ConnectionClientSecretPaypal", - + "ConnectionClientSecretSalesforce", - + "ConnectionClientSecretWindowsLive", - + "ConnectionCommon", - + "ConnectionCommunityBaseUrlSalesforce", - + "ConnectionConfiguration", - + "ConnectionConnectedAccountsPurpose", - + "ConnectionConnectedAccountsPurposeXaa", - + "ConnectionConnectionSettings", - + "ConnectionConnectionSettingsPkceEnum", - + "ConnectionCustomHeadersOAuth2", - "ConnectionCustomScripts", - + "ConnectionDebugSaml", - + "ConnectionDecryptionKeySaml", - + "ConnectionDecryptionKeySamlCert", - + "ConnectionDestinationUrlSaml", - + "ConnectionDigestAlgorithmEnumSaml", - + "ConnectionDigestAlgorithmSaml", - + "ConnectionDisableSelfServiceChangePassword", - + "ConnectionDisableSignup", - + "ConnectionDisableSignupSms", - + "ConnectionDiscoveryUrl", - + "ConnectionDisplayName", - + "ConnectionDisplayValuesSupported", - + "ConnectionDomainAliases", - + "ConnectionDomainAliasesAd", - + "ConnectionDomainAliasesAzureAd", - + "ConnectionDomainAliasesItemsOne", - + "ConnectionDomainAliasesSaml", - + "ConnectionDomainGoogleApps", - + "ConnectionDomainOkta", - + "ConnectionDpopSigningAlgEnum", - + "ConnectionDpopSigningAlgValuesSupported", - + "ConnectionEmailBodyEmail", - + "ConnectionEmailEmail", - + "ConnectionEmailEmailSyntax", - + "ConnectionEmailFromEmail", - + "ConnectionEmailOtpAuthenticationMethod", - + "ConnectionEmailSubjectEmail", - + "ConnectionEnableScriptContext", - "ConnectionEnabledClient", - + "ConnectionEnabledClients", - + "ConnectionEnabledDatabaseCustomization", - + "ConnectionEndSessionEndpoint", - + "ConnectionEntityIdSaml", - + "ConnectionExtAdmin", - + "ConnectionExtAgreedTerms", - + "ConnectionExtAgreedTermsGoogleApps", - + "ConnectionExtAssignedPlans", - + "ConnectionExtGroups", - + "ConnectionExtGroupsAzureAd", - + "ConnectionExtGroupsGoogleApps", - + "ConnectionExtIsAdminGoogleApps", - + "ConnectionExtIsSuspended", - + "ConnectionExtIsSuspendedGoogleApps", - + "ConnectionExtProfile", - + "ConnectionFederatedConnectionsAccessTokens", - + "ConnectionFieldsMap", - + "ConnectionFieldsMapSaml", - + "ConnectionFieldsMapSamlValue", - "ConnectionForList", - "ConnectionForOrganization", - + "ConnectionForwardReqInfoSms", - + "ConnectionFreeformScopesAmazon", - + "ConnectionFreeformScopesGoogleOAuth2", - + "ConnectionFreeformScopesLinkedin", - + "ConnectionFreeformScopesPaypal", - + "ConnectionFreeformScopesSalesforce", - + "ConnectionFreeformScopesWindowsLive", - + "ConnectionFromSms", - "ConnectionGatewayAuthentication", - + "ConnectionGatewayAuthenticationAudienceSms", - + "ConnectionGatewayAuthenticationMethodSms", - + "ConnectionGatewayAuthenticationSms", - + "ConnectionGatewayAuthenticationSubjectSms", - + "ConnectionGatewayUrlSms", - + "ConnectionGlobalTokenRevocationJwtIssSaml", - + "ConnectionGlobalTokenRevocationJwtSubSaml", - + "ConnectionGrantTypesSupported", - + "ConnectionHandleLoginFromSocialGoogleApps", - + "ConnectionHttpsUrlWithHttpFallback", - + "ConnectionHttpsUrlWithHttpFallback2048", - + "ConnectionHttpsUrlWithHttpFallback255", - + "ConnectionIconUrl", - + "ConnectionIconUrlAdfs", - + "ConnectionIconUrlAzureAd", - + "ConnectionIconUrlGoogleApps", - + "ConnectionIconUrlGoogleOAuth2", - + "ConnectionIconUrlSaml", - + "ConnectionId", - + "ConnectionIdTokenEncryptionAlgValuesSupported", - + "ConnectionIdTokenEncryptionEncValuesSupported", - + "ConnectionIdTokenSignedResponseAlgEnum", - + "ConnectionIdTokenSignedResponseAlgs", - + "ConnectionIdTokenSigningAlgValuesSupported", - + "ConnectionIdentifierPrecedence", - "ConnectionIdentifierPrecedenceEnum", - + "ConnectionIdentityApiAzureAd", - + "ConnectionIdentityApiEnumAzureAd", - "ConnectionIdentityProviderEnum", - + "ConnectionImportMode", - + "ConnectionIpsAd", - + "ConnectionIsDomainConnection", - + "ConnectionIssuer", - + "ConnectionJwksUri", - "ConnectionKey", - "ConnectionKeyUseEnum", - + "ConnectionMappingModeEnumOidc", - + "ConnectionMappingModeEnumOkta", - + "ConnectionMaxGroupsToRetrieve", - + "ConnectionMessagingServiceSidSms", - + "ConnectionMetadataUrlSaml", - + "ConnectionMetadataXml", - + "ConnectionMetadataXmlAdfs", - + "ConnectionMetadataXmlSaml", - + "ConnectionMfa", - + "ConnectionName", - + "ConnectionNamePrefixTemplate", - + "ConnectionNonPersistentAttrs", - + "ConnectionOpPolicyUri", - + "ConnectionOpTosUri", - "ConnectionOptions", - + "ConnectionOptionsAd", - + "ConnectionOptionsAdfs", - + "ConnectionOptionsAmazon", - + "ConnectionOptionsApple", - + "ConnectionOptionsAuth0", - + "ConnectionOptionsAuth0Oidc", - + "ConnectionOptionsAzureAd", - + "ConnectionOptionsBaidu", - + "ConnectionOptionsBitbucket", - + "ConnectionOptionsBitly", - + "ConnectionOptionsBox", - + "ConnectionOptionsClientIdGithub", - + "ConnectionOptionsClientIdTwitter", - + "ConnectionOptionsClientSecretGithub", - + "ConnectionOptionsClientSecretTwitter", - + "ConnectionOptionsCommon", - + "ConnectionOptionsCommonOidc", - + "ConnectionOptionsCommonSaml", - + "ConnectionOptionsCustom", - + "ConnectionOptionsDaccount", - + "ConnectionOptionsDeflateSaml", - + "ConnectionOptionsDropbox", - + "ConnectionOptionsDwolla", - + "ConnectionOptionsEmail", - + "ConnectionOptionsEvernote", - + "ConnectionOptionsExact", - + "ConnectionOptionsFacebook", - + "ConnectionOptionsFitbit", - + "ConnectionOptionsFreeformScopesGithub", - + "ConnectionOptionsGitHub", - + "ConnectionOptionsGoogleApps", - + "ConnectionOptionsGoogleOAuth2", - + "ConnectionOptionsIdpInitiatedClientProtocolEnumSaml", - + "ConnectionOptionsIdpinitiatedSaml", - + "ConnectionOptionsInstagram", - + "ConnectionOptionsIp", - + "ConnectionOptionsLine", - + "ConnectionOptionsLinkedin", - + "ConnectionOptionsOAuth1", - + "ConnectionOptionsOAuth1Common", - + "ConnectionOptionsOAuth2", - + "ConnectionOptionsOAuth2Common", - + "ConnectionOptionsOffice365", - + "ConnectionOptionsOidc", - + "ConnectionOptionsOidcMetadata", - + "ConnectionOptionsOkta", - + "ConnectionOptionsPaypal", - + "ConnectionOptionsPingFederate", - + "ConnectionOptionsPlanningCenter", - + "ConnectionOptionsProtocolEnumTwitter", - + "ConnectionOptionsSalesforce", - + "ConnectionOptionsSalesforceCommunity", - + "ConnectionOptionsSaml", - + "ConnectionOptionsScopeGithub", - + "ConnectionOptionsScopeTwitter", - + "ConnectionOptionsSharepoint", - + "ConnectionOptionsShop", - + "ConnectionOptionsShopify", - + "ConnectionOptionsSms", - + "ConnectionOptionsSoundcloud", - + "ConnectionOptionsThirtySevenSignals", - + "ConnectionOptionsTwitter", - + "ConnectionOptionsUntappd", - + "ConnectionOptionsVkontakte", - + "ConnectionOptionsWeibo", - + "ConnectionOptionsWindowsLive", - + "ConnectionOptionsWordpress", - + "ConnectionOptionsYahoo", - + "ConnectionOptionsYandex", - "ConnectionPasskeyAuthenticationMethod", - "ConnectionPasskeyChallengeUiEnum", - "ConnectionPasskeyOptions", - @@ -2622,22 +5998,382 @@ __all__ = [ - "ConnectionPasswordDictionaryOptions", - "ConnectionPasswordHistoryOptions", - "ConnectionPasswordNoPersonalInfoOptions", - + "ConnectionPasswordOptions", - + "ConnectionPasswordOptionsComplexity", - + "ConnectionPasswordOptionsDictionary", - + "ConnectionPasswordOptionsHistory", - + "ConnectionPasswordOptionsProfileData", - "ConnectionPasswordPolicyEnum", - + "ConnectionPhoneOtpAuthenticationMethod", - + "ConnectionPingFederateBaseUrl", - + "ConnectionPingFederateBaseUrlPingFederate", - + "ConnectionProfile", - + "ConnectionProfileBitbucket", - + "ConnectionProfileConfig", - + "ConnectionProfileEnabledFeatures", - + "ConnectionProfileId", - + "ConnectionProfileName", - + "ConnectionProfileOrganization", - + "ConnectionProfileOrganizationAssignMembershipOnLoginEnum", - + "ConnectionProfileOrganizationShowAsButtonEnum", - + "ConnectionProfileStrategyOverride", - + "ConnectionProfileStrategyOverrides", - + "ConnectionProfileStrategyOverridesConnectionConfig", - + "ConnectionProfileStrategyOverridesEnabledFeatures", - + "ConnectionProfileTemplate", - + "ConnectionProfileTemplateItem", - "ConnectionPropertiesOptions", - + "ConnectionProtocolBindingEnumSaml", - + "ConnectionProtocolBindingSaml", - + "ConnectionProviderEnumSms", - + "ConnectionProviderSms", - + "ConnectionProvisioningTicketUrl", - + "ConnectionPurposes", - + "ConnectionRealmFallback", - + "ConnectionRealms", - + "ConnectionRecipientUrlSaml", - + "ConnectionRegistrationEndpoint", - + "ConnectionRequestObjectEncryptionAlgValuesSupported", - + "ConnectionRequestObjectEncryptionEncValuesSupported", - + "ConnectionRequestObjectSigningAlgValuesSupported", - + "ConnectionRequestParameterSupported", - + "ConnectionRequestTemplateSaml", - + "ConnectionRequestTokenUrloAuth1", - + "ConnectionRequestUriParameterSupported", - + "ConnectionRequireRequestUriRegistration", - + "ConnectionRequiresUsername", - + "ConnectionResponseCommon", - + "ConnectionResponseContentAd", - + "ConnectionResponseContentAdStrategy", - + "ConnectionResponseContentAdfs", - + "ConnectionResponseContentAdfsStrategy", - + "ConnectionResponseContentAmazon", - + "ConnectionResponseContentAmazonStrategy", - + "ConnectionResponseContentApple", - + "ConnectionResponseContentAppleStrategy", - + "ConnectionResponseContentAuth0", - + "ConnectionResponseContentAuth0Oidc", - + "ConnectionResponseContentAuth0OidcStrategy", - + "ConnectionResponseContentAuth0Strategy", - + "ConnectionResponseContentAzureAd", - + "ConnectionResponseContentAzureAdStrategy", - + "ConnectionResponseContentBaidu", - + "ConnectionResponseContentBaiduStrategy", - + "ConnectionResponseContentBitbucket", - + "ConnectionResponseContentBitbucketStrategy", - + "ConnectionResponseContentBitly", - + "ConnectionResponseContentBitlyStrategy", - + "ConnectionResponseContentBox", - + "ConnectionResponseContentBoxStrategy", - + "ConnectionResponseContentCustom", - + "ConnectionResponseContentCustomStrategy", - + "ConnectionResponseContentDaccount", - + "ConnectionResponseContentDaccountStrategy", - + "ConnectionResponseContentDropbox", - + "ConnectionResponseContentDropboxStrategy", - + "ConnectionResponseContentDwolla", - + "ConnectionResponseContentDwollaStrategy", - + "ConnectionResponseContentEmail", - + "ConnectionResponseContentEmailStrategy", - + "ConnectionResponseContentEvernote", - + "ConnectionResponseContentEvernoteSandbox", - + "ConnectionResponseContentEvernoteSandboxStrategy", - + "ConnectionResponseContentEvernoteStrategy", - + "ConnectionResponseContentExact", - + "ConnectionResponseContentExactStrategy", - + "ConnectionResponseContentFacebook", - + "ConnectionResponseContentFacebookStrategy", - + "ConnectionResponseContentFitbit", - + "ConnectionResponseContentFitbitStrategy", - + "ConnectionResponseContentGitHub", - + "ConnectionResponseContentGitHubStrategy", - + "ConnectionResponseContentGoogleApps", - + "ConnectionResponseContentGoogleAppsStrategy", - + "ConnectionResponseContentGoogleOAuth2", - + "ConnectionResponseContentGoogleOAuth2Strategy", - + "ConnectionResponseContentInstagram", - + "ConnectionResponseContentInstagramStrategy", - + "ConnectionResponseContentIp", - + "ConnectionResponseContentIpStrategy", - + "ConnectionResponseContentLine", - + "ConnectionResponseContentLineStrategy", - + "ConnectionResponseContentLinkedin", - + "ConnectionResponseContentLinkedinStrategy", - + "ConnectionResponseContentOAuth1", - + "ConnectionResponseContentOAuth1Strategy", - + "ConnectionResponseContentOAuth2", - + "ConnectionResponseContentOAuth2Strategy", - + "ConnectionResponseContentOffice365", - + "ConnectionResponseContentOffice365Strategy", - + "ConnectionResponseContentOidc", - + "ConnectionResponseContentOidcStrategy", - + "ConnectionResponseContentOkta", - + "ConnectionResponseContentOktaStrategy", - + "ConnectionResponseContentPaypal", - + "ConnectionResponseContentPaypalSandbox", - + "ConnectionResponseContentPaypalSandboxStrategy", - + "ConnectionResponseContentPaypalStrategy", - + "ConnectionResponseContentPingFederate", - + "ConnectionResponseContentPingFederateStrategy", - + "ConnectionResponseContentPlanningCenter", - + "ConnectionResponseContentPlanningCenterStrategy", - + "ConnectionResponseContentSalesforce", - + "ConnectionResponseContentSalesforceCommunity", - + "ConnectionResponseContentSalesforceCommunityStrategy", - + "ConnectionResponseContentSalesforceSandbox", - + "ConnectionResponseContentSalesforceSandboxStrategy", - + "ConnectionResponseContentSalesforceStrategy", - + "ConnectionResponseContentSaml", - + "ConnectionResponseContentSamlStrategy", - + "ConnectionResponseContentSharepoint", - + "ConnectionResponseContentSharepointStrategy", - + "ConnectionResponseContentShop", - + "ConnectionResponseContentShopStrategy", - + "ConnectionResponseContentShopify", - + "ConnectionResponseContentShopifyStrategy", - + "ConnectionResponseContentSms", - + "ConnectionResponseContentSmsStrategy", - + "ConnectionResponseContentSoundcloud", - + "ConnectionResponseContentSoundcloudStrategy", - + "ConnectionResponseContentThirtySevenSignals", - + "ConnectionResponseContentThirtySevenSignalsStrategy", - + "ConnectionResponseContentTwitter", - + "ConnectionResponseContentTwitterStrategy", - + "ConnectionResponseContentUntappd", - + "ConnectionResponseContentUntappdStrategy", - + "ConnectionResponseContentVkontakte", - + "ConnectionResponseContentVkontakteStrategy", - + "ConnectionResponseContentWeibo", - + "ConnectionResponseContentWeiboStrategy", - + "ConnectionResponseContentWindowsLive", - + "ConnectionResponseContentWindowsLiveStrategy", - + "ConnectionResponseContentWordpress", - + "ConnectionResponseContentWordpressStrategy", - + "ConnectionResponseContentYahoo", - + "ConnectionResponseContentYahooStrategy", - + "ConnectionResponseContentYandex", - + "ConnectionResponseContentYandexStrategy", - + "ConnectionResponseModesSupported", - + "ConnectionResponseTypesSupported", - + "ConnectionScopeAmazon", - + "ConnectionScopeArray", - + "ConnectionScopeArrayFacebook", - + "ConnectionScopeArrayWindowsLive", - + "ConnectionScopeAzureAd", - + "ConnectionScopeFacebook", - + "ConnectionScopeGoogleApps", - + "ConnectionScopeGoogleOAuth2", - + "ConnectionScopeItem", - + "ConnectionScopeItemGoogleApps", - + "ConnectionScopeLinkedin", - + "ConnectionScopeOAuth2", - + "ConnectionScopeOidc", - + "ConnectionScopePaypal", - + "ConnectionScopeSalesforce", - + "ConnectionScopesSupported", - + "ConnectionScriptsOAuth1", - + "ConnectionScriptsOAuth2", - + "ConnectionSendBackChannelNonce", - + "ConnectionServiceDocumentation", - "ConnectionSetUserRootAttributesEnum", - + "ConnectionSha1Thumbprint", - + "ConnectionShouldTrustEmailVerifiedConnectionEnum", - + "ConnectionShowAsButton", - + "ConnectionSignInEndpointAd", - + "ConnectionSignInEndpointAdfs", - + "ConnectionSignInEndpointSaml", - + "ConnectionSignOutEndpointSaml", - + "ConnectionSignSamlRequestSaml", - + "ConnectionSignatureAlgorithmEnumSaml", - + "ConnectionSignatureAlgorithmSaml", - + "ConnectionSignatureMethodOAuth1", - + "ConnectionSigningCertSaml", - + "ConnectionSigningCertificateDerSaml", - + "ConnectionSigningCertificatePemPingFederate", - + "ConnectionSigningCertificatePemSaml", - + "ConnectionSigningKeySaml", - + "ConnectionSignupBehaviorEnum", - "ConnectionStrategyEnum", - + "ConnectionStrategyVersionEnumLinkedin", - + "ConnectionStrategyVersionEnumWindowsLive", - + "ConnectionSubjectTypesSupported", - + "ConnectionTemplateSms", - + "ConnectionTemplateSyntaxEnumSms", - + "ConnectionTenantDomain", - + "ConnectionTenantDomainAd", - + "ConnectionTenantDomainAzureAdOne", - + "ConnectionTenantDomainGoogleApps", - + "ConnectionTenantDomainSaml", - + "ConnectionTenantIdAzureAd", - + "ConnectionThumbprints", - + "ConnectionThumbprintsAd", - + "ConnectionThumbprintsSaml", - + "ConnectionTokenEndpoint", - + "ConnectionTokenEndpointAuthMethodEnum", - + "ConnectionTokenEndpointAuthMethodsSupported", - + "ConnectionTokenEndpointAuthSigningAlgEnum", - + "ConnectionTokenEndpointAuthSigningAlgValuesSupported", - + "ConnectionTokenEndpointJwtcaAudFormatEnumOidc", - + "ConnectionTotpEmail", - + "ConnectionTotpLengthEmail", - + "ConnectionTotpLengthPasswordless", - + "ConnectionTotpLengthSms", - + "ConnectionTotpSms", - + "ConnectionTotpTimeStepEmail", - + "ConnectionTotpTimeStepPasswordless", - + "ConnectionTotpTimeStepSms", - + "ConnectionTwilioSidSms", - + "ConnectionTwilioTokenSms", - + "ConnectionTypeEnumOidc", - + "ConnectionTypeEnumOkta", - + "ConnectionUiLocalesSupported", - + "ConnectionUpstreamAdditionalProperties", - + "ConnectionUpstreamAlias", - + "ConnectionUpstreamAliasEnum", - "ConnectionUpstreamParams", - + "ConnectionUpstreamParamsFacebook", - + "ConnectionUpstreamValue", - + "ConnectionUseCommonEndpointAzureAd", - + "ConnectionUserAuthorizationUrloAuth1", - + "ConnectionUserIdAttributeSaml", - + "ConnectionUseridAttributeAzureAd", - + "ConnectionUseridAttributeEnumAzureAd", - + "ConnectionUserinfoEncryptionAlgValuesSupported", - + "ConnectionUserinfoEncryptionEncValuesSupported", - + "ConnectionUserinfoEndpoint", - + "ConnectionUserinfoSigningAlgValuesSupported", - "ConnectionUsernameValidationOptions", - "ConnectionValidationOptions", - + "ConnectionWaadProtocol", - + "ConnectionWaadProtocolEnumAzureAd", - "ConnectionsMetadata", - "ContentTooLargeError", - + "CreateActionModuleResponseContent", - + "CreateActionModuleVersionResponseContent", - "CreateActionResponseContent", - "CreateBrandingPhoneProviderResponseContent", - "CreateBrandingThemeResponseContent", - + "CreateClientAuthenticationMethodSelfSignedTlsClientAuth", - + "CreateClientAuthenticationMethodSelfSignedTlsClientAuthCredentials", - "CreateClientGrantResponseContent", - "CreateClientResponseContent", - + "CreateConnectionCommon", - + "CreateConnectionProfileResponseContent", - + "CreateConnectionRequestContentAd", - + "CreateConnectionRequestContentAdStrategy", - + "CreateConnectionRequestContentAdfs", - + "CreateConnectionRequestContentAdfsStrategy", - + "CreateConnectionRequestContentAmazon", - + "CreateConnectionRequestContentAmazonStrategy", - + "CreateConnectionRequestContentApple", - + "CreateConnectionRequestContentAppleStrategy", - + "CreateConnectionRequestContentAuth0", - + "CreateConnectionRequestContentAuth0Oidc", - + "CreateConnectionRequestContentAuth0OidcStrategy", - + "CreateConnectionRequestContentAuth0Strategy", - + "CreateConnectionRequestContentAzureAd", - + "CreateConnectionRequestContentAzureAdStrategy", - + "CreateConnectionRequestContentBaidu", - + "CreateConnectionRequestContentBaiduStrategy", - + "CreateConnectionRequestContentBitbucket", - + "CreateConnectionRequestContentBitbucketStrategy", - + "CreateConnectionRequestContentBitly", - + "CreateConnectionRequestContentBitlyStrategy", - + "CreateConnectionRequestContentBox", - + "CreateConnectionRequestContentBoxStrategy", - + "CreateConnectionRequestContentCustom", - + "CreateConnectionRequestContentCustomStrategy", - + "CreateConnectionRequestContentDaccount", - + "CreateConnectionRequestContentDaccountStrategy", - + "CreateConnectionRequestContentDropbox", - + "CreateConnectionRequestContentDropboxStrategy", - + "CreateConnectionRequestContentDwolla", - + "CreateConnectionRequestContentDwollaStrategy", - + "CreateConnectionRequestContentEmail", - + "CreateConnectionRequestContentEmailStrategy", - + "CreateConnectionRequestContentEvernote", - + "CreateConnectionRequestContentEvernoteSandbox", - + "CreateConnectionRequestContentEvernoteSandboxStrategy", - + "CreateConnectionRequestContentEvernoteStrategy", - + "CreateConnectionRequestContentExact", - + "CreateConnectionRequestContentExactStrategy", - + "CreateConnectionRequestContentFacebook", - + "CreateConnectionRequestContentFacebookStrategy", - + "CreateConnectionRequestContentFitbit", - + "CreateConnectionRequestContentFitbitStrategy", - + "CreateConnectionRequestContentGitHub", - + "CreateConnectionRequestContentGitHubStrategy", - + "CreateConnectionRequestContentGoogleApps", - + "CreateConnectionRequestContentGoogleAppsStrategy", - + "CreateConnectionRequestContentGoogleOAuth2", - + "CreateConnectionRequestContentGoogleOAuth2Strategy", - + "CreateConnectionRequestContentInstagram", - + "CreateConnectionRequestContentInstagramStrategy", - + "CreateConnectionRequestContentIp", - + "CreateConnectionRequestContentIpStrategy", - + "CreateConnectionRequestContentLine", - + "CreateConnectionRequestContentLineStrategy", - + "CreateConnectionRequestContentLinkedin", - + "CreateConnectionRequestContentLinkedinStrategy", - + "CreateConnectionRequestContentOAuth1", - + "CreateConnectionRequestContentOAuth1Strategy", - + "CreateConnectionRequestContentOAuth2", - + "CreateConnectionRequestContentOAuth2Strategy", - + "CreateConnectionRequestContentOffice365", - + "CreateConnectionRequestContentOffice365Strategy", - + "CreateConnectionRequestContentOidc", - + "CreateConnectionRequestContentOidcStrategy", - + "CreateConnectionRequestContentOkta", - + "CreateConnectionRequestContentOktaStrategy", - + "CreateConnectionRequestContentPaypal", - + "CreateConnectionRequestContentPaypalSandbox", - + "CreateConnectionRequestContentPaypalSandboxStrategy", - + "CreateConnectionRequestContentPaypalStrategy", - + "CreateConnectionRequestContentPingFederate", - + "CreateConnectionRequestContentPingFederateStrategy", - + "CreateConnectionRequestContentPlanningCenter", - + "CreateConnectionRequestContentPlanningCenterStrategy", - + "CreateConnectionRequestContentSalesforce", - + "CreateConnectionRequestContentSalesforceCommunity", - + "CreateConnectionRequestContentSalesforceCommunityStrategy", - + "CreateConnectionRequestContentSalesforceSandbox", - + "CreateConnectionRequestContentSalesforceSandboxStrategy", - + "CreateConnectionRequestContentSalesforceStrategy", - + "CreateConnectionRequestContentSaml", - + "CreateConnectionRequestContentSamlStrategy", - + "CreateConnectionRequestContentSharepoint", - + "CreateConnectionRequestContentSharepointStrategy", - + "CreateConnectionRequestContentShop", - + "CreateConnectionRequestContentShopStrategy", - + "CreateConnectionRequestContentShopify", - + "CreateConnectionRequestContentShopifyStrategy", - + "CreateConnectionRequestContentSms", - + "CreateConnectionRequestContentSmsStrategy", - + "CreateConnectionRequestContentSoundcloud", - + "CreateConnectionRequestContentSoundcloudStrategy", - + "CreateConnectionRequestContentThirtySevenSignals", - + "CreateConnectionRequestContentThirtySevenSignalsStrategy", - + "CreateConnectionRequestContentTwitter", - + "CreateConnectionRequestContentTwitterStrategy", - + "CreateConnectionRequestContentUntappd", - + "CreateConnectionRequestContentUntappdStrategy", - + "CreateConnectionRequestContentVkontakte", - + "CreateConnectionRequestContentVkontakteStrategy", - + "CreateConnectionRequestContentWeibo", - + "CreateConnectionRequestContentWeiboStrategy", - + "CreateConnectionRequestContentWindowsLive", - + "CreateConnectionRequestContentWindowsLiveStrategy", - + "CreateConnectionRequestContentWordpress", - + "CreateConnectionRequestContentWordpressStrategy", - + "CreateConnectionRequestContentYahoo", - + "CreateConnectionRequestContentYahooStrategy", - + "CreateConnectionRequestContentYandex", - + "CreateConnectionRequestContentYandexStrategy", - "CreateConnectionResponseContent", - "CreateCustomDomainResponseContent", - + "CreateDirectoryProvisioningRequestContent", - + "CreateDirectoryProvisioningResponseContent", - + "CreateDirectorySynchronizationResponseContent", - "CreateEmailProviderResponseContent", - "CreateEmailTemplateResponseContent", - "CreateEncryptionKeyPublicWrappingResponseContent", - @@ -2652,6 +6388,79 @@ __all__ = [ - "CreateExportUsersFields", - "CreateExportUsersResponseContent", - "CreateFlowResponseContent", - + "CreateFlowsVaultConnectionActivecampaign", - + "CreateFlowsVaultConnectionActivecampaignApiKey", - + "CreateFlowsVaultConnectionActivecampaignUninitialized", - + "CreateFlowsVaultConnectionAirtable", - + "CreateFlowsVaultConnectionAirtableApiKey", - + "CreateFlowsVaultConnectionAirtableUninitialized", - + "CreateFlowsVaultConnectionAuth0", - + "CreateFlowsVaultConnectionAuth0OauthApp", - + "CreateFlowsVaultConnectionAuth0Uninitialized", - + "CreateFlowsVaultConnectionBigquery", - + "CreateFlowsVaultConnectionBigqueryJwt", - + "CreateFlowsVaultConnectionBigqueryUninitialized", - + "CreateFlowsVaultConnectionClearbit", - + "CreateFlowsVaultConnectionClearbitApiKey", - + "CreateFlowsVaultConnectionClearbitUninitialized", - + "CreateFlowsVaultConnectionDocusign", - + "CreateFlowsVaultConnectionDocusignOauthCode", - + "CreateFlowsVaultConnectionDocusignUninitialized", - + "CreateFlowsVaultConnectionGoogleSheets", - + "CreateFlowsVaultConnectionGoogleSheetsOauthCode", - + "CreateFlowsVaultConnectionGoogleSheetsUninitialized", - + "CreateFlowsVaultConnectionHttp", - + "CreateFlowsVaultConnectionHttpApiKey", - + "CreateFlowsVaultConnectionHttpBasicAuth", - + "CreateFlowsVaultConnectionHttpBearer", - + "CreateFlowsVaultConnectionHttpOauthClientCredentials", - + "CreateFlowsVaultConnectionHttpUninitialized", - + "CreateFlowsVaultConnectionHubspot", - + "CreateFlowsVaultConnectionHubspotApiKey", - + "CreateFlowsVaultConnectionHubspotOauthCode", - + "CreateFlowsVaultConnectionHubspotUninitialized", - + "CreateFlowsVaultConnectionJwt", - + "CreateFlowsVaultConnectionJwtJwt", - + "CreateFlowsVaultConnectionJwtUninitialized", - + "CreateFlowsVaultConnectionMailchimp", - + "CreateFlowsVaultConnectionMailchimpApiKey", - + "CreateFlowsVaultConnectionMailchimpOauthCode", - + "CreateFlowsVaultConnectionMailchimpUninitialized", - + "CreateFlowsVaultConnectionMailjet", - + "CreateFlowsVaultConnectionMailjetApiKey", - + "CreateFlowsVaultConnectionMailjetUninitialized", - + "CreateFlowsVaultConnectionPipedrive", - + "CreateFlowsVaultConnectionPipedriveOauthCode", - + "CreateFlowsVaultConnectionPipedriveToken", - + "CreateFlowsVaultConnectionPipedriveUninitialized", - + "CreateFlowsVaultConnectionRequestContent", - + "CreateFlowsVaultConnectionResponseContent", - + "CreateFlowsVaultConnectionSalesforce", - + "CreateFlowsVaultConnectionSalesforceOauthCode", - + "CreateFlowsVaultConnectionSalesforceUninitialized", - + "CreateFlowsVaultConnectionSendgrid", - + "CreateFlowsVaultConnectionSendgridApiKey", - + "CreateFlowsVaultConnectionSendgridUninitialized", - + "CreateFlowsVaultConnectionSlack", - + "CreateFlowsVaultConnectionSlackOauthCode", - + "CreateFlowsVaultConnectionSlackUninitialized", - + "CreateFlowsVaultConnectionSlackWebhook", - + "CreateFlowsVaultConnectionStripe", - + "CreateFlowsVaultConnectionStripeKeyPair", - + "CreateFlowsVaultConnectionStripeOauthCode", - + "CreateFlowsVaultConnectionStripeUninitialized", - + "CreateFlowsVaultConnectionTelegram", - + "CreateFlowsVaultConnectionTelegramToken", - + "CreateFlowsVaultConnectionTelegramUninitialized", - + "CreateFlowsVaultConnectionTwilio", - + "CreateFlowsVaultConnectionTwilioApiKey", - + "CreateFlowsVaultConnectionTwilioUninitialized", - + "CreateFlowsVaultConnectionWhatsapp", - + "CreateFlowsVaultConnectionWhatsappToken", - + "CreateFlowsVaultConnectionWhatsappUninitialized", - + "CreateFlowsVaultConnectionZapier", - + "CreateFlowsVaultConnectionZapierUninitialized", - + "CreateFlowsVaultConnectionZapierWebhook", - "CreateFormResponseContent", - "CreateGuardianEnrollmentTicketResponseContent", - "CreateHookResponseContent", - @@ -2667,6 +6476,8 @@ __all__ = [ - "CreateLogStreamSegmentRequestBody", - "CreateLogStreamSplunkRequestBody", - "CreateLogStreamSumoRequestBody", - + "CreateOrganizationAllConnectionResponseContent", - + "CreateOrganizationDiscoveryDomainResponseContent", - "CreateOrganizationInvitationResponseContent", - "CreateOrganizationResponseContent", - "CreatePhoneProviderSendTestResponseContent", - @@ -2683,6 +6494,7 @@ __all__ = [ - "CreateSelfServiceProfileSsoTicketResponseContent", - "CreateTokenExchangeProfileResponseContent", - "CreateTokenQuota", - + "CreateUserAttributeProfileResponseContent", - "CreateUserAuthenticationMethodResponseContent", - "CreateUserResponseContent", - "CreateVerifiableCredentialTemplateResponseContent", - @@ -2695,6 +6507,7 @@ __all__ = [ - "CustomDomainCustomClientIpHeader", - "CustomDomainCustomClientIpHeaderEnum", - "CustomDomainProvisioningTypeEnum", - + "CustomDomainStatusFilterEnum", - "CustomDomainTlsPolicyEnum", - "CustomDomainTypeEnum", - "CustomDomainVerificationMethodEnum", - @@ -2708,20 +6521,29 @@ __all__ = [ - "CustomSigningKeyTypeEnum", - "CustomSigningKeyUseEnum", - "DailyStats", - + "DefaultAioHttpClient", - + "DefaultAsyncHttpxClient", - + "DefaultMethodEmailIdentifierEnum", - "DefaultTokenQuota", - "DeleteHookSecretRequestContent", - "DeleteUserIdentityResponseContent", - "DeleteUserIdentityResponseContentItem", - "DeployActionResponseContent", - - "DeployActionVersionRequestBodyParams", - "DeployActionVersionRequestContent", - "DeployActionVersionResponseContent", - "DeviceCredential", - "DeviceCredentialPublicKeyTypeEnum", - "DeviceCredentialTypeEnum", - + "DirectoryProvisioning", - + "DirectoryProvisioningMappingItem", - + "DomainCertificate", - + "DomainCertificateAuthorityEnum", - + "DomainCertificateStatusEnum", - + "DomainMetadata", - "DomainVerification", - "DomainVerificationMethod", - "DomainVerificationMethodNameEnum", - + "DomainVerificationStatusEnum", - "EmailAttribute", - "EmailMailgunRegionEnum", - "EmailProviderCredentials", - @@ -2739,6 +6561,7 @@ __all__ = [ - "EmailSparkPostRegionEnum", - "EmailSpecificProviderSettingsWithAdditionalProperties", - "EmailTemplateNameEnum", - + "EnabledFeaturesEnum", - "EncryptionKey", - "EncryptionKeyPublicWrappingAlgorithm", - "EncryptionKeyState", - @@ -2747,8 +6570,336 @@ __all__ = [ - "EventStreamActionDestination", - "EventStreamActionDestinationTypeEnum", - "EventStreamActionResponseContent", - - "EventStreamBucketInterval", - "EventStreamCloudEvent", - + "EventStreamCloudEventA0PurposeEnum", - + "EventStreamCloudEventContext", - + "EventStreamCloudEventContextClient", - + "EventStreamCloudEventContextClientMetadata", - + "EventStreamCloudEventContextConnection", - + "EventStreamCloudEventContextRequest", - + "EventStreamCloudEventContextRequestGeo", - + "EventStreamCloudEventContextTenant", - + "EventStreamCloudEventErrorCodeEnum", - + "EventStreamCloudEventErrorDetail", - + "EventStreamCloudEventErrorMessage", - + "EventStreamCloudEventErrorMessageTypeEnum", - + "EventStreamCloudEventGroupCreated", - + "EventStreamCloudEventGroupCreatedCloudEvent", - + "EventStreamCloudEventGroupCreatedCloudEventTypeEnum", - + "EventStreamCloudEventGroupCreatedData", - + "EventStreamCloudEventGroupCreatedObject", - + "EventStreamCloudEventGroupCreatedObject0", - + "EventStreamCloudEventGroupCreatedObject0TypeEnum", - + "EventStreamCloudEventGroupCreatedObject1", - + "EventStreamCloudEventGroupCreatedObject1TypeEnum", - + "EventStreamCloudEventGroupCreatedObject2", - + "EventStreamCloudEventGroupCreatedObject2TypeEnum", - + "EventStreamCloudEventGroupCreatedTypeEnum", - + "EventStreamCloudEventGroupDeleted", - + "EventStreamCloudEventGroupDeletedCloudEvent", - + "EventStreamCloudEventGroupDeletedCloudEventTypeEnum", - + "EventStreamCloudEventGroupDeletedData", - + "EventStreamCloudEventGroupDeletedObject", - + "EventStreamCloudEventGroupDeletedObject0", - + "EventStreamCloudEventGroupDeletedObject0TypeEnum", - + "EventStreamCloudEventGroupDeletedObject1", - + "EventStreamCloudEventGroupDeletedObject1TypeEnum", - + "EventStreamCloudEventGroupDeletedObject2", - + "EventStreamCloudEventGroupDeletedObject2TypeEnum", - + "EventStreamCloudEventGroupDeletedTypeEnum", - + "EventStreamCloudEventGroupMemberAdded", - + "EventStreamCloudEventGroupMemberAddedCloudEvent", - + "EventStreamCloudEventGroupMemberAddedCloudEventTypeEnum", - + "EventStreamCloudEventGroupMemberAddedData", - + "EventStreamCloudEventGroupMemberAddedObject", - + "EventStreamCloudEventGroupMemberAddedObjectGroup", - + "EventStreamCloudEventGroupMemberAddedObjectGroup0", - + "EventStreamCloudEventGroupMemberAddedObjectGroup0TypeEnum", - + "EventStreamCloudEventGroupMemberAddedObjectGroup1", - + "EventStreamCloudEventGroupMemberAddedObjectGroup1TypeEnum", - + "EventStreamCloudEventGroupMemberAddedObjectGroup2", - + "EventStreamCloudEventGroupMemberAddedObjectGroup2TypeEnum", - + "EventStreamCloudEventGroupMemberAddedObjectMember", - + "EventStreamCloudEventGroupMemberAddedObjectMember0", - + "EventStreamCloudEventGroupMemberAddedObjectMember0MemberTypeEnum", - + "EventStreamCloudEventGroupMemberAddedObjectMember1", - + "EventStreamCloudEventGroupMemberAddedObjectMember1MemberTypeEnum", - + "EventStreamCloudEventGroupMemberAddedTypeEnum", - + "EventStreamCloudEventGroupMemberDeleted", - + "EventStreamCloudEventGroupMemberDeletedCloudEvent", - + "EventStreamCloudEventGroupMemberDeletedCloudEventTypeEnum", - + "EventStreamCloudEventGroupMemberDeletedData", - + "EventStreamCloudEventGroupMemberDeletedObject", - + "EventStreamCloudEventGroupMemberDeletedObjectGroup", - + "EventStreamCloudEventGroupMemberDeletedObjectGroup0", - + "EventStreamCloudEventGroupMemberDeletedObjectGroup0TypeEnum", - + "EventStreamCloudEventGroupMemberDeletedObjectGroup1", - + "EventStreamCloudEventGroupMemberDeletedObjectGroup1TypeEnum", - + "EventStreamCloudEventGroupMemberDeletedObjectGroup2", - + "EventStreamCloudEventGroupMemberDeletedObjectGroup2TypeEnum", - + "EventStreamCloudEventGroupMemberDeletedObjectMember", - + "EventStreamCloudEventGroupMemberDeletedObjectMember0", - + "EventStreamCloudEventGroupMemberDeletedObjectMember0MemberTypeEnum", - + "EventStreamCloudEventGroupMemberDeletedObjectMember1", - + "EventStreamCloudEventGroupMemberDeletedObjectMember1MemberTypeEnum", - + "EventStreamCloudEventGroupMemberDeletedTypeEnum", - + "EventStreamCloudEventGroupRoleAssigned", - + "EventStreamCloudEventGroupRoleAssignedCloudEvent", - + "EventStreamCloudEventGroupRoleAssignedCloudEventTypeEnum", - + "EventStreamCloudEventGroupRoleAssignedData", - + "EventStreamCloudEventGroupRoleAssignedObject", - + "EventStreamCloudEventGroupRoleAssignedObjectGroup", - + "EventStreamCloudEventGroupRoleAssignedObjectGroup0", - + "EventStreamCloudEventGroupRoleAssignedObjectGroup0TypeEnum", - + "EventStreamCloudEventGroupRoleAssignedObjectGroup1", - + "EventStreamCloudEventGroupRoleAssignedObjectGroup1TypeEnum", - + "EventStreamCloudEventGroupRoleAssignedObjectGroup2", - + "EventStreamCloudEventGroupRoleAssignedObjectGroup2TypeEnum", - + "EventStreamCloudEventGroupRoleAssignedObjectRole", - + "EventStreamCloudEventGroupRoleAssignedTypeEnum", - + "EventStreamCloudEventGroupRoleDeleted", - + "EventStreamCloudEventGroupRoleDeletedCloudEvent", - + "EventStreamCloudEventGroupRoleDeletedCloudEventTypeEnum", - + "EventStreamCloudEventGroupRoleDeletedData", - + "EventStreamCloudEventGroupRoleDeletedObject", - + "EventStreamCloudEventGroupRoleDeletedObjectGroup", - + "EventStreamCloudEventGroupRoleDeletedObjectGroup0", - + "EventStreamCloudEventGroupRoleDeletedObjectGroup0TypeEnum", - + "EventStreamCloudEventGroupRoleDeletedObjectGroup1", - + "EventStreamCloudEventGroupRoleDeletedObjectGroup1TypeEnum", - + "EventStreamCloudEventGroupRoleDeletedObjectGroup2", - + "EventStreamCloudEventGroupRoleDeletedObjectGroup2TypeEnum", - + "EventStreamCloudEventGroupRoleDeletedObjectRole", - + "EventStreamCloudEventGroupRoleDeletedTypeEnum", - + "EventStreamCloudEventGroupUpdated", - + "EventStreamCloudEventGroupUpdatedCloudEvent", - + "EventStreamCloudEventGroupUpdatedCloudEventTypeEnum", - + "EventStreamCloudEventGroupUpdatedData", - + "EventStreamCloudEventGroupUpdatedObject", - + "EventStreamCloudEventGroupUpdatedObject0", - + "EventStreamCloudEventGroupUpdatedObject0TypeEnum", - + "EventStreamCloudEventGroupUpdatedObject1", - + "EventStreamCloudEventGroupUpdatedObject1TypeEnum", - + "EventStreamCloudEventGroupUpdatedObject2", - + "EventStreamCloudEventGroupUpdatedObject2TypeEnum", - + "EventStreamCloudEventGroupUpdatedTypeEnum", - + "EventStreamCloudEventOffsetOnlyMessage", - + "EventStreamCloudEventOffsetOnlyMessageTypeEnum", - + "EventStreamCloudEventOrgConnectionAdded", - + "EventStreamCloudEventOrgConnectionAddedCloudEvent", - + "EventStreamCloudEventOrgConnectionAddedCloudEventTypeEnum", - + "EventStreamCloudEventOrgConnectionAddedData", - + "EventStreamCloudEventOrgConnectionAddedObject", - + "EventStreamCloudEventOrgConnectionAddedObjectConnection", - + "EventStreamCloudEventOrgConnectionAddedObjectOrganization", - + "EventStreamCloudEventOrgConnectionAddedTypeEnum", - + "EventStreamCloudEventOrgConnectionRemoved", - + "EventStreamCloudEventOrgConnectionRemovedCloudEvent", - + "EventStreamCloudEventOrgConnectionRemovedCloudEventTypeEnum", - + "EventStreamCloudEventOrgConnectionRemovedData", - + "EventStreamCloudEventOrgConnectionRemovedObject", - + "EventStreamCloudEventOrgConnectionRemovedObjectConnection", - + "EventStreamCloudEventOrgConnectionRemovedObjectOrganization", - + "EventStreamCloudEventOrgConnectionRemovedTypeEnum", - + "EventStreamCloudEventOrgConnectionUpdated", - + "EventStreamCloudEventOrgConnectionUpdatedCloudEvent", - + "EventStreamCloudEventOrgConnectionUpdatedCloudEventTypeEnum", - + "EventStreamCloudEventOrgConnectionUpdatedData", - + "EventStreamCloudEventOrgConnectionUpdatedObject", - + "EventStreamCloudEventOrgConnectionUpdatedObjectConnection", - + "EventStreamCloudEventOrgConnectionUpdatedObjectOrganization", - + "EventStreamCloudEventOrgConnectionUpdatedTypeEnum", - + "EventStreamCloudEventOrgCreated", - + "EventStreamCloudEventOrgCreatedCloudEvent", - + "EventStreamCloudEventOrgCreatedCloudEventTypeEnum", - + "EventStreamCloudEventOrgCreatedData", - + "EventStreamCloudEventOrgCreatedObject", - + "EventStreamCloudEventOrgCreatedObjectBranding", - + "EventStreamCloudEventOrgCreatedObjectBrandingColors", - + "EventStreamCloudEventOrgCreatedObjectMetadata", - + "EventStreamCloudEventOrgCreatedTypeEnum", - + "EventStreamCloudEventOrgDeleted", - + "EventStreamCloudEventOrgDeletedCloudEvent", - + "EventStreamCloudEventOrgDeletedCloudEventTypeEnum", - + "EventStreamCloudEventOrgDeletedData", - + "EventStreamCloudEventOrgDeletedObject", - + "EventStreamCloudEventOrgDeletedObjectMetadata", - + "EventStreamCloudEventOrgDeletedTypeEnum", - + "EventStreamCloudEventOrgGroupRoleAssigned", - + "EventStreamCloudEventOrgGroupRoleAssignedCloudEvent", - + "EventStreamCloudEventOrgGroupRoleAssignedCloudEventTypeEnum", - + "EventStreamCloudEventOrgGroupRoleAssignedData", - + "EventStreamCloudEventOrgGroupRoleAssignedObject", - + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup", - + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup0", - + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup0TypeEnum", - + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup1", - + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup1TypeEnum", - + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup2", - + "EventStreamCloudEventOrgGroupRoleAssignedObjectGroup2TypeEnum", - + "EventStreamCloudEventOrgGroupRoleAssignedObjectOrganization", - + "EventStreamCloudEventOrgGroupRoleAssignedObjectRole", - + "EventStreamCloudEventOrgGroupRoleAssignedTypeEnum", - + "EventStreamCloudEventOrgGroupRoleDeleted", - + "EventStreamCloudEventOrgGroupRoleDeletedCloudEvent", - + "EventStreamCloudEventOrgGroupRoleDeletedCloudEventTypeEnum", - + "EventStreamCloudEventOrgGroupRoleDeletedData", - + "EventStreamCloudEventOrgGroupRoleDeletedObject", - + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup", - + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup0", - + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup0TypeEnum", - + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup1", - + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup1TypeEnum", - + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup2", - + "EventStreamCloudEventOrgGroupRoleDeletedObjectGroup2TypeEnum", - + "EventStreamCloudEventOrgGroupRoleDeletedObjectOrganization", - + "EventStreamCloudEventOrgGroupRoleDeletedObjectRole", - + "EventStreamCloudEventOrgGroupRoleDeletedTypeEnum", - + "EventStreamCloudEventOrgMemberAdded", - + "EventStreamCloudEventOrgMemberAddedCloudEvent", - + "EventStreamCloudEventOrgMemberAddedCloudEventTypeEnum", - + "EventStreamCloudEventOrgMemberAddedData", - + "EventStreamCloudEventOrgMemberAddedObject", - + "EventStreamCloudEventOrgMemberAddedObjectOrganization", - + "EventStreamCloudEventOrgMemberAddedObjectUser", - + "EventStreamCloudEventOrgMemberAddedTypeEnum", - + "EventStreamCloudEventOrgMemberDeleted", - + "EventStreamCloudEventOrgMemberDeletedCloudEvent", - + "EventStreamCloudEventOrgMemberDeletedCloudEventTypeEnum", - + "EventStreamCloudEventOrgMemberDeletedData", - + "EventStreamCloudEventOrgMemberDeletedObject", - + "EventStreamCloudEventOrgMemberDeletedObjectOrganization", - + "EventStreamCloudEventOrgMemberDeletedObjectUser", - + "EventStreamCloudEventOrgMemberDeletedTypeEnum", - + "EventStreamCloudEventOrgMemberRoleAssigned", - + "EventStreamCloudEventOrgMemberRoleAssignedCloudEvent", - + "EventStreamCloudEventOrgMemberRoleAssignedCloudEventTypeEnum", - + "EventStreamCloudEventOrgMemberRoleAssignedData", - + "EventStreamCloudEventOrgMemberRoleAssignedObject", - + "EventStreamCloudEventOrgMemberRoleAssignedObjectOrganization", - + "EventStreamCloudEventOrgMemberRoleAssignedObjectRole", - + "EventStreamCloudEventOrgMemberRoleAssignedObjectUser", - + "EventStreamCloudEventOrgMemberRoleAssignedTypeEnum", - + "EventStreamCloudEventOrgMemberRoleDeleted", - + "EventStreamCloudEventOrgMemberRoleDeletedCloudEvent", - + "EventStreamCloudEventOrgMemberRoleDeletedCloudEventTypeEnum", - + "EventStreamCloudEventOrgMemberRoleDeletedData", - + "EventStreamCloudEventOrgMemberRoleDeletedObject", - + "EventStreamCloudEventOrgMemberRoleDeletedObjectOrganization", - + "EventStreamCloudEventOrgMemberRoleDeletedObjectRole", - + "EventStreamCloudEventOrgMemberRoleDeletedObjectUser", - + "EventStreamCloudEventOrgMemberRoleDeletedTypeEnum", - + "EventStreamCloudEventOrgUpdated", - + "EventStreamCloudEventOrgUpdatedCloudEvent", - + "EventStreamCloudEventOrgUpdatedCloudEventTypeEnum", - + "EventStreamCloudEventOrgUpdatedData", - + "EventStreamCloudEventOrgUpdatedObject", - + "EventStreamCloudEventOrgUpdatedObjectBranding", - + "EventStreamCloudEventOrgUpdatedObjectBrandingColors", - + "EventStreamCloudEventOrgUpdatedObjectMetadata", - + "EventStreamCloudEventOrgUpdatedTypeEnum", - + "EventStreamCloudEventUserCreated", - + "EventStreamCloudEventUserCreatedCloudEvent", - + "EventStreamCloudEventUserCreatedCloudEventTypeEnum", - + "EventStreamCloudEventUserCreatedData", - + "EventStreamCloudEventUserCreatedObject", - + "EventStreamCloudEventUserCreatedObjectAppMetadata", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItem", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemCustom", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomIsSocialEnum", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomProfileData", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomProviderEnum", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemCustomUserId", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabase", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseIsSocialEnum", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseProfileData", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseProviderEnum", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemDatabaseUserId", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterprise", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseIsSocialEnum", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseProfileData", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseProviderEnum", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemEnterpriseUserId", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordless", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessIsSocialEnum", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessProfileData", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessProviderEnum", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemPasswordlessUserId", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemSocial", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialIsSocialEnum", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialProfileData", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialProviderEnum", - + "EventStreamCloudEventUserCreatedObjectIdentitiesItemSocialUserId", - + "EventStreamCloudEventUserCreatedObjectUserMetadata", - + "EventStreamCloudEventUserCreatedTypeEnum", - + "EventStreamCloudEventUserDeleted", - + "EventStreamCloudEventUserDeletedCloudEvent", - + "EventStreamCloudEventUserDeletedCloudEventTypeEnum", - + "EventStreamCloudEventUserDeletedData", - + "EventStreamCloudEventUserDeletedObject", - + "EventStreamCloudEventUserDeletedObjectAppMetadata", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItem", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemCustom", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomIsSocialEnum", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomProfileData", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomProviderEnum", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemCustomUserId", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabase", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseIsSocialEnum", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseProfileData", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseProviderEnum", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemDatabaseUserId", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterprise", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseIsSocialEnum", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseProfileData", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseProviderEnum", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemEnterpriseUserId", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordless", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessIsSocialEnum", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessProfileData", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessProviderEnum", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemPasswordlessUserId", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemSocial", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialIsSocialEnum", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialProfileData", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialProviderEnum", - + "EventStreamCloudEventUserDeletedObjectIdentitiesItemSocialUserId", - + "EventStreamCloudEventUserDeletedObjectUserMetadata", - + "EventStreamCloudEventUserDeletedTypeEnum", - + "EventStreamCloudEventUserUpdated", - + "EventStreamCloudEventUserUpdatedCloudEvent", - + "EventStreamCloudEventUserUpdatedCloudEventTypeEnum", - + "EventStreamCloudEventUserUpdatedData", - + "EventStreamCloudEventUserUpdatedObject", - + "EventStreamCloudEventUserUpdatedObjectAppMetadata", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItem", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustom", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomIsSocialEnum", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomProfileData", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomProviderEnum", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemCustomUserId", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabase", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseIsSocialEnum", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseProfileData", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseProviderEnum", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemDatabaseUserId", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterprise", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseIsSocialEnum", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseProfileData", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseProviderEnum", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemEnterpriseUserId", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordless", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessIsSocialEnum", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessProfileData", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessProviderEnum", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemPasswordlessUserId", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocial", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialIsSocialEnum", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialProfileData", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialProviderEnum", - + "EventStreamCloudEventUserUpdatedObjectIdentitiesItemSocialUserId", - + "EventStreamCloudEventUserUpdatedObjectUserMetadata", - + "EventStreamCloudEventUserUpdatedTypeEnum", - "EventStreamDelivery", - "EventStreamDeliveryAttempt", - "EventStreamDeliveryEventTypeEnum", - @@ -2760,9 +6911,35 @@ __all__ = [ - "EventStreamEventBridgeDestinationTypeEnum", - "EventStreamEventBridgeResponseContent", - "EventStreamEventTypeEnum", - - "EventStreamMetric", - "EventStreamResponseContent", - "EventStreamStatusEnum", - + "EventStreamSubscribeEventsEventTypeEnum", - + "EventStreamSubscribeEventsEventTypeParam", - + "EventStreamSubscribeEventsResponseContent", - + "EventStreamSubscribeEventsResponseContent_Error", - + "EventStreamSubscribeEventsResponseContent_GroupCreated", - + "EventStreamSubscribeEventsResponseContent_GroupDeleted", - + "EventStreamSubscribeEventsResponseContent_GroupMemberAdded", - + "EventStreamSubscribeEventsResponseContent_GroupMemberDeleted", - + "EventStreamSubscribeEventsResponseContent_GroupRoleAssigned", - + "EventStreamSubscribeEventsResponseContent_GroupRoleDeleted", - + "EventStreamSubscribeEventsResponseContent_GroupUpdated", - + "EventStreamSubscribeEventsResponseContent_OffsetOnly", - + "EventStreamSubscribeEventsResponseContent_OrganizationConnectionAdded", - + "EventStreamSubscribeEventsResponseContent_OrganizationConnectionRemoved", - + "EventStreamSubscribeEventsResponseContent_OrganizationConnectionUpdated", - + "EventStreamSubscribeEventsResponseContent_OrganizationCreated", - + "EventStreamSubscribeEventsResponseContent_OrganizationDeleted", - + "EventStreamSubscribeEventsResponseContent_OrganizationGroupRoleAssigned", - + "EventStreamSubscribeEventsResponseContent_OrganizationGroupRoleDeleted", - + "EventStreamSubscribeEventsResponseContent_OrganizationMemberAdded", - + "EventStreamSubscribeEventsResponseContent_OrganizationMemberDeleted", - + "EventStreamSubscribeEventsResponseContent_OrganizationMemberRoleAssigned", - + "EventStreamSubscribeEventsResponseContent_OrganizationMemberRoleDeleted", - + "EventStreamSubscribeEventsResponseContent_OrganizationUpdated", - + "EventStreamSubscribeEventsResponseContent_UserCreated", - + "EventStreamSubscribeEventsResponseContent_UserDeleted", - + "EventStreamSubscribeEventsResponseContent_UserUpdated", - "EventStreamSubscription", - "EventStreamTestEventTypeEnum", - "EventStreamWebhookAuthorizationResponse", - @@ -2771,89 +6948,154 @@ __all__ = [ - "EventStreamWebhookBearerAuth", - "EventStreamWebhookBearerAuthMethodEnum", - "EventStreamWebhookConfiguration", - + "EventStreamWebhookCustomHeaderAuth", - + "EventStreamWebhookCustomHeaderAuthMethodEnum", - "EventStreamWebhookDestination", - "EventStreamWebhookDestinationTypeEnum", - "EventStreamWebhookResponseContent", - - "EventStreamWindow", - "EventStreamsCreateRequest", - + "ExpressConfiguration", - + "ExpressConfigurationOrNull", - "ExtensibilityEmailProviderCredentials", - "FederatedConnectionTokenSet", - "FlowAction", - "FlowActionActivecampaign", - "FlowActionActivecampaignListContacts", - + "FlowActionActivecampaignListContactsAction", - "FlowActionActivecampaignListContactsParams", - + "FlowActionActivecampaignListContactsType", - "FlowActionActivecampaignUpsertContact", - + "FlowActionActivecampaignUpsertContactAction", - "FlowActionActivecampaignUpsertContactParams", - "FlowActionActivecampaignUpsertContactParamsCustomFields", - + "FlowActionActivecampaignUpsertContactType", - "FlowActionAirtable", - "FlowActionAirtableCreateRecord", - + "FlowActionAirtableCreateRecordAction", - "FlowActionAirtableCreateRecordParams", - "FlowActionAirtableCreateRecordParamsFields", - + "FlowActionAirtableCreateRecordType", - "FlowActionAirtableListRecords", - + "FlowActionAirtableListRecordsAction", - "FlowActionAirtableListRecordsParams", - + "FlowActionAirtableListRecordsType", - "FlowActionAirtableUpdateRecord", - + "FlowActionAirtableUpdateRecordAction", - "FlowActionAirtableUpdateRecordParams", - "FlowActionAirtableUpdateRecordParamsFields", - + "FlowActionAirtableUpdateRecordType", - "FlowActionAuth0", - "FlowActionAuth0CreateUser", - + "FlowActionAuth0CreateUserAction", - "FlowActionAuth0CreateUserParams", - "FlowActionAuth0CreateUserParamsPayload", - + "FlowActionAuth0CreateUserType", - "FlowActionAuth0GetUser", - + "FlowActionAuth0GetUserAction", - "FlowActionAuth0GetUserParams", - + "FlowActionAuth0GetUserType", - + "FlowActionAuth0MakeCall", - + "FlowActionAuth0MakeCallAction", - + "FlowActionAuth0MakeCallParams", - + "FlowActionAuth0MakeCallParamsCustomVars", - + "FlowActionAuth0MakeCallType", - + "FlowActionAuth0SendEmail", - + "FlowActionAuth0SendEmailAction", - + "FlowActionAuth0SendEmailParams", - + "FlowActionAuth0SendEmailParamsFrom", - + "FlowActionAuth0SendEmailParamsFromEmail", - + "FlowActionAuth0SendEmailParamsTo", - + "FlowActionAuth0SendEmailType", - "FlowActionAuth0SendRequest", - + "FlowActionAuth0SendRequestAction", - "FlowActionAuth0SendRequestParams", - + "FlowActionAuth0SendRequestParamsCustomVars", - "FlowActionAuth0SendRequestParamsHeaders", - "FlowActionAuth0SendRequestParamsMethod", - "FlowActionAuth0SendRequestParamsPayload", - "FlowActionAuth0SendRequestParamsPayloadObject", - "FlowActionAuth0SendRequestParamsQueryParams", - + "FlowActionAuth0SendRequestParamsQueryParamsValue", - + "FlowActionAuth0SendRequestType", - + "FlowActionAuth0SendSms", - + "FlowActionAuth0SendSmsAction", - + "FlowActionAuth0SendSmsParams", - + "FlowActionAuth0SendSmsParamsCustomVars", - + "FlowActionAuth0SendSmsType", - "FlowActionAuth0UpdateUser", - + "FlowActionAuth0UpdateUserAction", - "FlowActionAuth0UpdateUserParams", - "FlowActionAuth0UpdateUserParamsChanges", - + "FlowActionAuth0UpdateUserType", - "FlowActionBigquery", - "FlowActionBigqueryInsertRows", - + "FlowActionBigqueryInsertRowsAction", - "FlowActionBigqueryInsertRowsParams", - "FlowActionBigqueryInsertRowsParamsData", - + "FlowActionBigqueryInsertRowsType", - "FlowActionClearbit", - "FlowActionClearbitFindCompany", - + "FlowActionClearbitFindCompanyAction", - "FlowActionClearbitFindCompanyParams", - + "FlowActionClearbitFindCompanyType", - "FlowActionClearbitFindPerson", - + "FlowActionClearbitFindPersonAction", - "FlowActionClearbitFindPersonParams", - + "FlowActionClearbitFindPersonType", - "FlowActionEmail", - "FlowActionEmailVerifyEmail", - + "FlowActionEmailVerifyEmailAction", - "FlowActionEmailVerifyEmailParams", - "FlowActionEmailVerifyEmailParamsRules", - + "FlowActionEmailVerifyEmailType", - "FlowActionFlow", - "FlowActionFlowBooleanCondition", - + "FlowActionFlowBooleanConditionAction", - "FlowActionFlowBooleanConditionParams", - + "FlowActionFlowBooleanConditionType", - "FlowActionFlowDelayFlow", - + "FlowActionFlowDelayFlowAction", - "FlowActionFlowDelayFlowParams", - "FlowActionFlowDelayFlowParamsNumber", - "FlowActionFlowDelayFlowParamsUnits", - + "FlowActionFlowDelayFlowType", - "FlowActionFlowDoNothing", - + "FlowActionFlowDoNothingAction", - "FlowActionFlowDoNothingParams", - + "FlowActionFlowDoNothingType", - "FlowActionFlowErrorMessage", - + "FlowActionFlowErrorMessageAction", - "FlowActionFlowErrorMessageParams", - + "FlowActionFlowErrorMessageType", - "FlowActionFlowMapValue", - + "FlowActionFlowMapValueAction", - "FlowActionFlowMapValueParams", - "FlowActionFlowMapValueParamsCases", - "FlowActionFlowMapValueParamsFallback", - "FlowActionFlowMapValueParamsFallbackObject", - "FlowActionFlowMapValueParamsInput", - + "FlowActionFlowMapValueType", - "FlowActionFlowReturnJson", - + "FlowActionFlowReturnJsonAction", - "FlowActionFlowReturnJsonParams", - "FlowActionFlowReturnJsonParamsPayload", - "FlowActionFlowReturnJsonParamsPayloadObject", - + "FlowActionFlowReturnJsonType", - "FlowActionFlowStoreVars", - + "FlowActionFlowStoreVarsAction", - "FlowActionFlowStoreVarsParams", - "FlowActionFlowStoreVarsParamsVars", - + "FlowActionFlowStoreVarsType", - "FlowActionGoogleSheets", - "FlowActionGoogleSheetsAddRow", - + "FlowActionGoogleSheetsAddRowAction", - "FlowActionGoogleSheetsAddRowParams", - "FlowActionGoogleSheetsAddRowParamsSheetId", - "FlowActionGoogleSheetsAddRowParamsValues", - + "FlowActionGoogleSheetsAddRowType", - "FlowActionHttp", - "FlowActionHttpSendRequest", - + "FlowActionHttpSendRequestAction", - "FlowActionHttpSendRequestParams", - "FlowActionHttpSendRequestParamsBasicAuth", - "FlowActionHttpSendRequestParamsContentType", - @@ -2862,134 +7104,260 @@ __all__ = [ - "FlowActionHttpSendRequestParamsPayload", - "FlowActionHttpSendRequestParamsPayloadObject", - "FlowActionHttpSendRequestParamsQueryParams", - + "FlowActionHttpSendRequestParamsQueryParamsValue", - + "FlowActionHttpSendRequestType", - "FlowActionHubspot", - "FlowActionHubspotEnrollContact", - + "FlowActionHubspotEnrollContactAction", - "FlowActionHubspotEnrollContactParams", - "FlowActionHubspotEnrollContactParamsWorkflowId", - + "FlowActionHubspotEnrollContactType", - "FlowActionHubspotGetContact", - + "FlowActionHubspotGetContactAction", - "FlowActionHubspotGetContactParams", - + "FlowActionHubspotGetContactType", - "FlowActionHubspotUpsertContact", - + "FlowActionHubspotUpsertContactAction", - "FlowActionHubspotUpsertContactParams", - "FlowActionHubspotUpsertContactParamsProperty", - + "FlowActionHubspotUpsertContactType", - "FlowActionJson", - "FlowActionJsonCreateJson", - + "FlowActionJsonCreateJsonAction", - "FlowActionJsonCreateJsonParams", - "FlowActionJsonCreateJsonParamsObject", - + "FlowActionJsonCreateJsonType", - "FlowActionJsonParseJson", - + "FlowActionJsonParseJsonAction", - "FlowActionJsonParseJsonParams", - + "FlowActionJsonParseJsonType", - "FlowActionJsonSerializeJson", - + "FlowActionJsonSerializeJsonAction", - "FlowActionJsonSerializeJsonParams", - "FlowActionJsonSerializeJsonParamsObject", - "FlowActionJsonSerializeJsonParamsObjectObject", - + "FlowActionJsonSerializeJsonType", - "FlowActionJwt", - "FlowActionJwtDecodeJwt", - + "FlowActionJwtDecodeJwtAction", - "FlowActionJwtDecodeJwtParams", - + "FlowActionJwtDecodeJwtType", - "FlowActionJwtSignJwt", - + "FlowActionJwtSignJwtAction", - "FlowActionJwtSignJwtParams", - "FlowActionJwtSignJwtParamsPayload", - + "FlowActionJwtSignJwtType", - "FlowActionJwtVerifyJwt", - + "FlowActionJwtVerifyJwtAction", - "FlowActionJwtVerifyJwtParams", - + "FlowActionJwtVerifyJwtType", - "FlowActionMailchimp", - "FlowActionMailchimpUpsertMember", - + "FlowActionMailchimpUpsertMemberAction", - "FlowActionMailchimpUpsertMemberParams", - "FlowActionMailchimpUpsertMemberParamsMember", - "FlowActionMailchimpUpsertMemberParamsMemberMergeFields", - + "FlowActionMailchimpUpsertMemberType", - "FlowActionMailjet", - "FlowActionMailjetSendEmail", - + "FlowActionMailjetSendEmailAction", - "FlowActionMailjetSendEmailParams", - "FlowActionMailjetSendEmailParamsContent", - "FlowActionMailjetSendEmailParamsTemplateId", - + "FlowActionMailjetSendEmailType", - "FlowActionOtp", - "FlowActionOtpGenerateCode", - + "FlowActionOtpGenerateCodeAction", - "FlowActionOtpGenerateCodeParams", - + "FlowActionOtpGenerateCodeType", - "FlowActionOtpVerifyCode", - + "FlowActionOtpVerifyCodeAction", - "FlowActionOtpVerifyCodeParams", - "FlowActionOtpVerifyCodeParamsCode", - + "FlowActionOtpVerifyCodeType", - "FlowActionPipedrive", - "FlowActionPipedriveAddDeal", - + "FlowActionPipedriveAddDealAction", - "FlowActionPipedriveAddDealParams", - "FlowActionPipedriveAddDealParamsFields", - "FlowActionPipedriveAddDealParamsOrganizationId", - "FlowActionPipedriveAddDealParamsPersonId", - "FlowActionPipedriveAddDealParamsStageId", - "FlowActionPipedriveAddDealParamsUserId", - + "FlowActionPipedriveAddDealType", - "FlowActionPipedriveAddOrganization", - + "FlowActionPipedriveAddOrganizationAction", - "FlowActionPipedriveAddOrganizationParams", - "FlowActionPipedriveAddOrganizationParamsFields", - "FlowActionPipedriveAddOrganizationParamsOwnerId", - + "FlowActionPipedriveAddOrganizationType", - "FlowActionPipedriveAddPerson", - + "FlowActionPipedriveAddPersonAction", - "FlowActionPipedriveAddPersonParams", - "FlowActionPipedriveAddPersonParamsFields", - "FlowActionPipedriveAddPersonParamsOrganizationId", - "FlowActionPipedriveAddPersonParamsOwnerId", - + "FlowActionPipedriveAddPersonType", - "FlowActionSalesforce", - "FlowActionSalesforceCreateLead", - + "FlowActionSalesforceCreateLeadAction", - "FlowActionSalesforceCreateLeadParams", - "FlowActionSalesforceCreateLeadParamsPayload", - + "FlowActionSalesforceCreateLeadType", - "FlowActionSalesforceGetLead", - + "FlowActionSalesforceGetLeadAction", - "FlowActionSalesforceGetLeadParams", - + "FlowActionSalesforceGetLeadType", - "FlowActionSalesforceSearchLeads", - + "FlowActionSalesforceSearchLeadsAction", - "FlowActionSalesforceSearchLeadsParams", - "FlowActionSalesforceSearchLeadsParamsSearchField", - + "FlowActionSalesforceSearchLeadsType", - "FlowActionSalesforceUpdateLead", - + "FlowActionSalesforceUpdateLeadAction", - "FlowActionSalesforceUpdateLeadParams", - "FlowActionSalesforceUpdateLeadParamsPayload", - + "FlowActionSalesforceUpdateLeadType", - "FlowActionSendgrid", - "FlowActionSendgridSendEmail", - + "FlowActionSendgridSendEmailAction", - "FlowActionSendgridSendEmailParams", - "FlowActionSendgridSendEmailParamsPerson", - + "FlowActionSendgridSendEmailType", - "FlowActionSlack", - "FlowActionSlackPostMessage", - + "FlowActionSlackPostMessageAction", - "FlowActionSlackPostMessageParams", - "FlowActionSlackPostMessageParamsAttachment", - "FlowActionSlackPostMessageParamsAttachmentColor", - "FlowActionSlackPostMessageParamsAttachmentField", - + "FlowActionSlackPostMessageType", - "FlowActionStripe", - "FlowActionStripeAddTaxId", - + "FlowActionStripeAddTaxIdAction", - "FlowActionStripeAddTaxIdParams", - + "FlowActionStripeAddTaxIdType", - "FlowActionStripeAddress", - "FlowActionStripeCreateCustomer", - + "FlowActionStripeCreateCustomerAction", - "FlowActionStripeCreateCustomerParams", - + "FlowActionStripeCreateCustomerType", - "FlowActionStripeCreatePortalSession", - + "FlowActionStripeCreatePortalSessionAction", - "FlowActionStripeCreatePortalSessionParams", - + "FlowActionStripeCreatePortalSessionType", - "FlowActionStripeDeleteTaxId", - + "FlowActionStripeDeleteTaxIdAction", - "FlowActionStripeDeleteTaxIdParams", - + "FlowActionStripeDeleteTaxIdType", - "FlowActionStripeFindCustomers", - + "FlowActionStripeFindCustomersAction", - "FlowActionStripeFindCustomersParams", - + "FlowActionStripeFindCustomersType", - "FlowActionStripeGetCustomer", - + "FlowActionStripeGetCustomerAction", - "FlowActionStripeGetCustomerParams", - + "FlowActionStripeGetCustomerType", - "FlowActionStripeMetadata", - "FlowActionStripeTaxId", - "FlowActionStripeUpdateCustomer", - + "FlowActionStripeUpdateCustomerAction", - "FlowActionStripeUpdateCustomerParams", - + "FlowActionStripeUpdateCustomerType", - "FlowActionTelegram", - "FlowActionTelegramSendMessage", - + "FlowActionTelegramSendMessageAction", - "FlowActionTelegramSendMessageParams", - + "FlowActionTelegramSendMessageType", - "FlowActionTwilio", - "FlowActionTwilioMakeCall", - + "FlowActionTwilioMakeCallAction", - "FlowActionTwilioMakeCallParams", - + "FlowActionTwilioMakeCallType", - "FlowActionTwilioSendSms", - + "FlowActionTwilioSendSmsAction", - "FlowActionTwilioSendSmsParams", - + "FlowActionTwilioSendSmsType", - "FlowActionWhatsapp", - "FlowActionWhatsappSendMessage", - + "FlowActionWhatsappSendMessageAction", - "FlowActionWhatsappSendMessageParams", - "FlowActionWhatsappSendMessageParamsPayload", - "FlowActionWhatsappSendMessageParamsPayloadObject", - "FlowActionWhatsappSendMessageParamsType", - + "FlowActionWhatsappSendMessageType", - "FlowActionXml", - "FlowActionXmlParseXml", - + "FlowActionXmlParseXmlAction", - "FlowActionXmlParseXmlParams", - + "FlowActionXmlParseXmlType", - "FlowActionXmlSerializeXml", - + "FlowActionXmlSerializeXmlAction", - "FlowActionXmlSerializeXmlParams", - "FlowActionXmlSerializeXmlParamsObject", - "FlowActionXmlSerializeXmlParamsObjectObject", - + "FlowActionXmlSerializeXmlType", - "FlowActionZapier", - "FlowActionZapierTriggerWebhook", - + "FlowActionZapierTriggerWebhookAction", - "FlowActionZapierTriggerWebhookParams", - "FlowActionZapierTriggerWebhookParamsMethod", - + "FlowActionZapierTriggerWebhookType", - "FlowExecutionDebug", - "FlowExecutionSummary", - "FlowSummary", - + "FlowsVaultConnectioSetupApiKey", - + "FlowsVaultConnectioSetupApiKeyWithBaseUrl", - + "FlowsVaultConnectioSetupBigqueryOauthJwt", - + "FlowsVaultConnectioSetupHttpBearer", - + "FlowsVaultConnectioSetupJwt", - + "FlowsVaultConnectioSetupJwtAlgorithmEnum", - + "FlowsVaultConnectioSetupMailjetApiKey", - + "FlowsVaultConnectioSetupOauthApp", - + "FlowsVaultConnectioSetupOauthCode", - + "FlowsVaultConnectioSetupSecretApiKey", - + "FlowsVaultConnectioSetupStripeKeyPair", - + "FlowsVaultConnectioSetupToken", - + "FlowsVaultConnectioSetupTwilioApiKey", - + "FlowsVaultConnectioSetupTypeApiKeyEnum", - + "FlowsVaultConnectioSetupTypeBearerEnum", - + "FlowsVaultConnectioSetupTypeJwtEnum", - + "FlowsVaultConnectioSetupTypeKeyPairEnum", - + "FlowsVaultConnectioSetupTypeOauthAppEnum", - + "FlowsVaultConnectioSetupTypeOauthCodeEnum", - + "FlowsVaultConnectioSetupTypeOauthJwtEnum", - + "FlowsVaultConnectioSetupTypeTokenEnum", - + "FlowsVaultConnectioSetupTypeWebhookEnum", - + "FlowsVaultConnectioSetupWebhook", - + "FlowsVaultConnectionAppIdActivecampaignEnum", - + "FlowsVaultConnectionAppIdAirtableEnum", - + "FlowsVaultConnectionAppIdAuth0Enum", - + "FlowsVaultConnectionAppIdBigqueryEnum", - + "FlowsVaultConnectionAppIdClearbitEnum", - + "FlowsVaultConnectionAppIdDocusignEnum", - + "FlowsVaultConnectionAppIdGoogleSheetsEnum", - + "FlowsVaultConnectionAppIdHttpEnum", - + "FlowsVaultConnectionAppIdHubspotEnum", - + "FlowsVaultConnectionAppIdJwtEnum", - + "FlowsVaultConnectionAppIdMailchimpEnum", - + "FlowsVaultConnectionAppIdMailjetEnum", - + "FlowsVaultConnectionAppIdPipedriveEnum", - + "FlowsVaultConnectionAppIdSalesforceEnum", - + "FlowsVaultConnectionAppIdSendgridEnum", - + "FlowsVaultConnectionAppIdSlackEnum", - + "FlowsVaultConnectionAppIdStripeEnum", - + "FlowsVaultConnectionAppIdTelegramEnum", - + "FlowsVaultConnectionAppIdTwilioEnum", - + "FlowsVaultConnectionAppIdWhatsappEnum", - + "FlowsVaultConnectionAppIdZapierEnum", - + "FlowsVaultConnectionHttpApiKeySetup", - + "FlowsVaultConnectionHttpApiKeySetupInEnum", - + "FlowsVaultConnectionHttpBasicAuthSetup", - + "FlowsVaultConnectionHttpOauthClientCredentialsSetup", - + "FlowsVaultConnectionSetupTypeApiKeyEnum", - + "FlowsVaultConnectionSetupTypeBasicAuthEnum", - + "FlowsVaultConnectionSetupTypeOauthClientCredentialsEnum", - + "FlowsVaultConnectionSummary", - "ForbiddenError", - "FormBlock", - "FormBlockDivider", - @@ -3148,35 +7516,51 @@ __all__ = [ - "FormWidgetTypeRecaptchaConst", - "FormsRequestParametersHydrateEnum", - "GetActionExecutionResponseContent", - + "GetActionModuleActionsResponseContent", - + "GetActionModuleResponseContent", - + "GetActionModuleVersionResponseContent", - + "GetActionModuleVersionsResponseContent", - + "GetActionModulesResponseContent", - "GetActionResponseContent", - "GetActionVersionResponseContent", - "GetActiveUsersCountStatsResponseContent", - "GetAculResponseContent", - + "GetAttackProtectionCaptchaResponseContent", - + "GetBotDetectionSettingsResponseContent", - "GetBrandingDefaultThemeResponseContent", - "GetBrandingPhoneProviderResponseContent", - "GetBrandingResponseContent", - "GetBrandingThemeResponseContent", - "GetBreachedPasswordDetectionSettingsResponseContent", - "GetBruteForceSettingsResponseContent", - - "GetBruteForceSettingsResponseContentMode", - - "GetBruteForceSettingsResponseContentShieldsItem", - "GetClientCredentialResponseContent", - + "GetClientGrantResponseContent", - "GetClientResponseContent", - "GetConnectionEnabledClientsResponseContent", - + "GetConnectionProfileResponseContent", - + "GetConnectionProfileTemplateResponseContent", - "GetConnectionResponseContent", - "GetCustomDomainResponseContent", - "GetCustomSigningKeysResponseContent", - "GetCustomTextsByLanguageResponseContent", - + "GetDefaultCanonicalDomainResponseContent", - + "GetDefaultCustomDomainResponseContent", - + "GetDefaultDomainResponseContent", - + "GetDirectoryProvisioningDefaultMappingResponseContent", - + "GetDirectoryProvisioningResponseContent", - "GetEmailProviderResponseContent", - "GetEmailTemplateResponseContent", - "GetEncryptionKeyResponseContent", - "GetEventStreamDeliveryHistoryResponseContent", - "GetEventStreamResponseContent", - - "GetEventStreamStatsResponseContent", - + "GetFlowExecutionRequestParametersHydrateEnum", - "GetFlowExecutionResponseContent", - "GetFlowRequestParametersHydrateEnum", - "GetFlowResponseContent", - + "GetFlowsVaultConnectionResponseContent", - "GetFormResponseContent", - + "GetGroupMembersResponseContent", - + "GetGroupResponseContent", - "GetGuardianEnrollmentResponseContent", - "GetGuardianFactorDuoSettingsResponseContent", - "GetGuardianFactorPhoneMessageTypesResponseContent", - @@ -3195,18 +7579,25 @@ __all__ = [ - "GetJobGenericErrorResponseContent", - "GetJobImportUserError", - "GetJobResponseContent", - + "GetJobSummary", - "GetJobUserError", - "GetLogResponseContent", - "GetLogStreamResponseContent", - "GetNetworkAclsResponseContent", - + "GetOrganizationAllConnectionResponseContent", - "GetOrganizationByNameResponseContent", - "GetOrganizationConnectionResponseContent", - + "GetOrganizationDiscoveryDomainByNameResponseContent", - + "GetOrganizationDiscoveryDomainResponseContent", - "GetOrganizationInvitationResponseContent", - "GetOrganizationResponseContent", - "GetPartialsResponseContent", - "GetPhoneTemplateResponseContent", - "GetRefreshTokenResponseContent", - + "GetRefreshTokensPaginatedResponseContent", - "GetResourceServerResponseContent", - + "GetRiskAssessmentsSettingsNewDeviceResponseContent", - + "GetRiskAssessmentsSettingsResponseContent", - "GetRoleResponseContent", - "GetRuleResponseContent", - "GetScimConfigurationDefaultMappingResponseContent", - @@ -3222,9 +7613,17 @@ __all__ = [ - "GetTokenExchangeProfileResponseContent", - "GetUniversalLoginTemplate", - "GetUniversalLoginTemplateResponseContent", - + "GetUserAttributeProfileResponseContent", - + "GetUserAttributeProfileTemplateResponseContent", - "GetUserAuthenticationMethodResponseContent", - + "GetUserGroupsPaginatedResponseContent", - "GetUserResponseContent", - "GetVerifiableCredentialTemplateResponseContent", - + "GoneError", - + "Group", - + "GroupMember", - + "GroupMemberTypeEnum", - + "GroupTypeEnum", - "GuardianEnrollmentDate", - "GuardianEnrollmentFactorEnum", - "GuardianEnrollmentStatus", - @@ -3239,6 +7638,7 @@ __all__ = [ - "HttpCustomHeader", - "Identity", - "IdentityProviderEnum", - + "IdentityProviderOnlyAuth0Enum", - "ImportEncryptionKeyResponseContent", - "Integration", - "IntegrationFeatureTypeEnum", - @@ -3249,29 +7649,40 @@ __all__ = [ - "IntegrationSemVer", - "InternalServerError", - "JobFileFormatEnum", - + "LinkedClientConfiguration", - "ListActionBindingsPaginatedResponseContent", - "ListActionTriggersResponseContent", - "ListActionVersionsPaginatedResponseContent", - "ListActionsPaginatedResponseContent", - "ListAculsOffsetPaginatedResponseContent", - + "ListAculsResponseContentItem", - "ListBrandingPhoneProvidersResponseContent", - "ListClientConnectionsResponseContent", - "ListClientGrantOrganizationsPaginatedResponseContent", - "ListClientGrantPaginatedResponseContent", - "ListClientsOffsetPaginatedResponseContent", - + "ListConnectionProfileTemplateResponseContent", - + "ListConnectionProfilesPaginatedResponseContent", - "ListConnectionsCheckpointPaginatedResponseContent", - "ListCustomDomainsResponseContent", - "ListDeviceCredentialsOffsetPaginatedResponseContent", - + "ListDirectoryProvisioningsResponseContent", - "ListEncryptionKeyOffsetPaginatedResponseContent", - + "ListEventStreamsResponseContent", - "ListFlowExecutionsPaginatedResponseContent", - "ListFlowsOffsetPaginatedResponseContent", - + "ListFlowsRequestParametersHydrateEnum", - + "ListFlowsVaultConnectionsOffsetPaginatedResponseContent", - "ListFormsOffsetPaginatedResponseContent", - + "ListGroupsPaginatedResponseContent", - "ListGuardianPoliciesResponseContent", - "ListHooksOffsetPaginatedResponseContent", - "ListLogOffsetPaginatedResponseContent", - "ListNetworkAclsOffsetPaginatedResponseContent", - + "ListOrganizationAllConnectionsOffsetPaginatedResponseContent", - "ListOrganizationClientGrantsOffsetPaginatedResponseContent", - "ListOrganizationConnectionsOffsetPaginatedResponseContent", - + "ListOrganizationDiscoveryDomainsResponseContent", - "ListOrganizationInvitationsOffsetPaginatedResponseContent", - "ListOrganizationMemberRolesOffsetPaginatedResponseContent", - "ListOrganizationMembersPaginatedResponseContent", - @@ -3283,12 +7694,17 @@ __all__ = [ - "ListRoleUsersPaginatedResponseContent", - "ListRolesOffsetPaginatedResponseContent", - "ListRulesOffsetPaginatedResponseContent", - + "ListScimConfigurationsResponseContent", - "ListSelfServiceProfileCustomTextResponseContent", - "ListSelfServiceProfilesPaginatedResponseContent", - + "ListSynchronizedGroupsResponseContent", - "ListTokenExchangeProfileResponseContent", - + "ListUserAttributeProfileTemplateResponseContent", - + "ListUserAttributeProfilesPaginatedResponseContent", - "ListUserAuthenticationMethodsOffsetPaginatedResponseContent", - "ListUserBlocksByIdentifierResponseContent", - "ListUserBlocksResponseContent", - + "ListUserConnectedAccountsResponseContent", - "ListUserGrantsOffsetPaginatedResponseContent", - "ListUserOrganizationsOffsetPaginatedResponseContent", - "ListUserPermissionsOffsetPaginatedResponseContent", - @@ -3344,7 +7760,6 @@ __all__ = [ + "AttackProtectionCaptchaArkoseResponseContent", + "AttackProtectionCaptchaAuthChallengeRequest", + "AttackProtectionCaptchaAuthChallengeResponseContent", + @@ -7769,9 +7776,9 @@ __all__ = [ + "LogStreamSplunkResponseSchema", + "LogStreamSplunkSink", + "LogStreamStatusEnum", + - "LogStreamSumoEnum", "LogStreamSumoResponseSchema", "LogStreamSumoSink", - "ManagementClient", - - "AsyncManagementClient", + + "ManagementClient", "MdlPresentationProperties", "MdlPresentationRequest", "MdlPresentationRequestProperties", - @@ -3359,6 +7774,8 @@ __all__ = [ - "NetworkAclActionLogEnum", - "NetworkAclActionRedirectEnum", - "NetworkAclMatch", - + "NetworkAclMatchConnectingIpv4Cidr", - + "NetworkAclMatchConnectingIpv6Cidr", - "NetworkAclMatchIpv4Cidr", - "NetworkAclMatchIpv6Cidr", - "NetworkAclRule", - @@ -3368,11 +7785,15 @@ __all__ = [ - "OauthScope", - "Organization", - "OrganizationAccessLevelEnum", - + "OrganizationAccessLevelEnumWithNull", - + "OrganizationAllConnectionPost", - "OrganizationBranding", - "OrganizationBrandingColors", - "OrganizationClientGrant", - "OrganizationConnection", - "OrganizationConnectionInformation", - + "OrganizationDiscoveryDomain", - + "OrganizationDiscoveryDomainStatus", - "OrganizationEnabledConnection", - "OrganizationInvitation", - "OrganizationInvitationInvitee", - @@ -3383,6 +7804,12 @@ __all__ = [ - "OrganizationUsageEnum", - "PartialGroupsEnum", - "PartialPhoneTemplateContent", - + "PasswordCharacterTypeEnum", - + "PasswordCharacterTypeRulePolicyEnum", - + "PasswordDefaultDictionariesEnum", - + "PasswordIdenticalCharactersPolicyEnum", - + "PasswordMaxLengthExceededPolicyEnum", - + "PasswordSequentialCharactersPolicyEnum", - "PatchClientCredentialResponseContent", - "PatchSupplementalSignalsResponseContent", - "PaymentRequiredError", - @@ -3400,9 +7827,13 @@ __all__ = [ - "PhoneTemplateContent", - "PhoneTemplateNotificationTypeEnum", - "PostClientCredentialResponseContent", - + "PostConnectionKeysAlgEnum", - + "PostConnectionKeysRequestContent", - + "PostConnectionsKeysResponseContent", - + "PostConnectionsKeysResponseContentItem", - + "PreconditionFailedError", - "PreferredAuthenticationMethodEnum", - - "PrivateKeyJwt", - - "PrivateKeyJwtCredentials", - + "PreviewCimdMetadataResponseContent", - "PromptGroupNameEnum", - "PromptLanguageEnum", - "PublicKeyCredential", - @@ -3412,18 +7843,27 @@ __all__ = [ - "RefreshTokenDateObject", - "RefreshTokenDevice", - "RefreshTokenExpirationTypeEnum", - + "RefreshTokenMetadata", - "RefreshTokenResourceServer", - "RefreshTokenResponseContent", - "RefreshTokenRotationTypeEnum", - "RefreshTokenSessionId", - "RegenerateUsersRecoveryCodeResponseContent", - + "RegisterCimdClientResponseContent", - "ResetPhoneTemplateRequestContent", - "ResetPhoneTemplateResponseContent", - "ResourceServer", - + "ResourceServerAuthorizationPolicy", - "ResourceServerConsentPolicyEnum", - "ResourceServerProofOfPossession", - "ResourceServerProofOfPossessionMechanismEnum", - + "ResourceServerProofOfPossessionRequiredForEnum", - "ResourceServerScope", - + "ResourceServerSubjectTypeAuthorization", - + "ResourceServerSubjectTypeAuthorizationClient", - + "ResourceServerSubjectTypeAuthorizationClientPolicyEnum", - + "ResourceServerSubjectTypeAuthorizationUser", - + "ResourceServerSubjectTypeAuthorizationUserPolicyEnum", - "ResourceServerTokenDialectResponseEnum", - "ResourceServerTokenDialectSchemaEnum", - "ResourceServerTokenEncryption", - @@ -3434,6 +7874,7 @@ __all__ = [ - "RevokedSigningKeysResponseContent", - "Role", - "RoleUser", - + "RollbackActionModuleResponseContent", - "RotateClientSecretResponseContent", - "RotateConnectionKeysRequestContent", - "RotateConnectionKeysSigningAlgEnum", - @@ -3441,6 +7882,7 @@ __all__ = [ - "RotateSigningKeysResponseContent", - "Rule", - "RulesConfig", - + "ScimConfiguration", - "ScimMappingItem", - "ScimTokenItem", - "ScreenGroupNameEnum", - @@ -3457,7 +7899,9 @@ __all__ = [ - "SelfServiceProfileSsoTicketConnectionOptions", - "SelfServiceProfileSsoTicketDomainAliasesConfig", - "SelfServiceProfileSsoTicketDomainVerificationEnum", - + "SelfServiceProfileSsoTicketEnabledFeatures", - "SelfServiceProfileSsoTicketEnabledOrganization", - + "SelfServiceProfileSsoTicketGoogleWorkspaceConfig", - "SelfServiceProfileSsoTicketIdpInitiatedClientProtocolEnum", - "SelfServiceProfileSsoTicketIdpInitiatedOptions", - "SelfServiceProfileSsoTicketProvisioningConfig", - @@ -3475,6 +7919,7 @@ __all__ = [ - "SessionDate", - "SessionDeviceMetadata", - "SessionIp", - + "SessionMetadata", - "SessionResponseContent", - "SetCustomSigningKeysResponseContent", - "SetEmailTemplateResponseContent", - @@ -3485,11 +7930,8 @@ __all__ = [ - "SetGuardianFactorSmsTemplatesResponseContent", - "SetGuardianFactorsProviderPhoneResponseContent", - "SetGuardianFactorsProviderPhoneTwilioResponseContent", - - "SetGuardianFactorsProviderPushNotificationApnsRequestContent", - "SetGuardianFactorsProviderPushNotificationApnsResponseContent", - - "SetGuardianFactorsProviderPushNotificationFcmRequestContent", - "SetGuardianFactorsProviderPushNotificationFcmResponseContent", - - "SetGuardianFactorsProviderPushNotificationFcmv1RequestContent", - "SetGuardianFactorsProviderPushNotificationFcmv1ResponseContent", - "SetGuardianFactorsProviderPushNotificationResponseContent", - "SetGuardianFactorsProviderPushNotificationSnsResponseContent", - @@ -3520,15 +7962,20 @@ __all__ = [ - "SuspiciousIpThrottlingPreUserRegistrationStage", - "SuspiciousIpThrottlingShieldsEnum", - "SuspiciousIpThrottlingStage", - + "SynchronizeGroupsEnum", - + "SynchronizedGroupPayload", - "TenantOidcLogoutSettings", - "TenantSettingsDeviceFlow", - "TenantSettingsDeviceFlowCharset", - + "TenantSettingsDynamicClientRegistrationSecurityMode", - "TenantSettingsErrorPage", - "TenantSettingsFlags", - "TenantSettingsGuardianPage", - "TenantSettingsMtls", - "TenantSettingsPasswordPage", - + "TenantSettingsResourceParameterProfile", - "TenantSettingsSessions", - + "TenantSettingsSupportedLocalesEnum", - "TestActionPayload", - "TestActionResponseContent", - "TestActionResultPayload", - @@ -3536,6 +7983,7 @@ __all__ = [ + @@ -7995,6 +8002,7 @@ __all__ = [ "TestEventDataContent", "TokenExchangeProfileResponseContent", "TokenExchangeProfileTypeEnum", @@ -6751,213 +110,6 @@ patches: "TokenQuota", "TokenQuotaClientCredentials", "TokenQuotaConfiguration", - @@ -3546,54 +7994,151 @@ __all__ = [ - "UnauthorizedError", - "UniversalLoginExperienceEnum", - "UpdateActionBindingsResponseContent", - + "UpdateActionModuleResponseContent", - "UpdateActionResponseContent", - "UpdateAculResponseContent", - + "UpdateAttackProtectionCaptchaResponseContent", - + "UpdateBotDetectionSettingsResponseContent", - "UpdateBrandingColors", - "UpdateBrandingFont", - + "UpdateBrandingIdentifiers", - + "UpdateBrandingLoginDisplayEnum", - "UpdateBrandingPageBackground", - + "UpdateBrandingPhoneDisplay", - + "UpdateBrandingPhoneFormattingEnum", - + "UpdateBrandingPhoneMaskingEnum", - "UpdateBrandingPhoneProviderResponseContent", - "UpdateBrandingResponseContent", - "UpdateBrandingThemeResponseContent", - "UpdateBreachedPasswordDetectionSettingsResponseContent", - "UpdateBruteForceSettingsResponseContent", - - "UpdateBruteForceSettingsResponseContentMode", - - "UpdateBruteForceSettingsResponseContentShieldsItem", - "UpdateClientGrantResponseContent", - "UpdateClientResponseContent", - "UpdateConnectionOptions", - + "UpdateConnectionProfileResponseContent", - + "UpdateConnectionRequestContentAd", - + "UpdateConnectionRequestContentAdfs", - + "UpdateConnectionRequestContentAmazon", - + "UpdateConnectionRequestContentApple", - + "UpdateConnectionRequestContentAuth0", - + "UpdateConnectionRequestContentAuth0Oidc", - + "UpdateConnectionRequestContentAzureAd", - + "UpdateConnectionRequestContentBaidu", - + "UpdateConnectionRequestContentBitbucket", - + "UpdateConnectionRequestContentBitly", - + "UpdateConnectionRequestContentBox", - + "UpdateConnectionRequestContentCustom", - + "UpdateConnectionRequestContentDaccount", - + "UpdateConnectionRequestContentDropbox", - + "UpdateConnectionRequestContentDwolla", - + "UpdateConnectionRequestContentEmail", - + "UpdateConnectionRequestContentEvernote", - + "UpdateConnectionRequestContentEvernoteSandbox", - + "UpdateConnectionRequestContentExact", - + "UpdateConnectionRequestContentFacebook", - + "UpdateConnectionRequestContentFitbit", - + "UpdateConnectionRequestContentGitHub", - + "UpdateConnectionRequestContentGoogleApps", - + "UpdateConnectionRequestContentGoogleOAuth2", - + "UpdateConnectionRequestContentInstagram", - + "UpdateConnectionRequestContentIp", - + "UpdateConnectionRequestContentLine", - + "UpdateConnectionRequestContentLinkedin", - + "UpdateConnectionRequestContentOAuth1", - + "UpdateConnectionRequestContentOAuth2", - + "UpdateConnectionRequestContentOffice365", - + "UpdateConnectionRequestContentOidc", - + "UpdateConnectionRequestContentOkta", - + "UpdateConnectionRequestContentPaypal", - + "UpdateConnectionRequestContentPaypalSandbox", - + "UpdateConnectionRequestContentPingFederate", - + "UpdateConnectionRequestContentPlanningCenter", - + "UpdateConnectionRequestContentSalesforce", - + "UpdateConnectionRequestContentSalesforceCommunity", - + "UpdateConnectionRequestContentSalesforceSandbox", - + "UpdateConnectionRequestContentSaml", - + "UpdateConnectionRequestContentSharepoint", - + "UpdateConnectionRequestContentShop", - + "UpdateConnectionRequestContentShopify", - + "UpdateConnectionRequestContentSms", - + "UpdateConnectionRequestContentSoundcloud", - + "UpdateConnectionRequestContentThirtySevenSignals", - + "UpdateConnectionRequestContentTwitter", - + "UpdateConnectionRequestContentUntappd", - + "UpdateConnectionRequestContentVkontakte", - + "UpdateConnectionRequestContentWeibo", - + "UpdateConnectionRequestContentWindowsLive", - + "UpdateConnectionRequestContentWordpress", - + "UpdateConnectionRequestContentYahoo", - + "UpdateConnectionRequestContentYandex", - "UpdateConnectionResponseContent", - "UpdateCustomDomainResponseContent", - + "UpdateDefaultCanonicalDomainResponseContent", - + "UpdateDefaultCustomDomainResponseContent", - + "UpdateDefaultDomainResponseContent", - + "UpdateDirectoryProvisioningRequestContent", - + "UpdateDirectoryProvisioningResponseContent", - "UpdateEmailProviderResponseContent", - "UpdateEmailTemplateResponseContent", - "UpdateEnabledClientConnectionsRequestContent", - "UpdateEnabledClientConnectionsRequestContentItem", - "UpdateEventStreamResponseContent", - "UpdateFlowResponseContent", - + "UpdateFlowsVaultConnectionResponseContent", - + "UpdateFlowsVaultConnectionSetup", - "UpdateFormResponseContent", - "UpdateGuardianFactorDuoSettingsResponseContent", - + "UpdateGuardianFactorsProviderPushNotificationApnsResponseContent", - + "UpdateGuardianFactorsProviderPushNotificationFcmResponseContent", - + "UpdateGuardianFactorsProviderPushNotificationFcmv1ResponseContent", - "UpdateGuardianFactorsProviderPushNotificationSnsResponseContent", - "UpdateHookResponseContent", - "UpdateHookSecretRequestContent", - "UpdateLogStreamResponseContent", - "UpdateNetworkAclResponseContent", - + "UpdateOrganizationAllConnectionResponseContent", - "UpdateOrganizationConnectionResponseContent", - + "UpdateOrganizationDiscoveryDomainResponseContent", - "UpdateOrganizationResponseContent", - "UpdatePhoneTemplateResponseContent", - + "UpdateRefreshTokenResponseContent", - "UpdateResourceServerResponseContent", - + "UpdateRiskAssessmentsSettingsNewDeviceResponseContent", - + "UpdateRiskAssessmentsSettingsResponseContent", - "UpdateRoleResponseContent", - "UpdateRuleResponseContent", - "UpdateScimConfigurationResponseContent", - "UpdateSelfServiceProfileResponseContent", - + "UpdateSessionResponseContent", - "UpdateSettingsResponseContent", - "UpdateSuspiciousIpThrottlingSettingsResponseContent", - "UpdateTenantSettingsResponseContent", - "UpdateTokenQuota", - "UpdateUniversalLoginTemplateRequestContent", - "UpdateUniversalLoginTemplateRequestContentTemplate", - + "UpdateUserAttributeProfileResponseContent", - "UpdateUserAuthenticationMethodResponseContent", - "UpdateUserResponseContent", - "UpdateVerifiableCredentialTemplateResponseContent", - "UserAppMetadataSchema", - + "UserAttributeProfile", - + "UserAttributeProfileId", - + "UserAttributeProfileName", - + "UserAttributeProfileOidcMapping", - + "UserAttributeProfilePatchUserId", - + "UserAttributeProfileSamlMapping", - + "UserAttributeProfileStrategyOverrides", - + "UserAttributeProfileStrategyOverridesMapping", - + "UserAttributeProfileStrategyOverridesUserId", - + "UserAttributeProfileStrategyOverridesUserIdMapping", - + "UserAttributeProfileTemplate", - + "UserAttributeProfileTemplateItem", - + "UserAttributeProfileUserAttributeAdditionalProperties", - + "UserAttributeProfileUserAttributes", - + "UserAttributeProfileUserId", - + "UserAttributeProfileUserIdOidcMappingEnum", - + "UserAttributeProfileUserIdOidcStrategyOverrideMapping", - + "UserAttributeProfileUserIdSamlMapping", - "UserAuthenticationMethod", - "UserAuthenticationMethodProperties", - "UserAuthenticationMethodPropertiesEnum", - @@ -3602,7 +8147,8 @@ __all__ = [ - "UserEnrollmentAuthMethodEnum", - "UserEnrollmentStatusEnum", - "UserGrant", - - "UserIdEnum", - + "UserGroupsResponseSchema", - + "UserId", - "UserIdentity", - "UserIdentityProviderEnum", - "UserIdentitySchema", - @@ -3621,6 +8167,8 @@ __all__ = [ - "VerificationMethodEnum", - "VerifyCustomDomainResponseContent", - "VerifyEmailTicketResponseContent", - + "X509CertificateCredential", - + "X509CertificateCredentialTypeEnum", - "__version__", - "actions", - "anomaly", - @@ -3628,14 +8176,17 @@ __all__ = [ - "branding", - "client_grants", - "clients", - + "connection_profiles", - "connections", - "custom_domains", - "device_credentials", - "email_templates", - "emails", - "event_streams", - + "events", - "flows", - "forms", - + "groups", - "guardian", - "hooks", - "jobs", - @@ -3647,6 +8198,7 @@ __all__ = [ - "prompts", - "refresh_tokens", - "resource_servers", - + "risk_assessments", - "roles", - "rules", - "rules_configs", - @@ -3657,6 +8209,7 @@ __all__ = [ - "tenants", - "tickets", - "token_exchange_profiles", - + "user_attribute_profiles", - "user_blocks", - "user_grants", - "users", theirs_snapshot: src/auth0/management/__init__.py: | # This file was auto-generated by Fern from our API Definition. @@ -7043,6 +195,8 @@ patches: AttackProtectionUpdateCaptchaRecaptchaV2, AuthenticationMethodTypeEnum, AuthenticationTypeEnum, + BadRequestSchema, + BadRequestSchemaError, BotDetectionAllowlist, BotDetectionChallengePolicyPasswordFlowEnum, BotDetectionChallengePolicyPasswordResetFlowEnum, @@ -7975,6 +1129,7 @@ patches: CreateVerificationEmailResponseContent, CreatedAuthenticationMethodTypeEnum, CreatedUserAuthenticationMethodTypeEnum, + CredentialDeviceTypeEnum, CredentialId, CustomDomain, CustomDomainCustomClientIpHeader, @@ -8828,6 +1983,8 @@ patches: FlowsVaultConnectionSetupTypeBasicAuthEnum, FlowsVaultConnectionSetupTypeOauthClientCredentialsEnum, FlowsVaultConnectionSummary, + ForbiddenSchema, + ForbiddenSchemaError, FormBlock, FormBlockDivider, FormBlockDividerConfig, @@ -9448,9 +2605,13 @@ patches: TokenQuota, TokenQuotaClientCredentials, TokenQuotaConfiguration, + TooManyRequestsSchema, + TooManyRequestsSchemaError, TwilioProviderConfiguration, TwilioProviderCredentials, TwilioProviderDeliveryMethodEnum, + UnauthorizedSchema, + UnauthorizedSchemaError, UniversalLoginExperienceEnum, UpdateActionBindingsResponseContent, UpdateActionModuleResponseContent, @@ -9777,6 +2938,8 @@ patches: "AuthenticationMethodTypeEnum": ".types", "AuthenticationTypeEnum": ".types", "BadRequestError": ".errors", + "BadRequestSchema": ".types", + "BadRequestSchemaError": ".types", "BotDetectionAllowlist": ".types", "BotDetectionChallengePolicyPasswordFlowEnum": ".types", "BotDetectionChallengePolicyPasswordResetFlowEnum": ".types", @@ -10711,6 +3874,7 @@ patches: "CreateVerificationEmailResponseContent": ".types", "CreatedAuthenticationMethodTypeEnum": ".types", "CreatedUserAuthenticationMethodTypeEnum": ".types", + "CredentialDeviceTypeEnum": ".types", "CredentialId": ".types", "CustomDomain": ".types", "CustomDomainHeader": ".management_client", @@ -11569,6 +4733,8 @@ patches: "FlowsVaultConnectionSetupTypeOauthClientCredentialsEnum": ".types", "FlowsVaultConnectionSummary": ".types", "ForbiddenError": ".errors", + "ForbiddenSchema": ".types", + "ForbiddenSchemaError": ".types", "FormBlock": ".types", "FormBlockDivider": ".types", "FormBlockDividerConfig": ".types", @@ -12198,10 +5364,14 @@ patches: "TokenQuotaConfiguration": ".types", "TokenProvider": ".token_provider", "TooManyRequestsError": ".errors", + "TooManyRequestsSchema": ".types", + "TooManyRequestsSchemaError": ".types", "TwilioProviderConfiguration": ".types", "TwilioProviderCredentials": ".types", "TwilioProviderDeliveryMethodEnum": ".types", "UnauthorizedError": ".errors", + "UnauthorizedSchema": ".types", + "UnauthorizedSchemaError": ".types", "UniversalLoginExperienceEnum": ".types", "UpdateActionBindingsResponseContent": ".types", "UpdateActionModuleResponseContent": ".types", @@ -12529,6 +5699,8 @@ patches: "AuthenticationMethodTypeEnum", "AuthenticationTypeEnum", "BadRequestError", + "BadRequestSchema", + "BadRequestSchemaError", "BotDetectionAllowlist", "BotDetectionChallengePolicyPasswordFlowEnum", "BotDetectionChallengePolicyPasswordResetFlowEnum", @@ -13463,9 +6635,9 @@ patches: "CreateVerificationEmailResponseContent", "CreatedAuthenticationMethodTypeEnum", "CreatedUserAuthenticationMethodTypeEnum", + "CredentialDeviceTypeEnum", "CredentialId", "CustomDomain", - "CustomDomainHeader", "CustomDomainCustomClientIpHeader", "CustomDomainCustomClientIpHeaderEnum", "CustomDomainProvisioningTypeEnum", @@ -14321,6 +7493,8 @@ patches: "FlowsVaultConnectionSetupTypeOauthClientCredentialsEnum", "FlowsVaultConnectionSummary", "ForbiddenError", + "ForbiddenSchema", + "ForbiddenSchemaError", "FormBlock", "FormBlockDivider", "FormBlockDividerConfig", @@ -14950,10 +8124,14 @@ patches: "TokenQuotaClientCredentials", "TokenQuotaConfiguration", "TooManyRequestsError", + "TooManyRequestsSchema", + "TooManyRequestsSchemaError", "TwilioProviderConfiguration", "TwilioProviderCredentials", "TwilioProviderDeliveryMethodEnum", "UnauthorizedError", + "UnauthorizedSchema", + "UnauthorizedSchemaError", "UniversalLoginExperienceEnum", "UpdateActionBindingsResponseContent", "UpdateActionModuleResponseContent", @@ -15177,7 +8355,6 @@ patches: "users", "verifiable_credentials", ] - status: unresolved - id: patch-f182694f content_hash: sha256:5b0050902cba2aa5b86585d4eabba3987354307a1721cf12a9a94422ee371470 original_commit: f182694f50720cacb568ff5c7a1894b0dd972373 diff --git a/src/auth0/management/__init__.py b/src/auth0/management/__init__.py index 565fcf51..64a3587b 100644 --- a/src/auth0/management/__init__.py +++ b/src/auth0/management/__init__.py @@ -2803,6 +2803,8 @@ "AssociateOrganizationClientGrantResponseContent": ".types", "AsyncApprovalNotificationsChannelsEnum": ".types", "AsyncAuth0": ".client", + "AsyncManagementClient": ".management_client", + "AsyncTokenProvider": ".token_provider", "AttackProtectionCaptchaArkoseResponseContent": ".types", "AttackProtectionCaptchaAuthChallengeRequest": ".types", "AttackProtectionCaptchaAuthChallengeResponseContent": ".types", @@ -5562,6 +5564,8 @@ def __dir__(): "AssociateOrganizationClientGrantResponseContent", "AsyncApprovalNotificationsChannelsEnum", "AsyncAuth0", + "AsyncManagementClient", + "AsyncTokenProvider", "AttackProtectionCaptchaArkoseResponseContent", "AttackProtectionCaptchaAuthChallengeRequest", "AttackProtectionCaptchaAuthChallengeResponseContent", @@ -7777,6 +7781,7 @@ def __dir__(): "LogStreamSumoEnum", "LogStreamSumoResponseSchema", "LogStreamSumoSink", + "ManagementClient", "MdlPresentationProperties", "MdlPresentationRequest", "MdlPresentationRequestProperties", From 3da185b50736ebfbf92b74e160416a8453f417f5 Mon Sep 17 00:00:00 2001 From: Kunal Dawar Date: Tue, 19 May 2026 17:49:26 +0530 Subject: [PATCH 4/6] chore: remove client_wrapper.py from .fernignore --- .fernignore | 3 --- 1 file changed, 3 deletions(-) diff --git a/.fernignore b/.fernignore index 9c297939..6d1ab409 100644 --- a/.fernignore +++ b/.fernignore @@ -20,9 +20,6 @@ tests/authentication/ src/auth0/__init__.py src/auth0/py.typed -# Telemetry customization (Auth0 format with dynamic versioning) -src/auth0/management/core/client_wrapper.py - # Files edited to incorporate both APIs pyproject.toml poetry.lock From 1c2136be9e7087ccfadf7decdced88e0f768da06 Mon Sep 17 00:00:00 2001 From: "fern-api[bot]" <115122769+fern-api[bot]@users.noreply.github.com> Date: Tue, 19 May 2026 17:57:35 +0530 Subject: [PATCH 5/6] SDK regeneration (#844) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Automated SDK generation by Fern --- ✅ Customizations automatically preserved in this update. --------- Co-authored-by: fern-api <115122769+fern-api[bot]@users.noreply.github.com> --- .fern/replay.lock | 55 ++++++++++--------- .fernignore | 6 ++ reference.md | 16 ++++++ src/auth0/management/__init__.py | 6 ++ src/auth0/management/clients/client.py | 17 ++++++ src/auth0/management/clients/raw_client.py | 25 +++++++++ src/auth0/management/core/client_wrapper.py | 51 +++++++++-------- src/auth0/management/types/__init__.py | 6 ++ src/auth0/management/types/fed_cm_login.py | 24 ++++++++ .../management/types/fed_cm_login_google.py | 26 +++++++++ 10 files changed, 183 insertions(+), 49 deletions(-) create mode 100644 src/auth0/management/types/fed_cm_login.py create mode 100644 src/auth0/management/types/fed_cm_login_google.py diff --git a/.fern/replay.lock b/.fern/replay.lock index 2235bfe8..eb9e8fea 100644 --- a/.fern/replay.lock +++ b/.fern/replay.lock @@ -19,22 +19,28 @@ generations: generator_versions: fernapi/fern-python-sdk: 5.12.10 base_branch_head: 3b19ca9899d758100ca38524af2cb079832fdc56 -current_generation: c1c18146c845e6c7916d0490f7ef02807f9bfebf + - commit_sha: 812b8ca16fc2740001f9839ce5c88f85fed87c6e + tree_hash: 24be5645b7a89574a130a72ceec1f410c757ae6c + timestamp: 2026-05-19T12:25:04.138Z + cli_version: unknown + generator_versions: + fernapi/fern-python-sdk: 5.12.10 +current_generation: 812b8ca16fc2740001f9839ce5c88f85fed87c6e patches: - id: patch-4894603d - content_hash: sha256:2ca56f02c24fc60f076b081eb5d06f4848d08c24003b591d61421d753128b106 + content_hash: sha256:85d8e392938ef0338e526c1cc9abe95cc3b51986f1145d7b25ceef95605d282c original_commit: 4894603d03409962bc60a34712de8abffe919e2c original_message: "chore: Restore custom wiring in management/__init__.py" original_author: Kunal Dawar - base_generation: c1c18146c845e6c7916d0490f7ef02807f9bfebf + base_generation: 812b8ca16fc2740001f9839ce5c88f85fed87c6e files: - src/auth0/management/__init__.py patch_content: | diff --git a/src/auth0/management/__init__.py b/src/auth0/management/__init__.py - index 2822ff3..e537579 100644 + index 46338c3..4fd6baf 100644 --- a/src/auth0/management/__init__.py +++ b/src/auth0/management/__init__.py - @@ -2741,6 +2741,8 @@ if typing.TYPE_CHECKING: + @@ -2743,6 +2743,8 @@ if typing.TYPE_CHECKING: from .environment import Auth0Environment from .event_streams import EventStreamsCreateRequest from .version import __version__ @@ -43,7 +49,7 @@ patches: _dynamic_imports: typing.Dict[str, str] = { "Action": ".types", "ActionBase": ".types", - @@ -2801,6 +2803,8 @@ _dynamic_imports: typing.Dict[str, str] = { + @@ -2803,6 +2805,8 @@ _dynamic_imports: typing.Dict[str, str] = { "AssociateOrganizationClientGrantResponseContent": ".types", "AsyncApprovalNotificationsChannelsEnum": ".types", "AsyncAuth0": ".client", @@ -52,18 +58,15 @@ patches: "AttackProtectionCaptchaArkoseResponseContent": ".types", "AttackProtectionCaptchaAuthChallengeRequest": ".types", "AttackProtectionCaptchaAuthChallengeResponseContent": ".types", - @@ -3756,9 +3760,9 @@ _dynamic_imports: typing.Dict[str, str] = { - "CreateVerificationEmailResponseContent": ".types", - "CreatedAuthenticationMethodTypeEnum": ".types", - "CreatedUserAuthenticationMethodTypeEnum": ".types", - - "CredentialDeviceTypeEnum": ".types", + @@ -3761,6 +3765,7 @@ _dynamic_imports: typing.Dict[str, str] = { + "CredentialDeviceTypeEnum": ".types", "CredentialId": ".types", "CustomDomain": ".types", + "CustomDomainHeader": ".management_client", "CustomDomainCustomClientIpHeader": ".types", "CustomDomainCustomClientIpHeaderEnum": ".types", "CustomDomainProvisioningTypeEnum": ".types", - @@ -5016,6 +5020,7 @@ _dynamic_imports: typing.Dict[str, str] = { + @@ -5020,6 +5025,7 @@ _dynamic_imports: typing.Dict[str, str] = { "LogStreamSumoEnum": ".types", "LogStreamSumoResponseSchema": ".types", "LogStreamSumoSink": ".types", @@ -71,18 +74,15 @@ patches: "MdlPresentationProperties": ".types", "MdlPresentationRequest": ".types", "MdlPresentationRequestProperties": ".types", - @@ -5242,9 +5247,9 @@ _dynamic_imports: typing.Dict[str, str] = { + @@ -5246,6 +5252,7 @@ _dynamic_imports: typing.Dict[str, str] = { "TokenQuota": ".types", "TokenQuotaClientCredentials": ".types", "TokenQuotaConfiguration": ".types", + "TokenProvider": ".token_provider", "TooManyRequestsError": ".errors", "TooManyRequestsSchema": ".types", - - "TooManyRequestsSchemaError": ".types", - "TwilioProviderConfiguration": ".types", - "TwilioProviderCredentials": ".types", - "TwilioProviderDeliveryMethodEnum": ".types", - @@ -5557,6 +5562,8 @@ __all__ = [ + "TooManyRequestsSchemaError": ".types", + @@ -5561,6 +5568,8 @@ __all__ = [ "AssociateOrganizationClientGrantResponseContent", "AsyncApprovalNotificationsChannelsEnum", "AsyncAuth0", @@ -91,18 +91,15 @@ patches: "AttackProtectionCaptchaArkoseResponseContent", "AttackProtectionCaptchaAuthChallengeRequest", "AttackProtectionCaptchaAuthChallengeResponseContent", - @@ -7769,9 +7776,9 @@ __all__ = [ - "LogStreamSplunkResponseSchema", - "LogStreamSplunkSink", - "LogStreamStatusEnum", - - "LogStreamSumoEnum", + @@ -7778,6 +7787,7 @@ __all__ = [ + "LogStreamSumoEnum", "LogStreamSumoResponseSchema", "LogStreamSumoSink", + "ManagementClient", "MdlPresentationProperties", "MdlPresentationRequest", "MdlPresentationRequestProperties", - @@ -7995,6 +8002,7 @@ __all__ = [ + @@ -8001,6 +8011,7 @@ __all__ = [ "TestEventDataContent", "TokenExchangeProfileResponseContent", "TokenExchangeProfileTypeEnum", @@ -1582,6 +1579,8 @@ patches: ExpressConfiguration, ExpressConfigurationOrNull, ExtensibilityEmailProviderCredentials, + FedCmLogin, + FedCmLoginGoogle, FederatedConnectionTokenSet, FlowAction, FlowActionActivecampaign, @@ -4331,6 +4330,8 @@ patches: "ExpressConfiguration": ".types", "ExpressConfigurationOrNull": ".types", "ExtensibilityEmailProviderCredentials": ".types", + "FedCmLogin": ".types", + "FedCmLoginGoogle": ".types", "FederatedConnectionTokenSet": ".types", "FlowAction": ".types", "FlowActionActivecampaign": ".types", @@ -7091,6 +7092,8 @@ patches: "ExpressConfiguration", "ExpressConfigurationOrNull", "ExtensibilityEmailProviderCredentials", + "FedCmLogin", + "FedCmLoginGoogle", "FederatedConnectionTokenSet", "FlowAction", "FlowActionActivecampaign", @@ -8360,7 +8363,7 @@ patches: original_commit: f182694f50720cacb568ff5c7a1894b0dd972373 original_message: "fix: Add top-level `py.typed` marker to resolve IDE import errors (#829)" original_author: Snehil Kishore - base_generation: c1c18146c845e6c7916d0490f7ef02807f9bfebf + base_generation: 812b8ca16fc2740001f9839ce5c88f85fed87c6e files: - src/auth0/py.typed patch_content: |+ @@ -8419,7 +8422,7 @@ patches: original_commit: 1026b4d84790f1037f99df904ddf58d68f944224 original_message: Release 5.4.0 (#838) original_author: Snehil Kishore - base_generation: c1c18146c845e6c7916d0490f7ef02807f9bfebf + base_generation: 812b8ca16fc2740001f9839ce5c88f85fed87c6e files: - .version - CHANGELOG.md diff --git a/.fernignore b/.fernignore index 6d1ab409..b3bec987 100644 --- a/.fernignore +++ b/.fernignore @@ -19,6 +19,12 @@ tests/authentication/ # Root auth0 __init__.py and py.typed marker src/auth0/__init__.py src/auth0/py.typed +<<<<<<< ours +======= + +# Telemetry customization (Auth0 format with dynamic versioning) +src/auth0/management/core/client_wrapper.py +>>>>>>> theirs # Files edited to incorporate both APIs pyproject.toml diff --git a/reference.md b/reference.md index 422c88b5..fb6bfb5a 100644 --- a/reference.md +++ b/reference.md @@ -1902,6 +1902,14 @@ client.clients.create(
+**fedcm_login:** `typing.Optional[FedCmLogin]` + +
+
+ +
+
+ **refresh_token:** `typing.Optional[ClientRefreshTokenConfiguration]`
@@ -2783,6 +2791,14 @@ client.clients.update(
+**fedcm_login:** `typing.Optional[FedCmLogin]` + +
+
+ +
+
+ **refresh_token:** `typing.Optional[ClientRefreshTokenConfiguration]`
diff --git a/src/auth0/management/__init__.py b/src/auth0/management/__init__.py index 64a3587b..4fd6bafa 100644 --- a/src/auth0/management/__init__.py +++ b/src/auth0/management/__init__.py @@ -1468,6 +1468,8 @@ ExpressConfiguration, ExpressConfigurationOrNull, ExtensibilityEmailProviderCredentials, + FedCmLogin, + FedCmLoginGoogle, FederatedConnectionTokenSet, FlowAction, FlowActionActivecampaign, @@ -4217,6 +4219,8 @@ "ExpressConfiguration": ".types", "ExpressConfigurationOrNull": ".types", "ExtensibilityEmailProviderCredentials": ".types", + "FedCmLogin": ".types", + "FedCmLoginGoogle": ".types", "FederatedConnectionTokenSet": ".types", "FlowAction": ".types", "FlowActionActivecampaign": ".types", @@ -6977,6 +6981,8 @@ def __dir__(): "ExpressConfiguration", "ExpressConfigurationOrNull", "ExtensibilityEmailProviderCredentials", + "FedCmLogin", + "FedCmLoginGoogle", "FederatedConnectionTokenSet", "FlowAction", "FlowActionActivecampaign", diff --git a/src/auth0/management/clients/client.py b/src/auth0/management/clients/client.py index 4a570ee1..475c1fe7 100644 --- a/src/auth0/management/clients/client.py +++ b/src/auth0/management/clients/client.py @@ -46,6 +46,7 @@ from ..types.create_token_quota import CreateTokenQuota from ..types.express_configuration import ExpressConfiguration from ..types.express_configuration_or_null import ExpressConfigurationOrNull +from ..types.fed_cm_login import FedCmLogin from ..types.get_client_response_content import GetClientResponseContent from ..types.list_clients_offset_paginated_response_content import ListClientsOffsetPaginatedResponseContent from ..types.native_social_login import NativeSocialLogin @@ -246,6 +247,7 @@ def create( mobile: typing.Optional[ClientMobile] = OMIT, initiate_login_uri: typing.Optional[str] = OMIT, native_social_login: typing.Optional[NativeSocialLogin] = OMIT, + fedcm_login: typing.Optional[FedCmLogin] = OMIT, refresh_token: typing.Optional[ClientRefreshTokenConfiguration] = OMIT, default_organization: typing.Optional[ClientDefaultOrganization] = OMIT, organization_usage: typing.Optional[ClientOrganizationUsageEnum] = OMIT, @@ -377,6 +379,8 @@ def create( native_social_login : typing.Optional[NativeSocialLogin] + fedcm_login : typing.Optional[FedCmLogin] + refresh_token : typing.Optional[ClientRefreshTokenConfiguration] default_organization : typing.Optional[ClientDefaultOrganization] @@ -478,6 +482,7 @@ def create( mobile=mobile, initiate_login_uri=initiate_login_uri, native_social_login=native_social_login, + fedcm_login=fedcm_login, refresh_token=refresh_token, default_organization=default_organization, organization_usage=organization_usage, @@ -735,6 +740,7 @@ def update( mobile: typing.Optional[ClientMobile] = OMIT, initiate_login_uri: typing.Optional[str] = OMIT, native_social_login: typing.Optional[NativeSocialLogin] = OMIT, + fedcm_login: typing.Optional[FedCmLogin] = OMIT, refresh_token: typing.Optional[ClientRefreshTokenConfiguration] = OMIT, default_organization: typing.Optional[ClientDefaultOrganization] = OMIT, organization_usage: typing.Optional[ClientOrganizationUsagePatchEnum] = OMIT, @@ -869,6 +875,8 @@ def update( native_social_login : typing.Optional[NativeSocialLogin] + fedcm_login : typing.Optional[FedCmLogin] + refresh_token : typing.Optional[ClientRefreshTokenConfiguration] default_organization : typing.Optional[ClientDefaultOrganization] @@ -968,6 +976,7 @@ def update( mobile=mobile, initiate_login_uri=initiate_login_uri, native_social_login=native_social_login, + fedcm_login=fedcm_login, refresh_token=refresh_token, default_organization=default_organization, organization_usage=organization_usage, @@ -1236,6 +1245,7 @@ async def create( mobile: typing.Optional[ClientMobile] = OMIT, initiate_login_uri: typing.Optional[str] = OMIT, native_social_login: typing.Optional[NativeSocialLogin] = OMIT, + fedcm_login: typing.Optional[FedCmLogin] = OMIT, refresh_token: typing.Optional[ClientRefreshTokenConfiguration] = OMIT, default_organization: typing.Optional[ClientDefaultOrganization] = OMIT, organization_usage: typing.Optional[ClientOrganizationUsageEnum] = OMIT, @@ -1367,6 +1377,8 @@ async def create( native_social_login : typing.Optional[NativeSocialLogin] + fedcm_login : typing.Optional[FedCmLogin] + refresh_token : typing.Optional[ClientRefreshTokenConfiguration] default_organization : typing.Optional[ClientDefaultOrganization] @@ -1476,6 +1488,7 @@ async def main() -> None: mobile=mobile, initiate_login_uri=initiate_login_uri, native_social_login=native_social_login, + fedcm_login=fedcm_login, refresh_token=refresh_token, default_organization=default_organization, organization_usage=organization_usage, @@ -1765,6 +1778,7 @@ async def update( mobile: typing.Optional[ClientMobile] = OMIT, initiate_login_uri: typing.Optional[str] = OMIT, native_social_login: typing.Optional[NativeSocialLogin] = OMIT, + fedcm_login: typing.Optional[FedCmLogin] = OMIT, refresh_token: typing.Optional[ClientRefreshTokenConfiguration] = OMIT, default_organization: typing.Optional[ClientDefaultOrganization] = OMIT, organization_usage: typing.Optional[ClientOrganizationUsagePatchEnum] = OMIT, @@ -1899,6 +1913,8 @@ async def update( native_social_login : typing.Optional[NativeSocialLogin] + fedcm_login : typing.Optional[FedCmLogin] + refresh_token : typing.Optional[ClientRefreshTokenConfiguration] default_organization : typing.Optional[ClientDefaultOrganization] @@ -2006,6 +2022,7 @@ async def main() -> None: mobile=mobile, initiate_login_uri=initiate_login_uri, native_social_login=native_social_login, + fedcm_login=fedcm_login, refresh_token=refresh_token, default_organization=default_organization, organization_usage=organization_usage, diff --git a/src/auth0/management/clients/raw_client.py b/src/auth0/management/clients/raw_client.py index 1a190b89..8d2b434e 100644 --- a/src/auth0/management/clients/raw_client.py +++ b/src/auth0/management/clients/raw_client.py @@ -58,6 +58,7 @@ from ..types.create_token_quota import CreateTokenQuota from ..types.express_configuration import ExpressConfiguration from ..types.express_configuration_or_null import ExpressConfigurationOrNull +from ..types.fed_cm_login import FedCmLogin from ..types.get_client_response_content import GetClientResponseContent from ..types.list_clients_offset_paginated_response_content import ListClientsOffsetPaginatedResponseContent from ..types.native_social_login import NativeSocialLogin @@ -299,6 +300,7 @@ def create( mobile: typing.Optional[ClientMobile] = OMIT, initiate_login_uri: typing.Optional[str] = OMIT, native_social_login: typing.Optional[NativeSocialLogin] = OMIT, + fedcm_login: typing.Optional[FedCmLogin] = OMIT, refresh_token: typing.Optional[ClientRefreshTokenConfiguration] = OMIT, default_organization: typing.Optional[ClientDefaultOrganization] = OMIT, organization_usage: typing.Optional[ClientOrganizationUsageEnum] = OMIT, @@ -430,6 +432,8 @@ def create( native_social_login : typing.Optional[NativeSocialLogin] + fedcm_login : typing.Optional[FedCmLogin] + refresh_token : typing.Optional[ClientRefreshTokenConfiguration] default_organization : typing.Optional[ClientDefaultOrganization] @@ -541,6 +545,9 @@ def create( "native_social_login": convert_and_respect_annotation_metadata( object_=native_social_login, annotation=NativeSocialLogin, direction="write" ), + "fedcm_login": convert_and_respect_annotation_metadata( + object_=fedcm_login, annotation=FedCmLogin, direction="write" + ), "refresh_token": convert_and_respect_annotation_metadata( object_=refresh_token, annotation=typing.Optional[ClientRefreshTokenConfiguration], @@ -1151,6 +1158,7 @@ def update( mobile: typing.Optional[ClientMobile] = OMIT, initiate_login_uri: typing.Optional[str] = OMIT, native_social_login: typing.Optional[NativeSocialLogin] = OMIT, + fedcm_login: typing.Optional[FedCmLogin] = OMIT, refresh_token: typing.Optional[ClientRefreshTokenConfiguration] = OMIT, default_organization: typing.Optional[ClientDefaultOrganization] = OMIT, organization_usage: typing.Optional[ClientOrganizationUsagePatchEnum] = OMIT, @@ -1285,6 +1293,8 @@ def update( native_social_login : typing.Optional[NativeSocialLogin] + fedcm_login : typing.Optional[FedCmLogin] + refresh_token : typing.Optional[ClientRefreshTokenConfiguration] default_organization : typing.Optional[ClientDefaultOrganization] @@ -1395,6 +1405,9 @@ def update( "native_social_login": convert_and_respect_annotation_metadata( object_=native_social_login, annotation=NativeSocialLogin, direction="write" ), + "fedcm_login": convert_and_respect_annotation_metadata( + object_=fedcm_login, annotation=FedCmLogin, direction="write" + ), "refresh_token": convert_and_respect_annotation_metadata( object_=refresh_token, annotation=typing.Optional[ClientRefreshTokenConfiguration], @@ -1855,6 +1868,7 @@ async def create( mobile: typing.Optional[ClientMobile] = OMIT, initiate_login_uri: typing.Optional[str] = OMIT, native_social_login: typing.Optional[NativeSocialLogin] = OMIT, + fedcm_login: typing.Optional[FedCmLogin] = OMIT, refresh_token: typing.Optional[ClientRefreshTokenConfiguration] = OMIT, default_organization: typing.Optional[ClientDefaultOrganization] = OMIT, organization_usage: typing.Optional[ClientOrganizationUsageEnum] = OMIT, @@ -1986,6 +2000,8 @@ async def create( native_social_login : typing.Optional[NativeSocialLogin] + fedcm_login : typing.Optional[FedCmLogin] + refresh_token : typing.Optional[ClientRefreshTokenConfiguration] default_organization : typing.Optional[ClientDefaultOrganization] @@ -2097,6 +2113,9 @@ async def create( "native_social_login": convert_and_respect_annotation_metadata( object_=native_social_login, annotation=NativeSocialLogin, direction="write" ), + "fedcm_login": convert_and_respect_annotation_metadata( + object_=fedcm_login, annotation=FedCmLogin, direction="write" + ), "refresh_token": convert_and_respect_annotation_metadata( object_=refresh_token, annotation=typing.Optional[ClientRefreshTokenConfiguration], @@ -2709,6 +2728,7 @@ async def update( mobile: typing.Optional[ClientMobile] = OMIT, initiate_login_uri: typing.Optional[str] = OMIT, native_social_login: typing.Optional[NativeSocialLogin] = OMIT, + fedcm_login: typing.Optional[FedCmLogin] = OMIT, refresh_token: typing.Optional[ClientRefreshTokenConfiguration] = OMIT, default_organization: typing.Optional[ClientDefaultOrganization] = OMIT, organization_usage: typing.Optional[ClientOrganizationUsagePatchEnum] = OMIT, @@ -2843,6 +2863,8 @@ async def update( native_social_login : typing.Optional[NativeSocialLogin] + fedcm_login : typing.Optional[FedCmLogin] + refresh_token : typing.Optional[ClientRefreshTokenConfiguration] default_organization : typing.Optional[ClientDefaultOrganization] @@ -2953,6 +2975,9 @@ async def update( "native_social_login": convert_and_respect_annotation_metadata( object_=native_social_login, annotation=NativeSocialLogin, direction="write" ), + "fedcm_login": convert_and_respect_annotation_metadata( + object_=fedcm_login, annotation=FedCmLogin, direction="write" + ), "refresh_token": convert_and_respect_annotation_metadata( object_=refresh_token, annotation=typing.Optional[ClientRefreshTokenConfiguration], diff --git a/src/auth0/management/core/client_wrapper.py b/src/auth0/management/core/client_wrapper.py index 16c24e6b..3172bf3e 100644 --- a/src/auth0/management/core/client_wrapper.py +++ b/src/auth0/management/core/client_wrapper.py @@ -1,11 +1,6 @@ # This file was auto-generated by Fern from our API Definition. -# Modified by Auth0 to use Auth0 telemetry format with dynamic versioning -import base64 -import platform -import sys import typing -from json import dumps import httpx from .http_client import AsyncHttpClient, HttpClient @@ -20,27 +15,26 @@ def __init__( headers: typing.Optional[typing.Dict[str, str]] = None, base_url: str, timeout: typing.Optional[float] = None, + max_retries: int = 2, + logging: typing.Optional[typing.Union[LogConfig, Logger]] = None, ): self._token = token self._headers = headers self._base_url = base_url self._timeout = timeout + self._max_retries = max_retries + self._logging = logging def get_headers(self) -> typing.Dict[str, str]: - # Dynamically get version from package metadata - py_version = platform.python_version() - version = sys.modules["auth0"].__version__ - - # Build Auth0 telemetry in standard format - auth0_client = dumps({ - "name": "auth0-python", - "version": version, - "env": {"python": py_version} - }).encode("utf-8") + import platform headers: typing.Dict[str, str] = { - "User-Agent": f"Python/{py_version}", - "Auth0-Client": base64.b64encode(auth0_client).decode(), + "User-Agent": "auth0-python/5.4.0", + "X-Fern-Language": "Python", + "X-Fern-Runtime": f"python/{platform.python_version()}", + "X-Fern-Platform": f"{platform.system().lower()}/{platform.release()}", + "X-Fern-SDK-Name": "auth0-python", + "X-Fern-SDK-Version": "5.4.0", **(self.get_custom_headers() or {}), } headers["Authorization"] = f"Bearer {self._get_token()}" @@ -61,6 +55,9 @@ def get_base_url(self) -> str: def get_timeout(self) -> typing.Optional[float]: return self._timeout + def get_max_retries(self) -> int: + return self._max_retries + class SyncClientWrapper(BaseClientWrapper): def __init__( @@ -70,16 +67,20 @@ def __init__( headers: typing.Optional[typing.Dict[str, str]] = None, base_url: str, timeout: typing.Optional[float] = None, - httpx_client: httpx.Client, + max_retries: int = 2, logging: typing.Optional[typing.Union[LogConfig, Logger]] = None, + httpx_client: httpx.Client, ): - super().__init__(token=token, headers=headers, base_url=base_url, timeout=timeout) + super().__init__( + token=token, headers=headers, base_url=base_url, timeout=timeout, max_retries=max_retries, logging=logging + ) self.httpx_client = HttpClient( httpx_client=httpx_client, base_headers=self.get_headers, base_timeout=self.get_timeout, base_url=self.get_base_url, - logging_config=logging, + base_max_retries=self.get_max_retries(), + logging_config=self._logging, ) @@ -91,19 +92,23 @@ def __init__( headers: typing.Optional[typing.Dict[str, str]] = None, base_url: str, timeout: typing.Optional[float] = None, + max_retries: int = 2, + logging: typing.Optional[typing.Union[LogConfig, Logger]] = None, async_token: typing.Optional[typing.Callable[[], typing.Awaitable[str]]] = None, httpx_client: httpx.AsyncClient, - logging: typing.Optional[typing.Union[LogConfig, Logger]] = None, ): - super().__init__(token=token, headers=headers, base_url=base_url, timeout=timeout) + super().__init__( + token=token, headers=headers, base_url=base_url, timeout=timeout, max_retries=max_retries, logging=logging + ) self._async_token = async_token self.httpx_client = AsyncHttpClient( httpx_client=httpx_client, base_headers=self.get_headers, base_timeout=self.get_timeout, base_url=self.get_base_url, + base_max_retries=self.get_max_retries(), async_base_headers=self.async_get_headers, - logging_config=logging, + logging_config=self._logging, ) async def async_get_headers(self) -> typing.Dict[str, str]: diff --git a/src/auth0/management/types/__init__.py b/src/auth0/management/types/__init__.py index 33d2200c..191ef50b 100644 --- a/src/auth0/management/types/__init__.py +++ b/src/auth0/management/types/__init__.py @@ -1981,6 +1981,8 @@ from .express_configuration import ExpressConfiguration from .express_configuration_or_null import ExpressConfigurationOrNull from .extensibility_email_provider_credentials import ExtensibilityEmailProviderCredentials + from .fed_cm_login import FedCmLogin + from .fed_cm_login_google import FedCmLoginGoogle from .federated_connection_token_set import FederatedConnectionTokenSet from .flow_action import FlowAction from .flow_action_activecampaign import FlowActionActivecampaign @@ -4774,6 +4776,8 @@ "ExpressConfiguration": ".express_configuration", "ExpressConfigurationOrNull": ".express_configuration_or_null", "ExtensibilityEmailProviderCredentials": ".extensibility_email_provider_credentials", + "FedCmLogin": ".fed_cm_login", + "FedCmLoginGoogle": ".fed_cm_login_google", "FederatedConnectionTokenSet": ".federated_connection_token_set", "FlowAction": ".flow_action", "FlowActionActivecampaign": ".flow_action_activecampaign", @@ -7467,6 +7471,8 @@ def __dir__(): "ExpressConfiguration", "ExpressConfigurationOrNull", "ExtensibilityEmailProviderCredentials", + "FedCmLogin", + "FedCmLoginGoogle", "FederatedConnectionTokenSet", "FlowAction", "FlowActionActivecampaign", diff --git a/src/auth0/management/types/fed_cm_login.py b/src/auth0/management/types/fed_cm_login.py new file mode 100644 index 00000000..4541ab6e --- /dev/null +++ b/src/auth0/management/types/fed_cm_login.py @@ -0,0 +1,24 @@ +# This file was auto-generated by Fern from our API Definition. + +import typing + +import pydantic +from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel +from .fed_cm_login_google import FedCmLoginGoogle + + +class FedCmLogin(UniversalBaseModel): + """ + Configure FedCM login settings for New Universal Login + """ + + google: typing.Optional[FedCmLoginGoogle] = None + + if IS_PYDANTIC_V2: + model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2 + else: + + class Config: + frozen = True + smart_union = True + extra = pydantic.Extra.allow diff --git a/src/auth0/management/types/fed_cm_login_google.py b/src/auth0/management/types/fed_cm_login_google.py new file mode 100644 index 00000000..01c7e43b --- /dev/null +++ b/src/auth0/management/types/fed_cm_login_google.py @@ -0,0 +1,26 @@ +# This file was auto-generated by Fern from our API Definition. + +import typing + +import pydantic +from ..core.pydantic_utilities import IS_PYDANTIC_V2, UniversalBaseModel + + +class FedCmLoginGoogle(UniversalBaseModel): + """ + Google FedCM configuration for this client + """ + + is_enabled: typing.Optional[bool] = pydantic.Field(default=None) + """ + When true, shows the Google FedCM prompt on New Universal Login for this client + """ + + if IS_PYDANTIC_V2: + model_config: typing.ClassVar[pydantic.ConfigDict] = pydantic.ConfigDict(extra="allow", frozen=True) # type: ignore # Pydantic v2 + else: + + class Config: + frozen = True + smart_union = True + extra = pydantic.Extra.allow From 417f24c9b403079b4610f6dc007ff998ca21d0aa Mon Sep 17 00:00:00 2001 From: Kunal Dawar Date: Tue, 19 May 2026 17:58:40 +0530 Subject: [PATCH 6/6] chore: re-apply Auth0 telemetry customization to regenerated client_wrapper.py --- .fernignore | 6 ------ src/auth0/management/core/client_wrapper.py | 22 ++++++++++++++------- 2 files changed, 15 insertions(+), 13 deletions(-) diff --git a/.fernignore b/.fernignore index b3bec987..6d1ab409 100644 --- a/.fernignore +++ b/.fernignore @@ -19,12 +19,6 @@ tests/authentication/ # Root auth0 __init__.py and py.typed marker src/auth0/__init__.py src/auth0/py.typed -<<<<<<< ours -======= - -# Telemetry customization (Auth0 format with dynamic versioning) -src/auth0/management/core/client_wrapper.py ->>>>>>> theirs # Files edited to incorporate both APIs pyproject.toml diff --git a/src/auth0/management/core/client_wrapper.py b/src/auth0/management/core/client_wrapper.py index 3172bf3e..60ebc5a6 100644 --- a/src/auth0/management/core/client_wrapper.py +++ b/src/auth0/management/core/client_wrapper.py @@ -1,6 +1,11 @@ # This file was auto-generated by Fern from our API Definition. +# Modified by Auth0 to use Auth0 telemetry format with dynamic versioning +import base64 +import platform +import sys import typing +from json import dumps import httpx from .http_client import AsyncHttpClient, HttpClient @@ -26,15 +31,18 @@ def __init__( self._logging = logging def get_headers(self) -> typing.Dict[str, str]: - import platform + py_version = platform.python_version() + version = sys.modules["auth0"].__version__ + + auth0_client = dumps({ + "name": "auth0-python", + "version": version, + "env": {"python": py_version} + }).encode("utf-8") headers: typing.Dict[str, str] = { - "User-Agent": "auth0-python/5.4.0", - "X-Fern-Language": "Python", - "X-Fern-Runtime": f"python/{platform.python_version()}", - "X-Fern-Platform": f"{platform.system().lower()}/{platform.release()}", - "X-Fern-SDK-Name": "auth0-python", - "X-Fern-SDK-Version": "5.4.0", + "User-Agent": f"Python/{py_version}", + "Auth0-Client": base64.b64encode(auth0_client).decode(), **(self.get_custom_headers() or {}), } headers["Authorization"] = f"Bearer {self._get_token()}"