Interface OpenidAuthorizeSuccessEvent
interface OpenidAuthorizeSuccessEvent { category: "openid"; data: { existingSession: boolean; existingUser: undefined | boolean; interactionHook: undefined | { claims: undefined | { [
key:
string]
: unknown; }; interactionId: string; }; login: undefined | { authenticationProvider: { claims: undefined | { [
key:
string]
: unknown; }; id: string; subjectId: string; }; interactionId: string; }; sessionId: undefined | string; userId: undefined | string; }; id: string; requestId: string; tenantId: string; timestamp: number; type: string; version: "1"; } interface OpenidAuthorizeSuccessEventSanitised { category: "openid"; data: { existingSession: boolean; existingUser: undefined | boolean; interactionHook: undefined | { claims: undefined; interactionId: string; }; login: undefined | { authenticationProvider: { claims: undefined; id: string; subjectId: undefined; }; interactionId: string; }; sessionId: undefined | string; userId: undefined | string; }; id: string; requestId: string; tenantId: string; timestamp: number; type: string; version: "1"; } Properties
category
category: "openid"
Sanitisation Level DATA
data
data: {
existingSession: boolean;
existingUser: undefined | boolean;
interactionHook: undefined | {
claims: undefined | {
[key: string]: unknown;
};
interactionId: string;
};
login: undefined | {
authenticationProvider: {
claims: undefined | {
[key: string]: unknown;
};
id: string;
subjectId: string;
};
interactionId: string;
};
sessionId: undefined | string;
userId: undefined | string;
}
Type declaration
existingSession: boolean
existingUser: undefined | boolean
interactionHook: undefined | {
claims: undefined | {
[key: string]: unknown;
};
interactionId: string;
}
login: undefined | {
authenticationProvider: {
claims: undefined | {
[key: string]: unknown;
};
id: string;
subjectId: string;
};
interactionId: string;
}
sessionId: undefined | string
userId: undefined | string
requestId
requestId: string
timestamp
timestamp: number