From 59afcd157abd774e988226fda4ae4d000f93b294 Mon Sep 17 00:00:00 2001 From: "michael.dill" Date: Tue, 3 Sep 2024 14:29:42 -0500 Subject: [PATCH] feat(typings): Add CopilotPrompt --- src/index.ts | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/src/index.ts b/src/index.ts index c8aacb8..9951ffb 100644 --- a/src/index.ts +++ b/src/index.ts @@ -4646,6 +4646,23 @@ export interface ClientCorporationTaxExemptionStatusLookup { label?: Strings; } +export interface CopilotPrompt { + id?: number; + privateLabelID?: number; + label?: Strings; + copilotRoleID?: number; + copilotTaskID?: number; + copilotToneID?: number; + copilotLengthID?: number; + copilotLanguageID?: number; + isSecondaryEntityRequired?: boolean; + customAction?: Strings; + isEnabled?: boolean; + copilotPromptLocationID?: number; + copilotPrimaryEntityTypeID?: number; + copilotSecondaryEntityTypeID?: number; +} + export interface CorpFile { id?: number; contentSubType?: Strings;