npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@antelopejs/interface-dms-saas

v0.0.2

Published

Public interfaces for the DMS SaaS module

Readme

@antelopejs/interface-dms-saas

Public interfaces of the AntelopeJS DMS SaaS module.

A module that extends @antelopejs/dms-saas depends on this package rather than on the runtime, and imports the extension points from it:

| Subpath | Surface | | --- | --- | | @antelopejs/interface-dms-saas | every extension point except db: billing, data API, pages, plans, provisioning and registration flat, plus the invoiceLineItems and workspaceLifecycle namespaces | | @antelopejs/interface-dms-saas/billing | customer balance and complimentary subscription state | | @antelopejs/interface-dms-saas/data-api | hidden-value data API filters | | @antelopejs/interface-dms-saas/db | canonical SaaS tables and data models | | @antelopejs/interface-dms-saas/hidden-filter | the HiddenStringFilter decorator on its own | | @antelopejs/interface-dms-saas/invoice-line-items | provider registration, line item types, line key helpers | | @antelopejs/interface-dms-saas/page-definitions | page and module ids, slugs and descriptors | | @antelopejs/interface-dms-saas/pages | workspace settings category and tenant billing page extensions | | @antelopejs/interface-dms-saas/plans | plan projections, catalog builder, and price normalization | | @antelopejs/interface-dms-saas/provisioning | provisioning hook payload | | @antelopejs/interface-dms-saas/registration | public registration capture limits | | @antelopejs/interface-dms-saas/workspace-lifecycle | workspace lifecycle events and operator actions |

Two of those surfaces reach the root entry as namespaces rather than flat re-exports, because each exposes an internal proxy namespace and two internal names cannot coexist in one barrel:

import { invoiceLineItems, workspaceLifecycle } from "@antelopejs/interface-dms-saas";

invoiceLineItems.RegisterInvoiceLineItemsProvider(/* … */);

Their own subpaths stay the direct route to the same symbols. ./db is the one surface the root entry leaves out: importing it registers the SaaS tables, and a consumer that only wants types should not pay for that.

The exports map also carries a types-only ./dist/... twin of every subpath. Nothing should import those: they exist because TypeScript's declaration emit rewrites <pkg>/db/tables/plans.table into the dist path it resolved through typesVersions, and an exports-aware consumer of the emitted .d.ts has to be able to resolve that path back.

This package is released on its own workflow and must be published before the runtime module: @antelopejs/dms-saas depends on it with workspace:*, which pnpm rewrites to the released version on publish.