Skip to content

Commit b05e7ba

Browse files
committed
Domain sync
1 parent 29a3dde commit b05e7ba

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

src/FusionAuthClient.ts

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4216,6 +4216,7 @@ export interface CORSConfiguration extends Enableable {
42164216
allowedHeaders?: Array<string>;
42174217
allowedMethods?: Array<HTTPMethod>;
42184218
allowedOrigins?: Array<string>;
4219+
debug?: boolean;
42194220
exposedHeaders?: Array<string>;
42204221
preflightMaxAgeInSeconds?: number;
42214222
}
@@ -6164,6 +6165,11 @@ export interface Requirable extends Enableable {
61646165
export interface RequiresCORSConfiguration {
61656166
}
61666167

6168+
export enum SAMLLogoutBehavior {
6169+
AllParticipants = "AllParticipants",
6170+
OnlyOriginator = "OnlyOriginator"
6171+
}
6172+
61676173
/**
61686174
* @author Brian Pontarelli
61696175
*/
@@ -6180,6 +6186,7 @@ export interface SAMLv2Configuration extends Enableable {
61806186
defaultVerificationKeyId?: UUID;
61816187
issuer?: string;
61826188
keyId?: UUID;
6189+
logout?: SAMLv2Logout;
61836190
logoutURL?: string;
61846191
requireSignedRequests?: boolean;
61856192
xmlSignatureC14nMethod?: CanonicalizationMethod;
@@ -6206,6 +6213,21 @@ export interface SAMLv2IdentityProvider extends BaseIdentityProvider<SAMLv2Appli
62066213
xmlSignatureC14nMethod?: CanonicalizationMethod;
62076214
}
62086215

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+
62096231
/**
62106232
* Search API request.
62116233
*
@@ -6392,6 +6414,7 @@ export interface Templates {
63926414
registrationComplete?: string;
63936415
registrationSend?: string;
63946416
registrationVerify?: string;
6417+
samlv2Logout?: string;
63956418
}
63966419

63976420
/**

0 commit comments

Comments
 (0)