Vana SDK - v2.2.2
    Preparing search index...

    Interface StorageListResult

    Result from storage list operations

    interface StorageListResult {
        items: {
            identifier: string;
            size?: number;
            lastModified?: Date;
            metadata?: Record<string, unknown>;
        }[];
        continuationToken?: string;
        hasMore?: boolean;
    }
    Index

    Properties

    items: {
        identifier: string;
        size?: number;
        lastModified?: Date;
        metadata?: Record<string, unknown>;
    }[]

    Array of storage items

    Type Declaration

    • identifier: string

      Item identifier

    • Optionalsize?: number

      Item size in bytes

    • OptionallastModified?: Date

      Last modified timestamp

    • Optionalmetadata?: Record<string, unknown>

      Item metadata

    continuationToken?: string

    Continuation token for pagination

    hasMore?: boolean

    Whether more results are available