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

    Type Alias PinnedLimitViolation

    The limit violation as pinned into LimitEvaluation. Mirrors the service-layer ProductLimitViolation, with limit / usage rendered as decimal strings — BigNumber doesn't round-trip through JSON.parse, the same reason ProductQuoteData stores its numerics as strings.

    type PinnedLimitViolation = {
        limit: string;
        type: "MIN_USD" | "MAX_USD" | "MAX_COUNT";
        usage: string;
        window: "TRANSACTION" | "24H" | "7D" | "30D" | "CALENDAR_MONTH";
    }
    Index
    limit: string
    type: "MIN_USD" | "MAX_USD" | "MAX_COUNT"
    usage: string
    window: "TRANSACTION" | "24H" | "7D" | "30D" | "CALENDAR_MONTH"