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

@rapidonz/accredo-types

v1.0.3

Published

TypeScript type definitions for Accredo ERP entities

Readme

@rapidonz/accredo-types

TypeScript type definitions for all Accredo ERP entities. Zero runtime dependencies.

Generated from the Accredo OpenAPI spec (v7.0.13.109) — 1,084 model files covering every module: AP, AR, GL, CB, IC, OE, PO, JC, FA, FX.

Install

npm install @rapidonz/accredo-types

Usage

import { APCreditor, ARDebtor, ICProduct, OData4Params } from "@rapidonz/accredo-types";

const params: OData4Params = {
  $filter: "Name eq 'Acme'",
  $top: 10,
  $select: "CreditorCode,Name,Balance",
};

function processCreditor(creditor: APCreditor) {
  console.log(creditor.CreditorCode, creditor.Name);
}

Paged responses

Every list endpoint returns a paged wrapper:

import { PagedAPCreditor } from "@rapidonz/accredo-types";

const response: PagedAPCreditor = {
  "@odata.context": "...",
  value: [{ CreditorCode: "ACME", Name: "Acme Corp" }],
};

Custom fields (Z_*)

All Accredo custom fields start with Z_. Every generated interface includes a [key: Z_${string}]: any index signature so custom fields just work while keeping type safety on standard fields:

import { APCreditor } from "@rapidonz/accredo-types";

const creditor: APCreditor = {
  CreditorCode: "ACME",
  Name: "Acme Corp",
  Z_LoyaltyTier: "Gold",
  Z_CreditScore: 850,
};

Generic list response

import { ListResponse } from "@rapidonz/accredo-types";

const products: ListResponse<{ ProductCode: string; Description: string }> = {
  value: [{ ProductCode: "WIDGET", Description: "Blue Widget" }],
};

Modules covered

| Module | Prefix | Description | |--------|--------|-------------| | Accounts Payable | AP | Creditors, invoices, payments, shipments | | Accounts Receivable | AR | Debtors, invoices, receipts, allocations | | General Ledger | GL | Chart of accounts, journals, budgets | | Cash Book | CB | Bank accounts, deposits, reconciliation | | Inventory Control | IC | Products, stock, warehouses, bin locations | | Order Entry | OE | Sales orders, quotes, dispatch | | Purchase Orders | PO | Purchase orders, requisitions, receiving | | Job Costing | JC | Jobs, cost transactions, WIP | | Fixed Assets | FA | Asset register, depreciation | | Foreign Exchange | FX | Currencies, exchange rates |

Regenerating types

To regenerate from a newer Accredo OpenAPI spec:

  1. Replace openapi.json in the project root with the updated spec
  2. Run the generator:
    cd generate
    npm install
    node run.js
  3. Build:
    cd ..
    npm run build

License

See LICENSE.md — Sustainable Use License. Distribution requires written consent from Rapido.