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

    Interface GetEntitiesOptions

    Request parameters for getting entities

    interface GetEntitiesOptions {
        page?: number;
        sources?: string[];
        fileHashes?: string[];
        search?: string;
        sortBy?: "name" | "count";
        sortOrder?: "asc" | "desc";
        limit?: number;
        noCache?: boolean;
        forceDirectQuery?: boolean;
    }
    Index

    Properties

    page?: number

    Page number (1-indexed)

    sources?: string[]

    Optional: Filter by specific sources

    fileHashes?: string[]

    Optional: Filter by specific file hashes

    search?: string

    Search entities by name

    sortBy?: "name" | "count"

    Sort by field

    sortOrder?: "asc" | "desc"

    Sort order

    limit?: number

    Maximum number of entities to return (1-50)

    noCache?: boolean

    Bypass cache if true

    forceDirectQuery?: boolean

    Force direct database query if true