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

    Admin-only mutations on deposit bank memos. Unlike the consumer DepositBankMemoService, these operate across all customers and take no customerId.

    Index

    Constructors

    Properties

    bankAdminService: BankAdminService
    depositBankMemoQueryService: DepositBankMemoQueryService

    Methods

    • Toggle whether a memo is soft-deleted (hidden from customer-facing reads). When deleted is true the consumer DepositBankMemoService read paths filter the row out entirely.

      Parameters

      • args: { deleted: boolean; memo: string }

      Returns Promise<
          | { ok: true; value: { memo: string } }
          | { error: ServiceError; ok: false },
      >