@cimulate/copilot-widget 1.25.0 → 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 +6 -0
- package/dist/messaging.es.js +1976 -1979
- package/dist/messaging.umd.js +33 -33
- package/package.json +1 -1
package/dist/messaging.d.ts
CHANGED
|
@@ -226,6 +226,7 @@ declare interface CopilotWidgetProps extends CimCopilotSdkConfig {
|
|
|
226
226
|
disclaimerText?: string;
|
|
227
227
|
disclaimerMarkdown?: string;
|
|
228
228
|
clientContext?: ClientContext;
|
|
229
|
+
progressStepsLimit?: number;
|
|
229
230
|
/**
|
|
230
231
|
* Baseline catalog-scoping parameters (facetFilters, catalogSegment, pricebooks)
|
|
231
232
|
* applied by the workflow as defaults on context-less requests (ask_cim, product view)
|
|
@@ -463,6 +464,11 @@ export declare interface MessagingModeConfig {
|
|
|
463
464
|
*/
|
|
464
465
|
enableEscalationToAgent?: boolean;
|
|
465
466
|
showProductCaptions?: boolean;
|
|
467
|
+
/**
|
|
468
|
+
* Max number of progress steps to display in chat window.
|
|
469
|
+
* When the list grows, only the most recent N are shown.
|
|
470
|
+
*/
|
|
471
|
+
progressStepsLimit?: number;
|
|
466
472
|
}
|
|
467
473
|
|
|
468
474
|
export declare const MessagingProvider: ({ scrt2Url, orgId, esDeveloperName, routingAttributes, capabilitiesVersion, enableLogging, onConnect, onMessage, onError, children, }: MessagingProviderProps) => JSX_2.Element;
|