New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

@debugbundle/shared-types

Package Overview
Dependencies
Maintainers
1
Versions
26
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

latest
Source
npmnpm
Version
1.7.0
Version published
Maintainers
1
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 12 Sep 2026

Related posts