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

    Interface DocumentFile

    File in the document search index

    interface DocumentFile {
        id: string;
        name: string;
        source: string;
        chunkCount?: number;
        size?: number;
        createdAt: string;
        updatedAt: string;
    }
    Index

    Properties

    id: string

    File hash (unique identifier)

    name: string

    Original filename

    source: string

    Source this file belongs to

    chunkCount?: number

    Number of chunks

    size?: number

    File size in bytes

    createdAt: string

    Creation timestamp

    updatedAt: string

    Last update timestamp