Interface OidcVerifierAuthSuccessEvent
interface OidcVerifierAuthSuccessEvent { category: "oidc-verifier"; data: { clientId: undefined | string; responseType: undefined | string; verifierId: string; }; id: string; requestId: string; tenantId: string; timestamp: number; type: string; version: "1"; } 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
category: "oidc-verifier"
Sanitisation Level DATA
data
data: {
clientId: undefined | string;
responseType: undefined | string;
verifierId: string;
}
Type declaration
Sanitisation Level PII
clientId: undefined | string
responseType: undefined | string
verifierId: string
requestId
requestId: string
timestamp
timestamp: number