← All @molecule/* packages · App templates
@molecule/api-webhook-captureProvider bond · webhook · API (Node) · v1.0.2 · Apache-2.0
Webhook capture provider for molecule.dev
npm install @molecule/api-webhook-capturenpm · Source on GitHub · Implements @molecule/api-webhook
@molecule/api-webhook-capture is a provider bond on the API (Node) side: it implements the webhook core interface (@molecule/api-webhook) with a concrete vendor or library behind it.
Your code calls the core; you wire this provider once at startup. Swapping vendors later is one line in that wiring, not a rewrite.
import { setProvider } from '@molecule/api-webhook'
import { provider } from '@molecule/api-webhook-capture'
setProvider(provider)Works with: @molecule/api-activity, @molecule/api-webhook
Auto-generated, AI-first package reference for the molecule.dev ecosystem. It is written to be read by coding agents as much as by people, and is generated from this package's source — edit
src/index.tsJSDoc, not this file.
Webhook capture provider for molecule.dev.
Records every dispatch() call as an activity event. Intercept-only by
default; delegates + tees when wrapping a real provider.
import { setProvider } from '@molecule/api-webhook'
import { provider } from '@molecule/api-webhook-capture'
setProvider(provider)
provider
npm install @molecule/api-webhook-capture @molecule/api-activity @molecule/api-webhook
createWebhookCaptureProvider(realProvider)Creates a webhook capture provider.
When realProvider is provided, each event is dispatched through it and the
captured event records the real outcome (delegate + tee). When omitted (the
dev default), dispatches are intercepted and a synthetic single-element
WebhookDeliveryResult[] is returned. Registration / log / retry methods
delegate to the real provider when present and otherwise return empty
intercept-only results.
function createWebhookCaptureProvider(realProvider?: WebhookProvider): WebhookProvider
realProvider — Optional real provider to delegate to and tee.Returns: A {@link WebhookProvider} that records activity for every dispatch.
providerDefault webhook capture provider (intercept-only).
const provider: WebhookProvider
Implements @molecule/api-webhook interface.
Setup function to register this provider with the core interface:
import { setProvider } from '@molecule/api-webhook'
import { provider } from '@molecule/api-webhook-capture'
export function setupWebhookCapture(): void {
setProvider(provider)
}
Peer dependencies:
@molecule/api-activity ^1.0.1@molecule/api-webhook ^1.0.1@molecule/api-activity
@molecule/api-webhook
Two modes, and the choice decides whether the webhook is DELIVERED.
INTERCEPT-ONLY (provider, or createWebhookCaptureProvider() with no
argument) records the dispatch and returns a synthetic 200 — no HTTP
request is made. DELEGATE + TEE
(createWebhookCaptureProvider(real)) dispatches through the real provider
AND records the real outcome. Anywhere real deliveries must go out
(production), wrap the real provider — never bond the intercept-only
provider.
Recording is best-effort: a bonded ActivitySink that throws NEVER changes
the outcome of dispatch() — a successful real dispatch still resolves and
a failed one still rejects with the REAL provider error.
Requires an activity sink to be useful: captures go through
@molecule/api-activity's record(), which silently no-ops when no
sink is bonded — wire setSink() (e.g. the console/database sink) or
intercepted dispatches return synthetic success and leave no trace.
Intercept-only mode returns a synthetic result (status: 200, success: true) with no HTTP delivery; register() returns
secret: '' when options.secret is omitted (NO auto-generation,
unlike the http/queue bonds), registrations are not remembered
(list() → []), and every dispatched event is recorded regardless
of registrations.
To capture AND really deliver, wrap a real provider:
setProvider(createWebhookCaptureProvider(createProvider())) with
createProvider from @molecule/api-webhook-http.
Integration checklist — drive the real UI (live preview, no mocks), adapt each item to this app's actual screens/flows, and check every box off one by one. A box you can't check is an integration bug to fix — not a skip:
read_activity tool (filter type 'webhook'); never mock the dispatch or
modify production code to expose the payload.localhost, 10.…, 169.254.169.254) is REJECTED before any dispatch.