Documentation
    Preparing search index...

    Interface NappletArtifactCacheIndex

    Serialized Cache Storage index for verified napplet artifacts.

    interface NappletArtifactCacheIndex {
        aggregates: Record<string, NappletAggregateIndexEntry>;
        blobs: Record<string, NappletBlobIndexEntry>;
        coordinates: Record<string, CachedCoordinate>;
        schemaVersion: number;
        updatedAt: number;
    }
    Index

    Properties

    aggregates: Record<string, NappletAggregateIndexEntry>

    Aggregate entries keyed by the internal aggregate key.

    blobs: Record<string, NappletBlobIndexEntry>

    Blob entries keyed by SHA-256 hash.

    coordinates: Record<string, CachedCoordinate>

    Coordinate entries keyed by coordinateKey.

    schemaVersion: number

    Index schema version.

    updatedAt: number

    Last index update timestamp in milliseconds.