Anchorage API reference
    Preparing search index...

    The structured audit event every ingest emits (accepted OR rejected).

    interface SignalIngestAuditEvent {
        actorId: string;
        channel: "queue" | "message" | "state" | "signal" | "notification";
        contentBytes: number;
        outcome: "rejected" | "accepted";
        reason?: string;
        tenantId: string;
        threadId: string;
        timestamp: string;
        type: "signal.ingest";
    }
    Index

    Properties

    actorId: string
    channel: "queue" | "message" | "state" | "signal" | "notification"
    contentBytes: number

    The ingest payload size in bytes (what the size cap measured).

    outcome: "rejected" | "accepted"
    reason?: string

    Present for rejected outcomes — WHY the ingest was refused.

    tenantId: string
    threadId: string
    timestamp: string
    type: "signal.ingest"