Creating Plot Twists
    Preparing search index...

    Type Alias ArchiveLinkFilter

    Filter criteria for archiving links. All fields are optional; only provided fields are used for matching.

    type ArchiveLinkFilter = {
        channelId?: string;
        type?: string;
        status?: string;
        meta?: Record<string, JSONValue>;
    }
    Index

    Properties

    channelId?: string

    Filter by channel ID

    type?: string

    Filter by link type (e.g., "issue", "pull_request")

    status?: string

    Filter by link status (e.g., "open", "closed")

    meta?: Record<string, JSONValue>

    Filter by metadata fields (uses containment matching)