mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-19 20:55:04 +00:00
* fix(webhooks): isolate unresolved route secrets * chore(plugin-sdk): refresh API baseline * docs(secrets): refresh credential surface
15 lines
549 B
TypeScript
15 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";
|