From 679239d9fc0dd671cae0c89924da8c8aece2fb57 Mon Sep 17 00:00:00 2001 From: Matt Aitken Date: Sun, 19 Feb 2023 19:18:08 +0000 Subject: [PATCH] Added scopes to api_key authentication method --- apps/integrations/src/core/authentication/types.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/integrations/src/core/authentication/types.ts b/apps/integrations/src/core/authentication/types.ts index 18dfc1844..64092fee7 100644 --- a/apps/integrations/src/core/authentication/types.ts +++ b/apps/integrations/src/core/authentication/types.ts @@ -20,6 +20,7 @@ type APIKeyAuthentication = { type: "api_key"; placement: AuthenticationPlacement; documentation: string; + scopes: Record; additionalFields?: { key: string; fieldType: "text";