From 52e001bd36c979ff509a40ab0d9ac5d0e76d4586 Mon Sep 17 00:00:00 2001 From: Colin Galvin Date: Thu, 5 Dec 2024 19:29:52 -0500 Subject: [PATCH 1/2] feat(typings): add isDefault to CopilotPromptDataPoint --- src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.ts b/src/index.ts index 0d1495a..3504f9c 100644 --- a/src/index.ts +++ b/src/index.ts @@ -4725,6 +4725,7 @@ export interface CopilotPromptDataPoint { id?: number; copilotEntityType?: CopilotEntityType; field?: string; + isDefault: boolean; } export interface CopilotPromptLocation { id?: number; From 2b1b79bd86fbb4590cb1781ffdf979560cce7dca Mon Sep 17 00:00:00 2001 From: Colin Galvin Date: Fri, 6 Dec 2024 10:46:05 -0500 Subject: [PATCH 2/2] feat(typings): add isHidden to CopilotGenerativeProvider --- src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.ts b/src/index.ts index 3504f9c..4fe736e 100644 --- a/src/index.ts +++ b/src/index.ts @@ -4691,6 +4691,7 @@ export interface CopilotGenerativeModel { export interface CopilotGenerativeProvider { id?: number; label?: string; + isHidden: boolean; } export interface CopilotLanguage { id?: number;