@shortcut/client
    Preparing search index...

    Interface ShortcutObserverPayload

    Fan-out of every change in a workspace to the entity types an agent subscribed to.

    interface ShortcutObserverPayload {
        actions: ShortcutObserverAction[];
        actor: ShortcutWebhookActor;
        id: string;
        installation_id: string;
        references?: {
            entity_type: string;
            id: string | number;
            [key: string]: unknown;
        }[];
        timestamp: string;
        version: "v2";
        workspace2: ShortcutWebhookWorkspace;
    }
    Index

    Properties

    id: string

    Unique delivery id. Redeliveries reuse it.

    installation_id: string
    references?: {
        entity_type: string;
        id: string | number;
        [key: string]: unknown;
    }[]
    timestamp: string

    ISO 8601 with milliseconds.

    version: "v2"