// Re-export the runtime-agnostic primitives (subscriptions, signing, delivery, // `deliverAndRecord`, cursors, …) so consumers reach everything through one // `Webhooks` namespace. export * from './internal/Webhooks.js' // Re-export the webhook resource's zod schemas so consumers can validate and // type delivery bodies: `Webhooks.schema.Envelope` (a discriminated union on // `type`), plus the per-event payload schemas such as `FundingTransferEvent`. // Infer a type with `z.infer`. export { enrichEventData, eventTypes, scanBlock, schema } from './apps/data/routes/webhooks.js'