Anchorage API reference
    Preparing search index...

    Interface ApprovalNotificationEvent

    A queue moment worth pushing at reviewers: a NEW request entered the queue ('created' — fired only when a record is actually inserted, never on the idempotent re-observation of an already-open step), or an open request breached its SLA ('escalated', fired per record by the cron sweep). Decisions are deliberately not notification events — the decider is looking at the dashboard when they happen.

    interface ApprovalNotificationEvent {
        record: ApprovalRecord;
        type: "escalated" | "created";
    }
    Index

    Properties

    Properties

    type: "escalated" | "created"