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

    Type Alias VictorTransactionType

    VictorTransactionType:
        | "BOOK_INTERNAL"
        | "BOOK_EXTERNAL"
        | "ACH_TRANSFER"
        | "WIRE_TRANSFER"
        | "IAT_ACH_TRANSFER"
        | "RTP_SEND"
        | "RTP_REFUND"
        | "RTP_INBOUND"
        | "INSTANT_PAYMENT_SEND"
        | "INSTANT_PAYMENT_REFUND"
        | "INSTANT_PAYMENT_INBOUND"
        | "BOOK_INTERNAL_INBOUND"
        | "ACH_INBOUND_CREDIT"
        | "ACH_INBOUND_DEBIT"
        | "ACH_TRANSFER_DEBIT"
        | "WIRE_INBOUND"

    The transaction types Victor's list endpoint actually returns.

    The generated enum in victor.d.ts closes over eleven values, but the live API also returns the *_INBOUND / *_DEBIT variants flagged below — every one verified against prod bank_transaction.raw payloads. openapi.json is an untracked download from Victor's docs rather than a file we own, so hand-editing the generated type would be erased on the next regen; the correction lives here instead. This narrows to the true set — it does not widen to string.