From 3e51851b1132e40fc8bf6bbb4a12bb871f79225c Mon Sep 17 00:00:00 2001 From: Atharva Deosthale Date: Thu, 9 Apr 2026 20:05:41 +0530 Subject: [PATCH] Add webhook scopes --- src/lib/constants.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/lib/constants.ts b/src/lib/constants.ts index f35a1eddbb..4a4a0c77bd 100644 --- a/src/lib/constants.ts +++ b/src/lib/constants.ts @@ -473,6 +473,18 @@ export const scopes: ScopeDefinition[] = [ description: "Access to delete your site's logs", category: 'Sites', icon: 'globe' + }, + { + scope: 'webhooks.read', + description: "Access to read your project's webhooks", + category: 'Other', + icon: 'globe' + }, + { + scope: 'webhooks.write', + description: "Access to create, update, and delete your project's webhooks", + category: 'Other', + icon: 'globe' } ];