Sign In

@debugbundle/shared-types

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@debugbundle/shared-types

Shared DebugBundle schemas, types, and constants

npmnpm
Version
1.1.0
Version published
Weekly downloads
74
-72.18%
Maintainers
1
Weekly downloads
 
Created
Source

@debugbundle/shared-types

Shared DebugBundle schemas, types, and constants.

This package is the low-level contract layer used by the DebugBundle SDKs and core services. Most consumers should install @debugbundle/sdk-node or @debugbundle/sdk-browser instead of depending on this package directly.

Install

Published package:

npm install @debugbundle/shared-types

Example

import { EventEnvelopeSchema, createEventEnvelope } from "@debugbundle/shared-types";

const event = createEventEnvelope({
  event_type: "log_event",
  project_token: "dbundle_proj_example",
  service: {
    name: "example-service",
    environment: "development",
    runtime: "node"
  },
  payload: {
    level: "error",
    message: "example log"
  }
});

EventEnvelopeSchema.parse(event);

Notes

  • Published from the core-owned shared-package release workflow in debugbundle/debugbundle.
  • Source remains core-owned in the DebugBundle workspace and is published through the shared-package release workflow.

FAQs

Package last updated on 08 Jun 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