From 8bb4ac09af3adea512b38d4ac25d56c41c189499 Mon Sep 17 00:00:00 2001 From: Atharva Deosthale Date: Fri, 10 Apr 2026 12:59:36 +0530 Subject: [PATCH] API keys scopes --- src/lib/constants.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/lib/constants.ts b/src/lib/constants.ts index 4a4a0c77bd..542cc2004e 100644 --- a/src/lib/constants.ts +++ b/src/lib/constants.ts @@ -485,6 +485,18 @@ export const scopes: ScopeDefinition[] = [ description: "Access to create, update, and delete your project's webhooks", category: 'Other', icon: 'globe' + }, + { + scope: 'keys.read', + description: "Access to read your project's API keys", + category: 'Other', + icon: 'globe' + }, + { + scope: 'keys.write', + description: "Access to create, update, and delete your project's API keys", + category: 'Other', + icon: 'globe' } ];