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

    Type Alias CashDepositQuoteCreateError

    CashDepositQuoteCreateError:
        | ServiceError<"INVALID_ENTITY_ID">
        | ServiceError<"UNSUPPORTED_PHONE_COUNTRY">
        | ErrorReturnedBy<ProductQuoteService["quote"]>
        | ServiceError<"LIMIT_EXCEEDED">

    Errors returned by CashDepositQuoteService.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.