@ctrl/qbittorrent
    Preparing search index...

    Interface SyncMainData

    interface SyncMainData {
        categories?: TorrentCategories;
        categories_removed?: string[];
        full_update: boolean;
        rid: number;
        server_state?: Record<string, unknown>;
        tags?: string[];
        tags_removed?: string[];
        torrents?: Record<string, Partial<Torrent>>;
        torrents_removed?: string[];
        trackers?: Record<string, string[]>;
        trackers_removed?: string[];
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index

    Properties

    categories?: TorrentCategories
    categories_removed?: string[]
    full_update: boolean

    True when the response contains full data instead of a delta update

    rid: number

    Response ID

    server_state?: Record<string, unknown>
    tags?: string[]
    tags_removed?: string[]
    torrents?: Record<string, Partial<Torrent>>

    Torrent updates keyed by torrent hash

    torrents_removed?: string[]

    Hashes for torrents removed since the previous response ID

    trackers?: Record<string, string[]>

    Tracker URLs grouped by tracker status Added in qBittorrent WebUI API v2.13.0 https://github.com/qbittorrent/qBittorrent/blob/master/WebAPI_Changelog.md#2130

    trackers_removed?: string[]