From 58a801eefc4ea6360a917db21390b7bf3eb8c698 Mon Sep 17 00:00:00 2001 From: Karan Shah Date: Fri, 11 Feb 2022 15:56:27 +0000 Subject: [PATCH] Make the API Key a secret visibility config Signed-off-by: Karan Shah --- plugins/airbrake-backend/config.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/airbrake-backend/config.d.ts b/plugins/airbrake-backend/config.d.ts index ab6a7ef537..af28d7e73e 100644 --- a/plugins/airbrake-backend/config.d.ts +++ b/plugins/airbrake-backend/config.d.ts @@ -19,6 +19,7 @@ export interface Config { airbrake: { /** * The API Key to authenticate requests. More details on how to get this here: https://airbrake.io/docs/api/#authentication + * @visibility secret */ apiKey: string; };