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

    Admin-only reads + rename for the virtual_account_provider reference table.

    The table is a small, fixed reference set: the seeded integrated providers (victor / bivo / route_fusion) plus the canonical manual provider. Rows are never minted or deleted here — only the display label (name) is mutable. type is the route-matcher discriminator and externalId is referenced across routes, audits, and account rows, so neither is editable.

    Index

    Constructors

    Methods

    Constructors

    Methods

    • Lists every provider with the count of live (non-deleted) virtual accounts it backs, ordered by name. The soft-delete filter sits in the join's ON clause so providers backing zero accounts still appear with count = 0. Returned unpaginated — this is a fixed reference set of a handful of rows.

      Returns Promise<
          {
              ok: true;
              value: { items: (VirtualAccountProvider & { accountCount: number })[] };
          },
      >