@cfxlabsinc/b2b-services
    Preparing search index...

    Type Alias PinnedUsageSnapshot

    A rolling-window usage snapshot as pinned into productQuoteTable.aggregateUsage. Mirrors the service-layer UsageSnapshot field for field, with every figure rendered as a decimal string — BigNumber doesn't round-trip through JSON.parse, the same reason ProductQuoteData and PinnedLimitViolation store their numerics as strings. Key order matches UsageSnapshot's (calendar-month last); treat it as append-only.

    type PinnedUsageSnapshot = {
        usage24hCount: string;
        usage24hUsd: string;
        usage30dCount: string;
        usage30dUsd: string;
        usage7dCount: string;
        usage7dUsd: string;
        usageCalendarMonthCount: string;
        usageCalendarMonthUsd: string;
    }
    Index
    usage24hCount: string
    usage24hUsd: string
    usage30dCount: string
    usage30dUsd: string
    usage7dCount: string
    usage7dUsd: string
    usageCalendarMonthCount: string
    usageCalendarMonthUsd: string