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

@usethrottle/webhook-types

v1.0.1

Published

TypeScript discriminated unions for every Throttle outbound webhook event.

Readme

@usethrottle/webhook-types

TypeScript discriminated unions for every Throttle outbound webhook event, plus a Stripe-compatible signature verification helper.

npm install @usethrottle/webhook-types

Usage

import {
  type ThrottleEvent,
  type ThrottleEventEnvelope,
  verifyWebhookSignature,
} from '@usethrottle/webhook-types';

export async function POST(req: Request) {
  const rawBody = await req.text();
  const ok = verifyWebhookSignature({
    header: req.headers.get('X-Throttle-Signature')!,
    rawBody,
    secret: process.env.THROTTLE_WEBHOOK_SECRET!,
  });
  if (!ok) return new Response('bad signature', { status: 400 });

  const envelope = JSON.parse(rawBody) as ThrottleEvent;
  const wireEnvelope: ThrottleEventEnvelope = envelope;
  await audit.record({
    eventId: wireEnvelope.id,
    eventType: wireEnvelope.type,
    eventVersion: wireEnvelope.version,
    environmentId: wireEnvelope.environmentId,
  });

  // envelope.data is narrowed by envelope.type — no casts.
  switch (envelope.type) {
    case 'cart.item_added':
      // envelope.data: { cartId, sequence, itemId, name, quantity, unitPrice }
      analytics.track('item_added', envelope.data);
      break;
    case 'order.created':
      // envelope.data: { order, fromCart?, sessionId? }
      await fulfill(envelope.data.order as { id: string });
      break;
    case 'payment.disputed':
      // envelope.data: { paymentId, reason, openedAt }
      await ops.alert(envelope.data.paymentId, envelope.data.reason);
      break;
    case 'workspace.payment_method.backup_used':
      // envelope.data: { workspace, primaryPaymentMethod, backupPaymentMethod, charge }
      await notifyOps('backup PM used', envelope.data);
      break;
  }

  return new Response('ok');
}

Coverage

  • ThrottleEventEnvelope — top-level wire envelope with id, type, version, workspaceId, environmentId, createdAt, and typed data.
  • ThrottleEvent — discriminated union of all ThrottleEventEnvelope variants currently emitted by the Throttle outbound bus (cart, order, payment, fulfillment, subscription, discount, customer, invoice, shipping/tax, workspace lifecycle).
  • WebhookEvent — legacy nested event union retained for internal/back-compat consumers.
  • WebhookEventTypeWebhookEvent['type']; use it to constrain switch statements or event-name handlers.
  • Typed payloads — primitive fields (ids, amounts, codes, timestamps) are fully typed. Embedded domain objects (order, payment, subscription, workspace, etc.) are typed as Record<string, unknown> because the canonical schemas live in the API server and shouldn't be duplicated here. Cast through the OpenAPI client (@usethrottle/api-client) for the embedded shapes.
  • verifyWebhookSignature — Stripe-compatible t=…,v1=… header parsing with timing-safe HMAC-SHA256 comparison + 5-minute replay window by default.

Versioning

The event list is the contract. Adding an event in the Throttle outbound bus is a minor bump; removing one is a major bump. Typed payload field changes are minor when additive; breaking when not. See docs.usethrottle.dev/developers/webhooks for the full event reference + signature format.