mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-21 10:16:44 +00:00
* fix(webhooks): isolate unresolved route secrets * chore(plugin-sdk): refresh API baseline * docs(secrets): refresh credential surface
16 lines
549 B
TypeScript
16 lines
549 B
TypeScript
// Webhooks API module exposes the plugin public contract.
|
|
export {
|
|
createFixedWindowRateLimiter,
|
|
createWebhookInFlightLimiter,
|
|
normalizeWebhookPath,
|
|
readJsonWebhookBodyOrReject,
|
|
resolveRequestClientIp,
|
|
resolveWebhookTargetWithAuthOrReject,
|
|
resolveWebhookTargetWithAuthOrRejectSync,
|
|
withResolvedWebhookRequestPipeline,
|
|
WEBHOOK_IN_FLIGHT_DEFAULTS,
|
|
WEBHOOK_RATE_LIMIT_DEFAULTS,
|
|
type WebhookInFlightLimiter,
|
|
} from "openclaw/plugin-sdk/webhook-ingress";
|
|
export type { OpenClawConfig } from "openclaw/plugin-sdk/config-contracts";
|