@inkeep/agents-ui-js-cloud 0.15.16 → 0.15.18

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/embed.d.ts DELETED
@@ -1,41 +0,0 @@
1
- import { InkeepEmbeddedChat, InkeepEmbeddedSearch, InkeepEmbeddedWidget, InkeepModalChat, InkeepModalSearch, InkeepModalWidget, InkeepIntelligentForm, InkeepChatButton, InkeepSearchBar } from '@inkeep/widget-closed';
2
- /**
3
- * Maps component implementations to their global registration names.
4
- * This mapping defines how components will be exposed on the global Inkeep object.
5
- *
6
- * The keys represent the public API names, while the values are the actual component implementations:
7
- * - Embedded variants are rendered inline within the page
8
- * - Modal variants are rendered in an overlay/modal dialog
9
- * - Components can provide chat, search, or both capabilities
10
- *
11
- * @example
12
- * ```ts
13
- * window.Inkeep.EmbeddedChat('#chat-container', {
14
- * baseSettings: {
15
- * apiKey: 'your-api-key',
16
- * }
17
- * })
18
- * ```
19
- */
20
- declare const componentMap: {
21
- EmbeddedChat: typeof InkeepEmbeddedChat;
22
- EmbeddedSearch: typeof InkeepEmbeddedSearch;
23
- EmbeddedSearchAndChat: typeof InkeepEmbeddedWidget;
24
- ModalChat: typeof InkeepModalChat;
25
- ModalSearch: typeof InkeepModalSearch;
26
- ModalSearchAndChat: typeof InkeepModalWidget;
27
- IntelligentForm: typeof InkeepIntelligentForm;
28
- ChatButton: typeof InkeepChatButton;
29
- SearchBar: typeof InkeepSearchBar;
30
- };
31
- export type Component = keyof typeof componentMap;
32
- /**
33
- * Extends the Window interface to include the Inkeep global object.
34
- * Each component is exposed as a function that takes a target selector and props.
35
- */
36
- declare global {
37
- interface Window {
38
- Inkeep: Partial<Record<Component, (targetSelector: string, props: any) => any>>;
39
- }
40
- }
41
- export {};
@@ -1 +0,0 @@
1
- export {};