@authhero/adapter-interfaces 0.96.0 → 0.98.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/adapter-interfaces.cjs +1 -1
- package/dist/adapter-interfaces.d.ts +133 -29
- package/dist/adapter-interfaces.mjs +167 -158
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("@hono/zod-openapi"),Ue=e.z.object({start:e.z.number(),limit:e.z.number(),length:e.z.number()}),n=e.z.object({created_at:e.z.string(),updated_at:e.z.string()}),u=e.z.object({email:e.z.string().optional(),email_verified:e.z.boolean().optional(),name:e.z.string().optional(),username:e.z.string().optional(),given_name:e.z.string().optional(),phone_number:e.z.string().optional(),phone_verified:e.z.boolean().optional(),family_name:e.z.string().optional()}).catchall(e.z.any()),m=e.z.object({connection:e.z.string(),user_id:e.z.string(),provider:e.z.string(),isSocial:e.z.boolean(),access_token:e.z.string().optional(),access_token_secret:e.z.string().optional(),refresh_token:e.z.string().optional(),profileData:u.optional()}),c=e.z.object({email:e.z.string().optional().transform(t=>t&&t.toLowerCase()),username:e.z.string().optional(),phone_number:e.z.string().optional(),given_name:e.z.string().optional(),family_name:e.z.string().optional(),nickname:e.z.string().optional(),name:e.z.string().optional(),picture:e.z.string().optional(),locale:e.z.string().optional(),linked_to:e.z.string().optional(),profileData:e.z.string().optional(),user_id:e.z.string().optional(),app_metadata:e.z.any().default({}).optional(),user_metadata:e.z.any().default({}).optional()}),h=c.extend({email_verified:e.z.boolean().default(!1),verify_email:e.z.boolean().optional(),last_ip:e.z.string().optional(),last_login:e.z.string().optional(),user_id:e.z.string().optional(),provider:e.z.string().default("email"),connection:e.z.string().default("email"),is_social:e.z.boolean().optional()}),S=e.z.object({...h.shape,...n.shape,user_id:e.z.string(),is_social:e.z.boolean(),email:e.z.string().optional(),login_count:e.z.number().default(0),identities:e.z.array(m).optional()}),ve=S,Fe=c.extend({login_count:e.z.number(),multifactor:e.z.array(e.z.string()).optional(),last_ip:e.z.string().optional(),last_login:e.z.string().optional(),user_id:e.z.string()}).catchall(e.z.any()),Pe="useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict";let Me=(t=21)=>{let a="",s=crypto.getRandomValues(new Uint8Array(t));for(;t--;)a+=Pe[s[t]&63];return a};const b=e.z.object({client_id:e.z.string().openapi({description:"ID of this client."}),name:e.z.string().min(1).openapi({description:"Name of this client (min length: 1 character, does not allow < or >)."}),description:e.z.string().max(140).optional().openapi({description:"Free text description of this client (max length: 140 characters)."}),global:e.z.boolean().default(!1).openapi({description:"Whether this is your global 'All Applications' client representing legacy tenant settings (true) or a regular client (false)."}),client_secret:e.z.string().default(()=>Me()).optional().openapi({description:"Client secret (which you must not make public)."}),app_type:e.z.enum(["native","spa","regular_web","non_interactive","resource_server","express_configuration","rms","box","cloudbees","concur","dropbox","mscrm","echosign","egnyte","newrelic","office365","salesforce","sentry","sharepoint","slack","springcm","zendesk","zoom","sso_integration","oag"]).default("regular_web").optional().openapi({description:"The type of application this client represents"}),logo_uri:e.z.string().url().optional().openapi({description:"URL of the logo to display for this client. Recommended size is 150x150 pixels."}),is_first_party:e.z.boolean().default(!1).openapi({description:"Whether this client a first party client (true) or not (false)."}),oidc_conformant:e.z.boolean().default(!0).openapi({description:"Whether this client conforms to strict OIDC specifications (true) or uses legacy features (false)."}),callbacks:e.z.array(e.z.string()).default([]).optional().openapi({description:"Comma-separated list of URLs whitelisted for Auth0 to use as a callback to the client after authentication."}),allowed_origins:e.z.array(e.z.string()).default([]).optional().openapi({description:"Comma-separated list of URLs allowed to make requests from JavaScript to Auth0 API (typically used with CORS). By default, all your callback URLs will be allowed. This field allows you to enter other origins if necessary. You can also use wildcards at the subdomain level (e.g., https://*.contoso.com). Query strings and hash information are not taken into account when validating these URLs."}),web_origins:e.z.array(e.z.string()).default([]).optional().openapi({description:"Comma-separated list of allowed origins for use with Cross-Origin Authentication, Device Flow, and web message response mode."}),client_aliases:e.z.array(e.z.string()).default([]).optional().openapi({description:"List of audiences/realms for SAML protocol. Used by the wsfed addon."}),allowed_clients:e.z.array(e.z.string()).default([]).optional().openapi({description:"List of allow clients and API ids that are allowed to make delegation requests. Empty means all all your clients are allowed."}),allowed_logout_urls:e.z.array(e.z.string()).default([]).optional().openapi({description:"Comma-separated list of URLs that are valid to redirect to after logout from Auth0. Wildcards are allowed for subdomains."}),session_transfer:e.z.record(e.z.any()).default({}).optional().openapi({description:"Native to Web SSO Configuration"}),oidc_logout:e.z.record(e.z.any()).default({}).optional().openapi({description:"Configuration for OIDC backchannel logout"}),grant_types:e.z.array(e.z.string()).default([]).optional().openapi({description:"List of grant types supported for this application. Can include authorization_code, implicit, refresh_token, client_credentials, password, http://auth0.com/oauth/grant-type/password-realm, http://auth0.com/oauth/grant-type/mfa-oob, http://auth0.com/oauth/grant-type/mfa-otp, http://auth0.com/oauth/grant-type/mfa-recovery-code, urn:openid:params:grant-type:ciba, and urn:ietf:params:oauth:grant-type:device_code."}),jwt_configuration:e.z.record(e.z.any()).default({}).optional().openapi({description:"Configuration related to JWTs for the client."}),signing_keys:e.z.array(e.z.record(e.z.any())).default([]).optional().openapi({description:"Signing certificates associated with this client."}),encryption_key:e.z.record(e.z.any()).default({}).optional().openapi({description:"Encryption used for WsFed responses with this client."}),sso:e.z.boolean().default(!1).openapi({description:"Applies only to SSO clients and determines whether Auth0 will handle Single Sign On (true) or whether the Identity Provider will (false)."}),sso_disabled:e.z.boolean().default(!0).openapi({description:"Whether Single Sign On is disabled (true) or enabled (true). Defaults to true."}),cross_origin_authentication:e.z.boolean().default(!1).openapi({description:"Whether this client can be used to make cross-origin authentication requests (true) or it is not allowed to make such requests (false)."}),cross_origin_loc:e.z.string().url().optional().openapi({description:"URL of the location in your site where the cross origin verification takes place for the cross-origin auth flow when performing Auth in your own domain instead of Auth0 hosted login page."}),custom_login_page_on:e.z.boolean().default(!1).openapi({description:"Whether a custom login page is to be used (true) or the default provided login page (false)."}),custom_login_page:e.z.string().optional().openapi({description:"The content (HTML, CSS, JS) of the custom login page."}),custom_login_page_preview:e.z.string().optional().openapi({description:"The content (HTML, CSS, JS) of the custom login page. (Used on Previews)"}),form_template:e.z.string().optional().openapi({description:"HTML form template to be used for WS-Federation."}),addons:e.z.record(e.z.any()).default({}).optional().openapi({description:"Addons enabled for this client and their associated configurations."}),token_endpoint_auth_method:e.z.enum(["none","client_secret_post","client_secret_basic"]).default("client_secret_basic").optional().openapi({description:"Defines the requested authentication method for the token endpoint. Can be none (public client without a client secret), client_secret_post (client uses HTTP POST parameters), or client_secret_basic (client uses HTTP Basic)."}),client_metadata:e.z.record(e.z.string().max(255)).default({}).optional().openapi({description:'Metadata associated with the client, in the form of an object with string values (max 255 chars). Maximum of 10 metadata properties allowed. Field names (max 255 chars) are alphanumeric and may only include the following special characters: :,-+=_*?"/()<>@ [Tab][Space]'}),mobile:e.z.record(e.z.any()).default({}).optional().openapi({description:"Additional configuration for native mobile apps."}),initiate_login_uri:e.z.string().url().optional().openapi({description:"Initiate login uri, must be https"}),native_social_login:e.z.record(e.z.any()).default({}).optional(),refresh_token:e.z.record(e.z.any()).default({}).optional().openapi({description:"Refresh token configuration"}),default_organization:e.z.record(e.z.any()).default({}).optional().openapi({description:"Defines the default Organization ID and flows"}),organization_usage:e.z.enum(["deny","allow","require"]).default("deny").optional().openapi({description:"Defines how to proceed during an authentication transaction with regards an organization. Can be deny (default), allow or require."}),organization_require_behavior:e.z.enum(["no_prompt","pre_login_prompt","post_login_prompt"]).default("no_prompt").optional().openapi({description:"Defines how to proceed during an authentication transaction when client.organization_usage: 'require'. Can be no_prompt (default), pre_login_prompt or post_login_prompt. post_login_prompt requires oidc_conformant: true."}),client_authentication_methods:e.z.record(e.z.any()).default({}).optional().openapi({description:"Defines client authentication methods."}),require_pushed_authorization_requests:e.z.boolean().default(!1).openapi({description:"Makes the use of Pushed Authorization Requests mandatory for this client"}),require_proof_of_possession:e.z.boolean().default(!1).openapi({description:"Makes the use of Proof-of-Possession mandatory for this client"}),signed_request_object:e.z.record(e.z.any()).default({}).optional().openapi({description:"JWT-secured Authorization Requests (JAR) settings."}),compliance_level:e.z.enum(["none","fapi1_adv_pkj_par","fapi1_adv_mtls_par","fapi2_sp_pkj_mtls","fapi2_sp_mtls_mtls"]).optional().openapi({description:"Defines the compliance level for this client, which may restrict it's capabilities"}),par_request_expiry:e.z.number().optional().openapi({description:"Specifies how long, in seconds, a Pushed Authorization Request URI remains valid"}),token_quota:e.z.record(e.z.any()).default({}).optional()}),E=e.z.object({created_at:e.z.string(),updated_at:e.z.string(),...b.shape}),f=e.z.object({client_id:e.z.string().min(1).openapi({description:"ID of the client."}),audience:e.z.string().min(1).openapi({description:"The audience (API identifier) of this client grant."}),scope:e.z.array(e.z.string()).optional().openapi({description:"Scopes allowed for this client grant."}),organization_usage:e.z.enum(["deny","allow","require"]).optional().openapi({description:"Defines whether organizations can be used with client credentials exchanges for this grant."}),allow_any_organization:e.z.boolean().optional().openapi({description:"If enabled, any organization can be used with this grant. If disabled (default), the grant must be explicitly assigned to the desired organizations."}),is_system:e.z.boolean().optional().openapi({description:"If enabled, this grant is a special grant created by Auth0. It cannot be modified or deleted directly."}),subject_type:e.z.enum(["client","user"]).optional().openapi({description:"The type of application access the client grant allows. Use of this field is subject to the applicable Free Trial terms in Okta's Master Subscription Agreement."}),authorization_details_types:e.z.array(e.z.string()).optional().openapi({description:"Types of authorization_details allowed for this client grant. Use of this field is subject to the applicable Free Trial terms in Okta's Master Subscription Agreement."})}),A=e.z.object({id:e.z.string().openapi({description:"ID of the client grant."}),...f.shape,created_at:e.z.string().optional(),updated_at:e.z.string().optional()}),He=e.z.array(A),i=e.z.object({x:e.z.number(),y:e.z.number()});var _=(t=>(t.RICH_TEXT="RICH_TEXT",t.NEXT_BUTTON="NEXT_BUTTON",t.BACK_BUTTON="BACK_BUTTON",t.SUBMIT_BUTTON="SUBMIT_BUTTON",t.DIVIDER="DIVIDER",t.TEXT="TEXT",t.EMAIL="EMAIL",t.PASSWORD="PASSWORD",t.NUMBER="NUMBER",t.PHONE="PHONE",t.DATE="DATE",t.CHECKBOX="CHECKBOX",t.RADIO="RADIO",t.SELECT="SELECT",t.HIDDEN="HIDDEN",t.LEGAL="LEGAL",t))(_||{}),p=(t=>(t.BLOCK="BLOCK",t.FIELD="FIELD",t))(p||{});const r=e.z.object({id:e.z.string(),category:e.z.nativeEnum(p),type:e.z.nativeEnum(_)}),I=r.extend({category:e.z.literal("BLOCK"),type:e.z.literal("RICH_TEXT"),config:e.z.object({content:e.z.string()}).passthrough()}),C=r.extend({category:e.z.literal("BLOCK"),type:e.z.union([e.z.literal("NEXT_BUTTON"),e.z.literal("BACK_BUTTON"),e.z.literal("SUBMIT_BUTTON")]),config:e.z.object({text:e.z.string()}).passthrough()}),O=r.extend({category:e.z.literal("FIELD"),type:e.z.literal("LEGAL"),required:e.z.boolean().optional(),sensitive:e.z.boolean().optional(),config:e.z.object({text:e.z.string()}).passthrough()}),T=r.extend({category:e.z.literal("FIELD"),type:e.z.union([e.z.literal("TEXT"),e.z.literal("EMAIL"),e.z.literal("PASSWORD"),e.z.literal("NUMBER"),e.z.literal("PHONE"),e.z.literal("DATE"),e.z.literal("CHECKBOX"),e.z.literal("RADIO"),e.z.literal("SELECT"),e.z.literal("HIDDEN")]),required:e.z.boolean().optional(),sensitive:e.z.boolean().optional(),config:e.z.object({label:e.z.string().optional(),placeholder:e.z.string().optional()}).passthrough()}),y=e.z.object({id:e.z.string(),category:e.z.string(),type:e.z.string()}).passthrough(),N=e.z.union([I,C,O,T,y]);var R=(t=>(t.STEP="STEP",t.FLOW="FLOW",t.CONDITION="CONDITION",t.ACTION="ACTION",t))(R||{});const L=e.z.object({id:e.z.string(),type:e.z.literal("STEP"),coordinates:i,alias:e.z.string().optional(),config:e.z.object({components:e.z.array(N),next_node:e.z.string()}).passthrough()}),D=e.z.object({id:e.z.string(),type:e.z.literal("FLOW"),coordinates:i,alias:e.z.string().optional(),config:e.z.object({flow_id:e.z.string(),next_node:e.z.string()})}),w=e.z.object({id:e.z.string(),type:e.z.string(),coordinates:i}).passthrough(),j=e.z.union([L,D,w]),k=e.z.object({next_node:e.z.string(),coordinates:i}).passthrough(),U=e.z.object({resume_flow:e.z.boolean().optional(),coordinates:i}).passthrough(),v=e.z.object({id:e.z.string(),name:e.z.string(),languages:e.z.object({primary:e.z.string()}).passthrough(),nodes:e.z.array(j),start:k,ending:U,created_at:e.z.string(),updated_at:e.z.string(),links:e.z.object({sdkSrc:e.z.string().optional(),sdk_src:e.z.string().optional()}).passthrough()}).passthrough(),xe=v.omit({id:!0,created_at:!0,updated_at:!0});var d=(t=>(t.TOKEN="token",t.TOKEN_ID_TOKEN="token id_token",t.CODE="code",t))(d||{}),z=(t=>(t.QUERY="query",t.FRAGMENT="fragment",t.FORM_POST="form_post",t.WEB_MESSAGE="web_message",t.SAML_POST="saml_post",t))(z||{}),g=(t=>(t.S256="S256",t.Plain="plain",t))(g||{});const F=e.z.object({client_id:e.z.string(),act_as:e.z.string().optional(),response_type:e.z.nativeEnum(d).optional(),response_mode:e.z.nativeEnum(z).optional(),redirect_uri:e.z.string().optional(),audience:e.z.string().optional(),organization:e.z.string().optional(),state:e.z.string().optional(),nonce:e.z.string().optional(),scope:e.z.string().optional(),prompt:e.z.string().optional(),code_challenge_method:e.z.nativeEnum(g).optional(),code_challenge:e.z.string().optional(),username:e.z.string().optional(),ui_locales:e.z.string().optional(),vendor_id:e.z.string().optional()}),Ge=e.z.object({colors:e.z.object({primary:e.z.string(),page_background:e.z.object({type:e.z.string().optional(),start:e.z.string().optional(),end:e.z.string().optional(),angle_deg:e.z.number().optional()}).optional()}).optional(),logo_url:e.z.string().optional(),favicon_url:e.z.string().optional(),powered_by_logo_url:e.z.string().optional(),font:e.z.object({url:e.z.string()}).optional()}),P=e.z.object({kid:e.z.string().optional(),team_id:e.z.string().optional(),realms:e.z.string().optional(),authentication_method:e.z.string().optional(),client_id:e.z.string().optional(),client_secret:e.z.string().optional(),app_secret:e.z.string().optional(),scope:e.z.string().optional(),authorization_endpoint:e.z.string().optional(),token_endpoint:e.z.string().optional(),userinfo_endpoint:e.z.string().optional(),jwks_uri:e.z.string().optional(),discovery_url:e.z.string().optional(),issuer:e.z.string().optional(),provider:e.z.string().optional(),from:e.z.string().optional(),twilio_sid:e.z.string().optional(),twilio_token:e.z.string().optional()}),M=e.z.object({id:e.z.string().optional(),name:e.z.string(),strategy:e.z.string(),options:P.default({}),enabled_clients:e.z.array(e.z.string()).default([]).optional(),response_type:e.z.custom().optional(),response_mode:e.z.custom().optional()}),H=e.z.object({id:e.z.string(),created_at:e.z.string().transform(t=>t===null?"":t),updated_at:e.z.string().transform(t=>t===null?"":t)}).extend(M.shape),x=e.z.object({id:e.z.string().optional(),audience:e.z.string(),friendly_name:e.z.string(),picture_url:e.z.string().optional(),support_email:e.z.string().optional(),support_url:e.z.string().optional(),sender_email:e.z.string().email(),sender_name:e.z.string(),session_lifetime:e.z.number().optional(),idle_session_lifetime:e.z.number().optional(),ephemeral_session_lifetime:e.z.number().optional(),idle_ephemeral_session_lifetime:e.z.number().optional(),session_cookie:e.z.object({mode:e.z.enum(["persistent","non-persistent"]).optional()}).optional(),allowed_logout_urls:e.z.array(e.z.string()).optional(),default_redirection_uri:e.z.string().optional(),enabled_locales:e.z.array(e.z.string()).optional(),default_directory:e.z.string().optional(),error_page:e.z.object({html:e.z.string().optional(),show_log_link:e.z.boolean().optional(),url:e.z.string().optional()}).optional(),flags:e.z.object({allow_changing_enable_sso:e.z.boolean().optional(),allow_legacy_delegation_grant_types:e.z.boolean().optional(),allow_legacy_ro_grant_types:e.z.boolean().optional(),allow_legacy_tokeninfo_endpoint:e.z.boolean().optional(),change_pwd_flow_v1:e.z.boolean().optional(),custom_domains_provisioning:e.z.boolean().optional(),dashboard_insights_view:e.z.boolean().optional(),dashboard_log_streams_next:e.z.boolean().optional(),disable_clickjack_protection_headers:e.z.boolean().optional(),disable_fields_map_fix:e.z.boolean().optional(),disable_impersonation:e.z.boolean().optional(),disable_management_api_sms_obfuscation:e.z.boolean().optional(),enable_adfs_waad_email_verification:e.z.boolean().optional(),enable_apis_section:e.z.boolean().optional(),enable_client_connections:e.z.boolean().optional(),enable_custom_domain_in_emails:e.z.boolean().optional(),enable_dynamic_client_registration:e.z.boolean().optional(),enable_idtoken_api2:e.z.boolean().optional(),enable_legacy_logs_search_v2:e.z.boolean().optional(),enable_legacy_profile:e.z.boolean().optional(),enable_pipeline2:e.z.boolean().optional(),enable_public_signup_user_exists_error:e.z.boolean().optional(),enable_sso:e.z.boolean().optional(),enforce_client_authentication_on_passwordless_start:e.z.boolean().optional(),genai_trial:e.z.boolean().optional(),improved_signup_bot_detection_in_classic:e.z.boolean().optional(),mfa_show_factor_list_on_enrollment:e.z.boolean().optional(),no_disclose_enterprise_connections:e.z.boolean().optional(),remove_alg_from_jwks:e.z.boolean().optional(),revoke_refresh_token_grant:e.z.boolean().optional(),trust_azure_adfs_email_verified_connection_property:e.z.boolean().optional(),use_scope_descriptions_for_consent:e.z.boolean().optional()}).optional(),sandbox_version:e.z.string().optional(),legacy_sandbox_version:e.z.string().optional(),sandbox_versions_available:e.z.array(e.z.string()).optional(),change_password:e.z.object({enabled:e.z.boolean().optional(),html:e.z.string().optional()}).optional(),guardian_mfa_page:e.z.object({enabled:e.z.boolean().optional(),html:e.z.string().optional()}).optional(),device_flow:e.z.object({charset:e.z.enum(["base20","digits"]).optional(),mask:e.z.string().max(20).optional()}).optional(),default_token_quota:e.z.object({clients:e.z.object({client_credentials:e.z.record(e.z.any()).optional()}).optional(),organizations:e.z.object({client_credentials:e.z.record(e.z.any()).optional()}).optional()}).optional(),default_audience:e.z.string().optional(),default_organization:e.z.string().optional(),sessions:e.z.object({oidc_logout_prompt_enabled:e.z.boolean().optional()}).optional(),oidc_logout:e.z.object({rp_logout_end_session_endpoint_discovery:e.z.boolean().optional()}).optional(),allow_organization_name_in_authentication_api:e.z.boolean().optional(),customize_mfa_in_postlogin_action:e.z.boolean().optional(),acr_values_supported:e.z.array(e.z.string()).optional(),mtls:e.z.object({enable_endpoint_aliases:e.z.boolean().optional()}).optional(),pushed_authorization_requests_supported:e.z.boolean().optional(),authorization_response_iss_parameter_supported:e.z.boolean().optional()}),G=e.z.object({created_at:e.z.string().nullable().transform(t=>t??""),updated_at:e.z.string().nullable().transform(t=>t??""),...x.shape,id:e.z.string()});e.z.object({...E.shape,tenant:G,connections:e.z.array(H)});const K=e.z.enum(["password_reset","email_verification","otp","authorization_code","oauth2_state","ticket"]),W=e.z.object({code_id:e.z.string().openapi({description:"The code that will be used in for instance an email verification flow"}),login_id:e.z.string().openapi({description:"The id of the login session that the code is connected to"}),connection_id:e.z.string().optional().openapi({description:"The connection that the code is connected to"}),code_type:K,code_verifier:e.z.string().optional().openapi({description:"The code verifier used in PKCE in outbound flows"}),code_challenge:e.z.string().optional().openapi({description:"The code challenge used in PKCE in outbound flows"}),code_challenge_method:e.z.enum(["plain","S256"]).optional().openapi({description:"The code challenge method used in PKCE in outbound flows"}),redirect_uri:e.z.string().optional().openapi({description:"The redirect URI associated with the code"}),nonce:e.z.string().optional().openapi({description:"The nonce value used for security in OIDC flows"}),state:e.z.string().optional().openapi({description:"The state parameter used for CSRF protection in OAuth flows"}),expires_at:e.z.string(),used_at:e.z.string().optional(),user_id:e.z.string().optional()}),Ke=e.z.object({...W.shape,created_at:e.z.string()}),B=e.z.object({domain:e.z.string(),custom_domain_id:e.z.string().optional(),type:e.z.enum(["auth0_managed_certs","self_managed_certs"]),verification_method:e.z.enum(["txt"]).optional(),tls_policy:e.z.enum(["recommended"]).optional(),custom_client_ip_header:e.z.enum(["true-client-ip","cf-connecting-ip","x-forwarded-for","x-azure-clientip","null"]).optional(),domain_metadata:e.z.record(e.z.string().max(255)).optional()}),X=e.z.object({name:e.z.literal("txt"),record:e.z.string(),domain:e.z.string()}),V=e.z.object({...B.shape,custom_domain_id:e.z.string(),primary:e.z.boolean(),status:e.z.enum(["disabled","pending","pending_verification","ready"]),origin_domain_name:e.z.string().optional(),verification:e.z.object({methods:e.z.array(X)}).optional(),tls_policy:e.z.string().optional()}),We=V.extend({tenant_id:e.z.string()}),Be=e.z.object({id:e.z.string(),type:e.z.literal("submit"),label:e.z.string(),className:e.z.string().optional(),disabled:e.z.boolean().optional().default(!1),order:e.z.number().optional(),visible:e.z.boolean().optional().default(!0),customizations:e.z.record(e.z.string(),e.z.any()).optional()}),q=e.z.discriminatedUnion("type",[e.z.object({id:e.z.string(),type:e.z.literal("RICH_TEXT"),config:e.z.object({content:e.z.string()}),order:e.z.number().optional(),visible:e.z.boolean().optional().default(!0)}),e.z.object({id:e.z.string(),type:e.z.literal("LEGAL"),config:e.z.object({text:e.z.string(),html:e.z.boolean().optional()}),required:e.z.boolean().optional(),order:e.z.number().optional(),visible:e.z.boolean().optional().default(!0)}),e.z.object({id:e.z.string(),type:e.z.literal("TEXT"),config:e.z.object({placeholder:e.z.string().optional(),multiline:e.z.boolean().optional()}),required:e.z.boolean().optional(),sensitive:e.z.boolean().optional(),order:e.z.number().optional(),visible:e.z.boolean().optional().default(!0)}),e.z.object({id:e.z.string(),type:e.z.literal("NEXT_BUTTON"),config:e.z.object({text:e.z.string().optional()}),order:e.z.number().optional(),visible:e.z.boolean().optional().default(!0)})]),Y=e.z.object({name:e.z.string().openapi({description:"The name of the form"}),messages:e.z.object({errors:e.z.record(e.z.string(),e.z.any()).optional(),custom:e.z.record(e.z.string(),e.z.any()).optional()}).optional(),languages:e.z.object({primary:e.z.string().optional(),default:e.z.string().optional()}).optional(),translations:e.z.record(e.z.string(),e.z.any()).optional(),nodes:e.z.array(e.z.discriminatedUnion("type",[e.z.object({id:e.z.string(),type:e.z.literal("FLOW"),coordinates:e.z.object({x:e.z.number(),y:e.z.number()}),alias:e.z.string().min(1).max(150).optional(),config:e.z.object({flow_id:e.z.string().max(30),next_node:e.z.string()})}),e.z.object({id:e.z.string(),type:e.z.literal("ROUTER"),coordinates:e.z.object({x:e.z.number(),y:e.z.number()}),alias:e.z.string().min(1).max(150),config:e.z.object({rules:e.z.array(e.z.object({id:e.z.string(),alias:e.z.string().min(1).max(150).optional(),condition:e.z.any(),next_node:e.z.string()})),fallback:e.z.array(e.z.string())})}),e.z.object({id:e.z.string(),type:e.z.literal("STEP"),coordinates:e.z.object({x:e.z.number(),y:e.z.number()}),alias:e.z.string().min(1).max(150).optional(),config:e.z.object({components:e.z.array(q),next_node:e.z.string()})})])).optional(),start:e.z.object({hidden_fields:e.z.array(e.z.object({key:e.z.string(),value:e.z.string()})).optional(),next_node:e.z.string().optional(),coordinates:e.z.object({x:e.z.number(),y:e.z.number()}).optional()}).optional(),ending:e.z.object({redirection:e.z.object({delay:e.z.number().optional(),target:e.z.string().optional()}).optional(),after_submit:e.z.object({flow_id:e.z.string().optional()}).optional(),coordinates:e.z.object({x:e.z.number(),y:e.z.number()}).optional(),resume_flow:e.z.boolean().optional()}).optional(),style:e.z.object({css:e.z.string().optional()}).optional()}).openapi({description:"Schema for flow-based forms (matches new JSON structure)"}),Xe=e.z.object({...n.shape,...Y.shape,id:e.z.string()}),Q=e.z.enum(["pre-user-signup","post-user-registration","post-user-login"]),J=e.z.enum(["pre-user-signup","post-user-registration","post-user-login"]),l={enabled:e.z.boolean().default(!1),synchronous:e.z.boolean().default(!1),priority:e.z.number().optional(),hook_id:e.z.string().optional()},Ve=e.z.object({...l,trigger_id:Q,url:e.z.string()}),qe=e.z.object({...l,trigger_id:J,form_id:e.z.string()}),Ye=e.z.union([Ve,qe]),Qe=e.z.object({...l,trigger_id:Q,...n.shape,hook_id:e.z.string(),url:e.z.string()}),Je=e.z.object({...l,trigger_id:J,...n.shape,hook_id:e.z.string(),form_id:e.z.string()}),Ze=e.z.union([Qe,Je]),Z=e.z.object({name:e.z.string().optional()}),$=e.z.object({email:e.z.string().optional()}),ee=e.z.object({organization_id:e.z.string().max(50),inviter:Z,invitee:$,invitation_url:e.z.string().url(),client_id:e.z.string(),connection_id:e.z.string().optional(),app_metadata:e.z.record(e.z.any()).default({}).optional(),user_metadata:e.z.record(e.z.any()).default({}).optional(),ttl_sec:e.z.number().int().max(2592e3).default(604800).optional(),roles:e.z.array(e.z.string()).default([]).optional(),send_invitation_email:e.z.boolean().default(!0).optional()}),$e=e.z.object({id:e.z.string(),organization_id:e.z.string().max(50),created_at:e.z.string().datetime(),expires_at:e.z.string().datetime(),ticket_id:e.z.string().optional()}).extend(ee.shape),te=e.z.object({alg:e.z.enum(["RS256","RS384","RS512","ES256","ES384","ES512","HS256","HS384","HS512"]),e:e.z.string(),kid:e.z.string(),kty:e.z.enum(["RSA","EC","oct"]),n:e.z.string(),x5t:e.z.string().optional(),x5c:e.z.array(e.z.string()).optional(),use:e.z.enum(["sig","enc"]).optional()}),et=e.z.object({keys:e.z.array(te)}),tt=e.z.object({issuer:e.z.string(),authorization_endpoint:e.z.string(),token_endpoint:e.z.string(),device_authorization_endpoint:e.z.string(),userinfo_endpoint:e.z.string(),mfa_challenge_endpoint:e.z.string(),jwks_uri:e.z.string(),registration_endpoint:e.z.string(),revocation_endpoint:e.z.string(),scopes_supported:e.z.array(e.z.string()),response_types_supported:e.z.array(e.z.string()),code_challenge_methods_supported:e.z.array(e.z.string()),response_modes_supported:e.z.array(e.z.string()),subject_types_supported:e.z.array(e.z.string()),id_token_signing_alg_values_supported:e.z.array(e.z.string()),token_endpoint_auth_methods_supported:e.z.array(e.z.string()),claims_supported:e.z.array(e.z.string()),request_uri_parameter_supported:e.z.boolean(),request_parameter_supported:e.z.boolean(),token_endpoint_auth_signing_alg_values_supported:e.z.array(e.z.string())}),oe=e.z.object({csrf_token:e.z.string(),auth0Client:e.z.string().optional(),authParams:F,expires_at:e.z.string(),deleted_at:e.z.string().optional(),ip:e.z.string().optional(),useragent:e.z.string().optional(),session_id:e.z.string().optional(),authorization_url:e.z.string().optional(),login_completed:e.z.boolean().optional().default(!1)}).openapi({description:"This represents a login sesion"}),ot=e.z.object({...oe.shape,id:e.z.string().openapi({description:"This is is used as the state in the universal login"}),created_at:e.z.string(),updated_at:e.z.string()}),ne={ACLS_SUMMARY:"acls_summary",ACTIONS_EXECUTION_FAILED:"actions_execution_failed",API_LIMIT:"api_limit",API_LIMIT_WARNING:"api_limit_warning",APPI:"appi",CIBA_EXCHANGE_FAILED:"ciba_exchange_failed",CIBA_EXCHANGE_SUCCEEDED:"ciba_exchange_succeeded",CIBA_START_FAILED:"ciba_start_failed",CIBA_START_SUCCEEDED:"ciba_start_succeeded",CODE_LINK_SENT:"cls",CODE_SENT:"cs",DEPRECATION_NOTICE:"depnote",FAILED_LOGIN:"f",FAILED_BY_CONNECTOR:"fc",FAILED_CHANGE_EMAIL:"fce",FAILED_BY_CORS:"fco",FAILED_CROSS_ORIGIN_AUTHENTICATION:"fcoa",FAILED_CHANGE_PASSWORD:"fcp",FAILED_POST_CHANGE_PASSWORD_HOOK:"fcph",FAILED_CHANGE_PHONE_NUMBER:"fcpn",FAILED_CHANGE_PASSWORD_REQUEST:"fcpr",FAILED_CONNECTOR_PROVISIONING:"fcpro",FAILED_CHANGE_USERNAME:"fcu",FAILED_DELEGATION:"fd",FAILED_DEVICE_ACTIVATION:"fdeac",FAILED_DEVICE_AUTHORIZATION_REQUEST:"fdeaz",USER_CANCELED_DEVICE_CONFIRMATION:"fdecc",FAILED_USER_DELETION:"fdu",FAILED_EXCHANGE_AUTHORIZATION_CODE_FOR_ACCESS_TOKEN:"feacft",FAILED_EXCHANGE_ACCESS_TOKEN_FOR_CLIENT_CREDENTIALS:"feccft",FAILED_EXCHANGE_CUSTOM_TOKEN:"fecte",FAILED_EXCHANGE_DEVICE_CODE_FOR_ACCESS_TOKEN:"fede",FAILED_FEDERATED_LOGOUT:"federated_logout_failed",FAILED_EXCHANGE_NATIVE_SOCIAL_LOGIN:"fens",FAILED_EXCHANGE_PASSWORD_OOB_FOR_ACCESS_TOKEN:"feoobft",FAILED_EXCHANGE_PASSWORD_OTP_FOR_ACCESS_TOKEN:"feotpft",FAILED_EXCHANGE_PASSWORD_FOR_ACCESS_TOKEN:"fepft",FAILED_EXCHANGE_PASSWORDLESS_OTP_FOR_ACCESS_TOKEN:"fepotpft",FAILED_EXCHANGE_PASSWORD_MFA_RECOVERY_FOR_ACCESS_TOKEN:"fercft",FAILED_EXCHANGE_ROTATING_REFRESH_TOKEN:"ferrt",FAILED_EXCHANGE_REFRESH_TOKEN_FOR_ACCESS_TOKEN:"fertft",FAILED_HOOK:"fh",FAILED_INVITE_ACCEPT:"fi",FAILED_LOGOUT:"flo",FLOWS_EXECUTION_COMPLETED:"flows_execution_completed",FLOWS_EXECUTION_FAILED:"flows_execution_failed",FAILED_SENDING_NOTIFICATION:"fn",FORMS_SUBMISSION_FAILED:"forms_submission_failed",FORMS_SUBMISSION_SUCCEEDED:"forms_submission_succeeded",FAILED_LOGIN_INCORRECT_PASSWORD:"fp",FAILED_PUSHED_AUTHORIZATION_REQUEST:"fpar",FAILED_POST_USER_REGISTRATION_HOOK:"fpurh",FAILED_SIGNUP:"fs",FAILED_SILENT_AUTH:"fsa",FAILED_LOGIN_INVALID_EMAIL_USERNAME:"fu",FAILED_USERS_IMPORT:"fui",FAILED_VERIFICATION_EMAIL:"fv",FAILED_VERIFICATION_EMAIL_REQUEST:"fvr",EMAIL_VERIFICATION_CONFIRMED:"gd_auth_email_verification",EMAIL_VERIFICATION_FAILED:"gd_auth_fail_email_verification",MFA_AUTH_FAILED:"gd_auth_failed",MFA_AUTH_REJECTED:"gd_auth_rejected",MFA_AUTH_SUCCESS:"gd_auth_succeed",MFA_ENROLLMENT_COMPLETE:"gd_enrollment_complete",TOO_MANY_MFA_FAILURES:"gd_otp_rate_limit_exceed",MFA_RECOVERY_FAILED:"gd_recovery_failed",MFA_RECOVERY_RATE_LIMIT_EXCEED:"gd_recovery_rate_limit_exceed",MFA_RECOVERY_SUCCESS:"gd_recovery_succeed",MFA_EMAIL_SENT:"gd_send_email",EMAIL_VERIFICATION_SENT:"gd_send_email_verification",EMAIL_VERIFICATION_SEND_FAILURE:"gd_send_email_verification_failure",PUSH_NOTIFICATION_SENT:"gd_send_pn",ERROR_SENDING_MFA_PUSH_NOTIFICATION:"gd_send_pn_failure",MFA_SMS_SENT:"gd_send_sms",ERROR_SENDING_MFA_SMS:"gd_send_sms_failure",MFA_VOICE_CALL_SUCCESS:"gd_send_voice",MFA_VOICE_CALL_FAILED:"gd_send_voice_failure",SECOND_FACTOR_STARTED:"gd_start_auth",MFA_ENROLL_STARTED:"gd_start_enroll",MFA_ENROLLMENT_FAILED:"gd_start_enroll_failed",GUARDIAN_TENANT_UPDATE:"gd_tenant_update",UNENROLL_DEVICE_ACCOUNT:"gd_unenroll",UPDATE_DEVICE_ACCOUNT:"gd_update_device_account",WEBAUTHN_CHALLENGE_FAILED:"gd_webauthn_challenge_failed",WEBAUTHN_ENROLLMENT_FAILED:"gd_webauthn_enrollment_failed",FAILED_KMS_API_OPERATION:"kms_key_management_failure",SUCCESS_KMS_API_OPERATION:"kms_key_management_success",KMS_KEY_STATE_CHANGED:"kms_key_state_changed",TOO_MANY_CALLS_TO_DELEGATION:"limit_delegation",BLOCKED_IP_ADDRESS:"limit_mu",BLOCKED_ACCOUNT_IP:"limit_sul",BLOCKED_ACCOUNT_EMAIL:"limit_wc",MFA_REQUIRED:"mfar",MANAGEMENT_API_READ_OPERATION:"mgmt_api_read",FAILED_AUTHENTICATION_METHOD_OPERATION_MY_ACCOUNT:"my_account_authentication_method_failed",SUCCESSFUL_AUTHENTICATION_METHOD_OPERATION_MY_ACCOUNT:"my_account_authentication_method_succeeded",FAILED_OIDC_BACKCHANNEL_LOGOUT:"oidc_backchannel_logout_failed",SUCCESSFUL_OIDC_BACKCHANNEL_LOGOUT:"oidc_backchannel_logout_succeeded",ORGANIZATION_MEMBER_ADDED:"organization_member_added",PASSKEY_CHALLENGE_FAILED:"passkey_challenge_failed",PASSKEY_CHALLENGE_STARTED:"passkey_challenge_started",PRE_LOGIN_ASSESSMENT:"pla",BREACHED_PASSWORD:"pwd_leak",BREACHED_PASSWORD_ON_RESET:"reset_pwd_leak",SUCCESS_RESOURCE_CLEANUP:"resource_cleanup",RICH_CONSENTS_ACCESS_ERROR:"rich_consents_access_error",SUCCESS_LOGIN:"s",SUCCESS_API_OPERATION:"sapi",SUCCESS_CHANGE_EMAIL:"sce",SUCCESS_CROSS_ORIGIN_AUTHENTICATION:"scoa",SUCCESS_CHANGE_PASSWORD:"scp",SUCCESS_CHANGE_PHONE_NUMBER:"scpn",SUCCESS_CHANGE_PASSWORD_REQUEST:"scpr",SUCCESS_CHANGE_USERNAME:"scu",SUCCESS_CREDENTIAL_VALIDATION:"scv",SUCCESS_DELEGATION:"sd",SUCCESS_USER_DELETION:"sdu",SUCCESS_EXCHANGE_AUTHORIZATION_CODE_FOR_ACCESS_TOKEN:"seacft",SUCCESS_EXCHANGE_ACCESS_TOKEN_FOR_CLIENT_CREDENTIALS:"seccft",SUCCESS_EXCHANGE_CUSTOM_TOKEN:"secte",SUCCESS_EXCHANGE_DEVICE_CODE_FOR_ACCESS_TOKEN:"sede",SUCCESS_EXCHANGE_NATIVE_SOCIAL_LOGIN:"sens",SUCCESS_EXCHANGE_PASSWORD_OOB_FOR_ACCESS_TOKEN:"seoobft",SUCCESS_EXCHANGE_PASSWORD_OTP_FOR_ACCESS_TOKEN:"seotpft",SUCCESS_EXCHANGE_PASSWORD_FOR_ACCESS_TOKEN:"sepft",SUCCESS_EXCHANGE_PASSKEY_OOB_FOR_ACCESS_TOKEN:"sepkoobft",SUCCESS_EXCHANGE_PASSKEY_OTP_FOR_ACCESS_TOKEN:"sepkotpft",SUCCESS_EXCHANGE_PASSKEY_MFA_RECOVERY_FOR_ACCESS_TOKEN:"sepkrcft",SUCCESS_EXCHANGE_PASSWORD_MFA_RECOVERY_FOR_ACCESS_TOKEN:"sercft",SUCCESS_EXCHANGE_REFRESH_TOKEN_FOR_ACCESS_TOKEN:"sertft",SUCCESSFULLY_ACCEPTED_USER_INVITE:"si",BREACHED_PASSWORD_ON_SIGNUP:"signup_pwd_leak",SUCCESS_LOGOUT:"slo",SUCCESS_REVOCATION:"srrt",SUCCESS_SIGNUP:"ss",FAILED_SS_SSO_OPERATION:"ss_sso_failure",INFORMATION_FROM_SS_SSO_OPERATION:"ss_sso_info",SUCCESS_SS_SSO_OPERATION:"ss_sso_success",SUCCESS_SILENT_AUTH:"ssa",SUCCESSFUL_SCIM_OPERATION:"sscim",SUCCESSFULLY_IMPORTED_USERS:"sui",SUCCESS_VERIFICATION_EMAIL:"sv",SUCCESS_VERIFICATION_EMAIL_REQUEST:"svr",MAX_AMOUNT_OF_AUTHENTICATORS:"too_many_records",USER_LOGIN_BLOCK_RELEASED:"ublkdu",FAILED_UNIVERSAL_LOGOUT:"universal_logout_failed",SUCCESSFUL_UNIVERSAL_LOGOUT:"universal_logout_succeeded",WARNING_DURING_LOGIN:"w",WARNING_SENDING_NOTIFICATION:"wn",WARNING_USER_MANAGEMENT:"wum"},nt=e.z.string().refine(t=>Object.values(ne).includes(t),{message:"Invalid log type"}),ie=e.z.object({name:e.z.string(),version:e.z.string(),env:e.z.object({node:e.z.string().optional()}).optional()}),it=e.z.object({type:nt,date:e.z.string(),description:e.z.string().optional(),log_id:e.z.string().optional(),_id:e.z.string().optional(),ip:e.z.string(),user_agent:e.z.string(),details:e.z.any().optional(),isMobile:e.z.boolean(),user_id:e.z.string().optional(),user_name:e.z.string().optional(),connection:e.z.string().optional(),connection_id:e.z.string().optional(),client_id:e.z.string().optional(),client_name:e.z.string().optional(),audience:e.z.string().optional(),scope:e.z.array(e.z.string()).optional(),strategy:e.z.string().optional(),strategy_type:e.z.string().optional(),hostname:e.z.string().optional(),auth0_client:ie.optional()}),ae=e.z.object({user_id:e.z.string(),password:e.z.string(),algorithm:e.z.enum(["bcrypt","argon2id"]).default("argon2id")}),at=e.z.object({...ae.shape,created_at:e.z.string(),updated_at:e.z.string()}),se=e.z.object({initial_user_agent:e.z.string().describe("First user agent of the device from which this user logged in"),initial_ip:e.z.string().describe("First IP address associated with this session"),initial_asn:e.z.string().describe("First autonomous system number associated with this session"),last_user_agent:e.z.string().describe("Last user agent of the device from which this user logged in"),last_ip:e.z.string().describe("Last IP address from which this user logged in"),last_asn:e.z.string().describe("Last autonomous system number from which this user logged in")}),re=e.z.object({id:e.z.string(),revoked_at:e.z.string().optional(),used_at:e.z.string().optional(),user_id:e.z.string().describe("The user ID associated with the session"),expires_at:e.z.string().optional(),login_session_id:e.z.string(),idle_expires_at:e.z.string().optional(),device:se.describe("Metadata related to the device used in the session"),clients:e.z.array(e.z.string()).describe("List of client details for the session")}),st=e.z.object({created_at:e.z.string(),updated_at:e.z.string(),authenticated_at:e.z.string(),last_interaction_at:e.z.string(),...re.shape}),rt=e.z.object({kid:e.z.string().openapi({description:"The key id of the signing key"}),cert:e.z.string().openapi({description:"The public certificate of the signing key"}),fingerprint:e.z.string().openapi({description:"The cert fingerprint"}),thumbprint:e.z.string().openapi({description:"The cert thumbprint"}),pkcs7:e.z.string().optional().openapi({description:"The private key in pkcs7 format"}),current:e.z.boolean().optional().openapi({description:"True if the key is the current key"}),next:e.z.boolean().optional().openapi({description:"True if the key is the next key"}),previous:e.z.boolean().optional().openapi({description:"True if the key is the previous key"}),current_since:e.z.string().optional().openapi({description:"The date and time when the key became the current key"}),current_until:e.z.string().optional().openapi({description:"The date and time when the current key was rotated"}),revoked:e.z.boolean().optional().openapi({description:"True if the key is revoked"}),revoked_at:e.z.string().optional().openapi({description:"The date and time when the key was revoked"}),connection:e.z.string().optional().openapi({description:"The connection identifier associated with the key"}),type:e.z.enum(["jwt_signing","saml_encryption"]).openapi({description:"The type of the signing key"})});var le=(t=>(t.RefreshToken="refresh_token",t.AuthorizationCode="authorization_code",t.ClientCredential="client_credentials",t.Passwordless="passwordless",t.Password="password",t.OTP="http://auth0.com/oauth/grant-type/passwordless/otp",t))(le||{});const lt=e.z.object({access_token:e.z.string(),id_token:e.z.string().optional(),scope:e.z.string().optional(),state:e.z.string().optional(),refresh_token:e.z.string().optional(),token_type:e.z.string(),expires_in:e.z.number()});e.z.object({code:e.z.string(),state:e.z.string().optional()});const ce=e.z.object({button_border_radius:e.z.number(),button_border_weight:e.z.number(),buttons_style:e.z.enum(["pill","rounded","sharp"]),input_border_radius:e.z.number(),input_border_weight:e.z.number(),inputs_style:e.z.enum(["pill","rounded","sharp"]),show_widget_shadow:e.z.boolean(),widget_border_weight:e.z.number(),widget_corner_radius:e.z.number()}),_e=e.z.object({base_focus_color:e.z.string(),base_hover_color:e.z.string(),body_text:e.z.string(),captcha_widget_theme:e.z.enum(["auto","dark","light"]),error:e.z.string(),header:e.z.string(),icons:e.z.string(),input_background:e.z.string(),input_border:e.z.string(),input_filled_text:e.z.string(),input_labels_placeholders:e.z.string(),links_focused_components:e.z.string(),primary_button:e.z.string(),primary_button_label:e.z.string(),secondary_button_border:e.z.string(),secondary_button_label:e.z.string(),success:e.z.string(),widget_background:e.z.string(),widget_border:e.z.string()}),o=e.z.object({bold:e.z.boolean(),size:e.z.number()}),pe=e.z.object({body_text:o,buttons_text:o,font_url:e.z.string(),input_labels:o,links:o,links_style:e.z.enum(["normal","underlined"]),reference_text_size:e.z.number(),subtitle:o,title:o}),de=e.z.object({background_color:e.z.string(),background_image_url:e.z.string(),page_layout:e.z.enum(["center","left","right"])}),ze=e.z.object({header_text_alignment:e.z.enum(["center","left","right"]),logo_height:e.z.number(),logo_position:e.z.enum(["center","left","none","right"]),logo_url:e.z.string(),social_buttons_layout:e.z.enum(["bottom","top"])}),ge=e.z.object({borders:ce,colors:_e,displayName:e.z.string(),fonts:pe,page_background:de,widget:ze}),ct=ge.extend({themeId:e.z.string()}),_t=e.z.object({universal_login_experience:e.z.enum(["new","classic"]).default("new"),identifier_first:e.z.boolean().default(!0),password_first:e.z.boolean().default(!1),webauthn_platform_first_factor:e.z.boolean()}),pt=e.z.object({name:e.z.string(),enabled:e.z.boolean().optional().default(!0),default_from_address:e.z.string().optional(),credentials:e.z.union([e.z.object({accessKeyId:e.z.string(),secretAccessKey:e.z.string(),region:e.z.string()}),e.z.object({smtp_host:e.z.array(e.z.string()),smtp_port:e.z.number(),smtp_user:e.z.string(),smtp_pass:e.z.string()}),e.z.object({api_key:e.z.string(),domain:e.z.string().optional()}),e.z.object({connectionString:e.z.string()}),e.z.object({tenantId:e.z.string(),clientId:e.z.string(),clientSecret:e.z.string()})]),settings:e.z.object({}).optional()}),ue=e.z.object({id:e.z.string(),session_id:e.z.string(),user_id:e.z.string(),client_id:e.z.string(),expires_at:e.z.string().optional(),idle_expires_at:e.z.string().optional(),last_exchanged_at:e.z.string().optional(),device:se,resource_servers:e.z.array(e.z.object({audience:e.z.string(),scopes:e.z.string()})),rotating:e.z.boolean()}),dt=e.z.object({created_at:e.z.string(),...ue.shape}),zt=e.z.object({to:e.z.string(),message:e.z.string()}),gt=e.z.object({name:e.z.string(),options:e.z.object({})}),me=e.z.object({value:e.z.string(),description:e.z.string().optional()}),he=e.z.object({token_dialect:e.z.enum(["access_token","access_token_authz"]).optional(),enforce_policies:e.z.boolean().optional(),allow_skipping_userinfo:e.z.boolean().optional(),skip_userinfo:e.z.boolean().optional(),persist_client_authorization:e.z.boolean().optional(),enable_introspection_endpoint:e.z.boolean().optional(),mtls:e.z.object({bound_access_tokens:e.z.boolean().optional()}).optional()}),Se=e.z.object({name:e.z.string(),identifier:e.z.string(),scopes:e.z.array(me).optional(),signing_alg:e.z.string().optional(),signing_secret:e.z.string().optional(),token_lifetime:e.z.number().optional(),token_lifetime_for_web:e.z.number().optional(),skip_consent_for_verifiable_first_party_clients:e.z.boolean().optional(),allow_offline_access:e.z.boolean().optional(),verificationKey:e.z.string().optional(),options:he.optional()}),be=e.z.object({id:e.z.string().optional(),...Se.shape,created_at:e.z.string().optional(),updated_at:e.z.string().optional()}),ut=e.z.array(be),Ee=e.z.object({role_id:e.z.string(),resource_server_identifier:e.z.string(),permission_name:e.z.string()}),fe=e.z.object({...Ee.shape,tenant_id:e.z.string(),created_at:e.z.string().optional()}),mt=e.z.array(fe),Ae=e.z.object({role_id:e.z.string(),resource_server_identifier:e.z.string(),resource_server_name:e.z.string(),permission_name:e.z.string(),description:e.z.string().nullable().optional(),created_at:e.z.string().optional()}),ht=e.z.array(Ae),Ie=e.z.object({user_id:e.z.string(),resource_server_identifier:e.z.string(),permission_name:e.z.string(),organization_id:e.z.string().optional()}),Ce=e.z.object({...Ie.shape,tenant_id:e.z.string(),created_at:e.z.string().optional()}),St=e.z.array(Ce),Oe=e.z.object({user_id:e.z.string(),resource_server_identifier:e.z.string(),resource_server_name:e.z.string(),permission_name:e.z.string(),description:e.z.string().nullable().optional(),created_at:e.z.string().optional(),organization_id:e.z.string().optional()}),bt=e.z.array(Oe),Te=e.z.object({user_id:e.z.string(),role_id:e.z.string(),organization_id:e.z.string().optional()}),ye=e.z.object({...Te.shape,tenant_id:e.z.string(),created_at:e.z.string().optional()}),Et=e.z.array(ye),Ne=e.z.object({name:e.z.string().min(1).max(50).openapi({description:"The name of the role. Cannot include '<' or '>'"}),description:e.z.string().max(255).optional().openapi({description:"The description of the role"})}),Re=e.z.object({id:e.z.string().openapi({description:"The unique identifier of the role"}),...Ne.shape,created_at:e.z.string().optional(),updated_at:e.z.string().optional()}),ft=e.z.array(Re),Le=e.z.object({logo_url:e.z.string().optional().openapi({description:"URL of the organization's logo"}),colors:e.z.object({primary:e.z.string().optional().openapi({description:"Primary color in hex format (e.g., #FF0000)"}),page_background:e.z.string().optional().openapi({description:"Page background color in hex format (e.g., #FFFFFF)"})}).optional()}).optional(),De=e.z.object({connection_id:e.z.string().openapi({description:"ID of the connection"}),assign_membership_on_login:e.z.boolean().default(!1).openapi({description:"Whether to assign membership to the organization on login"}),show_as_button:e.z.boolean().default(!0).openapi({description:"Whether to show this connection as a button in the login screen"}),is_signup_enabled:e.z.boolean().default(!0).openapi({description:"Whether signup is enabled for this connection"})}),we=e.z.object({client_credentials:e.z.object({enforce:e.z.boolean().default(!1).openapi({description:"Whether to enforce token quota limits"}),per_day:e.z.number().min(0).default(0).openapi({description:"Maximum tokens per day (0 = unlimited)"}),per_hour:e.z.number().min(0).default(0).openapi({description:"Maximum tokens per hour (0 = unlimited)"})}).optional()}).optional(),je=e.z.object({id:e.z.string().optional(),name:e.z.string().min(1).openapi({description:"The name of the organization"}),display_name:e.z.string().optional().openapi({description:"The display name of the organization"}),branding:Le,metadata:e.z.record(e.z.any()).default({}).optional().openapi({description:"Custom metadata for the organization"}),enabled_connections:e.z.array(De).default([]).optional().openapi({description:"List of enabled connections for the organization"}),token_quota:we}),At=e.z.object({...je.shape,...n.shape,id:e.z.string()}),ke=e.z.object({user_id:e.z.string().openapi({description:"ID of the user"}),organization_id:e.z.string().openapi({description:"ID of the organization"})}),It=e.z.object({...ke.shape,...n.shape,id:e.z.string()}),Ct=e.z.object({idle_session_lifetime:e.z.number().optional(),session_lifetime:e.z.number().optional(),session_cookie:e.z.object({mode:e.z.enum(["persistent","non-persistent"]).optional()}).optional(),enable_client_connections:e.z.boolean().optional(),default_redirection_uri:e.z.string().optional(),enabled_locales:e.z.array(e.z.string()).optional(),default_directory:e.z.string().optional(),error_page:e.z.object({html:e.z.string().optional(),show_log_link:e.z.boolean().optional(),url:e.z.string().optional()}).optional(),flags:e.z.object({allow_legacy_delegation_grant_types:e.z.boolean().optional(),allow_legacy_ro_grant_types:e.z.boolean().optional(),allow_legacy_tokeninfo_endpoint:e.z.boolean().optional(),disable_clickjack_protection_headers:e.z.boolean().optional(),enable_apis_section:e.z.boolean().optional(),enable_client_connections:e.z.boolean().optional(),enable_custom_domain_in_emails:e.z.boolean().optional(),enable_dynamic_client_registration:e.z.boolean().optional(),enable_idtoken_api2:e.z.boolean().optional(),enable_legacy_logs_search_v2:e.z.boolean().optional(),enable_legacy_profile:e.z.boolean().optional(),enable_pipeline2:e.z.boolean().optional(),enable_public_signup_user_exists_error:e.z.boolean().optional(),use_scope_descriptions_for_consent:e.z.boolean().optional(),disable_management_api_sms_obfuscation:e.z.boolean().optional(),enable_adfs_waad_email_verification:e.z.boolean().optional(),revoke_refresh_token_grant:e.z.boolean().optional(),dashboard_log_streams_next:e.z.boolean().optional(),dashboard_insights_view:e.z.boolean().optional(),disable_fields_map_fix:e.z.boolean().optional(),mfa_show_factor_list_on_enrollment:e.z.boolean().optional()}).optional(),friendly_name:e.z.string().optional(),picture_url:e.z.string().optional(),support_email:e.z.string().optional(),support_url:e.z.string().optional(),sandbox_version:e.z.string().optional(),sandbox_versions_available:e.z.array(e.z.string()).optional(),change_password:e.z.object({enabled:e.z.boolean(),html:e.z.string()}).optional(),guardian_mfa_page:e.z.object({enabled:e.z.boolean(),html:e.z.string()}).optional(),default_audience:e.z.string().optional(),default_organization:e.z.string().optional(),sessions:e.z.object({oidc_logout_prompt_enabled:e.z.boolean().optional()}).optional()});function Ot(t){const[a,s]=t.split("|");if(!a||!s)throw new Error(`Invalid user_id: ${t}`);return{connection:a,id:s}}exports.Auth0Client=ie;exports.AuthorizationResponseMode=z;exports.AuthorizationResponseType=d;exports.CodeChallengeMethod=g;exports.ComponentCategory=p;exports.ComponentType=_;exports.GrantType=le;exports.LogTypes=ne;exports.NodeType=R;exports.auth0FlowInsertSchema=xe;exports.auth0FlowSchema=v;exports.auth0UserResponseSchema=ve;exports.authParamsSchema=F;exports.baseUserSchema=c;exports.bordersSchema=ce;exports.brandingSchema=Ge;exports.buttonComponentSchema=C;exports.clientGrantInsertSchema=f;exports.clientGrantListSchema=He;exports.clientGrantSchema=A;exports.clientInsertSchema=b;exports.clientSchema=E;exports.codeInsertSchema=W;exports.codeSchema=Ke;exports.codeTypeSchema=K;exports.colorsSchema=_e;exports.componentSchema=N;exports.connectionInsertSchema=M;exports.connectionOptionsSchema=P;exports.connectionSchema=H;exports.coordinatesSchema=i;exports.customDomainInsertSchema=B;exports.customDomainSchema=V;exports.customDomainWithTenantIdSchema=We;exports.emailProviderSchema=pt;exports.endingSchema=U;exports.fieldComponentSchema=T;exports.flowNodeSchema=D;exports.fontDetailsSchema=o;exports.fontsSchema=pe;exports.formControlSchema=Be;exports.formInsertSchema=Y;exports.formNodeComponentDefinition=q;exports.formSchema=Xe;exports.genericComponentSchema=y;exports.genericNodeSchema=w;exports.hookInsertSchema=Ye;exports.hookSchema=Ze;exports.identitySchema=m;exports.inviteInsertSchema=ee;exports.inviteSchema=$e;exports.inviteeSchema=$;exports.inviterSchema=Z;exports.jwksKeySchema=et;exports.jwksSchema=te;exports.legalComponentSchema=O;exports.logSchema=it;exports.loginSessionInsertSchema=oe;exports.loginSessionSchema=ot;exports.nodeSchema=j;exports.openIDConfigurationSchema=tt;exports.organizationBrandingSchema=Le;exports.organizationEnabledConnectionSchema=De;exports.organizationInsertSchema=je;exports.organizationSchema=At;exports.organizationTokenQuotaSchema=we;exports.pageBackgroundSchema=de;exports.parseUserId=Ot;exports.passwordInsertSchema=ae;exports.passwordSchema=at;exports.profileDataSchema=u;exports.promptSettingSchema=_t;exports.refreshTokenInsertSchema=ue;exports.refreshTokenSchema=dt;exports.resourceServerInsertSchema=Se;exports.resourceServerListSchema=ut;exports.resourceServerOptionsSchema=he;exports.resourceServerSchema=be;exports.resourceServerScopeSchema=me;exports.richTextComponentSchema=I;exports.roleInsertSchema=Ne;exports.roleListSchema=ft;exports.rolePermissionInsertSchema=Ee;exports.rolePermissionListSchema=mt;exports.rolePermissionSchema=fe;exports.rolePermissionWithDetailsListSchema=ht;exports.rolePermissionWithDetailsSchema=Ae;exports.roleSchema=Re;exports.sessionInsertSchema=re;exports.sessionSchema=st;exports.signingKeySchema=rt;exports.smsProviderSchema=gt;exports.smsSendParamsSchema=zt;exports.startSchema=k;exports.stepNodeSchema=L;exports.tenantInsertSchema=x;exports.tenantSchema=G;exports.tenantSettingsSchema=Ct;exports.themeInsertSchema=ge;exports.themeSchema=ct;exports.tokenResponseSchema=lt;exports.totalsSchema=Ue;exports.userInsertSchema=h;exports.userOrganizationInsertSchema=ke;exports.userOrganizationSchema=It;exports.userPermissionInsertSchema=Ie;exports.userPermissionListSchema=St;exports.userPermissionSchema=Ce;exports.userPermissionWithDetailsListSchema=bt;exports.userPermissionWithDetailsSchema=Oe;exports.userResponseSchema=Fe;exports.userRoleInsertSchema=Te;exports.userRoleListSchema=Et;exports.userRoleSchema=ye;exports.userSchema=S;exports.verificationMethodsSchema=X;exports.widgetSchema=ze;
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("@hono/zod-openapi"),Ue=e.z.object({start:e.z.number(),limit:e.z.number(),length:e.z.number()}),n=e.z.object({created_at:e.z.string(),updated_at:e.z.string()}),u=e.z.object({email:e.z.string().optional(),email_verified:e.z.boolean().optional(),name:e.z.string().optional(),username:e.z.string().optional(),given_name:e.z.string().optional(),phone_number:e.z.string().optional(),phone_verified:e.z.boolean().optional(),family_name:e.z.string().optional()}).catchall(e.z.any()),m=e.z.object({connection:e.z.string(),user_id:e.z.string(),provider:e.z.string(),isSocial:e.z.boolean(),access_token:e.z.string().optional(),access_token_secret:e.z.string().optional(),refresh_token:e.z.string().optional(),profileData:u.optional()}),c=e.z.object({email:e.z.string().optional().transform(t=>t&&t.toLowerCase()),username:e.z.string().optional(),phone_number:e.z.string().optional(),given_name:e.z.string().optional(),family_name:e.z.string().optional(),nickname:e.z.string().optional(),name:e.z.string().optional(),picture:e.z.string().optional(),locale:e.z.string().optional(),linked_to:e.z.string().optional(),profileData:e.z.string().optional(),user_id:e.z.string().optional(),app_metadata:e.z.any().default({}).optional(),user_metadata:e.z.any().default({}).optional()}),h=c.extend({email_verified:e.z.boolean().default(!1),verify_email:e.z.boolean().optional(),last_ip:e.z.string().optional(),last_login:e.z.string().optional(),user_id:e.z.string().optional(),provider:e.z.string().default("email"),connection:e.z.string().default("email"),is_social:e.z.boolean().optional()}),S=e.z.object({...h.shape,...n.shape,user_id:e.z.string(),is_social:e.z.boolean(),email:e.z.string().optional(),login_count:e.z.number().default(0),identities:e.z.array(m).optional()}),Fe=S,Pe=c.extend({login_count:e.z.number(),multifactor:e.z.array(e.z.string()).optional(),last_ip:e.z.string().optional(),last_login:e.z.string().optional(),user_id:e.z.string()}).catchall(e.z.any()),Me="useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict";let He=(t=21)=>{let a="",s=crypto.getRandomValues(new Uint8Array(t|=0));for(;t--;)a+=Me[s[t]&63];return a};const b=e.z.object({client_id:e.z.string().openapi({description:"ID of this client."}),name:e.z.string().min(1).openapi({description:"Name of this client (min length: 1 character, does not allow < or >)."}),description:e.z.string().max(140).optional().openapi({description:"Free text description of this client (max length: 140 characters)."}),global:e.z.boolean().default(!1).openapi({description:"Whether this is your global 'All Applications' client representing legacy tenant settings (true) or a regular client (false)."}),client_secret:e.z.string().default(()=>He()).optional().openapi({description:"Client secret (which you must not make public)."}),app_type:e.z.enum(["native","spa","regular_web","non_interactive","resource_server","express_configuration","rms","box","cloudbees","concur","dropbox","mscrm","echosign","egnyte","newrelic","office365","salesforce","sentry","sharepoint","slack","springcm","zendesk","zoom","sso_integration","oag"]).default("regular_web").optional().openapi({description:"The type of application this client represents"}),logo_uri:e.z.string().url().optional().openapi({description:"URL of the logo to display for this client. Recommended size is 150x150 pixels."}),is_first_party:e.z.boolean().default(!1).openapi({description:"Whether this client a first party client (true) or not (false)."}),oidc_conformant:e.z.boolean().default(!0).openapi({description:"Whether this client conforms to strict OIDC specifications (true) or uses legacy features (false)."}),callbacks:e.z.array(e.z.string()).default([]).optional().openapi({description:"Comma-separated list of URLs whitelisted for Auth0 to use as a callback to the client after authentication."}),allowed_origins:e.z.array(e.z.string()).default([]).optional().openapi({description:"Comma-separated list of URLs allowed to make requests from JavaScript to Auth0 API (typically used with CORS). By default, all your callback URLs will be allowed. This field allows you to enter other origins if necessary. You can also use wildcards at the subdomain level (e.g., https://*.contoso.com). Query strings and hash information are not taken into account when validating these URLs."}),web_origins:e.z.array(e.z.string()).default([]).optional().openapi({description:"Comma-separated list of allowed origins for use with Cross-Origin Authentication, Device Flow, and web message response mode."}),client_aliases:e.z.array(e.z.string()).default([]).optional().openapi({description:"List of audiences/realms for SAML protocol. Used by the wsfed addon."}),allowed_clients:e.z.array(e.z.string()).default([]).optional().openapi({description:"List of allow clients and API ids that are allowed to make delegation requests. Empty means all all your clients are allowed."}),allowed_logout_urls:e.z.array(e.z.string()).default([]).optional().openapi({description:"Comma-separated list of URLs that are valid to redirect to after logout from Auth0. Wildcards are allowed for subdomains."}),session_transfer:e.z.record(e.z.any()).default({}).optional().openapi({description:"Native to Web SSO Configuration"}),oidc_logout:e.z.record(e.z.any()).default({}).optional().openapi({description:"Configuration for OIDC backchannel logout"}),grant_types:e.z.array(e.z.string()).default([]).optional().openapi({description:"List of grant types supported for this application. Can include authorization_code, implicit, refresh_token, client_credentials, password, http://auth0.com/oauth/grant-type/password-realm, http://auth0.com/oauth/grant-type/mfa-oob, http://auth0.com/oauth/grant-type/mfa-otp, http://auth0.com/oauth/grant-type/mfa-recovery-code, urn:openid:params:grant-type:ciba, and urn:ietf:params:oauth:grant-type:device_code."}),jwt_configuration:e.z.record(e.z.any()).default({}).optional().openapi({description:"Configuration related to JWTs for the client."}),signing_keys:e.z.array(e.z.record(e.z.any())).default([]).optional().openapi({description:"Signing certificates associated with this client."}),encryption_key:e.z.record(e.z.any()).default({}).optional().openapi({description:"Encryption used for WsFed responses with this client."}),sso:e.z.boolean().default(!1).openapi({description:"Applies only to SSO clients and determines whether Auth0 will handle Single Sign On (true) or whether the Identity Provider will (false)."}),sso_disabled:e.z.boolean().default(!0).openapi({description:"Whether Single Sign On is disabled (true) or enabled (true). Defaults to true."}),cross_origin_authentication:e.z.boolean().default(!1).openapi({description:"Whether this client can be used to make cross-origin authentication requests (true) or it is not allowed to make such requests (false)."}),cross_origin_loc:e.z.string().url().optional().openapi({description:"URL of the location in your site where the cross origin verification takes place for the cross-origin auth flow when performing Auth in your own domain instead of Auth0 hosted login page."}),custom_login_page_on:e.z.boolean().default(!1).openapi({description:"Whether a custom login page is to be used (true) or the default provided login page (false)."}),custom_login_page:e.z.string().optional().openapi({description:"The content (HTML, CSS, JS) of the custom login page."}),custom_login_page_preview:e.z.string().optional().openapi({description:"The content (HTML, CSS, JS) of the custom login page. (Used on Previews)"}),form_template:e.z.string().optional().openapi({description:"HTML form template to be used for WS-Federation."}),addons:e.z.record(e.z.any()).default({}).optional().openapi({description:"Addons enabled for this client and their associated configurations."}),token_endpoint_auth_method:e.z.enum(["none","client_secret_post","client_secret_basic"]).default("client_secret_basic").optional().openapi({description:"Defines the requested authentication method for the token endpoint. Can be none (public client without a client secret), client_secret_post (client uses HTTP POST parameters), or client_secret_basic (client uses HTTP Basic)."}),client_metadata:e.z.record(e.z.string().max(255)).default({}).optional().openapi({description:'Metadata associated with the client, in the form of an object with string values (max 255 chars). Maximum of 10 metadata properties allowed. Field names (max 255 chars) are alphanumeric and may only include the following special characters: :,-+=_*?"/()<>@ [Tab][Space]'}),mobile:e.z.record(e.z.any()).default({}).optional().openapi({description:"Additional configuration for native mobile apps."}),initiate_login_uri:e.z.string().url().optional().openapi({description:"Initiate login uri, must be https"}),native_social_login:e.z.record(e.z.any()).default({}).optional(),refresh_token:e.z.record(e.z.any()).default({}).optional().openapi({description:"Refresh token configuration"}),default_organization:e.z.record(e.z.any()).default({}).optional().openapi({description:"Defines the default Organization ID and flows"}),organization_usage:e.z.enum(["deny","allow","require"]).default("deny").optional().openapi({description:"Defines how to proceed during an authentication transaction with regards an organization. Can be deny (default), allow or require."}),organization_require_behavior:e.z.enum(["no_prompt","pre_login_prompt","post_login_prompt"]).default("no_prompt").optional().openapi({description:"Defines how to proceed during an authentication transaction when client.organization_usage: 'require'. Can be no_prompt (default), pre_login_prompt or post_login_prompt. post_login_prompt requires oidc_conformant: true."}),client_authentication_methods:e.z.record(e.z.any()).default({}).optional().openapi({description:"Defines client authentication methods."}),require_pushed_authorization_requests:e.z.boolean().default(!1).openapi({description:"Makes the use of Pushed Authorization Requests mandatory for this client"}),require_proof_of_possession:e.z.boolean().default(!1).openapi({description:"Makes the use of Proof-of-Possession mandatory for this client"}),signed_request_object:e.z.record(e.z.any()).default({}).optional().openapi({description:"JWT-secured Authorization Requests (JAR) settings."}),compliance_level:e.z.enum(["none","fapi1_adv_pkj_par","fapi1_adv_mtls_par","fapi2_sp_pkj_mtls","fapi2_sp_mtls_mtls"]).optional().openapi({description:"Defines the compliance level for this client, which may restrict it's capabilities"}),par_request_expiry:e.z.number().optional().openapi({description:"Specifies how long, in seconds, a Pushed Authorization Request URI remains valid"}),token_quota:e.z.record(e.z.any()).default({}).optional()}),E=e.z.object({created_at:e.z.string(),updated_at:e.z.string(),...b.shape}),f=e.z.object({client_id:e.z.string().min(1).openapi({description:"ID of the client."}),audience:e.z.string().min(1).openapi({description:"The audience (API identifier) of this client grant."}),scope:e.z.array(e.z.string()).optional().openapi({description:"Scopes allowed for this client grant."}),organization_usage:e.z.enum(["deny","allow","require"]).optional().openapi({description:"Defines whether organizations can be used with client credentials exchanges for this grant."}),allow_any_organization:e.z.boolean().optional().openapi({description:"If enabled, any organization can be used with this grant. If disabled (default), the grant must be explicitly assigned to the desired organizations."}),is_system:e.z.boolean().optional().openapi({description:"If enabled, this grant is a special grant created by Auth0. It cannot be modified or deleted directly."}),subject_type:e.z.enum(["client","user"]).optional().openapi({description:"The type of application access the client grant allows. Use of this field is subject to the applicable Free Trial terms in Okta's Master Subscription Agreement."}),authorization_details_types:e.z.array(e.z.string()).optional().openapi({description:"Types of authorization_details allowed for this client grant. Use of this field is subject to the applicable Free Trial terms in Okta's Master Subscription Agreement."})}),A=e.z.object({id:e.z.string().openapi({description:"ID of the client grant."}),...f.shape,created_at:e.z.string().optional(),updated_at:e.z.string().optional()}),xe=e.z.array(A),i=e.z.object({x:e.z.number(),y:e.z.number()});var _=(t=>(t.RICH_TEXT="RICH_TEXT",t.NEXT_BUTTON="NEXT_BUTTON",t.BACK_BUTTON="BACK_BUTTON",t.SUBMIT_BUTTON="SUBMIT_BUTTON",t.DIVIDER="DIVIDER",t.TEXT="TEXT",t.EMAIL="EMAIL",t.PASSWORD="PASSWORD",t.NUMBER="NUMBER",t.PHONE="PHONE",t.DATE="DATE",t.CHECKBOX="CHECKBOX",t.RADIO="RADIO",t.SELECT="SELECT",t.HIDDEN="HIDDEN",t.LEGAL="LEGAL",t))(_||{}),p=(t=>(t.BLOCK="BLOCK",t.FIELD="FIELD",t))(p||{});const r=e.z.object({id:e.z.string(),category:e.z.nativeEnum(p),type:e.z.nativeEnum(_)}),I=r.extend({category:e.z.literal("BLOCK"),type:e.z.literal("RICH_TEXT"),config:e.z.object({content:e.z.string()}).passthrough()}),C=r.extend({category:e.z.literal("BLOCK"),type:e.z.union([e.z.literal("NEXT_BUTTON"),e.z.literal("BACK_BUTTON"),e.z.literal("SUBMIT_BUTTON")]),config:e.z.object({text:e.z.string()}).passthrough()}),O=r.extend({category:e.z.literal("FIELD"),type:e.z.literal("LEGAL"),required:e.z.boolean().optional(),sensitive:e.z.boolean().optional(),config:e.z.object({text:e.z.string()}).passthrough()}),T=r.extend({category:e.z.literal("FIELD"),type:e.z.union([e.z.literal("TEXT"),e.z.literal("EMAIL"),e.z.literal("PASSWORD"),e.z.literal("NUMBER"),e.z.literal("PHONE"),e.z.literal("DATE"),e.z.literal("CHECKBOX"),e.z.literal("RADIO"),e.z.literal("SELECT"),e.z.literal("HIDDEN")]),required:e.z.boolean().optional(),sensitive:e.z.boolean().optional(),config:e.z.object({label:e.z.string().optional(),placeholder:e.z.string().optional()}).passthrough()}),y=e.z.object({id:e.z.string(),category:e.z.string(),type:e.z.string()}).passthrough(),N=e.z.union([I,C,O,T,y]);var R=(t=>(t.STEP="STEP",t.FLOW="FLOW",t.CONDITION="CONDITION",t.ACTION="ACTION",t))(R||{});const L=e.z.object({id:e.z.string(),type:e.z.literal("STEP"),coordinates:i,alias:e.z.string().optional(),config:e.z.object({components:e.z.array(N),next_node:e.z.string()}).passthrough()}),D=e.z.object({id:e.z.string(),type:e.z.literal("FLOW"),coordinates:i,alias:e.z.string().optional(),config:e.z.object({flow_id:e.z.string(),next_node:e.z.string()})}),w=e.z.object({id:e.z.string(),type:e.z.string(),coordinates:i}).passthrough(),j=e.z.union([L,D,w]),k=e.z.object({next_node:e.z.string(),coordinates:i}).passthrough(),v=e.z.object({resume_flow:e.z.boolean().optional(),coordinates:i}).passthrough(),U=e.z.object({id:e.z.string(),name:e.z.string(),languages:e.z.object({primary:e.z.string()}).passthrough(),nodes:e.z.array(j),start:k,ending:v,created_at:e.z.string(),updated_at:e.z.string(),links:e.z.object({sdkSrc:e.z.string().optional(),sdk_src:e.z.string().optional()}).passthrough()}).passthrough(),Ge=U.omit({id:!0,created_at:!0,updated_at:!0});var d=(t=>(t.TOKEN="token",t.TOKEN_ID_TOKEN="token id_token",t.CODE="code",t))(d||{}),z=(t=>(t.QUERY="query",t.FRAGMENT="fragment",t.FORM_POST="form_post",t.WEB_MESSAGE="web_message",t.SAML_POST="saml_post",t))(z||{}),g=(t=>(t.S256="S256",t.Plain="plain",t))(g||{});const F=e.z.object({client_id:e.z.string(),act_as:e.z.string().optional(),response_type:e.z.nativeEnum(d).optional(),response_mode:e.z.nativeEnum(z).optional(),redirect_uri:e.z.string().optional(),audience:e.z.string().optional(),organization:e.z.string().optional(),state:e.z.string().optional(),nonce:e.z.string().optional(),scope:e.z.string().optional(),prompt:e.z.string().optional(),code_challenge_method:e.z.nativeEnum(g).optional(),code_challenge:e.z.string().optional(),username:e.z.string().optional(),ui_locales:e.z.string().optional(),vendor_id:e.z.string().optional()}),Ke=e.z.object({colors:e.z.object({primary:e.z.string(),page_background:e.z.object({type:e.z.string().optional(),start:e.z.string().optional(),end:e.z.string().optional(),angle_deg:e.z.number().optional()}).optional()}).optional(),logo_url:e.z.string().optional(),favicon_url:e.z.string().optional(),powered_by_logo_url:e.z.string().optional(),font:e.z.object({url:e.z.string()}).optional()}),P=e.z.object({kid:e.z.string().optional(),team_id:e.z.string().optional(),realms:e.z.string().optional(),authentication_method:e.z.string().optional(),client_id:e.z.string().optional(),client_secret:e.z.string().optional(),app_secret:e.z.string().optional(),scope:e.z.string().optional(),authorization_endpoint:e.z.string().optional(),token_endpoint:e.z.string().optional(),userinfo_endpoint:e.z.string().optional(),jwks_uri:e.z.string().optional(),discovery_url:e.z.string().optional(),issuer:e.z.string().optional(),provider:e.z.string().optional(),from:e.z.string().optional(),twilio_sid:e.z.string().optional(),twilio_token:e.z.string().optional()}),M=e.z.object({id:e.z.string().optional(),name:e.z.string(),strategy:e.z.string(),options:P.default({}),enabled_clients:e.z.array(e.z.string()).default([]).optional(),response_type:e.z.custom().optional(),response_mode:e.z.custom().optional()}),H=e.z.object({id:e.z.string(),created_at:e.z.string().transform(t=>t===null?"":t),updated_at:e.z.string().transform(t=>t===null?"":t)}).extend(M.shape),x=e.z.object({id:e.z.string().optional(),audience:e.z.string(),friendly_name:e.z.string(),picture_url:e.z.string().optional(),support_email:e.z.string().optional(),support_url:e.z.string().optional(),sender_email:e.z.string().email(),sender_name:e.z.string(),session_lifetime:e.z.number().optional(),idle_session_lifetime:e.z.number().optional(),ephemeral_session_lifetime:e.z.number().optional(),idle_ephemeral_session_lifetime:e.z.number().optional(),session_cookie:e.z.object({mode:e.z.enum(["persistent","non-persistent"]).optional()}).optional(),allowed_logout_urls:e.z.array(e.z.string()).optional(),default_redirection_uri:e.z.string().optional(),enabled_locales:e.z.array(e.z.string()).optional(),default_directory:e.z.string().optional(),error_page:e.z.object({html:e.z.string().optional(),show_log_link:e.z.boolean().optional(),url:e.z.string().optional()}).optional(),flags:e.z.object({allow_changing_enable_sso:e.z.boolean().optional(),allow_legacy_delegation_grant_types:e.z.boolean().optional(),allow_legacy_ro_grant_types:e.z.boolean().optional(),allow_legacy_tokeninfo_endpoint:e.z.boolean().optional(),change_pwd_flow_v1:e.z.boolean().optional(),custom_domains_provisioning:e.z.boolean().optional(),dashboard_insights_view:e.z.boolean().optional(),dashboard_log_streams_next:e.z.boolean().optional(),disable_clickjack_protection_headers:e.z.boolean().optional(),disable_fields_map_fix:e.z.boolean().optional(),disable_impersonation:e.z.boolean().optional(),disable_management_api_sms_obfuscation:e.z.boolean().optional(),enable_adfs_waad_email_verification:e.z.boolean().optional(),enable_apis_section:e.z.boolean().optional(),enable_client_connections:e.z.boolean().optional(),enable_custom_domain_in_emails:e.z.boolean().optional(),enable_dynamic_client_registration:e.z.boolean().optional(),enable_idtoken_api2:e.z.boolean().optional(),enable_legacy_logs_search_v2:e.z.boolean().optional(),enable_legacy_profile:e.z.boolean().optional(),enable_pipeline2:e.z.boolean().optional(),enable_public_signup_user_exists_error:e.z.boolean().optional(),enable_sso:e.z.boolean().optional(),enforce_client_authentication_on_passwordless_start:e.z.boolean().optional(),genai_trial:e.z.boolean().optional(),improved_signup_bot_detection_in_classic:e.z.boolean().optional(),mfa_show_factor_list_on_enrollment:e.z.boolean().optional(),no_disclose_enterprise_connections:e.z.boolean().optional(),remove_alg_from_jwks:e.z.boolean().optional(),revoke_refresh_token_grant:e.z.boolean().optional(),trust_azure_adfs_email_verified_connection_property:e.z.boolean().optional(),use_scope_descriptions_for_consent:e.z.boolean().optional()}).optional(),sandbox_version:e.z.string().optional(),legacy_sandbox_version:e.z.string().optional(),sandbox_versions_available:e.z.array(e.z.string()).optional(),change_password:e.z.object({enabled:e.z.boolean().optional(),html:e.z.string().optional()}).optional(),guardian_mfa_page:e.z.object({enabled:e.z.boolean().optional(),html:e.z.string().optional()}).optional(),device_flow:e.z.object({charset:e.z.enum(["base20","digits"]).optional(),mask:e.z.string().max(20).optional()}).optional(),default_token_quota:e.z.object({clients:e.z.object({client_credentials:e.z.record(e.z.any()).optional()}).optional(),organizations:e.z.object({client_credentials:e.z.record(e.z.any()).optional()}).optional()}).optional(),default_audience:e.z.string().optional(),default_organization:e.z.string().optional(),sessions:e.z.object({oidc_logout_prompt_enabled:e.z.boolean().optional()}).optional(),oidc_logout:e.z.object({rp_logout_end_session_endpoint_discovery:e.z.boolean().optional()}).optional(),allow_organization_name_in_authentication_api:e.z.boolean().optional(),customize_mfa_in_postlogin_action:e.z.boolean().optional(),acr_values_supported:e.z.array(e.z.string()).optional(),mtls:e.z.object({enable_endpoint_aliases:e.z.boolean().optional()}).optional(),pushed_authorization_requests_supported:e.z.boolean().optional(),authorization_response_iss_parameter_supported:e.z.boolean().optional()}),G=e.z.object({created_at:e.z.string().nullable().transform(t=>t??""),updated_at:e.z.string().nullable().transform(t=>t??""),...x.shape,id:e.z.string()});e.z.object({...E.shape,tenant:G,connections:e.z.array(H)});const K=e.z.enum(["password_reset","email_verification","otp","authorization_code","oauth2_state","ticket"]),W=e.z.object({code_id:e.z.string().openapi({description:"The code that will be used in for instance an email verification flow"}),login_id:e.z.string().openapi({description:"The id of the login session that the code is connected to"}),connection_id:e.z.string().optional().openapi({description:"The connection that the code is connected to"}),code_type:K,code_verifier:e.z.string().optional().openapi({description:"The code verifier used in PKCE in outbound flows"}),code_challenge:e.z.string().optional().openapi({description:"The code challenge used in PKCE in outbound flows"}),code_challenge_method:e.z.enum(["plain","S256"]).optional().openapi({description:"The code challenge method used in PKCE in outbound flows"}),redirect_uri:e.z.string().optional().openapi({description:"The redirect URI associated with the code"}),nonce:e.z.string().optional().openapi({description:"The nonce value used for security in OIDC flows"}),state:e.z.string().optional().openapi({description:"The state parameter used for CSRF protection in OAuth flows"}),expires_at:e.z.string(),used_at:e.z.string().optional(),user_id:e.z.string().optional()}),We=e.z.object({...W.shape,created_at:e.z.string()}),B=e.z.object({domain:e.z.string(),custom_domain_id:e.z.string().optional(),type:e.z.enum(["auth0_managed_certs","self_managed_certs"]),verification_method:e.z.enum(["txt"]).optional(),tls_policy:e.z.enum(["recommended"]).optional(),custom_client_ip_header:e.z.enum(["true-client-ip","cf-connecting-ip","x-forwarded-for","x-azure-clientip","null"]).optional(),domain_metadata:e.z.record(e.z.string().max(255)).optional()}),X=e.z.object({name:e.z.literal("txt"),record:e.z.string(),domain:e.z.string()}),V=e.z.object({...B.shape,custom_domain_id:e.z.string(),primary:e.z.boolean(),status:e.z.enum(["disabled","pending","pending_verification","ready"]),origin_domain_name:e.z.string().optional(),verification:e.z.object({methods:e.z.array(X)}).optional(),tls_policy:e.z.string().optional()}),Be=V.extend({tenant_id:e.z.string()}),Xe=e.z.object({id:e.z.string(),type:e.z.literal("submit"),label:e.z.string(),className:e.z.string().optional(),disabled:e.z.boolean().optional().default(!1),order:e.z.number().optional(),visible:e.z.boolean().optional().default(!0),customizations:e.z.record(e.z.string(),e.z.any()).optional()}),q=e.z.discriminatedUnion("type",[e.z.object({id:e.z.string(),type:e.z.literal("RICH_TEXT"),config:e.z.object({content:e.z.string()}),order:e.z.number().optional(),visible:e.z.boolean().optional().default(!0)}),e.z.object({id:e.z.string(),type:e.z.literal("LEGAL"),config:e.z.object({text:e.z.string(),html:e.z.boolean().optional()}),required:e.z.boolean().optional(),order:e.z.number().optional(),visible:e.z.boolean().optional().default(!0)}),e.z.object({id:e.z.string(),type:e.z.literal("TEXT"),config:e.z.object({placeholder:e.z.string().optional(),multiline:e.z.boolean().optional()}),required:e.z.boolean().optional(),sensitive:e.z.boolean().optional(),order:e.z.number().optional(),visible:e.z.boolean().optional().default(!0)}),e.z.object({id:e.z.string(),type:e.z.literal("NEXT_BUTTON"),config:e.z.object({text:e.z.string().optional()}),order:e.z.number().optional(),visible:e.z.boolean().optional().default(!0)})]),Y=e.z.object({name:e.z.string().openapi({description:"The name of the form"}),messages:e.z.object({errors:e.z.record(e.z.string(),e.z.any()).optional(),custom:e.z.record(e.z.string(),e.z.any()).optional()}).optional(),languages:e.z.object({primary:e.z.string().optional(),default:e.z.string().optional()}).optional(),translations:e.z.record(e.z.string(),e.z.any()).optional(),nodes:e.z.array(e.z.discriminatedUnion("type",[e.z.object({id:e.z.string(),type:e.z.literal("FLOW"),coordinates:e.z.object({x:e.z.number(),y:e.z.number()}),alias:e.z.string().min(1).max(150).optional(),config:e.z.object({flow_id:e.z.string().max(30),next_node:e.z.string()})}),e.z.object({id:e.z.string(),type:e.z.literal("ROUTER"),coordinates:e.z.object({x:e.z.number(),y:e.z.number()}),alias:e.z.string().min(1).max(150),config:e.z.object({rules:e.z.array(e.z.object({id:e.z.string(),alias:e.z.string().min(1).max(150).optional(),condition:e.z.any(),next_node:e.z.string()})),fallback:e.z.array(e.z.string())})}),e.z.object({id:e.z.string(),type:e.z.literal("STEP"),coordinates:e.z.object({x:e.z.number(),y:e.z.number()}),alias:e.z.string().min(1).max(150).optional(),config:e.z.object({components:e.z.array(q),next_node:e.z.string()})})])).optional(),start:e.z.object({hidden_fields:e.z.array(e.z.object({key:e.z.string(),value:e.z.string()})).optional(),next_node:e.z.string().optional(),coordinates:e.z.object({x:e.z.number(),y:e.z.number()}).optional()}).optional(),ending:e.z.object({redirection:e.z.object({delay:e.z.number().optional(),target:e.z.string().optional()}).optional(),after_submit:e.z.object({flow_id:e.z.string().optional()}).optional(),coordinates:e.z.object({x:e.z.number(),y:e.z.number()}).optional(),resume_flow:e.z.boolean().optional()}).optional(),style:e.z.object({css:e.z.string().optional()}).optional()}).openapi({description:"Schema for flow-based forms (matches new JSON structure)"}),Ve=e.z.object({...n.shape,...Y.shape,id:e.z.string()}),Q=e.z.enum(["pre-user-registration","post-user-registration","post-user-login","validate-registration-username","pre-user-deletion","post-user-deletion"]),J=e.z.enum(["pre-user-registration","post-user-registration","post-user-login","validate-registration-username","pre-user-deletion","post-user-deletion"]),l={enabled:e.z.boolean().default(!1),synchronous:e.z.boolean().default(!1),priority:e.z.number().optional(),hook_id:e.z.string().optional()},qe=e.z.object({...l,trigger_id:Q,url:e.z.string()}),Ye=e.z.object({...l,trigger_id:J,form_id:e.z.string()}),Qe=e.z.union([qe,Ye]),Je=e.z.object({...l,trigger_id:Q,...n.shape,hook_id:e.z.string(),url:e.z.string()}),Ze=e.z.object({...l,trigger_id:J,...n.shape,hook_id:e.z.string(),form_id:e.z.string()}),$e=e.z.union([Je,Ze]),Z=e.z.object({name:e.z.string().optional()}),$=e.z.object({email:e.z.string().optional()}),ee=e.z.object({organization_id:e.z.string().max(50),inviter:Z,invitee:$,invitation_url:e.z.string().url(),client_id:e.z.string(),connection_id:e.z.string().optional(),app_metadata:e.z.record(e.z.any()).default({}).optional(),user_metadata:e.z.record(e.z.any()).default({}).optional(),ttl_sec:e.z.number().int().max(2592e3).default(604800).optional(),roles:e.z.array(e.z.string()).default([]).optional(),send_invitation_email:e.z.boolean().default(!0).optional()}),et=e.z.object({id:e.z.string(),organization_id:e.z.string().max(50),created_at:e.z.string().datetime(),expires_at:e.z.string().datetime(),ticket_id:e.z.string().optional()}).extend(ee.shape),te=e.z.object({alg:e.z.enum(["RS256","RS384","RS512","ES256","ES384","ES512","HS256","HS384","HS512"]),e:e.z.string(),kid:e.z.string(),kty:e.z.enum(["RSA","EC","oct"]),n:e.z.string(),x5t:e.z.string().optional(),x5c:e.z.array(e.z.string()).optional(),use:e.z.enum(["sig","enc"]).optional()}),tt=e.z.object({keys:e.z.array(te)}),ot=e.z.object({issuer:e.z.string(),authorization_endpoint:e.z.string(),token_endpoint:e.z.string(),device_authorization_endpoint:e.z.string(),userinfo_endpoint:e.z.string(),mfa_challenge_endpoint:e.z.string(),jwks_uri:e.z.string(),registration_endpoint:e.z.string(),revocation_endpoint:e.z.string(),scopes_supported:e.z.array(e.z.string()),response_types_supported:e.z.array(e.z.string()),code_challenge_methods_supported:e.z.array(e.z.string()),response_modes_supported:e.z.array(e.z.string()),subject_types_supported:e.z.array(e.z.string()),id_token_signing_alg_values_supported:e.z.array(e.z.string()),token_endpoint_auth_methods_supported:e.z.array(e.z.string()),claims_supported:e.z.array(e.z.string()),request_uri_parameter_supported:e.z.boolean(),request_parameter_supported:e.z.boolean(),token_endpoint_auth_signing_alg_values_supported:e.z.array(e.z.string())}),oe=e.z.object({csrf_token:e.z.string(),auth0Client:e.z.string().optional(),authParams:F,expires_at:e.z.string(),deleted_at:e.z.string().optional(),ip:e.z.string().optional(),useragent:e.z.string().optional(),session_id:e.z.string().optional(),authorization_url:e.z.string().optional(),login_completed:e.z.boolean().optional().default(!1)}).openapi({description:"This represents a login sesion"}),nt=e.z.object({...oe.shape,id:e.z.string().openapi({description:"This is is used as the state in the universal login"}),created_at:e.z.string(),updated_at:e.z.string()}),ne={ACLS_SUMMARY:"acls_summary",ACTIONS_EXECUTION_FAILED:"actions_execution_failed",API_LIMIT:"api_limit",API_LIMIT_WARNING:"api_limit_warning",APPI:"appi",CIBA_EXCHANGE_FAILED:"ciba_exchange_failed",CIBA_EXCHANGE_SUCCEEDED:"ciba_exchange_succeeded",CIBA_START_FAILED:"ciba_start_failed",CIBA_START_SUCCEEDED:"ciba_start_succeeded",CODE_LINK_SENT:"cls",CODE_SENT:"cs",DEPRECATION_NOTICE:"depnote",FAILED_LOGIN:"f",FAILED_BY_CONNECTOR:"fc",FAILED_CHANGE_EMAIL:"fce",FAILED_BY_CORS:"fco",FAILED_CROSS_ORIGIN_AUTHENTICATION:"fcoa",FAILED_CHANGE_PASSWORD:"fcp",FAILED_POST_CHANGE_PASSWORD_HOOK:"fcph",FAILED_CHANGE_PHONE_NUMBER:"fcpn",FAILED_CHANGE_PASSWORD_REQUEST:"fcpr",FAILED_CONNECTOR_PROVISIONING:"fcpro",FAILED_CHANGE_USERNAME:"fcu",FAILED_DELEGATION:"fd",FAILED_DEVICE_ACTIVATION:"fdeac",FAILED_DEVICE_AUTHORIZATION_REQUEST:"fdeaz",USER_CANCELED_DEVICE_CONFIRMATION:"fdecc",FAILED_USER_DELETION:"fdu",FAILED_EXCHANGE_AUTHORIZATION_CODE_FOR_ACCESS_TOKEN:"feacft",FAILED_EXCHANGE_ACCESS_TOKEN_FOR_CLIENT_CREDENTIALS:"feccft",FAILED_EXCHANGE_CUSTOM_TOKEN:"fecte",FAILED_EXCHANGE_DEVICE_CODE_FOR_ACCESS_TOKEN:"fede",FAILED_FEDERATED_LOGOUT:"federated_logout_failed",FAILED_EXCHANGE_NATIVE_SOCIAL_LOGIN:"fens",FAILED_EXCHANGE_PASSWORD_OOB_FOR_ACCESS_TOKEN:"feoobft",FAILED_EXCHANGE_PASSWORD_OTP_FOR_ACCESS_TOKEN:"feotpft",FAILED_EXCHANGE_PASSWORD_FOR_ACCESS_TOKEN:"fepft",FAILED_EXCHANGE_PASSWORDLESS_OTP_FOR_ACCESS_TOKEN:"fepotpft",FAILED_EXCHANGE_PASSWORD_MFA_RECOVERY_FOR_ACCESS_TOKEN:"fercft",FAILED_EXCHANGE_ROTATING_REFRESH_TOKEN:"ferrt",FAILED_EXCHANGE_REFRESH_TOKEN_FOR_ACCESS_TOKEN:"fertft",FAILED_HOOK:"fh",FAILED_INVITE_ACCEPT:"fi",FAILED_LOGOUT:"flo",FLOWS_EXECUTION_COMPLETED:"flows_execution_completed",FLOWS_EXECUTION_FAILED:"flows_execution_failed",FAILED_SENDING_NOTIFICATION:"fn",FORMS_SUBMISSION_FAILED:"forms_submission_failed",FORMS_SUBMISSION_SUCCEEDED:"forms_submission_succeeded",FAILED_LOGIN_INCORRECT_PASSWORD:"fp",FAILED_PUSHED_AUTHORIZATION_REQUEST:"fpar",FAILED_POST_USER_REGISTRATION_HOOK:"fpurh",FAILED_SIGNUP:"fs",FAILED_SILENT_AUTH:"fsa",FAILED_LOGIN_INVALID_EMAIL_USERNAME:"fu",FAILED_USERS_IMPORT:"fui",FAILED_VERIFICATION_EMAIL:"fv",FAILED_VERIFICATION_EMAIL_REQUEST:"fvr",EMAIL_VERIFICATION_CONFIRMED:"gd_auth_email_verification",EMAIL_VERIFICATION_FAILED:"gd_auth_fail_email_verification",MFA_AUTH_FAILED:"gd_auth_failed",MFA_AUTH_REJECTED:"gd_auth_rejected",MFA_AUTH_SUCCESS:"gd_auth_succeed",MFA_ENROLLMENT_COMPLETE:"gd_enrollment_complete",TOO_MANY_MFA_FAILURES:"gd_otp_rate_limit_exceed",MFA_RECOVERY_FAILED:"gd_recovery_failed",MFA_RECOVERY_RATE_LIMIT_EXCEED:"gd_recovery_rate_limit_exceed",MFA_RECOVERY_SUCCESS:"gd_recovery_succeed",MFA_EMAIL_SENT:"gd_send_email",EMAIL_VERIFICATION_SENT:"gd_send_email_verification",EMAIL_VERIFICATION_SEND_FAILURE:"gd_send_email_verification_failure",PUSH_NOTIFICATION_SENT:"gd_send_pn",ERROR_SENDING_MFA_PUSH_NOTIFICATION:"gd_send_pn_failure",MFA_SMS_SENT:"gd_send_sms",ERROR_SENDING_MFA_SMS:"gd_send_sms_failure",MFA_VOICE_CALL_SUCCESS:"gd_send_voice",MFA_VOICE_CALL_FAILED:"gd_send_voice_failure",SECOND_FACTOR_STARTED:"gd_start_auth",MFA_ENROLL_STARTED:"gd_start_enroll",MFA_ENROLLMENT_FAILED:"gd_start_enroll_failed",GUARDIAN_TENANT_UPDATE:"gd_tenant_update",UNENROLL_DEVICE_ACCOUNT:"gd_unenroll",UPDATE_DEVICE_ACCOUNT:"gd_update_device_account",WEBAUTHN_CHALLENGE_FAILED:"gd_webauthn_challenge_failed",WEBAUTHN_ENROLLMENT_FAILED:"gd_webauthn_enrollment_failed",FAILED_KMS_API_OPERATION:"kms_key_management_failure",SUCCESS_KMS_API_OPERATION:"kms_key_management_success",KMS_KEY_STATE_CHANGED:"kms_key_state_changed",TOO_MANY_CALLS_TO_DELEGATION:"limit_delegation",BLOCKED_IP_ADDRESS:"limit_mu",BLOCKED_ACCOUNT_IP:"limit_sul",BLOCKED_ACCOUNT_EMAIL:"limit_wc",MFA_REQUIRED:"mfar",MANAGEMENT_API_READ_OPERATION:"mgmt_api_read",FAILED_AUTHENTICATION_METHOD_OPERATION_MY_ACCOUNT:"my_account_authentication_method_failed",SUCCESSFUL_AUTHENTICATION_METHOD_OPERATION_MY_ACCOUNT:"my_account_authentication_method_succeeded",FAILED_OIDC_BACKCHANNEL_LOGOUT:"oidc_backchannel_logout_failed",SUCCESSFUL_OIDC_BACKCHANNEL_LOGOUT:"oidc_backchannel_logout_succeeded",ORGANIZATION_MEMBER_ADDED:"organization_member_added",PASSKEY_CHALLENGE_FAILED:"passkey_challenge_failed",PASSKEY_CHALLENGE_STARTED:"passkey_challenge_started",PRE_LOGIN_ASSESSMENT:"pla",BREACHED_PASSWORD:"pwd_leak",BREACHED_PASSWORD_ON_RESET:"reset_pwd_leak",SUCCESS_RESOURCE_CLEANUP:"resource_cleanup",RICH_CONSENTS_ACCESS_ERROR:"rich_consents_access_error",SUCCESS_LOGIN:"s",SUCCESS_API_OPERATION:"sapi",SUCCESS_CHANGE_EMAIL:"sce",SUCCESS_CROSS_ORIGIN_AUTHENTICATION:"scoa",SUCCESS_CHANGE_PASSWORD:"scp",SUCCESS_CHANGE_PHONE_NUMBER:"scpn",SUCCESS_CHANGE_PASSWORD_REQUEST:"scpr",SUCCESS_CHANGE_USERNAME:"scu",SUCCESS_CREDENTIAL_VALIDATION:"scv",SUCCESS_DELEGATION:"sd",SUCCESS_USER_DELETION:"sdu",SUCCESS_EXCHANGE_AUTHORIZATION_CODE_FOR_ACCESS_TOKEN:"seacft",SUCCESS_EXCHANGE_ACCESS_TOKEN_FOR_CLIENT_CREDENTIALS:"seccft",SUCCESS_EXCHANGE_CUSTOM_TOKEN:"secte",SUCCESS_EXCHANGE_DEVICE_CODE_FOR_ACCESS_TOKEN:"sede",SUCCESS_EXCHANGE_NATIVE_SOCIAL_LOGIN:"sens",SUCCESS_EXCHANGE_PASSWORD_OOB_FOR_ACCESS_TOKEN:"seoobft",SUCCESS_EXCHANGE_PASSWORD_OTP_FOR_ACCESS_TOKEN:"seotpft",SUCCESS_EXCHANGE_PASSWORD_FOR_ACCESS_TOKEN:"sepft",SUCCESS_EXCHANGE_PASSKEY_OOB_FOR_ACCESS_TOKEN:"sepkoobft",SUCCESS_EXCHANGE_PASSKEY_OTP_FOR_ACCESS_TOKEN:"sepkotpft",SUCCESS_EXCHANGE_PASSKEY_MFA_RECOVERY_FOR_ACCESS_TOKEN:"sepkrcft",SUCCESS_EXCHANGE_PASSWORD_MFA_RECOVERY_FOR_ACCESS_TOKEN:"sercft",SUCCESS_EXCHANGE_REFRESH_TOKEN_FOR_ACCESS_TOKEN:"sertft",SUCCESSFULLY_ACCEPTED_USER_INVITE:"si",BREACHED_PASSWORD_ON_SIGNUP:"signup_pwd_leak",SUCCESS_LOGOUT:"slo",SUCCESS_REVOCATION:"srrt",SUCCESS_SIGNUP:"ss",FAILED_SS_SSO_OPERATION:"ss_sso_failure",INFORMATION_FROM_SS_SSO_OPERATION:"ss_sso_info",SUCCESS_SS_SSO_OPERATION:"ss_sso_success",SUCCESS_SILENT_AUTH:"ssa",SUCCESSFUL_SCIM_OPERATION:"sscim",SUCCESSFULLY_IMPORTED_USERS:"sui",SUCCESS_VERIFICATION_EMAIL:"sv",SUCCESS_VERIFICATION_EMAIL_REQUEST:"svr",MAX_AMOUNT_OF_AUTHENTICATORS:"too_many_records",USER_LOGIN_BLOCK_RELEASED:"ublkdu",FAILED_UNIVERSAL_LOGOUT:"universal_logout_failed",SUCCESSFUL_UNIVERSAL_LOGOUT:"universal_logout_succeeded",WARNING_DURING_LOGIN:"w",WARNING_SENDING_NOTIFICATION:"wn",WARNING_USER_MANAGEMENT:"wum"},it=e.z.string().refine(t=>Object.values(ne).includes(t),{message:"Invalid log type"}),ie=e.z.object({name:e.z.string(),version:e.z.string(),env:e.z.object({node:e.z.string().optional()}).optional()}),ae=e.z.object({type:it,date:e.z.string(),description:e.z.string().optional(),ip:e.z.string(),user_agent:e.z.string(),details:e.z.any().optional(),isMobile:e.z.boolean(),user_id:e.z.string().optional(),user_name:e.z.string().optional(),connection:e.z.string().optional(),connection_id:e.z.string().optional(),client_id:e.z.string().optional(),client_name:e.z.string().optional(),audience:e.z.string().optional(),scope:e.z.array(e.z.string()).optional(),strategy:e.z.string().optional(),strategy_type:e.z.string().optional(),hostname:e.z.string().optional(),auth0_client:ie.optional(),log_id:e.z.string().optional()}),at=e.z.object({...ae.shape,log_id:e.z.string()}),se=e.z.object({user_id:e.z.string(),password:e.z.string(),algorithm:e.z.enum(["bcrypt","argon2id"]).default("argon2id")}),st=e.z.object({...se.shape,created_at:e.z.string(),updated_at:e.z.string()}),re=e.z.object({initial_user_agent:e.z.string().describe("First user agent of the device from which this user logged in"),initial_ip:e.z.string().describe("First IP address associated with this session"),initial_asn:e.z.string().describe("First autonomous system number associated with this session"),last_user_agent:e.z.string().describe("Last user agent of the device from which this user logged in"),last_ip:e.z.string().describe("Last IP address from which this user logged in"),last_asn:e.z.string().describe("Last autonomous system number from which this user logged in")}),le=e.z.object({id:e.z.string(),revoked_at:e.z.string().optional(),used_at:e.z.string().optional(),user_id:e.z.string().describe("The user ID associated with the session"),expires_at:e.z.string().optional(),login_session_id:e.z.string(),idle_expires_at:e.z.string().optional(),device:re.describe("Metadata related to the device used in the session"),clients:e.z.array(e.z.string()).describe("List of client details for the session")}),rt=e.z.object({created_at:e.z.string(),updated_at:e.z.string(),authenticated_at:e.z.string(),last_interaction_at:e.z.string(),...le.shape}),lt=e.z.object({kid:e.z.string().openapi({description:"The key id of the signing key"}),cert:e.z.string().openapi({description:"The public certificate of the signing key"}),fingerprint:e.z.string().openapi({description:"The cert fingerprint"}),thumbprint:e.z.string().openapi({description:"The cert thumbprint"}),pkcs7:e.z.string().optional().openapi({description:"The private key in pkcs7 format"}),current:e.z.boolean().optional().openapi({description:"True if the key is the current key"}),next:e.z.boolean().optional().openapi({description:"True if the key is the next key"}),previous:e.z.boolean().optional().openapi({description:"True if the key is the previous key"}),current_since:e.z.string().optional().openapi({description:"The date and time when the key became the current key"}),current_until:e.z.string().optional().openapi({description:"The date and time when the current key was rotated"}),revoked:e.z.boolean().optional().openapi({description:"True if the key is revoked"}),revoked_at:e.z.string().optional().openapi({description:"The date and time when the key was revoked"}),connection:e.z.string().optional().openapi({description:"The connection identifier associated with the key"}),type:e.z.enum(["jwt_signing","saml_encryption"]).openapi({description:"The type of the signing key"})});var ce=(t=>(t.RefreshToken="refresh_token",t.AuthorizationCode="authorization_code",t.ClientCredential="client_credentials",t.Passwordless="passwordless",t.Password="password",t.OTP="http://auth0.com/oauth/grant-type/passwordless/otp",t))(ce||{});const ct=e.z.object({access_token:e.z.string(),id_token:e.z.string().optional(),scope:e.z.string().optional(),state:e.z.string().optional(),refresh_token:e.z.string().optional(),token_type:e.z.string(),expires_in:e.z.number()});e.z.object({code:e.z.string(),state:e.z.string().optional()});const _e=e.z.object({button_border_radius:e.z.number(),button_border_weight:e.z.number(),buttons_style:e.z.enum(["pill","rounded","sharp"]),input_border_radius:e.z.number(),input_border_weight:e.z.number(),inputs_style:e.z.enum(["pill","rounded","sharp"]),show_widget_shadow:e.z.boolean(),widget_border_weight:e.z.number(),widget_corner_radius:e.z.number()}),pe=e.z.object({base_focus_color:e.z.string(),base_hover_color:e.z.string(),body_text:e.z.string(),captcha_widget_theme:e.z.enum(["auto","dark","light"]),error:e.z.string(),header:e.z.string(),icons:e.z.string(),input_background:e.z.string(),input_border:e.z.string(),input_filled_text:e.z.string(),input_labels_placeholders:e.z.string(),links_focused_components:e.z.string(),primary_button:e.z.string(),primary_button_label:e.z.string(),secondary_button_border:e.z.string(),secondary_button_label:e.z.string(),success:e.z.string(),widget_background:e.z.string(),widget_border:e.z.string()}),o=e.z.object({bold:e.z.boolean(),size:e.z.number()}),de=e.z.object({body_text:o,buttons_text:o,font_url:e.z.string(),input_labels:o,links:o,links_style:e.z.enum(["normal","underlined"]),reference_text_size:e.z.number(),subtitle:o,title:o}),ze=e.z.object({background_color:e.z.string(),background_image_url:e.z.string(),page_layout:e.z.enum(["center","left","right"])}),ge=e.z.object({header_text_alignment:e.z.enum(["center","left","right"]),logo_height:e.z.number(),logo_position:e.z.enum(["center","left","none","right"]),logo_url:e.z.string(),social_buttons_layout:e.z.enum(["bottom","top"])}),ue=e.z.object({borders:_e,colors:pe,displayName:e.z.string(),fonts:de,page_background:ze,widget:ge}),_t=ue.extend({themeId:e.z.string()}),pt=e.z.object({universal_login_experience:e.z.enum(["new","classic"]).default("new"),identifier_first:e.z.boolean().default(!0),password_first:e.z.boolean().default(!1),webauthn_platform_first_factor:e.z.boolean()}),dt=e.z.object({name:e.z.string(),enabled:e.z.boolean().optional().default(!0),default_from_address:e.z.string().optional(),credentials:e.z.union([e.z.object({accessKeyId:e.z.string(),secretAccessKey:e.z.string(),region:e.z.string()}),e.z.object({smtp_host:e.z.array(e.z.string()),smtp_port:e.z.number(),smtp_user:e.z.string(),smtp_pass:e.z.string()}),e.z.object({api_key:e.z.string(),domain:e.z.string().optional()}),e.z.object({connectionString:e.z.string()}),e.z.object({tenantId:e.z.string(),clientId:e.z.string(),clientSecret:e.z.string()})]),settings:e.z.object({}).optional()}),me=e.z.object({id:e.z.string(),session_id:e.z.string(),user_id:e.z.string(),client_id:e.z.string(),expires_at:e.z.string().optional(),idle_expires_at:e.z.string().optional(),last_exchanged_at:e.z.string().optional(),device:re,resource_servers:e.z.array(e.z.object({audience:e.z.string(),scopes:e.z.string()})),rotating:e.z.boolean()}),zt=e.z.object({created_at:e.z.string(),...me.shape}),gt=e.z.object({to:e.z.string(),message:e.z.string()}),ut=e.z.object({name:e.z.string(),options:e.z.object({})}),he=e.z.object({value:e.z.string(),description:e.z.string().optional()}),Se=e.z.object({token_dialect:e.z.enum(["access_token","access_token_authz"]).optional(),enforce_policies:e.z.boolean().optional(),allow_skipping_userinfo:e.z.boolean().optional(),skip_userinfo:e.z.boolean().optional(),persist_client_authorization:e.z.boolean().optional(),enable_introspection_endpoint:e.z.boolean().optional(),mtls:e.z.object({bound_access_tokens:e.z.boolean().optional()}).optional()}),be=e.z.object({name:e.z.string(),identifier:e.z.string(),scopes:e.z.array(he).optional(),signing_alg:e.z.string().optional(),signing_secret:e.z.string().optional(),token_lifetime:e.z.number().optional(),token_lifetime_for_web:e.z.number().optional(),skip_consent_for_verifiable_first_party_clients:e.z.boolean().optional(),allow_offline_access:e.z.boolean().optional(),verificationKey:e.z.string().optional(),options:Se.optional()}),Ee=e.z.object({id:e.z.string().optional(),...be.shape,created_at:e.z.string().optional(),updated_at:e.z.string().optional()}),mt=e.z.array(Ee),fe=e.z.object({role_id:e.z.string(),resource_server_identifier:e.z.string(),permission_name:e.z.string()}),Ae=e.z.object({...fe.shape,tenant_id:e.z.string(),created_at:e.z.string().optional()}),ht=e.z.array(Ae),Ie=e.z.object({role_id:e.z.string(),resource_server_identifier:e.z.string(),resource_server_name:e.z.string(),permission_name:e.z.string(),description:e.z.string().nullable().optional(),created_at:e.z.string().optional()}),St=e.z.array(Ie),Ce=e.z.object({user_id:e.z.string(),resource_server_identifier:e.z.string(),permission_name:e.z.string(),organization_id:e.z.string().optional()}),Oe=e.z.object({...Ce.shape,tenant_id:e.z.string(),created_at:e.z.string().optional()}),bt=e.z.array(Oe),Te=e.z.object({user_id:e.z.string(),resource_server_identifier:e.z.string(),resource_server_name:e.z.string(),permission_name:e.z.string(),description:e.z.string().nullable().optional(),created_at:e.z.string().optional(),organization_id:e.z.string().optional()}),Et=e.z.array(Te),ye=e.z.object({user_id:e.z.string(),role_id:e.z.string(),organization_id:e.z.string().optional()}),Ne=e.z.object({...ye.shape,tenant_id:e.z.string(),created_at:e.z.string().optional()}),ft=e.z.array(Ne),Re=e.z.object({name:e.z.string().min(1).max(50).openapi({description:"The name of the role. Cannot include '<' or '>'"}),description:e.z.string().max(255).optional().openapi({description:"The description of the role"})}),Le=e.z.object({id:e.z.string().openapi({description:"The unique identifier of the role"}),...Re.shape,created_at:e.z.string().optional(),updated_at:e.z.string().optional()}),At=e.z.array(Le),De=e.z.object({logo_url:e.z.string().optional().openapi({description:"URL of the organization's logo"}),colors:e.z.object({primary:e.z.string().optional().openapi({description:"Primary color in hex format (e.g., #FF0000)"}),page_background:e.z.string().optional().openapi({description:"Page background color in hex format (e.g., #FFFFFF)"})}).optional()}).optional(),we=e.z.object({connection_id:e.z.string().openapi({description:"ID of the connection"}),assign_membership_on_login:e.z.boolean().default(!1).openapi({description:"Whether to assign membership to the organization on login"}),show_as_button:e.z.boolean().default(!0).openapi({description:"Whether to show this connection as a button in the login screen"}),is_signup_enabled:e.z.boolean().default(!0).openapi({description:"Whether signup is enabled for this connection"})}),je=e.z.object({client_credentials:e.z.object({enforce:e.z.boolean().default(!1).openapi({description:"Whether to enforce token quota limits"}),per_day:e.z.number().min(0).default(0).openapi({description:"Maximum tokens per day (0 = unlimited)"}),per_hour:e.z.number().min(0).default(0).openapi({description:"Maximum tokens per hour (0 = unlimited)"})}).optional()}).optional(),ke=e.z.object({id:e.z.string().optional(),name:e.z.string().min(1).openapi({description:"The name of the organization"}),display_name:e.z.string().optional().openapi({description:"The display name of the organization"}),branding:De,metadata:e.z.record(e.z.any()).default({}).optional().openapi({description:"Custom metadata for the organization"}),enabled_connections:e.z.array(we).default([]).optional().openapi({description:"List of enabled connections for the organization"}),token_quota:je}),It=e.z.object({...ke.shape,...n.shape,id:e.z.string()}),ve=e.z.object({user_id:e.z.string().openapi({description:"ID of the user"}),organization_id:e.z.string().openapi({description:"ID of the organization"})}),Ct=e.z.object({...ve.shape,...n.shape,id:e.z.string()}),Ot=e.z.object({idle_session_lifetime:e.z.number().optional(),session_lifetime:e.z.number().optional(),session_cookie:e.z.object({mode:e.z.enum(["persistent","non-persistent"]).optional()}).optional(),enable_client_connections:e.z.boolean().optional(),default_redirection_uri:e.z.string().optional(),enabled_locales:e.z.array(e.z.string()).optional(),default_directory:e.z.string().optional(),error_page:e.z.object({html:e.z.string().optional(),show_log_link:e.z.boolean().optional(),url:e.z.string().optional()}).optional(),flags:e.z.object({allow_legacy_delegation_grant_types:e.z.boolean().optional(),allow_legacy_ro_grant_types:e.z.boolean().optional(),allow_legacy_tokeninfo_endpoint:e.z.boolean().optional(),disable_clickjack_protection_headers:e.z.boolean().optional(),enable_apis_section:e.z.boolean().optional(),enable_client_connections:e.z.boolean().optional(),enable_custom_domain_in_emails:e.z.boolean().optional(),enable_dynamic_client_registration:e.z.boolean().optional(),enable_idtoken_api2:e.z.boolean().optional(),enable_legacy_logs_search_v2:e.z.boolean().optional(),enable_legacy_profile:e.z.boolean().optional(),enable_pipeline2:e.z.boolean().optional(),enable_public_signup_user_exists_error:e.z.boolean().optional(),use_scope_descriptions_for_consent:e.z.boolean().optional(),disable_management_api_sms_obfuscation:e.z.boolean().optional(),enable_adfs_waad_email_verification:e.z.boolean().optional(),revoke_refresh_token_grant:e.z.boolean().optional(),dashboard_log_streams_next:e.z.boolean().optional(),dashboard_insights_view:e.z.boolean().optional(),disable_fields_map_fix:e.z.boolean().optional(),mfa_show_factor_list_on_enrollment:e.z.boolean().optional()}).optional(),friendly_name:e.z.string().optional(),picture_url:e.z.string().optional(),support_email:e.z.string().optional(),support_url:e.z.string().optional(),sandbox_version:e.z.string().optional(),sandbox_versions_available:e.z.array(e.z.string()).optional(),change_password:e.z.object({enabled:e.z.boolean(),html:e.z.string()}).optional(),guardian_mfa_page:e.z.object({enabled:e.z.boolean(),html:e.z.string()}).optional(),default_audience:e.z.string().optional(),default_organization:e.z.string().optional(),sessions:e.z.object({oidc_logout_prompt_enabled:e.z.boolean().optional()}).optional()});function Tt(t){const[a,s]=t.split("|");if(!a||!s)throw new Error(`Invalid user_id: ${t}`);return{connection:a,id:s}}exports.Auth0Client=ie;exports.AuthorizationResponseMode=z;exports.AuthorizationResponseType=d;exports.CodeChallengeMethod=g;exports.ComponentCategory=p;exports.ComponentType=_;exports.GrantType=ce;exports.LogTypes=ne;exports.NodeType=R;exports.auth0FlowInsertSchema=Ge;exports.auth0FlowSchema=U;exports.auth0UserResponseSchema=Fe;exports.authParamsSchema=F;exports.baseUserSchema=c;exports.bordersSchema=_e;exports.brandingSchema=Ke;exports.buttonComponentSchema=C;exports.clientGrantInsertSchema=f;exports.clientGrantListSchema=xe;exports.clientGrantSchema=A;exports.clientInsertSchema=b;exports.clientSchema=E;exports.codeInsertSchema=W;exports.codeSchema=We;exports.codeTypeSchema=K;exports.colorsSchema=pe;exports.componentSchema=N;exports.connectionInsertSchema=M;exports.connectionOptionsSchema=P;exports.connectionSchema=H;exports.coordinatesSchema=i;exports.customDomainInsertSchema=B;exports.customDomainSchema=V;exports.customDomainWithTenantIdSchema=Be;exports.emailProviderSchema=dt;exports.endingSchema=v;exports.fieldComponentSchema=T;exports.flowNodeSchema=D;exports.fontDetailsSchema=o;exports.fontsSchema=de;exports.formControlSchema=Xe;exports.formInsertSchema=Y;exports.formNodeComponentDefinition=q;exports.formSchema=Ve;exports.genericComponentSchema=y;exports.genericNodeSchema=w;exports.hookInsertSchema=Qe;exports.hookSchema=$e;exports.identitySchema=m;exports.inviteInsertSchema=ee;exports.inviteSchema=et;exports.inviteeSchema=$;exports.inviterSchema=Z;exports.jwksKeySchema=tt;exports.jwksSchema=te;exports.legalComponentSchema=O;exports.logInsertSchema=ae;exports.logSchema=at;exports.loginSessionInsertSchema=oe;exports.loginSessionSchema=nt;exports.nodeSchema=j;exports.openIDConfigurationSchema=ot;exports.organizationBrandingSchema=De;exports.organizationEnabledConnectionSchema=we;exports.organizationInsertSchema=ke;exports.organizationSchema=It;exports.organizationTokenQuotaSchema=je;exports.pageBackgroundSchema=ze;exports.parseUserId=Tt;exports.passwordInsertSchema=se;exports.passwordSchema=st;exports.profileDataSchema=u;exports.promptSettingSchema=pt;exports.refreshTokenInsertSchema=me;exports.refreshTokenSchema=zt;exports.resourceServerInsertSchema=be;exports.resourceServerListSchema=mt;exports.resourceServerOptionsSchema=Se;exports.resourceServerSchema=Ee;exports.resourceServerScopeSchema=he;exports.richTextComponentSchema=I;exports.roleInsertSchema=Re;exports.roleListSchema=At;exports.rolePermissionInsertSchema=fe;exports.rolePermissionListSchema=ht;exports.rolePermissionSchema=Ae;exports.rolePermissionWithDetailsListSchema=St;exports.rolePermissionWithDetailsSchema=Ie;exports.roleSchema=Le;exports.sessionInsertSchema=le;exports.sessionSchema=rt;exports.signingKeySchema=lt;exports.smsProviderSchema=ut;exports.smsSendParamsSchema=gt;exports.startSchema=k;exports.stepNodeSchema=L;exports.tenantInsertSchema=x;exports.tenantSchema=G;exports.tenantSettingsSchema=Ot;exports.themeInsertSchema=ue;exports.themeSchema=_t;exports.tokenResponseSchema=ct;exports.totalsSchema=Ue;exports.userInsertSchema=h;exports.userOrganizationInsertSchema=ve;exports.userOrganizationSchema=Ct;exports.userPermissionInsertSchema=Ce;exports.userPermissionListSchema=bt;exports.userPermissionSchema=Oe;exports.userPermissionWithDetailsListSchema=Et;exports.userPermissionWithDetailsSchema=Te;exports.userResponseSchema=Pe;exports.userRoleInsertSchema=ye;exports.userRoleListSchema=ft;exports.userRoleSchema=Ne;exports.userSchema=S;exports.verificationMethodsSchema=X;exports.widgetSchema=ge;
|
|
@@ -11797,9 +11797,12 @@ export type Form = z.infer<typeof formSchema>;
|
|
|
11797
11797
|
export declare const hookInsertSchema: z.ZodUnion<[
|
|
11798
11798
|
z.ZodObject<{
|
|
11799
11799
|
trigger_id: z.ZodEnum<[
|
|
11800
|
-
"pre-user-
|
|
11800
|
+
"pre-user-registration",
|
|
11801
11801
|
"post-user-registration",
|
|
11802
|
-
"post-user-login"
|
|
11802
|
+
"post-user-login",
|
|
11803
|
+
"validate-registration-username",
|
|
11804
|
+
"pre-user-deletion",
|
|
11805
|
+
"post-user-deletion"
|
|
11803
11806
|
]>;
|
|
11804
11807
|
url: z.ZodString;
|
|
11805
11808
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -11809,13 +11812,13 @@ export declare const hookInsertSchema: z.ZodUnion<[
|
|
|
11809
11812
|
}, "strip", z.ZodTypeAny, {
|
|
11810
11813
|
url: string;
|
|
11811
11814
|
enabled: boolean;
|
|
11812
|
-
trigger_id: "pre-user-
|
|
11815
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
11813
11816
|
synchronous: boolean;
|
|
11814
11817
|
priority?: number | undefined;
|
|
11815
11818
|
hook_id?: string | undefined;
|
|
11816
11819
|
}, {
|
|
11817
11820
|
url: string;
|
|
11818
|
-
trigger_id: "pre-user-
|
|
11821
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
11819
11822
|
enabled?: boolean | undefined;
|
|
11820
11823
|
synchronous?: boolean | undefined;
|
|
11821
11824
|
priority?: number | undefined;
|
|
@@ -11823,9 +11826,12 @@ export declare const hookInsertSchema: z.ZodUnion<[
|
|
|
11823
11826
|
}>,
|
|
11824
11827
|
z.ZodObject<{
|
|
11825
11828
|
trigger_id: z.ZodEnum<[
|
|
11826
|
-
"pre-user-
|
|
11829
|
+
"pre-user-registration",
|
|
11827
11830
|
"post-user-registration",
|
|
11828
|
-
"post-user-login"
|
|
11831
|
+
"post-user-login",
|
|
11832
|
+
"validate-registration-username",
|
|
11833
|
+
"pre-user-deletion",
|
|
11834
|
+
"post-user-deletion"
|
|
11829
11835
|
]>;
|
|
11830
11836
|
form_id: z.ZodString;
|
|
11831
11837
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -11834,13 +11840,13 @@ export declare const hookInsertSchema: z.ZodUnion<[
|
|
|
11834
11840
|
hook_id: z.ZodOptional<z.ZodString>;
|
|
11835
11841
|
}, "strip", z.ZodTypeAny, {
|
|
11836
11842
|
enabled: boolean;
|
|
11837
|
-
trigger_id: "pre-user-
|
|
11843
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
11838
11844
|
synchronous: boolean;
|
|
11839
11845
|
form_id: string;
|
|
11840
11846
|
priority?: number | undefined;
|
|
11841
11847
|
hook_id?: string | undefined;
|
|
11842
11848
|
}, {
|
|
11843
|
-
trigger_id: "pre-user-
|
|
11849
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
11844
11850
|
form_id: string;
|
|
11845
11851
|
enabled?: boolean | undefined;
|
|
11846
11852
|
synchronous?: boolean | undefined;
|
|
@@ -11856,9 +11862,12 @@ export declare const hookSchema: z.ZodUnion<[
|
|
|
11856
11862
|
created_at: z.ZodString;
|
|
11857
11863
|
updated_at: z.ZodString;
|
|
11858
11864
|
trigger_id: z.ZodEnum<[
|
|
11859
|
-
"pre-user-
|
|
11865
|
+
"pre-user-registration",
|
|
11860
11866
|
"post-user-registration",
|
|
11861
|
-
"post-user-login"
|
|
11867
|
+
"post-user-login",
|
|
11868
|
+
"validate-registration-username",
|
|
11869
|
+
"pre-user-deletion",
|
|
11870
|
+
"post-user-deletion"
|
|
11862
11871
|
]>;
|
|
11863
11872
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
11864
11873
|
synchronous: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -11868,7 +11877,7 @@ export declare const hookSchema: z.ZodUnion<[
|
|
|
11868
11877
|
updated_at: string;
|
|
11869
11878
|
url: string;
|
|
11870
11879
|
enabled: boolean;
|
|
11871
|
-
trigger_id: "pre-user-
|
|
11880
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
11872
11881
|
synchronous: boolean;
|
|
11873
11882
|
hook_id: string;
|
|
11874
11883
|
priority?: number | undefined;
|
|
@@ -11876,7 +11885,7 @@ export declare const hookSchema: z.ZodUnion<[
|
|
|
11876
11885
|
created_at: string;
|
|
11877
11886
|
updated_at: string;
|
|
11878
11887
|
url: string;
|
|
11879
|
-
trigger_id: "pre-user-
|
|
11888
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
11880
11889
|
hook_id: string;
|
|
11881
11890
|
enabled?: boolean | undefined;
|
|
11882
11891
|
synchronous?: boolean | undefined;
|
|
@@ -11888,9 +11897,12 @@ export declare const hookSchema: z.ZodUnion<[
|
|
|
11888
11897
|
created_at: z.ZodString;
|
|
11889
11898
|
updated_at: z.ZodString;
|
|
11890
11899
|
trigger_id: z.ZodEnum<[
|
|
11891
|
-
"pre-user-
|
|
11900
|
+
"pre-user-registration",
|
|
11892
11901
|
"post-user-registration",
|
|
11893
|
-
"post-user-login"
|
|
11902
|
+
"post-user-login",
|
|
11903
|
+
"validate-registration-username",
|
|
11904
|
+
"pre-user-deletion",
|
|
11905
|
+
"post-user-deletion"
|
|
11894
11906
|
]>;
|
|
11895
11907
|
enabled: z.ZodDefault<z.ZodBoolean>;
|
|
11896
11908
|
synchronous: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -11899,7 +11911,7 @@ export declare const hookSchema: z.ZodUnion<[
|
|
|
11899
11911
|
created_at: string;
|
|
11900
11912
|
updated_at: string;
|
|
11901
11913
|
enabled: boolean;
|
|
11902
|
-
trigger_id: "pre-user-
|
|
11914
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
11903
11915
|
synchronous: boolean;
|
|
11904
11916
|
hook_id: string;
|
|
11905
11917
|
form_id: string;
|
|
@@ -11907,7 +11919,7 @@ export declare const hookSchema: z.ZodUnion<[
|
|
|
11907
11919
|
}, {
|
|
11908
11920
|
created_at: string;
|
|
11909
11921
|
updated_at: string;
|
|
11910
|
-
trigger_id: "pre-user-
|
|
11922
|
+
trigger_id: "pre-user-registration" | "post-user-registration" | "post-user-login" | "validate-registration-username" | "pre-user-deletion" | "post-user-deletion";
|
|
11911
11923
|
hook_id: string;
|
|
11912
11924
|
form_id: string;
|
|
11913
11925
|
enabled?: boolean | undefined;
|
|
@@ -12776,12 +12788,10 @@ export declare const Auth0Client: z.ZodObject<{
|
|
|
12776
12788
|
node?: string | undefined;
|
|
12777
12789
|
} | undefined;
|
|
12778
12790
|
}>;
|
|
12779
|
-
export declare const
|
|
12791
|
+
export declare const logInsertSchema: z.ZodObject<{
|
|
12780
12792
|
type: z.ZodEffects<z.ZodString, "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "si" | "signup_pwd_leak" | "slo" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum", string>;
|
|
12781
12793
|
date: z.ZodString;
|
|
12782
12794
|
description: z.ZodOptional<z.ZodString>;
|
|
12783
|
-
log_id: z.ZodOptional<z.ZodString>;
|
|
12784
|
-
_id: z.ZodOptional<z.ZodString>;
|
|
12785
12795
|
ip: z.ZodString;
|
|
12786
12796
|
user_agent: z.ZodString;
|
|
12787
12797
|
details: z.ZodOptional<z.ZodAny>;
|
|
@@ -12820,6 +12830,7 @@ export declare const logSchema: z.ZodObject<{
|
|
|
12820
12830
|
node?: string | undefined;
|
|
12821
12831
|
} | undefined;
|
|
12822
12832
|
}>>;
|
|
12833
|
+
log_id: z.ZodOptional<z.ZodString>;
|
|
12823
12834
|
}, "strip", z.ZodTypeAny, {
|
|
12824
12835
|
type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "si" | "signup_pwd_leak" | "slo" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
12825
12836
|
date: string;
|
|
@@ -12834,8 +12845,6 @@ export declare const logSchema: z.ZodObject<{
|
|
|
12834
12845
|
scope?: string[] | undefined;
|
|
12835
12846
|
strategy?: string | undefined;
|
|
12836
12847
|
connection_id?: string | undefined;
|
|
12837
|
-
log_id?: string | undefined;
|
|
12838
|
-
_id?: string | undefined;
|
|
12839
12848
|
details?: any;
|
|
12840
12849
|
user_name?: string | undefined;
|
|
12841
12850
|
client_name?: string | undefined;
|
|
@@ -12848,6 +12857,7 @@ export declare const logSchema: z.ZodObject<{
|
|
|
12848
12857
|
node?: string | undefined;
|
|
12849
12858
|
} | undefined;
|
|
12850
12859
|
} | undefined;
|
|
12860
|
+
log_id?: string | undefined;
|
|
12851
12861
|
}, {
|
|
12852
12862
|
type: string;
|
|
12853
12863
|
date: string;
|
|
@@ -12862,8 +12872,106 @@ export declare const logSchema: z.ZodObject<{
|
|
|
12862
12872
|
scope?: string[] | undefined;
|
|
12863
12873
|
strategy?: string | undefined;
|
|
12864
12874
|
connection_id?: string | undefined;
|
|
12875
|
+
details?: any;
|
|
12876
|
+
user_name?: string | undefined;
|
|
12877
|
+
client_name?: string | undefined;
|
|
12878
|
+
strategy_type?: string | undefined;
|
|
12879
|
+
hostname?: string | undefined;
|
|
12880
|
+
auth0_client?: {
|
|
12881
|
+
name: string;
|
|
12882
|
+
version: string;
|
|
12883
|
+
env?: {
|
|
12884
|
+
node?: string | undefined;
|
|
12885
|
+
} | undefined;
|
|
12886
|
+
} | undefined;
|
|
12865
12887
|
log_id?: string | undefined;
|
|
12866
|
-
|
|
12888
|
+
}>;
|
|
12889
|
+
export type LogInsert = z.infer<typeof logInsertSchema>;
|
|
12890
|
+
export declare const logSchema: z.ZodObject<{
|
|
12891
|
+
log_id: z.ZodString;
|
|
12892
|
+
type: z.ZodEffects<z.ZodString, "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "si" | "signup_pwd_leak" | "slo" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum", string>;
|
|
12893
|
+
date: z.ZodString;
|
|
12894
|
+
description: z.ZodOptional<z.ZodString>;
|
|
12895
|
+
ip: z.ZodString;
|
|
12896
|
+
user_agent: z.ZodString;
|
|
12897
|
+
details: z.ZodOptional<z.ZodAny>;
|
|
12898
|
+
isMobile: z.ZodBoolean;
|
|
12899
|
+
user_id: z.ZodOptional<z.ZodString>;
|
|
12900
|
+
user_name: z.ZodOptional<z.ZodString>;
|
|
12901
|
+
connection: z.ZodOptional<z.ZodString>;
|
|
12902
|
+
connection_id: z.ZodOptional<z.ZodString>;
|
|
12903
|
+
client_id: z.ZodOptional<z.ZodString>;
|
|
12904
|
+
client_name: z.ZodOptional<z.ZodString>;
|
|
12905
|
+
audience: z.ZodOptional<z.ZodString>;
|
|
12906
|
+
scope: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12907
|
+
strategy: z.ZodOptional<z.ZodString>;
|
|
12908
|
+
strategy_type: z.ZodOptional<z.ZodString>;
|
|
12909
|
+
hostname: z.ZodOptional<z.ZodString>;
|
|
12910
|
+
auth0_client: z.ZodOptional<z.ZodObject<{
|
|
12911
|
+
name: z.ZodString;
|
|
12912
|
+
version: z.ZodString;
|
|
12913
|
+
env: z.ZodOptional<z.ZodObject<{
|
|
12914
|
+
node: z.ZodOptional<z.ZodString>;
|
|
12915
|
+
}, "strip", z.ZodTypeAny, {
|
|
12916
|
+
node?: string | undefined;
|
|
12917
|
+
}, {
|
|
12918
|
+
node?: string | undefined;
|
|
12919
|
+
}>>;
|
|
12920
|
+
}, "strip", z.ZodTypeAny, {
|
|
12921
|
+
name: string;
|
|
12922
|
+
version: string;
|
|
12923
|
+
env?: {
|
|
12924
|
+
node?: string | undefined;
|
|
12925
|
+
} | undefined;
|
|
12926
|
+
}, {
|
|
12927
|
+
name: string;
|
|
12928
|
+
version: string;
|
|
12929
|
+
env?: {
|
|
12930
|
+
node?: string | undefined;
|
|
12931
|
+
} | undefined;
|
|
12932
|
+
}>>;
|
|
12933
|
+
}, "strip", z.ZodTypeAny, {
|
|
12934
|
+
type: "acls_summary" | "actions_execution_failed" | "api_limit" | "api_limit_warning" | "appi" | "ciba_exchange_failed" | "ciba_exchange_succeeded" | "ciba_start_failed" | "ciba_start_succeeded" | "cls" | "cs" | "depnote" | "f" | "fc" | "fce" | "fco" | "fcoa" | "fcp" | "fcph" | "fcpn" | "fcpr" | "fcpro" | "fcu" | "fd" | "fdeac" | "fdeaz" | "fdecc" | "fdu" | "feacft" | "feccft" | "fecte" | "fede" | "federated_logout_failed" | "fens" | "feoobft" | "feotpft" | "fepft" | "fepotpft" | "fercft" | "ferrt" | "fertft" | "fh" | "fi" | "flo" | "flows_execution_completed" | "flows_execution_failed" | "fn" | "forms_submission_failed" | "forms_submission_succeeded" | "fp" | "fpar" | "fpurh" | "fs" | "fsa" | "fu" | "fui" | "fv" | "fvr" | "gd_auth_email_verification" | "gd_auth_fail_email_verification" | "gd_auth_failed" | "gd_auth_rejected" | "gd_auth_succeed" | "gd_enrollment_complete" | "gd_otp_rate_limit_exceed" | "gd_recovery_failed" | "gd_recovery_rate_limit_exceed" | "gd_recovery_succeed" | "gd_send_email" | "gd_send_email_verification" | "gd_send_email_verification_failure" | "gd_send_pn" | "gd_send_pn_failure" | "gd_send_sms" | "gd_send_sms_failure" | "gd_send_voice" | "gd_send_voice_failure" | "gd_start_auth" | "gd_start_enroll" | "gd_start_enroll_failed" | "gd_tenant_update" | "gd_unenroll" | "gd_update_device_account" | "gd_webauthn_challenge_failed" | "gd_webauthn_enrollment_failed" | "kms_key_management_failure" | "kms_key_management_success" | "kms_key_state_changed" | "limit_delegation" | "limit_mu" | "limit_sul" | "limit_wc" | "mfar" | "mgmt_api_read" | "my_account_authentication_method_failed" | "my_account_authentication_method_succeeded" | "oidc_backchannel_logout_failed" | "oidc_backchannel_logout_succeeded" | "organization_member_added" | "passkey_challenge_failed" | "passkey_challenge_started" | "pla" | "pwd_leak" | "reset_pwd_leak" | "resource_cleanup" | "rich_consents_access_error" | "s" | "sapi" | "sce" | "scoa" | "scp" | "scpn" | "scpr" | "scu" | "scv" | "sd" | "sdu" | "seacft" | "seccft" | "secte" | "sede" | "sens" | "seoobft" | "seotpft" | "sepft" | "sepkoobft" | "sepkotpft" | "sepkrcft" | "sercft" | "sertft" | "si" | "signup_pwd_leak" | "slo" | "srrt" | "ss" | "ss_sso_failure" | "ss_sso_info" | "ss_sso_success" | "ssa" | "sscim" | "sui" | "sv" | "svr" | "too_many_records" | "ublkdu" | "universal_logout_failed" | "universal_logout_succeeded" | "w" | "wn" | "wum";
|
|
12935
|
+
date: string;
|
|
12936
|
+
ip: string;
|
|
12937
|
+
user_agent: string;
|
|
12938
|
+
isMobile: boolean;
|
|
12939
|
+
log_id: string;
|
|
12940
|
+
description?: string | undefined;
|
|
12941
|
+
connection?: string | undefined;
|
|
12942
|
+
user_id?: string | undefined;
|
|
12943
|
+
client_id?: string | undefined;
|
|
12944
|
+
audience?: string | undefined;
|
|
12945
|
+
scope?: string[] | undefined;
|
|
12946
|
+
strategy?: string | undefined;
|
|
12947
|
+
connection_id?: string | undefined;
|
|
12948
|
+
details?: any;
|
|
12949
|
+
user_name?: string | undefined;
|
|
12950
|
+
client_name?: string | undefined;
|
|
12951
|
+
strategy_type?: string | undefined;
|
|
12952
|
+
hostname?: string | undefined;
|
|
12953
|
+
auth0_client?: {
|
|
12954
|
+
name: string;
|
|
12955
|
+
version: string;
|
|
12956
|
+
env?: {
|
|
12957
|
+
node?: string | undefined;
|
|
12958
|
+
} | undefined;
|
|
12959
|
+
} | undefined;
|
|
12960
|
+
}, {
|
|
12961
|
+
type: string;
|
|
12962
|
+
date: string;
|
|
12963
|
+
ip: string;
|
|
12964
|
+
user_agent: string;
|
|
12965
|
+
isMobile: boolean;
|
|
12966
|
+
log_id: string;
|
|
12967
|
+
description?: string | undefined;
|
|
12968
|
+
connection?: string | undefined;
|
|
12969
|
+
user_id?: string | undefined;
|
|
12970
|
+
client_id?: string | undefined;
|
|
12971
|
+
audience?: string | undefined;
|
|
12972
|
+
scope?: string[] | undefined;
|
|
12973
|
+
strategy?: string | undefined;
|
|
12974
|
+
connection_id?: string | undefined;
|
|
12867
12975
|
details?: any;
|
|
12868
12976
|
user_name?: string | undefined;
|
|
12869
12977
|
client_name?: string | undefined;
|
|
@@ -12878,10 +12986,6 @@ export declare const logSchema: z.ZodObject<{
|
|
|
12878
12986
|
} | undefined;
|
|
12879
12987
|
}>;
|
|
12880
12988
|
export type Log = z.infer<typeof logSchema>;
|
|
12881
|
-
export type LogsResponse = Log & {
|
|
12882
|
-
log_id: string;
|
|
12883
|
-
_id: string;
|
|
12884
|
-
};
|
|
12885
12989
|
export declare const passwordInsertSchema: z.ZodObject<{
|
|
12886
12990
|
user_id: z.ZodString;
|
|
12887
12991
|
password: z.ZodString;
|
|
@@ -16941,12 +17045,12 @@ export interface UserDataAdapter {
|
|
|
16941
17045
|
unlink(tenantId: string, id: string, provider: string, linked_user_id: string): Promise<boolean>;
|
|
16942
17046
|
}
|
|
16943
17047
|
export interface ListLogsResponse extends Totals {
|
|
16944
|
-
logs:
|
|
17048
|
+
logs: Log[];
|
|
16945
17049
|
}
|
|
16946
17050
|
export interface LogsDataAdapter {
|
|
16947
|
-
create(tenantId: string, params:
|
|
17051
|
+
create(tenantId: string, params: LogInsert): Promise<Log>;
|
|
16948
17052
|
list(tenantId: string, params?: ListParams): Promise<ListLogsResponse>;
|
|
16949
|
-
get(tenantId: string, logId: string): Promise<
|
|
17053
|
+
get(tenantId: string, logId: string): Promise<Log | null>;
|
|
16950
17054
|
}
|
|
16951
17055
|
export interface ListConnectionsResponse extends Totals {
|
|
16952
17056
|
connections: Connection[];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { z as e } from "@hono/zod-openapi";
|
|
2
|
-
const
|
|
2
|
+
const Be = e.object({
|
|
3
3
|
start: e.number(),
|
|
4
4
|
limit: e.number(),
|
|
5
5
|
length: e.number()
|
|
@@ -56,7 +56,7 @@ const ze = e.object({
|
|
|
56
56
|
email: e.string().optional(),
|
|
57
57
|
login_count: e.number().default(0),
|
|
58
58
|
identities: e.array(f).optional()
|
|
59
|
-
}),
|
|
59
|
+
}), We = A, Xe = _.extend({
|
|
60
60
|
login_count: e.number(),
|
|
61
61
|
multifactor: e.array(e.string()).optional(),
|
|
62
62
|
last_ip: e.string().optional(),
|
|
@@ -64,7 +64,7 @@ const ze = e.object({
|
|
|
64
64
|
user_id: e.string()
|
|
65
65
|
}).catchall(e.any()), I = "useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict";
|
|
66
66
|
let C = (t = 21) => {
|
|
67
|
-
let i = "", s = crypto.getRandomValues(new Uint8Array(t));
|
|
67
|
+
let i = "", s = crypto.getRandomValues(new Uint8Array(t |= 0));
|
|
68
68
|
for (; t--; )
|
|
69
69
|
i += I[s[t] & 63];
|
|
70
70
|
return i;
|
|
@@ -272,7 +272,7 @@ const O = e.object({
|
|
|
272
272
|
...N.shape,
|
|
273
273
|
created_at: e.string().optional(),
|
|
274
274
|
updated_at: e.string().optional()
|
|
275
|
-
}),
|
|
275
|
+
}), Ve = e.array(y), a = e.object({
|
|
276
276
|
x: e.number(),
|
|
277
277
|
y: e.number()
|
|
278
278
|
});
|
|
@@ -447,7 +447,7 @@ const F = e.object({
|
|
|
447
447
|
sdkSrc: e.string().optional(),
|
|
448
448
|
sdk_src: e.string().optional()
|
|
449
449
|
}).passthrough()
|
|
450
|
-
}).passthrough(),
|
|
450
|
+
}).passthrough(), qe = G.omit({
|
|
451
451
|
id: !0,
|
|
452
452
|
created_at: !0,
|
|
453
453
|
updated_at: !0
|
|
@@ -471,7 +471,7 @@ const K = e.object({
|
|
|
471
471
|
ui_locales: e.string().optional(),
|
|
472
472
|
// The following fields are not available in Auth0
|
|
473
473
|
vendor_id: e.string().optional()
|
|
474
|
-
}),
|
|
474
|
+
}), Ye = e.object({
|
|
475
475
|
colors: e.object({
|
|
476
476
|
primary: e.string(),
|
|
477
477
|
page_background: e.object({
|
|
@@ -688,7 +688,7 @@ const q = e.enum([
|
|
|
688
688
|
expires_at: e.string(),
|
|
689
689
|
used_at: e.string().optional(),
|
|
690
690
|
user_id: e.string().optional()
|
|
691
|
-
}),
|
|
691
|
+
}), Qe = e.object({
|
|
692
692
|
...Y.shape,
|
|
693
693
|
created_at: e.string()
|
|
694
694
|
}), Q = e.object({
|
|
@@ -719,9 +719,9 @@ const q = e.enum([
|
|
|
719
719
|
methods: e.array(J)
|
|
720
720
|
}).optional(),
|
|
721
721
|
tls_policy: e.string().optional()
|
|
722
|
-
}),
|
|
722
|
+
}), Je = Z.extend({
|
|
723
723
|
tenant_id: e.string()
|
|
724
|
-
}),
|
|
724
|
+
}), Ze = e.object({
|
|
725
725
|
id: e.string(),
|
|
726
726
|
type: e.literal("submit"),
|
|
727
727
|
label: e.string(),
|
|
@@ -847,19 +847,25 @@ const q = e.enum([
|
|
|
847
847
|
style: e.object({ css: e.string().optional() }).optional()
|
|
848
848
|
}).openapi({
|
|
849
849
|
description: "Schema for flow-based forms (matches new JSON structure)"
|
|
850
|
-
}),
|
|
850
|
+
}), $e = e.object({
|
|
851
851
|
...n.shape,
|
|
852
852
|
...ee.shape,
|
|
853
853
|
id: e.string()
|
|
854
854
|
}), m = e.enum([
|
|
855
|
-
"pre-user-
|
|
855
|
+
"pre-user-registration",
|
|
856
856
|
"post-user-registration",
|
|
857
|
-
"post-user-login"
|
|
857
|
+
"post-user-login",
|
|
858
|
+
"validate-registration-username",
|
|
859
|
+
"pre-user-deletion",
|
|
860
|
+
"post-user-deletion"
|
|
858
861
|
// Potentially other triggers specific to webhooks in the future
|
|
859
862
|
]), h = e.enum([
|
|
860
|
-
"pre-user-
|
|
863
|
+
"pre-user-registration",
|
|
861
864
|
"post-user-registration",
|
|
862
|
-
"post-user-login"
|
|
865
|
+
"post-user-login",
|
|
866
|
+
"validate-registration-username",
|
|
867
|
+
"pre-user-deletion",
|
|
868
|
+
"post-user-deletion"
|
|
863
869
|
]), l = {
|
|
864
870
|
enabled: e.boolean().default(!1),
|
|
865
871
|
synchronous: e.boolean().default(!1),
|
|
@@ -873,7 +879,7 @@ const q = e.enum([
|
|
|
873
879
|
...l,
|
|
874
880
|
trigger_id: h,
|
|
875
881
|
form_id: e.string()
|
|
876
|
-
}),
|
|
882
|
+
}), et = e.union([
|
|
877
883
|
te,
|
|
878
884
|
oe
|
|
879
885
|
]), ne = e.object({
|
|
@@ -888,7 +894,7 @@ const q = e.enum([
|
|
|
888
894
|
...n.shape,
|
|
889
895
|
hook_id: e.string(),
|
|
890
896
|
form_id: e.string()
|
|
891
|
-
}),
|
|
897
|
+
}), tt = e.union([ne, ie]), ae = e.object({
|
|
892
898
|
name: e.string().optional()
|
|
893
899
|
}), se = e.object({
|
|
894
900
|
email: e.string().optional()
|
|
@@ -904,7 +910,7 @@ const q = e.enum([
|
|
|
904
910
|
ttl_sec: e.number().int().max(2592e3).default(604800).optional(),
|
|
905
911
|
roles: e.array(e.string()).default([]).optional(),
|
|
906
912
|
send_invitation_email: e.boolean().default(!0).optional()
|
|
907
|
-
}),
|
|
913
|
+
}), ot = e.object({
|
|
908
914
|
id: e.string(),
|
|
909
915
|
organization_id: e.string().max(50),
|
|
910
916
|
created_at: e.string().datetime(),
|
|
@@ -929,9 +935,9 @@ const q = e.enum([
|
|
|
929
935
|
x5t: e.string().optional(),
|
|
930
936
|
x5c: e.array(e.string()).optional(),
|
|
931
937
|
use: e.enum(["sig", "enc"]).optional()
|
|
932
|
-
}), ot = e.object({
|
|
933
|
-
keys: e.array(le)
|
|
934
938
|
}), nt = e.object({
|
|
939
|
+
keys: e.array(le)
|
|
940
|
+
}), it = e.object({
|
|
935
941
|
issuer: e.string(),
|
|
936
942
|
authorization_endpoint: e.string(),
|
|
937
943
|
token_endpoint: e.string(),
|
|
@@ -965,7 +971,7 @@ const q = e.enum([
|
|
|
965
971
|
login_completed: e.boolean().optional().default(!1)
|
|
966
972
|
}).openapi({
|
|
967
973
|
description: "This represents a login sesion"
|
|
968
|
-
}),
|
|
974
|
+
}), at = e.object({
|
|
969
975
|
..._e.shape,
|
|
970
976
|
id: e.string().openapi({
|
|
971
977
|
description: "This is is used as the state in the universal login"
|
|
@@ -1148,12 +1154,10 @@ const q = e.enum([
|
|
|
1148
1154
|
env: e.object({
|
|
1149
1155
|
node: e.string().optional()
|
|
1150
1156
|
}).optional()
|
|
1151
|
-
}),
|
|
1157
|
+
}), ge = e.object({
|
|
1152
1158
|
type: pe,
|
|
1153
1159
|
date: e.string(),
|
|
1154
1160
|
description: e.string().optional(),
|
|
1155
|
-
log_id: e.string().optional(),
|
|
1156
|
-
_id: e.string().optional(),
|
|
1157
1161
|
ip: e.string(),
|
|
1158
1162
|
user_agent: e.string(),
|
|
1159
1163
|
details: e.any().optional(),
|
|
@@ -1170,13 +1174,17 @@ const q = e.enum([
|
|
|
1170
1174
|
strategy: e.string().optional(),
|
|
1171
1175
|
strategy_type: e.string().optional(),
|
|
1172
1176
|
hostname: e.string().optional(),
|
|
1173
|
-
auth0_client: de.optional()
|
|
1174
|
-
|
|
1177
|
+
auth0_client: de.optional(),
|
|
1178
|
+
log_id: e.string().optional()
|
|
1179
|
+
}), st = e.object({
|
|
1180
|
+
...ge.shape,
|
|
1181
|
+
log_id: e.string()
|
|
1182
|
+
}), ue = e.object({
|
|
1175
1183
|
user_id: e.string(),
|
|
1176
1184
|
password: e.string(),
|
|
1177
1185
|
algorithm: e.enum(["bcrypt", "argon2id"]).default("argon2id")
|
|
1178
|
-
}),
|
|
1179
|
-
...
|
|
1186
|
+
}), rt = e.object({
|
|
1187
|
+
...ue.shape,
|
|
1180
1188
|
created_at: e.string(),
|
|
1181
1189
|
updated_at: e.string()
|
|
1182
1190
|
}), b = e.object({
|
|
@@ -1186,7 +1194,7 @@ const q = e.enum([
|
|
|
1186
1194
|
last_user_agent: e.string().describe("Last user agent of the device from which this user logged in"),
|
|
1187
1195
|
last_ip: e.string().describe("Last IP address from which this user logged in"),
|
|
1188
1196
|
last_asn: e.string().describe("Last autonomous system number from which this user logged in")
|
|
1189
|
-
}),
|
|
1197
|
+
}), me = e.object({
|
|
1190
1198
|
id: e.string(),
|
|
1191
1199
|
revoked_at: e.string().optional(),
|
|
1192
1200
|
used_at: e.string().optional(),
|
|
@@ -1198,13 +1206,13 @@ const q = e.enum([
|
|
|
1198
1206
|
"Metadata related to the device used in the session"
|
|
1199
1207
|
),
|
|
1200
1208
|
clients: e.array(e.string()).describe("List of client details for the session")
|
|
1201
|
-
}),
|
|
1209
|
+
}), lt = e.object({
|
|
1202
1210
|
created_at: e.string(),
|
|
1203
1211
|
updated_at: e.string(),
|
|
1204
1212
|
authenticated_at: e.string(),
|
|
1205
1213
|
last_interaction_at: e.string(),
|
|
1206
|
-
...
|
|
1207
|
-
}),
|
|
1214
|
+
...me.shape
|
|
1215
|
+
}), _t = e.object({
|
|
1208
1216
|
kid: e.string().openapi({ description: "The key id of the signing key" }),
|
|
1209
1217
|
cert: e.string().openapi({ description: "The public certificate of the signing key" }),
|
|
1210
1218
|
fingerprint: e.string().openapi({ description: "The cert fingerprint" }),
|
|
@@ -1230,8 +1238,8 @@ const q = e.enum([
|
|
|
1230
1238
|
description: "The type of the signing key"
|
|
1231
1239
|
})
|
|
1232
1240
|
});
|
|
1233
|
-
var
|
|
1234
|
-
const
|
|
1241
|
+
var he = /* @__PURE__ */ ((t) => (t.RefreshToken = "refresh_token", t.AuthorizationCode = "authorization_code", t.ClientCredential = "client_credentials", t.Passwordless = "passwordless", t.Password = "password", t.OTP = "http://auth0.com/oauth/grant-type/passwordless/otp", t))(he || {});
|
|
1242
|
+
const ct = e.object({
|
|
1235
1243
|
access_token: e.string(),
|
|
1236
1244
|
id_token: e.string().optional(),
|
|
1237
1245
|
scope: e.string().optional(),
|
|
@@ -1244,7 +1252,7 @@ e.object({
|
|
|
1244
1252
|
code: e.string(),
|
|
1245
1253
|
state: e.string().optional()
|
|
1246
1254
|
});
|
|
1247
|
-
const
|
|
1255
|
+
const be = e.object({
|
|
1248
1256
|
button_border_radius: e.number(),
|
|
1249
1257
|
button_border_weight: e.number(),
|
|
1250
1258
|
buttons_style: e.enum(["pill", "rounded", "sharp"]),
|
|
@@ -1254,7 +1262,7 @@ const he = e.object({
|
|
|
1254
1262
|
show_widget_shadow: e.boolean(),
|
|
1255
1263
|
widget_border_weight: e.number(),
|
|
1256
1264
|
widget_corner_radius: e.number()
|
|
1257
|
-
}),
|
|
1265
|
+
}), Ee = e.object({
|
|
1258
1266
|
base_focus_color: e.string(),
|
|
1259
1267
|
base_hover_color: e.string(),
|
|
1260
1268
|
body_text: e.string(),
|
|
@@ -1277,7 +1285,7 @@ const he = e.object({
|
|
|
1277
1285
|
}), o = e.object({
|
|
1278
1286
|
bold: e.boolean(),
|
|
1279
1287
|
size: e.number()
|
|
1280
|
-
}),
|
|
1288
|
+
}), fe = e.object({
|
|
1281
1289
|
body_text: o,
|
|
1282
1290
|
buttons_text: o,
|
|
1283
1291
|
font_url: e.string(),
|
|
@@ -1287,31 +1295,31 @@ const he = e.object({
|
|
|
1287
1295
|
reference_text_size: e.number(),
|
|
1288
1296
|
subtitle: o,
|
|
1289
1297
|
title: o
|
|
1290
|
-
}),
|
|
1298
|
+
}), Se = e.object({
|
|
1291
1299
|
background_color: e.string(),
|
|
1292
1300
|
background_image_url: e.string(),
|
|
1293
1301
|
page_layout: e.enum(["center", "left", "right"])
|
|
1294
|
-
}),
|
|
1302
|
+
}), Ae = e.object({
|
|
1295
1303
|
header_text_alignment: e.enum(["center", "left", "right"]),
|
|
1296
1304
|
logo_height: e.number(),
|
|
1297
1305
|
logo_position: e.enum(["center", "left", "none", "right"]),
|
|
1298
1306
|
logo_url: e.string(),
|
|
1299
1307
|
social_buttons_layout: e.enum(["bottom", "top"])
|
|
1300
|
-
}),
|
|
1301
|
-
borders:
|
|
1302
|
-
colors:
|
|
1308
|
+
}), Ie = e.object({
|
|
1309
|
+
borders: be,
|
|
1310
|
+
colors: Ee,
|
|
1303
1311
|
displayName: e.string(),
|
|
1304
|
-
fonts:
|
|
1305
|
-
page_background:
|
|
1306
|
-
widget:
|
|
1307
|
-
}),
|
|
1312
|
+
fonts: fe,
|
|
1313
|
+
page_background: Se,
|
|
1314
|
+
widget: Ae
|
|
1315
|
+
}), pt = Ie.extend({
|
|
1308
1316
|
themeId: e.string()
|
|
1309
|
-
}),
|
|
1317
|
+
}), dt = e.object({
|
|
1310
1318
|
universal_login_experience: e.enum(["new", "classic"]).default("new"),
|
|
1311
1319
|
identifier_first: e.boolean().default(!0),
|
|
1312
1320
|
password_first: e.boolean().default(!1),
|
|
1313
1321
|
webauthn_platform_first_factor: e.boolean()
|
|
1314
|
-
}),
|
|
1322
|
+
}), gt = e.object({
|
|
1315
1323
|
name: e.string(),
|
|
1316
1324
|
enabled: e.boolean().optional().default(!0),
|
|
1317
1325
|
default_from_address: e.string().optional(),
|
|
@@ -1341,7 +1349,7 @@ const he = e.object({
|
|
|
1341
1349
|
})
|
|
1342
1350
|
]),
|
|
1343
1351
|
settings: e.object({}).optional()
|
|
1344
|
-
}),
|
|
1352
|
+
}), Ce = e.object({
|
|
1345
1353
|
// The actual refresh token value (primary key).
|
|
1346
1354
|
id: e.string(),
|
|
1347
1355
|
// Link to the session record
|
|
@@ -1362,21 +1370,21 @@ const he = e.object({
|
|
|
1362
1370
|
})
|
|
1363
1371
|
),
|
|
1364
1372
|
rotating: e.boolean()
|
|
1365
|
-
}),
|
|
1373
|
+
}), ut = e.object({
|
|
1366
1374
|
// When the refresh token record was created.
|
|
1367
1375
|
created_at: e.string(),
|
|
1368
1376
|
// Spread in the rest of the refresh token properties.
|
|
1369
|
-
...
|
|
1370
|
-
}),
|
|
1377
|
+
...Ce.shape
|
|
1378
|
+
}), mt = e.object({
|
|
1371
1379
|
to: e.string(),
|
|
1372
1380
|
message: e.string()
|
|
1373
|
-
}),
|
|
1381
|
+
}), ht = e.object({
|
|
1374
1382
|
name: e.string(),
|
|
1375
1383
|
options: e.object({})
|
|
1376
|
-
}),
|
|
1384
|
+
}), Oe = e.object({
|
|
1377
1385
|
value: e.string(),
|
|
1378
1386
|
description: e.string().optional()
|
|
1379
|
-
}),
|
|
1387
|
+
}), Te = e.object({
|
|
1380
1388
|
token_dialect: e.enum(["access_token", "access_token_authz"]).optional(),
|
|
1381
1389
|
enforce_policies: e.boolean().optional(),
|
|
1382
1390
|
allow_skipping_userinfo: e.boolean().optional(),
|
|
@@ -1386,10 +1394,10 @@ const he = e.object({
|
|
|
1386
1394
|
mtls: e.object({
|
|
1387
1395
|
bound_access_tokens: e.boolean().optional()
|
|
1388
1396
|
}).optional()
|
|
1389
|
-
}),
|
|
1397
|
+
}), Ne = e.object({
|
|
1390
1398
|
name: e.string(),
|
|
1391
1399
|
identifier: e.string(),
|
|
1392
|
-
scopes: e.array(
|
|
1400
|
+
scopes: e.array(Oe).optional(),
|
|
1393
1401
|
signing_alg: e.string().optional(),
|
|
1394
1402
|
signing_secret: e.string().optional(),
|
|
1395
1403
|
token_lifetime: e.number().optional(),
|
|
@@ -1397,39 +1405,39 @@ const he = e.object({
|
|
|
1397
1405
|
skip_consent_for_verifiable_first_party_clients: e.boolean().optional(),
|
|
1398
1406
|
allow_offline_access: e.boolean().optional(),
|
|
1399
1407
|
verificationKey: e.string().optional(),
|
|
1400
|
-
options:
|
|
1401
|
-
}),
|
|
1408
|
+
options: Te.optional()
|
|
1409
|
+
}), ye = e.object({
|
|
1402
1410
|
id: e.string().optional(),
|
|
1403
|
-
...
|
|
1411
|
+
...Ne.shape,
|
|
1404
1412
|
created_at: e.string().optional(),
|
|
1405
1413
|
updated_at: e.string().optional()
|
|
1406
|
-
}),
|
|
1414
|
+
}), bt = e.array(ye), Re = e.object({
|
|
1407
1415
|
role_id: e.string(),
|
|
1408
1416
|
resource_server_identifier: e.string(),
|
|
1409
1417
|
permission_name: e.string()
|
|
1410
|
-
}),
|
|
1411
|
-
...
|
|
1418
|
+
}), Le = e.object({
|
|
1419
|
+
...Re.shape,
|
|
1412
1420
|
tenant_id: e.string(),
|
|
1413
1421
|
created_at: e.string().optional()
|
|
1414
|
-
}),
|
|
1422
|
+
}), Et = e.array(Le), De = e.object({
|
|
1415
1423
|
role_id: e.string(),
|
|
1416
1424
|
resource_server_identifier: e.string(),
|
|
1417
1425
|
resource_server_name: e.string(),
|
|
1418
1426
|
permission_name: e.string(),
|
|
1419
1427
|
description: e.string().nullable().optional(),
|
|
1420
1428
|
created_at: e.string().optional()
|
|
1421
|
-
}),
|
|
1422
|
-
|
|
1423
|
-
),
|
|
1429
|
+
}), ft = e.array(
|
|
1430
|
+
De
|
|
1431
|
+
), je = e.object({
|
|
1424
1432
|
user_id: e.string(),
|
|
1425
1433
|
resource_server_identifier: e.string(),
|
|
1426
1434
|
permission_name: e.string(),
|
|
1427
1435
|
organization_id: e.string().optional()
|
|
1428
|
-
}),
|
|
1429
|
-
...
|
|
1436
|
+
}), we = e.object({
|
|
1437
|
+
...je.shape,
|
|
1430
1438
|
tenant_id: e.string(),
|
|
1431
1439
|
created_at: e.string().optional()
|
|
1432
|
-
}),
|
|
1440
|
+
}), St = e.array(we), ke = e.object({
|
|
1433
1441
|
user_id: e.string(),
|
|
1434
1442
|
resource_server_identifier: e.string(),
|
|
1435
1443
|
resource_server_name: e.string(),
|
|
@@ -1437,31 +1445,31 @@ const he = e.object({
|
|
|
1437
1445
|
description: e.string().nullable().optional(),
|
|
1438
1446
|
created_at: e.string().optional(),
|
|
1439
1447
|
organization_id: e.string().optional()
|
|
1440
|
-
}),
|
|
1441
|
-
|
|
1442
|
-
),
|
|
1448
|
+
}), At = e.array(
|
|
1449
|
+
ke
|
|
1450
|
+
), Ue = e.object({
|
|
1443
1451
|
user_id: e.string(),
|
|
1444
1452
|
role_id: e.string(),
|
|
1445
1453
|
organization_id: e.string().optional()
|
|
1446
|
-
}),
|
|
1447
|
-
...
|
|
1454
|
+
}), Fe = e.object({
|
|
1455
|
+
...Ue.shape,
|
|
1448
1456
|
tenant_id: e.string(),
|
|
1449
1457
|
created_at: e.string().optional()
|
|
1450
|
-
}),
|
|
1458
|
+
}), It = e.array(Fe), ve = e.object({
|
|
1451
1459
|
name: e.string().min(1).max(50).openapi({
|
|
1452
1460
|
description: "The name of the role. Cannot include '<' or '>'"
|
|
1453
1461
|
}),
|
|
1454
1462
|
description: e.string().max(255).optional().openapi({
|
|
1455
1463
|
description: "The description of the role"
|
|
1456
1464
|
})
|
|
1457
|
-
}),
|
|
1465
|
+
}), Pe = e.object({
|
|
1458
1466
|
id: e.string().openapi({
|
|
1459
1467
|
description: "The unique identifier of the role"
|
|
1460
1468
|
}),
|
|
1461
|
-
...
|
|
1469
|
+
...ve.shape,
|
|
1462
1470
|
created_at: e.string().optional(),
|
|
1463
1471
|
updated_at: e.string().optional()
|
|
1464
|
-
}),
|
|
1472
|
+
}), Ct = e.array(Pe), He = e.object({
|
|
1465
1473
|
logo_url: e.string().optional().openapi({
|
|
1466
1474
|
description: "URL of the organization's logo"
|
|
1467
1475
|
}),
|
|
@@ -1473,7 +1481,7 @@ const he = e.object({
|
|
|
1473
1481
|
description: "Page background color in hex format (e.g., #FFFFFF)"
|
|
1474
1482
|
})
|
|
1475
1483
|
}).optional()
|
|
1476
|
-
}).optional(),
|
|
1484
|
+
}).optional(), Me = e.object({
|
|
1477
1485
|
connection_id: e.string().openapi({
|
|
1478
1486
|
description: "ID of the connection"
|
|
1479
1487
|
}),
|
|
@@ -1486,7 +1494,7 @@ const he = e.object({
|
|
|
1486
1494
|
is_signup_enabled: e.boolean().default(!0).openapi({
|
|
1487
1495
|
description: "Whether signup is enabled for this connection"
|
|
1488
1496
|
})
|
|
1489
|
-
}),
|
|
1497
|
+
}), xe = e.object({
|
|
1490
1498
|
client_credentials: e.object({
|
|
1491
1499
|
enforce: e.boolean().default(!1).openapi({
|
|
1492
1500
|
description: "Whether to enforce token quota limits"
|
|
@@ -1498,7 +1506,7 @@ const he = e.object({
|
|
|
1498
1506
|
description: "Maximum tokens per hour (0 = unlimited)"
|
|
1499
1507
|
})
|
|
1500
1508
|
}).optional()
|
|
1501
|
-
}).optional(),
|
|
1509
|
+
}).optional(), Ge = e.object({
|
|
1502
1510
|
id: e.string().optional(),
|
|
1503
1511
|
name: e.string().min(1).openapi({
|
|
1504
1512
|
description: "The name of the organization"
|
|
@@ -1506,30 +1514,30 @@ const he = e.object({
|
|
|
1506
1514
|
display_name: e.string().optional().openapi({
|
|
1507
1515
|
description: "The display name of the organization"
|
|
1508
1516
|
}),
|
|
1509
|
-
branding:
|
|
1517
|
+
branding: He,
|
|
1510
1518
|
metadata: e.record(e.any()).default({}).optional().openapi({
|
|
1511
1519
|
description: "Custom metadata for the organization"
|
|
1512
1520
|
}),
|
|
1513
|
-
enabled_connections: e.array(
|
|
1521
|
+
enabled_connections: e.array(Me).default([]).optional().openapi({
|
|
1514
1522
|
description: "List of enabled connections for the organization"
|
|
1515
1523
|
}),
|
|
1516
|
-
token_quota:
|
|
1517
|
-
}),
|
|
1518
|
-
...
|
|
1524
|
+
token_quota: xe
|
|
1525
|
+
}), Ot = e.object({
|
|
1526
|
+
...Ge.shape,
|
|
1519
1527
|
...n.shape,
|
|
1520
1528
|
id: e.string()
|
|
1521
|
-
}),
|
|
1529
|
+
}), Ke = e.object({
|
|
1522
1530
|
user_id: e.string().openapi({
|
|
1523
1531
|
description: "ID of the user"
|
|
1524
1532
|
}),
|
|
1525
1533
|
organization_id: e.string().openapi({
|
|
1526
1534
|
description: "ID of the organization"
|
|
1527
1535
|
})
|
|
1528
|
-
}),
|
|
1529
|
-
...
|
|
1536
|
+
}), Tt = e.object({
|
|
1537
|
+
...Ke.shape,
|
|
1530
1538
|
...n.shape,
|
|
1531
1539
|
id: e.string()
|
|
1532
|
-
}),
|
|
1540
|
+
}), Nt = e.object({
|
|
1533
1541
|
// Session settings
|
|
1534
1542
|
idle_session_lifetime: e.number().optional(),
|
|
1535
1543
|
session_lifetime: e.number().optional(),
|
|
@@ -1599,7 +1607,7 @@ const he = e.object({
|
|
|
1599
1607
|
oidc_logout_prompt_enabled: e.boolean().optional()
|
|
1600
1608
|
}).optional()
|
|
1601
1609
|
});
|
|
1602
|
-
function
|
|
1610
|
+
function yt(t) {
|
|
1603
1611
|
const [i, s] = t.split("|");
|
|
1604
1612
|
if (!i || !s)
|
|
1605
1613
|
throw new Error(`Invalid user_id: ${t}`);
|
|
@@ -1612,26 +1620,26 @@ export {
|
|
|
1612
1620
|
u as CodeChallengeMethod,
|
|
1613
1621
|
p as ComponentCategory,
|
|
1614
1622
|
c as ComponentType,
|
|
1615
|
-
|
|
1623
|
+
he as GrantType,
|
|
1616
1624
|
ce as LogTypes,
|
|
1617
1625
|
U as NodeType,
|
|
1618
|
-
|
|
1626
|
+
qe as auth0FlowInsertSchema,
|
|
1619
1627
|
G as auth0FlowSchema,
|
|
1620
|
-
|
|
1628
|
+
We as auth0UserResponseSchema,
|
|
1621
1629
|
K as authParamsSchema,
|
|
1622
1630
|
_ as baseUserSchema,
|
|
1623
|
-
|
|
1624
|
-
|
|
1631
|
+
be as bordersSchema,
|
|
1632
|
+
Ye as brandingSchema,
|
|
1625
1633
|
L as buttonComponentSchema,
|
|
1626
1634
|
N as clientGrantInsertSchema,
|
|
1627
|
-
|
|
1635
|
+
Ve as clientGrantListSchema,
|
|
1628
1636
|
y as clientGrantSchema,
|
|
1629
1637
|
O as clientInsertSchema,
|
|
1630
1638
|
T as clientSchema,
|
|
1631
1639
|
Y as codeInsertSchema,
|
|
1632
|
-
|
|
1640
|
+
Qe as codeSchema,
|
|
1633
1641
|
q as codeTypeSchema,
|
|
1634
|
-
|
|
1642
|
+
Ee as colorsSchema,
|
|
1635
1643
|
k as componentSchema,
|
|
1636
1644
|
B as connectionInsertSchema,
|
|
1637
1645
|
z as connectionOptionsSchema,
|
|
@@ -1639,88 +1647,89 @@ export {
|
|
|
1639
1647
|
a as coordinatesSchema,
|
|
1640
1648
|
Q as customDomainInsertSchema,
|
|
1641
1649
|
Z as customDomainSchema,
|
|
1642
|
-
|
|
1643
|
-
|
|
1650
|
+
Je as customDomainWithTenantIdSchema,
|
|
1651
|
+
gt as emailProviderSchema,
|
|
1644
1652
|
x as endingSchema,
|
|
1645
1653
|
j as fieldComponentSchema,
|
|
1646
1654
|
v as flowNodeSchema,
|
|
1647
1655
|
o as fontDetailsSchema,
|
|
1648
|
-
|
|
1649
|
-
|
|
1656
|
+
fe as fontsSchema,
|
|
1657
|
+
Ze as formControlSchema,
|
|
1650
1658
|
ee as formInsertSchema,
|
|
1651
1659
|
$ as formNodeComponentDefinition,
|
|
1652
|
-
|
|
1660
|
+
$e as formSchema,
|
|
1653
1661
|
w as genericComponentSchema,
|
|
1654
1662
|
P as genericNodeSchema,
|
|
1655
|
-
|
|
1656
|
-
|
|
1663
|
+
et as hookInsertSchema,
|
|
1664
|
+
tt as hookSchema,
|
|
1657
1665
|
f as identitySchema,
|
|
1658
1666
|
re as inviteInsertSchema,
|
|
1659
|
-
|
|
1667
|
+
ot as inviteSchema,
|
|
1660
1668
|
se as inviteeSchema,
|
|
1661
1669
|
ae as inviterSchema,
|
|
1662
|
-
|
|
1670
|
+
nt as jwksKeySchema,
|
|
1663
1671
|
le as jwksSchema,
|
|
1664
1672
|
D as legalComponentSchema,
|
|
1665
|
-
|
|
1673
|
+
ge as logInsertSchema,
|
|
1674
|
+
st as logSchema,
|
|
1666
1675
|
_e as loginSessionInsertSchema,
|
|
1667
|
-
|
|
1676
|
+
at as loginSessionSchema,
|
|
1668
1677
|
H as nodeSchema,
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1678
|
+
it as openIDConfigurationSchema,
|
|
1679
|
+
He as organizationBrandingSchema,
|
|
1680
|
+
Me as organizationEnabledConnectionSchema,
|
|
1681
|
+
Ge as organizationInsertSchema,
|
|
1682
|
+
Ot as organizationSchema,
|
|
1683
|
+
xe as organizationTokenQuotaSchema,
|
|
1684
|
+
Se as pageBackgroundSchema,
|
|
1685
|
+
yt as parseUserId,
|
|
1686
|
+
ue as passwordInsertSchema,
|
|
1687
|
+
rt as passwordSchema,
|
|
1679
1688
|
E as profileDataSchema,
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1689
|
+
dt as promptSettingSchema,
|
|
1690
|
+
Ce as refreshTokenInsertSchema,
|
|
1691
|
+
ut as refreshTokenSchema,
|
|
1692
|
+
Ne as resourceServerInsertSchema,
|
|
1693
|
+
bt as resourceServerListSchema,
|
|
1694
|
+
Te as resourceServerOptionsSchema,
|
|
1695
|
+
ye as resourceServerSchema,
|
|
1696
|
+
Oe as resourceServerScopeSchema,
|
|
1688
1697
|
R as richTextComponentSchema,
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1698
|
+
ve as roleInsertSchema,
|
|
1699
|
+
Ct as roleListSchema,
|
|
1700
|
+
Re as rolePermissionInsertSchema,
|
|
1701
|
+
Et as rolePermissionListSchema,
|
|
1702
|
+
Le as rolePermissionSchema,
|
|
1703
|
+
ft as rolePermissionWithDetailsListSchema,
|
|
1704
|
+
De as rolePermissionWithDetailsSchema,
|
|
1705
|
+
Pe as roleSchema,
|
|
1706
|
+
me as sessionInsertSchema,
|
|
1707
|
+
lt as sessionSchema,
|
|
1708
|
+
_t as signingKeySchema,
|
|
1709
|
+
ht as smsProviderSchema,
|
|
1710
|
+
mt as smsSendParamsSchema,
|
|
1702
1711
|
M as startSchema,
|
|
1703
1712
|
F as stepNodeSchema,
|
|
1704
1713
|
X as tenantInsertSchema,
|
|
1705
1714
|
V as tenantSchema,
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1715
|
+
Nt as tenantSettingsSchema,
|
|
1716
|
+
Ie as themeInsertSchema,
|
|
1717
|
+
pt as themeSchema,
|
|
1718
|
+
ct as tokenResponseSchema,
|
|
1719
|
+
Be as totalsSchema,
|
|
1711
1720
|
S as userInsertSchema,
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1721
|
+
Ke as userOrganizationInsertSchema,
|
|
1722
|
+
Tt as userOrganizationSchema,
|
|
1723
|
+
je as userPermissionInsertSchema,
|
|
1724
|
+
St as userPermissionListSchema,
|
|
1725
|
+
we as userPermissionSchema,
|
|
1726
|
+
At as userPermissionWithDetailsListSchema,
|
|
1727
|
+
ke as userPermissionWithDetailsSchema,
|
|
1728
|
+
Xe as userResponseSchema,
|
|
1729
|
+
Ue as userRoleInsertSchema,
|
|
1730
|
+
It as userRoleListSchema,
|
|
1731
|
+
Fe as userRoleSchema,
|
|
1723
1732
|
A as userSchema,
|
|
1724
1733
|
J as verificationMethodsSchema,
|
|
1725
|
-
|
|
1734
|
+
Ae as widgetSchema
|
|
1726
1735
|
};
|