Kottster Packages API Reference
    Preparing search index...

    Interface IdentityProviderUserWithRoles

    interface IdentityProviderUserWithRoles {
        avatarUrl?: string;
        createdAt?: string | Date;
        email?: string;
        firstName?: string;
        id: string | number;
        jwtTokenCheck?: string;
        lastLoginAt?: string | Date;
        lastName?: string;
        passwordHash?: string;
        passwordResetToken?: string;
        roleIds?: (string | number)[];
        roles: IdentityProviderRole[];
        settings?: Record<string, any>;
        temporaryPassword?: boolean;
        twoFactorSecret?: string;
        updatedAt?: string | Date;
        username?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    avatarUrl?: string
    createdAt?: string | Date
    email?: string
    firstName?: string
    id: string | number
    jwtTokenCheck?: string
    lastLoginAt?: string | Date
    lastName?: string
    passwordHash?: string
    passwordResetToken?: string
    roleIds?: (string | number)[]
    roles: IdentityProviderRole[]
    settings?: Record<string, any>
    temporaryPassword?: boolean
    twoFactorSecret?: string
    updatedAt?: string | Date
    username?: string