@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.
@@ -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
  /**