@archastro/sdk
    Preparing search index...

    Interface EventSubscription

    An app-scoped subscription to exact domain-event names.

    interface EventSubscription {
        agent?: string;
        available_count: number;
        created_at: string;
        dropped_events_total: number;
        dropped_through_position: number;
        event_names: string[];
        id: string;
        last_overflow_at?: string;
        leased_count: number;
        max_pending_events: number;
        name: string;
        org?: string;
        queue_epoch: number;
        retention_seconds: number;
        sandbox?: string;
        status: "active" | "paused";
        team?: string;
        updated_at: string;
        user?: string;
        visibility_timeout_seconds: number;
    }
    Index

    Properties

    agent?: string
    available_count: number
    created_at: string
    dropped_events_total: number
    dropped_through_position: number
    event_names: string[]
    id: string
    last_overflow_at?: string
    leased_count: number
    max_pending_events: number
    name: string
    org?: string
    queue_epoch: number
    retention_seconds: number
    sandbox?: string
    status: "active" | "paused"
    team?: string
    updated_at: string
    user?: string
    visibility_timeout_seconds: number