Type Alias ClaimsMappingInteractive

Mappings from claim name to an array of JSON pointers that point to locations in the claims from the IdP to retrieve the value from.

type ClaimsMappingInteractive = {
    client_id?: string[];
    email?: string[];
    email_verified?: string[];
    groups?: string[];
    locale?: string[];
    name?: string[];
    picture?: string[];
    sub?: string[];
    zoneinfo?: string[];
}
Index

Properties

client_id?: string[]

A list of JSON pointers used to map the user's client ID.

email?: string[]
email_verified?: string[]
groups?: string[]
locale?: string[]
name?: string[]
picture?: string[]
sub?: string[]
zoneinfo?: string[]