@@ -232,6 +232,7 @@ export interface CreateClientRequestContent {
232232 /** Comma-separated list of URLs whitelisted for Auth0 to use as a callback to the client after authentication. */
233233 callbacks ?: string [ ] ;
234234 oidc_logout ?: Management . ClientOidcBackchannelLogoutSettings ;
235+ /** Configuration for OIDC backchannel logout (deprecated, in favor of oidc_logout) */
235236 oidc_backchannel_logout ?: Management . ClientOidcBackchannelLogoutSettings ;
236237 session_transfer ?: Management . ClientSessionTransferConfiguration | null ;
237238 /** 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. */
@@ -337,6 +338,7 @@ export interface UpdateClientRequestContent {
337338 /** A set of URLs that are valid to call back from Auth0 when authenticating users */
338339 callbacks ?: string [ ] ;
339340 oidc_logout ?: Management . ClientOidcBackchannelLogoutSettings ;
341+ /** Configuration for OIDC backchannel logout (deprecated, in favor of oidc_logout) */
340342 oidc_backchannel_logout ?: Management . ClientOidcBackchannelLogoutSettings ;
341343 session_transfer ?: Management . ClientSessionTransferConfiguration | null ;
342344 /** A set of URLs that represents valid origins for CORS */
@@ -351,7 +353,9 @@ export interface UpdateClientRequestContent {
351353 allowed_clients ?: string [ ] ;
352354 /** URLs that are valid to redirect to after logout from Auth0 */
353355 allowed_logout_urls ?: string [ ] ;
356+ /** An object that holds settings related to how JWTs are created */
354357 jwt_configuration ?: Management . ClientJwtConfiguration ;
358+ /** The client's encryption key */
355359 encryption_key ?: Management . ClientEncryptionKey | null ;
356360 /** <code>true</code> to use Auth0 instead of the IdP to do Single Sign On, <code>false</code> otherwise (default: <code>false</code>) */
357361 sso ?: boolean ;
@@ -379,6 +383,7 @@ export interface UpdateClientRequestContent {
379383 form_template ?: string ;
380384 addons ?: Management . ClientAddons ;
381385 client_metadata ?: Management . ClientMetadata ;
386+ /** Configuration related to native mobile apps */
382387 mobile ?: Management . ClientMobile ;
383388 /** Initiate login uri, must be https */
384389 initiate_login_uri ?: string ;
@@ -582,6 +587,7 @@ export interface CreateCustomDomainRequestContent {
582587 * {}
583588 */
584589export interface UpdateCustomDomainRequestContent {
590+ /** recommended includes TLS 1.2 */
585591 tls_policy ?: Management . CustomDomainTlsPolicyEnum ;
586592 custom_client_ip_header ?: Management . CustomDomainCustomClientIpHeader | undefined ;
587593 domain_metadata ?: Management . DomainMetadata ;
@@ -983,6 +989,7 @@ export interface CreateHookRequestContent {
983989 /** Whether this hook will be executed (true) or ignored (false). */
984990 enabled ?: boolean ;
985991 dependencies ?: Management . HookDependencies ;
992+ /** Execution stage of this rule. Can be `credentials-exchange`, `pre-user-registration`, `post-user-registration`, `post-change-password`, or `send-phone-message`. */
986993 triggerId : Management . HookTriggerIdEnum ;
987994}
988995
@@ -1198,6 +1205,7 @@ export interface UpdateSettingsRequestContent {
11981205 * {}
11991206 */
12001207export interface UpdateRefreshTokenRequestContent {
1208+ /** Metadata associated with the refresh token. Pass null or {} to remove all metadata. */
12011209 refresh_token_metadata ?: ( Management . RefreshTokenMetadata | undefined ) | null ;
12021210}
12031211
@@ -1480,6 +1488,7 @@ export interface UpdateSelfServiceProfileRequestContent {
14801488 * {}
14811489 */
14821490export interface UpdateSessionRequestContent {
1491+ /** Metadata associated with the session. Pass null or {} to remove all session_metadata. */
14831492 session_metadata ?: ( Management . SessionMetadata | undefined ) | null ;
14841493}
14851494
@@ -1813,7 +1822,9 @@ export interface UpdateUserRequestContent {
18131822 phone_number ?: string | null ;
18141823 /** Whether this phone number has been verified (true) or not (false). */
18151824 phone_verified ?: boolean ;
1825+ /** User metadata to which this user has read/write access. */
18161826 user_metadata ?: Management . UserMetadata ;
1827+ /** User metadata to which this user has read-only access. */
18171828 app_metadata ?: Management . AppMetadata ;
18181829 /** Given name/first name/forename of this user. */
18191830 given_name ?: string | null ;
@@ -2322,6 +2333,7 @@ export interface UpdatePhoneTemplateRequestContent {
23222333export interface CreatePhoneTemplateTestNotificationRequestContent {
23232334 /** Destination of the testing phone notification */
23242335 to : string ;
2336+ /** Medium to use to send the notification */
23252337 delivery_method ?: Management . PhoneProviderDeliveryMethodEnum ;
23262338}
23272339
@@ -3276,6 +3288,7 @@ export interface BulkUpdateAculRequestContent {
32763288 * {}
32773289 */
32783290export interface UpdateAculRequestContent {
3291+ /** Rendering mode */
32793292 rendering_mode ?: Management . AculRenderingModeEnum ;
32803293 context_configuration ?: Management . AculContextConfiguration ;
32813294 /** Override Universal Login default head tags */
@@ -3419,6 +3432,7 @@ export interface GetTenantSettingsRequestParameters {
34193432 */
34203433export interface UpdateTenantSettingsRequestContent {
34213434 change_password ?: Management . TenantSettingsPasswordPage | null ;
3435+ /** Device Flow configuration. */
34223436 device_flow ?: Management . TenantSettingsDeviceFlow | null ;
34233437 guardian_mfa_page ?: Management . TenantSettingsGuardianPage | null ;
34243438 /** Default audience for API Authorization. */
@@ -3530,6 +3544,7 @@ export interface CreateUserAuthenticationMethodRequestContent {
35303544export interface UpdateUserAuthenticationMethodRequestContent {
35313545 /** A human-readable label to identify the authentication method. */
35323546 name ?: string ;
3547+ /** Preferred phone authentication method */
35333548 preferred_authentication_method ?: Management . PreferredAuthenticationMethodEnum ;
35343549}
35353550
@@ -3572,6 +3587,7 @@ export interface GetUserGroupsRequestParameters {
35723587 * {}
35733588 */
35743589export interface LinkUserIdentityRequestContent {
3590+ /** Identity provider of the secondary user account being linked. */
35753591 provider ?: Management . UserIdentityProviderEnum ;
35763592 /** connection_id of the secondary user account being linked when more than one `auth0` database provider exists. */
35773593 connection_id ?: string ;
0 commit comments