@@ -5791,6 +5791,7 @@ export interface Application {
57915791 state ?: ObjectState ;
57925792 tenantId ?: UUID ;
57935793 themeId ?: UUID ;
5794+ universalConfiguration ?: UniversalApplicationConfiguration ;
57945795 unverified ?: RegistrationUnverifiedOptions ;
57955796 verificationEmailTemplateId ?: UUID ;
57965797 verificationStrategy ?: VerificationStrategy ;
@@ -9337,6 +9338,7 @@ export enum OAuthErrorReason {
93379338 invalid_target_entity_scope = "invalid_target_entity_scope" ,
93389339 invalid_entity_permission_scope = "invalid_entity_permission_scope" ,
93399340 invalid_user_id = "invalid_user_id" ,
9341+ invalid_tenant_id = "invalid_tenant_id" ,
93409342 grant_type_disabled = "grant_type_disabled" ,
93419343 missing_client_id = "missing_client_id" ,
93429344 missing_client_secret = "missing_client_secret" ,
@@ -9352,6 +9354,7 @@ export enum OAuthErrorReason {
93529354 missing_user_code = "missing_user_code" ,
93539355 missing_user_id = "missing_user_id" ,
93549356 missing_verification_uri = "missing_verification_uri" ,
9357+ missing_tenant_id = "missing_tenant_id" ,
93559358 login_prevented = "login_prevented" ,
93569359 not_licensed = "not_licensed" ,
93579360 user_code_expired = "user_code_expired" ,
@@ -9852,7 +9855,9 @@ export interface ReactorStatus {
98529855 licenseAttributes ?: Record < string , string > ;
98539856 licensed ?: boolean ;
98549857 scimServer ?: ReactorFeatureStatus ;
9858+ tenantManagerApplication ?: ReactorFeatureStatus ;
98559859 threatDetection ?: ReactorFeatureStatus ;
9860+ universalApplication ?: ReactorFeatureStatus ;
98569861 webAuthn ?: ReactorFeatureStatus ;
98579862 webAuthnPlatformAuthenticators ?: ReactorFeatureStatus ;
98589863 webAuthnRoamingAuthenticators ?: ReactorFeatureStatus ;
@@ -11148,6 +11153,13 @@ export interface TwoFactorTrust {
1114811153 startInstant ?: number ;
1114911154}
1115011155
11156+ /**
11157+ * @author Lyle Schemmerling
11158+ */
11159+ export interface UniversalApplicationConfiguration {
11160+ universal ?: boolean ;
11161+ }
11162+
1115111163/**
1115211164 * Policy for handling unknown OAuth scopes in the request
1115311165 *
0 commit comments