@cimulate/copilot-widget 1.24.7 → 1.25.1
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 +1008 -1006
- package/dist/cimulate-copilot-widget.umd.js +15 -15
- package/dist/copilot.es.js +1008 -1006
- package/dist/copilot.umd.js +14 -14
- package/dist/messaging.d.ts +12 -0
- package/dist/messaging.es.js +9826 -9675
- package/dist/messaging.umd.js +30 -30
- package/package.json +2 -2
|
@@ -199,6 +199,7 @@ declare interface CopilotWidgetProps extends CimCopilotSdkConfig {
|
|
|
199
199
|
disclaimerText?: string;
|
|
200
200
|
disclaimerMarkdown?: string;
|
|
201
201
|
clientContext?: ClientContext;
|
|
202
|
+
progressStepsLimit?: number;
|
|
202
203
|
/**
|
|
203
204
|
* Baseline catalog-scoping parameters (facetFilters, catalogSegment, pricebooks)
|
|
204
205
|
* applied by the workflow as defaults on context-less requests (ask_cim, product view)
|
|
@@ -372,6 +373,11 @@ declare interface MessagingModeConfig {
|
|
|
372
373
|
*/
|
|
373
374
|
enableEscalationToAgent?: boolean;
|
|
374
375
|
showProductCaptions?: boolean;
|
|
376
|
+
/**
|
|
377
|
+
* Max number of progress steps to display in chat window.
|
|
378
|
+
* When the list grows, only the most recent N are shown.
|
|
379
|
+
*/
|
|
380
|
+
progressStepsLimit?: number;
|
|
375
381
|
}
|
|
376
382
|
|
|
377
383
|
/**
|