videosphere
    Preparing search index...

    Interface CreateUserData

    Defines the shape of create user data.

    interface CreateUserData {
        userId: string;
        email: string;
        name?: string;
        passwordHash?: string;
        hasCompletedOnboarding?: boolean;
        role?: UserRole;
        authProvider?: UserAuthProvider;
        googleRefreshToken?: string;
    }
    Index

    Properties

    userId: string
    email: string
    name?: string
    passwordHash?: string
    hasCompletedOnboarding?: boolean
    role?: UserRole
    authProvider?: UserAuthProvider
    googleRefreshToken?: string

    Plaintext Google login refresh token; encrypted before persistence.