@@ -5791,6 +5791,7 @@ export interface Application {
5791
5791
state ?: ObjectState ;
5792
5792
tenantId ?: UUID ;
5793
5793
themeId ?: UUID ;
5794
+ universalConfiguration ?: UniversalApplicationConfiguration ;
5794
5795
unverified ?: RegistrationUnverifiedOptions ;
5795
5796
verificationEmailTemplateId ?: UUID ;
5796
5797
verificationStrategy ?: VerificationStrategy ;
@@ -9337,6 +9338,7 @@ export enum OAuthErrorReason {
9337
9338
invalid_target_entity_scope = "invalid_target_entity_scope" ,
9338
9339
invalid_entity_permission_scope = "invalid_entity_permission_scope" ,
9339
9340
invalid_user_id = "invalid_user_id" ,
9341
+ invalid_tenant_id = "invalid_tenant_id" ,
9340
9342
grant_type_disabled = "grant_type_disabled" ,
9341
9343
missing_client_id = "missing_client_id" ,
9342
9344
missing_client_secret = "missing_client_secret" ,
@@ -9352,6 +9354,7 @@ export enum OAuthErrorReason {
9352
9354
missing_user_code = "missing_user_code" ,
9353
9355
missing_user_id = "missing_user_id" ,
9354
9356
missing_verification_uri = "missing_verification_uri" ,
9357
+ missing_tenant_id = "missing_tenant_id" ,
9355
9358
login_prevented = "login_prevented" ,
9356
9359
not_licensed = "not_licensed" ,
9357
9360
user_code_expired = "user_code_expired" ,
@@ -9852,7 +9855,9 @@ export interface ReactorStatus {
9852
9855
licenseAttributes ?: Record < string , string > ;
9853
9856
licensed ?: boolean ;
9854
9857
scimServer ?: ReactorFeatureStatus ;
9858
+ tenantManagerApplication ?: ReactorFeatureStatus ;
9855
9859
threatDetection ?: ReactorFeatureStatus ;
9860
+ universalApplication ?: ReactorFeatureStatus ;
9856
9861
webAuthn ?: ReactorFeatureStatus ;
9857
9862
webAuthnPlatformAuthenticators ?: ReactorFeatureStatus ;
9858
9863
webAuthnRoamingAuthenticators ?: ReactorFeatureStatus ;
@@ -11148,6 +11153,13 @@ export interface TwoFactorTrust {
11148
11153
startInstant ?: number ;
11149
11154
}
11150
11155
11156
+ /**
11157
+ * @author Lyle Schemmerling
11158
+ */
11159
+ export interface UniversalApplicationConfiguration {
11160
+ universal ?: boolean ;
11161
+ }
11162
+
11151
11163
/**
11152
11164
* Policy for handling unknown OAuth scopes in the request
11153
11165
*
0 commit comments