@builder.io/ai-utils 0.0.52 → 0.0.53
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/events.d.ts +1 -0
- package/dist/settings.d.ts +8 -0
- package/package.json +1 -1
package/dist/events.d.ts
CHANGED
package/dist/settings.d.ts
CHANGED
|
@@ -3,6 +3,10 @@ export interface AssistantSettings {
|
|
|
3
3
|
viewId?: string;
|
|
4
4
|
cssOverrides?: string;
|
|
5
5
|
headingText: string;
|
|
6
|
+
headingTitle?: string;
|
|
7
|
+
headingImage?: string;
|
|
8
|
+
suggestedPrompts?: SuggestedPrompt[];
|
|
9
|
+
hideNewChatIfNoMessages?: boolean;
|
|
6
10
|
hideFrameworkPicker?: boolean;
|
|
7
11
|
hideHeader?: boolean;
|
|
8
12
|
messagePlaceholder: string;
|
|
@@ -21,6 +25,10 @@ export interface AssistantSettings {
|
|
|
21
25
|
theme?: "dark" | "light";
|
|
22
26
|
transparentBackground?: boolean;
|
|
23
27
|
}
|
|
28
|
+
export interface SuggestedPrompt {
|
|
29
|
+
text: string;
|
|
30
|
+
type: "modify" | "interactivity" | "data";
|
|
31
|
+
}
|
|
24
32
|
export interface Snippet {
|
|
25
33
|
/**
|
|
26
34
|
* The text that will be displayed in the chat snippet button.
|