@8wave/ai-elements 0.97.0 → 0.98.0-beta.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/README.md +1 -0
- package/dist/ai-elements.es.js +6 -0
- package/dist/ai-elements.es.js.map +1 -1
- package/dist-vue/apps/web-component/src/components/FloatingChatWidget.ce.d.ts +6 -0
- package/dist-vue/apps/web-component/src/lib.d.ts +1 -0
- package/dist-vue/packages/models/src/schema/McpServer.d.ts +4 -0
- package/package.json +1 -1
|
@@ -11,6 +11,11 @@ type __VLS_Props = {
|
|
|
11
11
|
appinsightsConnectionString?: string;
|
|
12
12
|
/** Override the session/anonymous cookie name (defaults to 'eight-wave-ai'). */
|
|
13
13
|
cookieName?: string;
|
|
14
|
+
/**
|
|
15
|
+
* Force the chat color scheme instead of following the OS
|
|
16
|
+
* `prefers-color-scheme`. Let a host app hand down its own theme.
|
|
17
|
+
*/
|
|
18
|
+
systemTheme?: 'light' | 'dark';
|
|
14
19
|
};
|
|
15
20
|
declare const __VLS_export: DefineComponent<__VLS_Props, {
|
|
16
21
|
open(): void;
|
|
@@ -26,6 +31,7 @@ declare const __VLS_export: DefineComponent<__VLS_Props, {
|
|
|
26
31
|
floatingButtonPosition: "left" | "right";
|
|
27
32
|
customCss: string;
|
|
28
33
|
baseUrl: string;
|
|
34
|
+
systemTheme: "light" | "dark";
|
|
29
35
|
externalToken: string;
|
|
30
36
|
awaitExternalToken: boolean | string;
|
|
31
37
|
appinsightsConnectionString: string;
|
|
@@ -11,6 +11,7 @@ export declare const FloatingChatWidgetCe: VueElementConstructor<{
|
|
|
11
11
|
customCss?: string;
|
|
12
12
|
appinsightsConnectionString?: string;
|
|
13
13
|
cookieName?: string;
|
|
14
|
+
systemTheme?: "light" | "dark";
|
|
14
15
|
}>;
|
|
15
16
|
export declare const EmbeddedChatWidgetCe: VueElementConstructor<{
|
|
16
17
|
agentId: string;
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
import * as z from 'zod';
|
|
2
|
+
/** Name of the per-org Platform MCP `mcp_server` row created by seedPlatformMcp.ts */
|
|
3
|
+
export declare const PLATFORM_MCP_SERVER_NAME = "Agents Studio Platform MCP";
|
|
4
|
+
/** Name of the per-org Platform Agent created by seedPlatformMcp.ts */
|
|
5
|
+
export declare const PLATFORM_AGENT_NAME = "Assistente piattaforma";
|
|
2
6
|
export declare enum McpServerStatus {
|
|
3
7
|
Active = "active",
|
|
4
8
|
Inactive = "inactive",
|