From 5464dcf0933bd8afec26704662dfc5276ef07f47 Mon Sep 17 00:00:00 2001 From: Mike Donnalley Date: Fri, 13 Oct 2023 10:28:22 -0700 Subject: [PATCH] fix: add types for warn-if-update-available (#826) --- src/interfaces/pjson.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/interfaces/pjson.ts b/src/interfaces/pjson.ts index b3153b983..976c5bfc4 100644 --- a/src/interfaces/pjson.ts +++ b/src/interfaces/pjson.ts @@ -99,6 +99,12 @@ export namespace PJSON { nsisCustomization?: string schema?: number scope?: string + 'warn-if-update-available'?: { + authorization: string + message: string + registry: string + timeoutInDays: number + } } }