From 216b68c6cc875bdd23a38ea609890054631ac69d Mon Sep 17 00:00:00 2001 From: Alec Jacobs Date: Thu, 29 Feb 2024 18:18:27 -0800 Subject: [PATCH] fix: remove config definitions that are secret Signed-off-by: Alec Jacobs --- config.d.ts | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/config.d.ts b/config.d.ts index 63a5062..ffb3ffc 100644 --- a/config.d.ts +++ b/config.d.ts @@ -32,15 +32,5 @@ export interface Config { * @visibility frontend */ apiBaseUrl?: string; - /** - * Optional PagerDuty API Token used in API calls from the backend component. - * @visibility frontend - */ - apiToken?: string; - /** - * Optional PagerDuty Scoped OAuth Token used in API calls from the backend component. - * @visibility frontend - */ - oauth?: PagerDutyOAuthConfig; }; }