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

    Interface ProjectInfo

    Project information with file counts

    interface ProjectInfo {
        id: string;
        name: string;
        createdBy?: string | null;
        sharedWith: string[];
        fileCount: number;
        documentCount?: number | null;
        files?: DocumentFileMinimal[] | null;
        createdAt?: string | null;
        updatedAt?: string | null;
    }
    Index

    Properties

    id: string

    Project ID

    name: string

    Project name

    createdBy?: string | null

    User ID who created the project

    sharedWith: string[]

    User IDs project is shared with (always array, empty [] if not shared)

    fileCount: number

    Number of files in the project

    documentCount?: number | null

    Number of document chunks (real count from database, or null if unavailable)

    files?: DocumentFileMinimal[] | null

    File details (if includeFiles=true)

    createdAt?: string | null

    Creation timestamp

    updatedAt?: string | null

    Last update timestamp