Interface OfflineEditQueueMetadata

Compact index row projected from an edit; carries no payload.

interface OfflineEditQueueMetadata {
    authorizationScopeDigest: `sha256:${string}`;
    createdAt: string;
    dependencyIds: readonly `sha256:${string}`[];
    id: `sha256:${string}`;
    leaseExpiresAt?: string;
    retryAt?: string;
    sourceId: string;
    state: OfflineQueuedEditState;
    updatedAt: string;
}

Hierarchy (view full)

Properties

authorizationScopeDigest: `sha256:${string}`
createdAt: string
dependencyIds: readonly `sha256:${string}`[]
id: `sha256:${string}`
leaseExpiresAt?: string
retryAt?: string
sourceId: string
updatedAt: string