Interface OfflineRegionResourceInput

interface OfflineRegionResourceInput {
    attributionIds?: readonly string[];
    byteLength: number;
    contentType?: string;
    id: string;
    integrity: `sha256:${string}`;
    kind: OfflineRegionResourceKind;
    planVersion?: string;
    schemaVersion?: string;
    sourceVersion?: string;
}

Properties

attributionIds?: readonly string[]
byteLength: number

Logical payload bytes; physical storage may deduplicate or add overhead.

contentType?: string
id: string

Stable non-secret identity used by the injected loader and store.

integrity: `sha256:${string}`
planVersion?: string
schemaVersion?: string
sourceVersion?: string