Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .actor/actor.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "webhook-debugger-logger",
"title": "Webhook Debugger, Logger & API Mocking Suite",
"description": "Enterprise-grade tool to test, debug, and mock webhooks. Features real-time SSE streaming, request replay, HTTP forwarding, and JSON schema validation. Perfect for Stripe, GitHub, and Shopify integrations.",
"version": "3.0.0",
"version": "3.0.1",
"output": "./output_schema.json",
"input": "./input_schema.json",
"webServerSchema": "./web_server_schema.json",
Expand Down
18 changes: 9 additions & 9 deletions .actor/input_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,13 @@
"example": "my-secret-key-123",
"editor": "textfield"
},
"signatureVerificationSecret": {
"type": "string",
"title": "Webhook Signing Secret",
"description": "Signing secret used by the webhook provider selected in the 'Webhook Signature Verification' settings below.",
"isSecret": true,
"editor": "textfield"
},
"allowedIps": {
"type": "array",
"title": "IP Whitelist (CIDR)",
Expand All @@ -143,22 +150,15 @@
"signatureVerification": {
"type": "object",
"title": "Webhook Signature Verification",
"description": "Verify incoming webhook signatures from providers like Stripe, Shopify, GitHub, or Slack.",
"description": "Verify incoming webhook signatures from providers like Stripe, Shopify, GitHub, or Slack. Choose the provider here, then enter its shared secret in the top-level 'Webhook Signing Secret' field above.",
"properties": {
"provider": {
"type": "string",
"title": "Provider",
"description": "Webhook provider for signature verification.",
"description": "Webhook provider for signature verification. Its shared secret is configured in the top-level 'Webhook Signing Secret' field above.",
"enum": ["stripe", "shopify", "github", "slack", "custom"],
"editor": "select"
},
"secret": {
"type": "string",
"title": "Signing Secret",
"description": "The webhook signing secret from your provider.",
"isSecret": true,
"editor": "textfield"
},
"headerName": {
"type": "string",
"title": "Custom Header Name",
Expand Down
Loading
Loading