Interface OpenidAuthorizeSuccessEvent

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: "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;
}

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
id: string
requestId: string
tenantId: string
timestamp: number
type: string
version: "1"