Interface OidcVerifierAuthSuccessEvent

interface OidcVerifierAuthSuccessEventSanitised {
    category: "oidc-verifier";
    data: {
        clientId: undefined;
        responseType: undefined | string;
        verifierId: string;
    };
    id: string;
    requestId: string;
    tenantId: string;
    timestamp: number;
    type: string;
    version: "1";
}

Properties

category: "oidc-verifier"
data: {
    clientId: undefined | string;
    responseType: undefined | string;
    verifierId: string;
}

Type declaration

  • Sanitisation Level PII clientId: undefined | string
  • responseType: undefined | string
  • verifierId: string
id: string
requestId: string
tenantId: string
timestamp: number
type: string
version: "1"