@cimulate/copilot-widget 1.9.6 → 1.9.7
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 +3 -1
- package/dist/cimulate-copilot-widget.es.js +5981 -5960
- package/dist/cimulate-copilot-widget.umd.js +25 -25
- package/dist/copilot.es.js +5231 -5210
- package/dist/copilot.umd.js +25 -25
- package/dist/messaging.d.ts +2 -0
- package/dist/messaging.es.js +1048 -1039
- package/dist/messaging.umd.js +12 -12
- package/package.json +2 -2
|
@@ -82,6 +82,8 @@ declare type CimCopilotSdkConfig = {
|
|
|
82
82
|
apiKey?: string;
|
|
83
83
|
apiToken?: string;
|
|
84
84
|
baseUrl?: string;
|
|
85
|
+
customerId?: string;
|
|
86
|
+
tenantId?: string;
|
|
85
87
|
};
|
|
86
88
|
|
|
87
89
|
declare interface ClientContext {
|
|
@@ -229,7 +231,7 @@ declare interface CopilotWidgetProps extends CimCopilotSdkConfig {
|
|
|
229
231
|
* PromptsExtensionContext >
|
|
230
232
|
* CopilotProvider (SocketSdk: copilot-sdk)
|
|
231
233
|
*/
|
|
232
|
-
declare const CopilotWidgetProvider: ({ mode, apiKey, apiToken, baseUrl, logoUrl, headerText, headerConfig, theme, openLinksInNewTab, globalClassName, isDevelopment, componentType, componentConfig, entryType, entryMessage, disclaimerText, disclaimerMarkdown, clientContext, searchPlaceholder, searchButtonLabel, searchConfig, promptsConfig, resetConversationMessage, conversationHistory, onConnect, onCopilotEvent, onRefinedSearch, onRefinedBrowse, __features, children, }: CopilotWidgetProps & {
|
|
234
|
+
declare const CopilotWidgetProvider: ({ mode, apiKey, apiToken, baseUrl, customerId, tenantId, logoUrl, headerText, headerConfig, theme, openLinksInNewTab, globalClassName, isDevelopment, componentType, componentConfig, entryType, entryMessage, disclaimerText, disclaimerMarkdown, clientContext, searchPlaceholder, searchButtonLabel, searchConfig, promptsConfig, resetConversationMessage, conversationHistory, onConnect, onCopilotEvent, onRefinedSearch, onRefinedBrowse, __features, children, }: CopilotWidgetProps & {
|
|
233
235
|
children: ReactNode;
|
|
234
236
|
}) => JSX_2.Element;
|
|
235
237
|
|