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

    Type Alias LedgerAccountTransferAdminCreateError

    LedgerAccountTransferAdminCreateError:
        | ServiceError<"INVALID_TRANSFER">
        | ServiceError<"ENTITY_NOT_FOUND">
        | ServiceError<"ENTITY_INACTIVE">
        | ServiceError<"INVALID_LEDGER_ACCOUNT", { ledgerAccountId: string }>
        | ServiceError<
            "INSUFFICIENT_FUNDS",
            { balance: LedgerAccountTransferAmount },
        >
        | ErrorReturnedBy<ProductQuoteService["quote"]>

    Errors returned by LedgerAccountTransferAdminService.create.

    Named and exported rather than written inline, because an inline union cannot reference typeof this.productQuoteService.quote: private members are emitted without their types, so the union degrades to unknown in the .d.ts and — with skipLibCheck masking it at the producer — surfaces only as result.error is of type unknown in consumers.