@roomy-chat/sdk
    Preparing search index...

    Interface ImportBlobMetadata

    interface ImportBlobMetadata {
        changeNum: number;
        endTimestamp: number;
        mode:
            | "snapshot"
            | "update"
            | "shallow-snapshot"
            | "outdated-snapshot"
            | "outdated-update";
        partialEndVersionVector: VersionVector;
        partialStartVersionVector: VersionVector;
        startFrontiers: OpId[];
        startTimestamp: number;
    }
    Index

    Properties

    changeNum: number
    endTimestamp: number
    mode:
        | "snapshot"
        | "update"
        | "shallow-snapshot"
        | "outdated-snapshot"
        | "outdated-update"
    partialEndVersionVector: VersionVector

    The version vector of the end of the import.

    Import blob includes all the ops from partial_start_vv to partial_end_vv. However, it does not constitute a complete version vector, as it only contains counters from peers included within the import blob.

    partialStartVersionVector: VersionVector

    The version vector of the start of the import.

    Import blob includes all the ops from partial_start_vv to partial_end_vv. However, it does not constitute a complete version vector, as it only contains counters from peers included within the import blob.

    startFrontiers: OpId[]
    startTimestamp: number