@cimulate/copilot-widget 1.9.8 → 1.9.9
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 +8 -1
- package/dist/cimulate-copilot-widget.es.js +5564 -5555
- package/dist/cimulate-copilot-widget.umd.js +26 -26
- package/dist/copilot.es.js +5571 -5562
- package/dist/copilot.umd.js +26 -26
- package/dist/messaging.d.ts +7 -0
- package/dist/messaging.es.js +1270 -1267
- package/dist/messaging.umd.js +22 -22
- package/package.json +2 -2
package/dist/messaging.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import { AgentforceRoutingResultEvent } from '@cimulate/agentforce-sdk';
|
|
|
3
3
|
import { AskCim } from '@cimulate/copilot-sdk';
|
|
4
4
|
import { AskCimAck } from '@cimulate/copilot-sdk';
|
|
5
5
|
import { AskCimSuggestions } from '@cimulate/copilot-sdk';
|
|
6
|
+
import { BaseCatalogParams } from '@cimulate/copilot-sdk';
|
|
6
7
|
import { BrowseParams } from '@cimulate/copilot-sdk';
|
|
7
8
|
import { ConnectAck } from '@cimulate/copilot-sdk';
|
|
8
9
|
import { ConversationResetAck } from '@cimulate/copilot-sdk';
|
|
@@ -104,6 +105,12 @@ declare interface CopilotWidgetProps extends CimCopilotSdkConfig {
|
|
|
104
105
|
disclaimerText?: string;
|
|
105
106
|
disclaimerMarkdown?: string;
|
|
106
107
|
clientContext?: ClientContext;
|
|
108
|
+
/**
|
|
109
|
+
* Baseline catalog-scoping parameters (facetFilters, catalogSegment, pricebooks)
|
|
110
|
+
* applied by the workflow as defaults on context-less requests (ask_cim, product view)
|
|
111
|
+
* so results are scoped to the storefront's availability rules.
|
|
112
|
+
*/
|
|
113
|
+
baseCatalogParams?: BaseCatalogParams;
|
|
107
114
|
/**
|
|
108
115
|
* @deprecated
|
|
109
116
|
*
|