@cimulate/copilot-widget 1.17.0 → 1.18.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 +6 -0
- package/dist/cimulate-copilot-widget.es.js +2752 -2702
- package/dist/cimulate-copilot-widget.umd.js +24 -24
- package/dist/copilot.es.js +2757 -2707
- package/dist/copilot.umd.js +26 -26
- package/dist/messaging.d.ts +12 -0
- package/dist/messaging.es.js +6740 -6621
- package/dist/messaging.umd.js +30 -30
- package/package.json +2 -2
|
@@ -338,6 +338,12 @@ declare interface MessagingModeConfig {
|
|
|
338
338
|
* codes, not release numbers — 1=rel248, 62=rel252, 63=rel254, 65=rel258.
|
|
339
339
|
*/
|
|
340
340
|
capabilitiesVersion?: string;
|
|
341
|
+
/**
|
|
342
|
+
* Shows a "Download transcript" option in the widget's overflow menu that
|
|
343
|
+
* saves the current conversation as a PDF. Defaults to true; set to false to
|
|
344
|
+
* hide it. Requires the org's messaging channel to allow transcript download.
|
|
345
|
+
*/
|
|
346
|
+
enableDownloadTranscript?: boolean;
|
|
341
347
|
}
|
|
342
348
|
|
|
343
349
|
declare type PromptsDisplay = "input" | "buttons" | "both";
|