ping-identity
    Preparing search index...

    Type Alias IdpCollector

    DaVinci collector supplied by the External IdP plugin.

    type IdpCollector = {
        idpEnabled: boolean;
        idpId: string;
        idpType: "GOOGLE" | "FACEBOOK" | "APPLE" | string;
        key: string;
        label: string;
        link?: string;
        raw?: Record<string, unknown>;
        type: typeof socialLoginCollectorType;
    }
    Index

    Properties

    idpEnabled: boolean

    Whether the provider is enabled.

    idpId: string

    Server IdP identifier, equal to key.

    idpType: "GOOGLE" | "FACEBOOK" | "APPLE" | string

    Provider type string such as GOOGLE, FACEBOOK, or APPLE.

    key: string

    Stable server-assigned IdP identifier used as the collector key.

    label: string

    Human-readable button label.

    link?: string

    Optional authentication URL supplied by the server.

    raw?: Record<string, unknown>

    Original server-side field JSON when available.

    External IdP collector type.