@cimulate/copilot-widget 1.20.0 → 1.22.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 +7 -0
- package/dist/cimulate-copilot-widget.es.js +1148 -1145
- package/dist/cimulate-copilot-widget.umd.js +14 -14
- package/dist/copilot.es.js +1148 -1145
- package/dist/copilot.umd.js +13 -13
- package/dist/messaging.css +1 -1
- package/dist/messaging.d.ts +40 -1
- package/dist/messaging.es.js +9337 -9091
- package/dist/messaging.umd.js +32 -32
- package/package.json +1 -1
|
@@ -344,6 +344,13 @@ declare interface MessagingModeConfig {
|
|
|
344
344
|
* hide it. Requires the org's messaging channel to allow transcript download.
|
|
345
345
|
*/
|
|
346
346
|
enableDownloadTranscript?: boolean;
|
|
347
|
+
/**
|
|
348
|
+
* Shows a "Connect to a human agent" button in the messaging search bar that
|
|
349
|
+
* asks the Agentforce agent to escalate the conversation to a human. Defaults
|
|
350
|
+
* to true; set to false to hide it. Requires the org's Agentforce agent to be
|
|
351
|
+
* configured with an escalation path/topic, otherwise the button is a no-op.
|
|
352
|
+
*/
|
|
353
|
+
enableEscalationToAgent?: boolean;
|
|
347
354
|
}
|
|
348
355
|
|
|
349
356
|
declare type PromptsDisplay = "input" | "buttons" | "both";
|