@cimulate/copilot-widget 1.14.3 → 1.15.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cimulate-copilot-widget.d.ts +2 -1
- package/dist/cimulate-copilot-widget.es.js +260 -248
- package/dist/cimulate-copilot-widget.umd.js +22 -22
- package/dist/copilot.es.js +271 -259
- package/dist/copilot.umd.js +22 -22
- package/dist/messaging.d.ts +2 -1
- package/package.json +1 -1
|
@@ -335,7 +335,7 @@ declare interface MessagingModeConfig {
|
|
|
335
335
|
capabilitiesVersion?: string;
|
|
336
336
|
}
|
|
337
337
|
|
|
338
|
-
declare type PromptsExtensionConfig = Omit<PromptsExtensionState, "isInitialized" | "activePromptsId" | "userPrompt" | "promptsMessage" | "responseMessage" | "isResponseLoading"
|
|
338
|
+
declare type PromptsExtensionConfig = Omit<PromptsExtensionState, "isInitialized" | "activePromptsId" | "userPrompt" | "promptsMessage" | "responseMessage" | "isResponseLoading" | "placeholder" | "askElseButtonLabel"> & Partial<Pick<PromptsExtensionState, "placeholder" | "askElseButtonLabel">>;
|
|
339
339
|
|
|
340
340
|
declare type PromptsExtensionState = {
|
|
341
341
|
isInitialized: boolean;
|
|
@@ -344,6 +344,7 @@ declare type PromptsExtensionState = {
|
|
|
344
344
|
elementId: string | null;
|
|
345
345
|
entryType: EntryType | null;
|
|
346
346
|
placeholder: string | null;
|
|
347
|
+
askElseButtonLabel: string | null;
|
|
347
348
|
params: PromptsParams | null;
|
|
348
349
|
activePromptsId: string | null;
|
|
349
350
|
userPrompt: string | null;
|