Detalhes do pacote

@puzzmo/revenue-cat-webhook-types

puzzmo-com1.9kMIT1.1.0

TypeScript types for RevenueCat Webhooks. Hand-crafted from their docs, with JSDoc when appropriate and nullability manually added.

readme (leia-me)

Types for RevenueCat's webhooks

Hand-crafted from their docs, with JSDoc when appropriate and nullability manually added.

import { Webhook } from "@puzzmo/revenue-cat-webhook-types"

const handler = (req: Webhook) => {
  switch (req.event.type) {
    case "INITIAL_PURCHASE":
      // req as WebhookInitialPurchase
      break

    case "RENEWAL":
      // req as WebhookRenewal
      break
  }
}

Generally speaking, the types are nearly always the same across the webhooks, but it's good to have a centrally maintained source of truth for nullability until there are official types. See here for more discussion.