@archastro/sdk
    Preparing search index...

    Interface DomainEvent

    A domain event with stable attribution fields and an event-specific payload.

    interface DomainEvent {
        agent?: string;
        created_at: string;
        event_name: string;
        id: string;
        idempotency_key?: string;
        org?: string;
        payload: Record<string, unknown>;
        sandbox?: string;
        team?: string;
        user?: string;
    }
    Index

    Properties

    agent?: string
    created_at: string
    event_name: string
    id: string
    idempotency_key?: string
    org?: string
    payload: Record<string, unknown>

    Opaque event-specific JSON. Use event_name to select the expected payload schema.

    sandbox?: string
    team?: string
    user?: string