@@ -4216,6 +4216,7 @@ export interface CORSConfiguration extends Enableable {
4216
4216
allowedHeaders ?: Array < string > ;
4217
4217
allowedMethods ?: Array < HTTPMethod > ;
4218
4218
allowedOrigins ?: Array < string > ;
4219
+ debug ?: boolean ;
4219
4220
exposedHeaders ?: Array < string > ;
4220
4221
preflightMaxAgeInSeconds ?: number ;
4221
4222
}
@@ -6164,6 +6165,11 @@ export interface Requirable extends Enableable {
6164
6165
export interface RequiresCORSConfiguration {
6165
6166
}
6166
6167
6168
+ export enum SAMLLogoutBehavior {
6169
+ AllParticipants = "AllParticipants" ,
6170
+ OnlyOriginator = "OnlyOriginator"
6171
+ }
6172
+
6167
6173
/**
6168
6174
* @author Brian Pontarelli
6169
6175
*/
@@ -6180,6 +6186,7 @@ export interface SAMLv2Configuration extends Enableable {
6180
6186
defaultVerificationKeyId ?: UUID ;
6181
6187
issuer ?: string ;
6182
6188
keyId ?: UUID ;
6189
+ logout ?: SAMLv2Logout ;
6183
6190
logoutURL ?: string ;
6184
6191
requireSignedRequests ?: boolean ;
6185
6192
xmlSignatureC14nMethod ?: CanonicalizationMethod ;
@@ -6206,6 +6213,21 @@ export interface SAMLv2IdentityProvider extends BaseIdentityProvider<SAMLv2Appli
6206
6213
xmlSignatureC14nMethod ?: CanonicalizationMethod ;
6207
6214
}
6208
6215
6216
+ export interface SAMLv2Logout {
6217
+ behavior ?: SAMLLogoutBehavior ;
6218
+ defaultVerificationKeyId ?: UUID ;
6219
+ keyId ?: UUID ;
6220
+ requireSignedRequests ?: boolean ;
6221
+ singleLogout ?: SAMLv2SingleLogout ;
6222
+ xmlSignatureC14nMethod ?: CanonicalizationMethod ;
6223
+ }
6224
+
6225
+ export interface SAMLv2SingleLogout extends Enableable {
6226
+ keyId ?: UUID ;
6227
+ url ?: string ;
6228
+ xmlSignatureC14nMethod ?: CanonicalizationMethod ;
6229
+ }
6230
+
6209
6231
/**
6210
6232
* Search API request.
6211
6233
*
@@ -6392,6 +6414,7 @@ export interface Templates {
6392
6414
registrationComplete ?: string ;
6393
6415
registrationSend ?: string ;
6394
6416
registrationVerify ?: string ;
6417
+ samlv2Logout ?: string ;
6395
6418
}
6396
6419
6397
6420
/**
0 commit comments