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

@upmind-automation/types

v0.0.17

Published

Shared TypeScript type definitions, enums, and interfaces for the Upmind platform.

Downloads

291

Readme

@upmind-automation/types

Shared TypeScript type definitions, enums, and interfaces for the Upmind platform.

What Is This?

This package is the single source of truth for all TypeScript types used across the Upmind monorepo. It provides:

  • Enums - Standardized constants for API values, statuses, and configuration options
  • Models - TypeScript interfaces matching API response shapes
  • Constants - Shared constant values used across packages

Installation

pnpm add @upmind-automation/types

Usage

// Import enums
import { AccessRoleTypes, PaymentStatus, ProductTypes } from "@upmind-automation/types";

// Use in type annotations
const role: AccessRoleTypes = AccessRoleTypes.CLIENT;

// Import model interfaces
import type { IClient, IProduct, IBasket } from "@upmind-automation/types";

function processClient(client: IClient) {
  // ...
}

Package Structure

src/
├── data/
│   ├── constants.ts      # Shared constant values
│   ├── enums.ts          # General enums
│   ├── iso4217.ts        # Currency codes
│   └── enums/            # Domain-specific enums
│       ├── auth.ts
│       ├── brand.ts
│       ├── payments.ts
│       ├── products.ts
│       └── ...
├── models/               # TypeScript interfaces
│   ├── accounts.ts
│   ├── basket.ts
│   ├── client.ts
│   ├── product.ts
│   └── ...
└── store/                # Store-related types

Key Exports

Enums

| Category | Examples | |----------|----------| | Auth | AccessRoleTypes, OAuthGrantTypes, TwoFactorTypes | | Payments | PaymentStatus, PaymentMethodTypes, GatewayTypes | | Products | ProductTypes, BillingCycleTypes, PricingTypes | | Brand | BrandConfigKeys, ThemeTypes, LayoutTypes | | Clients | ClientStatus, AddressTypes, PhoneTypes |

Models

| Category | Examples | |----------|----------| | Core | IClient, IBasket, IProduct, IToken | | Billing | IInvoice, IPayment, IPaymentMethod | | Config | IBrand, ISystemSettings, ITheme |

Best Practices

Always use enums, not string literals

// ✅ Correct
if (user.role === AccessRoleTypes.STAFF) { ... }

// ❌ Wrong - brittle, no type safety
if (user.role === "staff") { ... }

Import types with import type

// ✅ Correct - tree-shakes properly
import type { IClient } from "@upmind-automation/types";
import { AccessRoleTypes } from "@upmind-automation/types";

// ❌ Wrong - mixes values and types
import { IClient, AccessRoleTypes } from "@upmind-automation/types";

Related Packages

| Package | Relationship | |---------|--------------| | @upmind-automation/headless | Consumes types for composables and services | | @upmind-automation/client-vue | Re-exports types for Vue consumers | | @upmind-automation/upmind-ui | Uses types for component props |