@cpod/sdk - v0.2.7
    Preparing search index...

    Interface User

    User profile

    interface User {
        id: string;
        email: string;
        name?: string;
        full_name?: string;
        is_active?: boolean;
        last_login?: string;
        roles?: string[];
        preferences?: Record<string, unknown> | null;
        categories?: { id: string; name: string }[];
        group_names?: { name: string; groupId: string }[];
        permissions?: string[];
        agents?: { id: string; name: string; uuid: string }[];
        apps?: { id: string; name: string; description?: string }[];
        is_first_login?: boolean;
        chat_count?: number;
        file_count?: number;
        task_count?: number;
        task_details?: unknown;
        last_interaction?: string | null;
        task_completion_notifications?: unknown;
        task_completion_notifications_count?: number;
        created_at: string;
        updated_at: string;
    }
    Index

    Properties

    id: string
    email: string
    name?: string
    full_name?: string
    is_active?: boolean
    last_login?: string
    roles?: string[]
    preferences?: Record<string, unknown> | null
    categories?: { id: string; name: string }[]
    group_names?: { name: string; groupId: string }[]
    permissions?: string[]
    agents?: { id: string; name: string; uuid: string }[]
    apps?: { id: string; name: string; description?: string }[]
    is_first_login?: boolean
    chat_count?: number
    file_count?: number
    task_count?: number
    task_details?: unknown
    last_interaction?: string | null
    task_completion_notifications?: unknown
    task_completion_notifications_count?: number
    created_at: string
    updated_at: string