From f5a4cd1c620cd3d4f4de9ab3c3f14185a0a7e52e Mon Sep 17 00:00:00 2001 From: Chaim Marcus Date: Sat, 16 May 2026 17:19:10 +0000 Subject: [PATCH] feat: add webhooks.receive capability to plugin manifest --- plugin.json | 3 ++- src/manifest.ts | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/plugin.json b/plugin.json index 04a0b77..2ae32c1 100644 --- a/plugin.json +++ b/plugin.json @@ -23,7 +23,8 @@ "jobs.schedule", "activity.log.write", "companies.read", - "projects.read" + "projects.read", + "webhooks.receive" ], "entrypoints": { "worker": "dist/worker.js" diff --git a/src/manifest.ts b/src/manifest.ts index e7ff18e..31bba0c 100644 --- a/src/manifest.ts +++ b/src/manifest.ts @@ -21,6 +21,7 @@ export default { "activity.log.write", "companies.read", "projects.read", + "webhooks.receive", ] as const, entrypoints: { worker: "dist/worker.js",