@@ -294,6 +294,7 @@ export interface CreateClientRequestContent {
294294 token_quota ?: Management . CreateTokenQuota ;
295295 /** The identifier of the resource server that this client is linked to. */
296296 resource_server_identifier ?: string ;
297+ express_configuration ?: Management . ExpressConfiguration ;
297298 async_approval_notification_channels ?: Management . ClientAsyncApprovalNotificationsChannelsApiPostConfiguration ;
298299}
299300
@@ -394,9 +395,52 @@ export interface UpdateClientRequestContent {
394395 skip_non_verifiable_callback_uri_confirmation_prompt ?: boolean | null ;
395396 /** Specifies how long, in seconds, a Pushed Authorization Request URI remains valid */
396397 par_request_expiry ?: number | null ;
398+ express_configuration ?: Management . ExpressConfigurationOrNull | null ;
397399 async_approval_notification_channels ?: Management . ClientAsyncApprovalNotificationsChannelsApiPatchConfiguration ;
398400}
399401
402+ /**
403+ * @example
404+ * {
405+ * from: "from",
406+ * take: 1
407+ * }
408+ */
409+ export interface ListConnectionProfileRequestParameters {
410+ /** Optional Id from which to start selection. */
411+ from ?: string | null ;
412+ /** Number of results per page. Defaults to 5. */
413+ take ?: number | null ;
414+ }
415+
416+ /**
417+ * @example
418+ * {
419+ * name: "name"
420+ * }
421+ */
422+ export interface CreateConnectionProfileRequestContent {
423+ name : Management . ConnectionProfileName ;
424+ organization ?: Management . ConnectionProfileOrganization ;
425+ connection_name_prefix_template ?: Management . ConnectionNamePrefixTemplate ;
426+ enabled_features ?: Management . ConnectionProfileEnabledFeatures ;
427+ connection_config ?: Management . ConnectionProfileConfig ;
428+ strategy_overrides ?: Management . ConnectionProfileStrategyOverrides ;
429+ }
430+
431+ /**
432+ * @example
433+ * {}
434+ */
435+ export interface UpdateConnectionProfileRequestContent {
436+ name ?: Management . ConnectionProfileName ;
437+ organization ?: Management . ConnectionProfileOrganization ;
438+ connection_name_prefix_template ?: Management . ConnectionNamePrefixTemplate ;
439+ enabled_features ?: Management . ConnectionProfileEnabledFeatures ;
440+ connection_config ?: Management . ConnectionProfileConfig ;
441+ strategy_overrides ?: Management . ConnectionProfileStrategyOverrides ;
442+ }
443+
400444/**
401445 * @example
402446 * {
@@ -2971,9 +3015,7 @@ export interface ListAculsRequestParameters {
29713015 * {
29723016 * configs: [{
29733017 * prompt: "login",
2974- * screen: "login",
2975- * rendering_mode: "advanced",
2976- * head_tags: [{}]
3018+ * screen: "login"
29773019 * }]
29783020 * }
29793021 */
@@ -2983,19 +3025,16 @@ export interface BulkUpdateAculRequestContent {
29833025
29843026/**
29853027 * @example
2986- * {
2987- * rendering_mode: "advanced",
2988- * head_tags: [{}]
2989- * }
3028+ * {}
29903029 */
29913030export interface UpdateAculRequestContent {
2992- rendering_mode : Management . AculRenderingModeEnum ;
3031+ rendering_mode ? : Management . AculRenderingModeEnum ;
29933032 /** Context values to make available */
29943033 context_configuration ?: string [ ] ;
29953034 /** Override Universal Login default head tags */
29963035 default_head_tags_disabled ?: boolean | null ;
29973036 /** An array of head tags */
2998- head_tags : Management . AculHeadTag [ ] ;
3037+ head_tags ? : Management . AculHeadTag [ ] ;
29993038 filters ?: Management . AculFilters | null ;
30003039 /** Use page template with ACUL */
30013040 use_page_template ?: boolean | null ;
@@ -3186,6 +3225,7 @@ export interface UpdateTenantSettingsRequestContent {
31863225 * See https://auth0.com/docs/secure/security-guidance/measures-against-app-impersonation for more information.
31873226 */
31883227 skip_non_verifiable_callback_uri_confirmation_prompt ?: boolean | null ;
3228+ resource_parameter_profile ?: Management . TenantSettingsResourceParameterProfile ;
31893229}
31903230
31913231export namespace UpdateTenantSettingsRequestContent {
0 commit comments