@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
package/dist/messaging.d.ts
CHANGED
|
@@ -528,7 +528,7 @@ declare interface ProductTileVariantOption {
|
|
|
528
528
|
ord?: boolean;
|
|
529
529
|
}
|
|
530
530
|
|
|
531
|
-
declare type PromptsExtensionConfig = Omit<PromptsExtensionState, "isInitialized" | "activePromptsId" | "userPrompt" | "promptsMessage" | "responseMessage" | "isResponseLoading"
|
|
531
|
+
declare type PromptsExtensionConfig = Omit<PromptsExtensionState, "isInitialized" | "activePromptsId" | "userPrompt" | "promptsMessage" | "responseMessage" | "isResponseLoading" | "placeholder" | "askElseButtonLabel"> & Partial<Pick<PromptsExtensionState, "placeholder" | "askElseButtonLabel">>;
|
|
532
532
|
|
|
533
533
|
declare type PromptsExtensionState = {
|
|
534
534
|
isInitialized: boolean;
|
|
@@ -537,6 +537,7 @@ declare type PromptsExtensionState = {
|
|
|
537
537
|
elementId: string | null;
|
|
538
538
|
entryType: EntryType | null;
|
|
539
539
|
placeholder: string | null;
|
|
540
|
+
askElseButtonLabel: string | null;
|
|
540
541
|
params: PromptsParams | null;
|
|
541
542
|
activePromptsId: string | null;
|
|
542
543
|
userPrompt: string | null;
|