@backblaze-labs/b2-sdk - v0.1.0
    Preparing search index...

    Interface SyncSkipEvent

    skip event — a destination-only file that policy decided to keep, or a same-on-both file that didn't need transfer. Always carries a non-empty message explaining why.

    interface SyncSkipEvent {
        message: string;
        path: string;
        size: number;
        type: "skip";
    }
    Index

    Properties

    Properties

    message: string

    Human-readable reason for skipping this file.

    path: string

    Relative path of the skipped file.

    size: number

    Size in bytes of the file involved, always 0 for skip events.

    type: "skip"

    Discriminant tag (always the literal string 'skip').