Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

@blimu/types

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@blimu/types

TypeScript type definitions for Blimu simple types

latest
Source
npmnpm
Version
1.2.0
Version published
Maintainers
1
Created
Source

@blimu/types

TypeScript type definitions for Blimu simple types.

Overview

This package provides base type definitions for Blimu's simple types (ResourceType, EntitlementType, PlanType, etc.). These types are augmented by customer configuration via the blimu codegen command, which generates union types based on your Blimu configuration.

Installation

npm install @blimu/types
# or
yarn add @blimu/types
# or
pnpm add @blimu/types

Usage

After running blimu codegen in your project, the types in this package will be augmented with union types based on your configuration:

import type { ResourceType, EntitlementType } from '@blimu/types';

// After codegen, ResourceType might be:
// type ResourceType = 'organization' | 'workspace' | 'project';

// EntitlementType might be:
// type EntitlementType = 'organization:create_workspace' | 'workspace:delete';

Types

  • ResourceType: Resource type identifiers
  • EntitlementType: Entitlement type identifiers
  • PlanType: Plan type identifiers
  • LimitType: Resource-based limit type identifiers
  • UsageLimitType: Usage-based limit type identifiers

Type Augmentation

To augment these types with your configuration:

  • Create a Blimu config file (.blimu/config.mjs or .blimu/config.ts)
  • Run blimu codegen
  • The generated .blimu/blimu-types.d.ts file will augment these types

Learn More

Visit https://blimu.com for documentation and more information.

Keywords

typescript

FAQs

Package last updated on 26 Jan 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts