@backblaze-labs/b2-mcp
    Preparing search index...

    Interface SnapshotGrowth

    Stored-data growth for one account between two daily snapshots.

    interface SnapshotGrowth {
        accountId: string;
        firstBytes: number;
        growthBytes: number;
        growthPct: number | null;
        isNew: boolean;
        lastBytes: number;
    }
    Index
    accountId: string

    B2 account ID.

    firstBytes: number

    Stored bytes in the earlier snapshot.

    growthBytes: number

    Difference between later and earlier stored bytes.

    growthPct: number | null

    Percentage growth from the earlier snapshot, or null when no baseline exists.

    isNew: boolean

    Whether the account appears only in the later snapshot.

    lastBytes: number

    Stored bytes in the later snapshot.