@tikoci/centrs
    Preparing search index...

    Interface DevicesMutationData

    Result payload shared by every mutating devices command. entry is the resulting record (absent for remove); preservedUnknownTags lists any unknown/rawTail field tags carried over verbatim from the prior record.

    interface DevicesMutationData {
        action: "add" | "set" | "remove" | "edit";
        backupPath?: string;
        cdbRecordIndex: number;
        entry?: DevicesShowItem;
        preservedUnknownTags?: readonly number[];
        prunedBackups: readonly string[];
        recordCount: number;
        replaced: boolean;
        target: string;
    }
    Index

    Properties

    action: "add" | "set" | "remove" | "edit"
    backupPath?: string
    cdbRecordIndex: number

    Optionalentry

    preservedUnknownTags?: readonly number[]
    prunedBackups: readonly string[]
    recordCount: number
    replaced: boolean
    target: string