From de3524bde8a6e297041cea95800b342683b7e53f Mon Sep 17 00:00:00 2001 From: "michael.dill" Date: Tue, 3 Sep 2024 11:15:34 -0500 Subject: [PATCH] Add CopilotPrompt --- src/index.ts | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/src/index.ts b/src/index.ts index 7403f7c..9951ffb 100644 --- a/src/index.ts +++ b/src/index.ts @@ -4645,6 +4645,24 @@ export interface ClientCorporationTaxExemptionStatusLookup { isDeleted?: boolean; 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;