-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathcomponents.d.ts
More file actions
253 lines (253 loc) · 9.01 KB
/
components.d.ts
File metadata and controls
253 lines (253 loc) · 9.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
/* eslint-disable */
/* tslint:disable */
/**
* This is an autogenerated file created by the Stencil compiler.
* It contains typing information for all components that exist in this project.
*/
import { HTMLStencilElement, JSXBase } from "@stencil/core/internal";
export namespace Components {
interface OpenChatStudioWidget {
/**
* Allow the user to attach files to their messages.
* @default false
*/
"allowAttachments": boolean;
/**
* Allow the user to make the chat window full screen.
* @default true
*/
"allowFullScreen": boolean;
/**
* The base URL for the API.
* @default 'https://www.openchatstudio.com'
*/
"apiBaseUrl"?: string;
/**
* The shape of the chat button. 'round' makes it circular, 'square' keeps it rectangular.
* @default 'square'
*/
"buttonShape": 'round' | 'square';
/**
* The text to display on the button.
*/
"buttonText"?: string;
/**
* The ID of the chatbot to connect to.
*/
"chatbotId": string;
/**
* Authentication key for embedded channels
*/
"embedKey"?: string;
/**
* The text to place in the header.
*/
"headerText": '';
/**
* URL of the icon to display on the button. If not provided, uses the default OCS logo.
*/
"iconUrl"?: string;
/**
* The language code for the widget UI (e.g., 'en', 'es', 'fr'). Defaults to en
*/
"language"?: string;
/**
* Maximum number of characters allowed in a single message (derived from the model's token limit). When set, a live counter is shown and the send button is disabled when exceeded.
*/
"maxCharLimit"?: number;
/**
* The operating mode of the widget. - 'standard': Default floating window with launcher button. - 'kiosk': Fills parent container, always visible, no header or launcher button. The parent element must establish a containing block (e.g. `position: relative`).
* @default 'standard'
*/
"mode": 'standard' | 'kiosk';
/**
* The message to display in the new chat confirmation dialog.
*/
"newChatConfirmationMessage"?: string;
/**
* Optional context object to send with each message. This provides page-specific context to the bot.
*/
"pageContext"?: Record<string, any>;
/**
* Whether to persist session data to local storage to allow resuming previous conversations after page reload.
* @default true
*/
"persistentSession": boolean;
/**
* Minutes since the most recent message after which the session data in local storage will expire. Set this to `0` to never expire.
* @default 60 * 24
*/
"persistentSessionExpire": number;
/**
* The initial position of the chat widget on the screen.
* @default 'right'
*/
"position": 'left' | 'center' | 'right';
/**
* Whether to show the launcher button. Set to false to hide the button and open the chat window programmatically via the `visible` property.
* @default true
*/
"showButton": boolean;
/**
* Array of starter questions that users can click to send (JSON array of strings)
*/
"starterQuestions"?: string;
"translationsUrl"?: string;
/**
* The text to display while the assistant is typing/preparing a response.
*/
"typingIndicatorText"?: string;
/**
* Used to associate chat sessions with a specific user across multiple visits/sessions
*/
"userId"?: string;
/**
* Display name for the user.
*/
"userName"?: string;
"versionNumber"?: number;
/**
* Whether the chat widget is visible on load.
* @default false
*/
"visible": boolean;
/**
* Welcome messages to display above starter questions (JSON array of strings)
*/
"welcomeMessages"?: string;
}
}
declare global {
interface HTMLOpenChatStudioWidgetElement extends Components.OpenChatStudioWidget, HTMLStencilElement {
}
var HTMLOpenChatStudioWidgetElement: {
prototype: HTMLOpenChatStudioWidgetElement;
new (): HTMLOpenChatStudioWidgetElement;
};
interface HTMLElementTagNameMap {
"open-chat-studio-widget": HTMLOpenChatStudioWidgetElement;
}
}
declare namespace LocalJSX {
interface OpenChatStudioWidget {
/**
* Allow the user to attach files to their messages.
* @default false
*/
"allowAttachments"?: boolean;
/**
* Allow the user to make the chat window full screen.
* @default true
*/
"allowFullScreen"?: boolean;
/**
* The base URL for the API.
* @default 'https://www.openchatstudio.com'
*/
"apiBaseUrl"?: string;
/**
* The shape of the chat button. 'round' makes it circular, 'square' keeps it rectangular.
* @default 'square'
*/
"buttonShape"?: 'round' | 'square';
/**
* The text to display on the button.
*/
"buttonText"?: string;
/**
* The ID of the chatbot to connect to.
*/
"chatbotId": string;
/**
* Authentication key for embedded channels
*/
"embedKey"?: string;
/**
* The text to place in the header.
*/
"headerText"?: '';
/**
* URL of the icon to display on the button. If not provided, uses the default OCS logo.
*/
"iconUrl"?: string;
/**
* The language code for the widget UI (e.g., 'en', 'es', 'fr'). Defaults to en
*/
"language"?: string;
/**
* Maximum number of characters allowed in a single message (derived from the model's token limit). When set, a live counter is shown and the send button is disabled when exceeded.
*/
"maxCharLimit"?: number;
/**
* The operating mode of the widget. - 'standard': Default floating window with launcher button. - 'kiosk': Fills parent container, always visible, no header or launcher button. The parent element must establish a containing block (e.g. `position: relative`).
* @default 'standard'
*/
"mode"?: 'standard' | 'kiosk';
/**
* The message to display in the new chat confirmation dialog.
*/
"newChatConfirmationMessage"?: string;
/**
* Optional context object to send with each message. This provides page-specific context to the bot.
*/
"pageContext"?: Record<string, any>;
/**
* Whether to persist session data to local storage to allow resuming previous conversations after page reload.
* @default true
*/
"persistentSession"?: boolean;
/**
* Minutes since the most recent message after which the session data in local storage will expire. Set this to `0` to never expire.
* @default 60 * 24
*/
"persistentSessionExpire"?: number;
/**
* The initial position of the chat widget on the screen.
* @default 'right'
*/
"position"?: 'left' | 'center' | 'right';
/**
* Whether to show the launcher button. Set to false to hide the button and open the chat window programmatically via the `visible` property.
* @default true
*/
"showButton"?: boolean;
/**
* Array of starter questions that users can click to send (JSON array of strings)
*/
"starterQuestions"?: string;
"translationsUrl"?: string;
/**
* The text to display while the assistant is typing/preparing a response.
*/
"typingIndicatorText"?: string;
/**
* Used to associate chat sessions with a specific user across multiple visits/sessions
*/
"userId"?: string;
/**
* Display name for the user.
*/
"userName"?: string;
"versionNumber"?: number;
/**
* Whether the chat widget is visible on load.
* @default false
*/
"visible"?: boolean;
/**
* Welcome messages to display above starter questions (JSON array of strings)
*/
"welcomeMessages"?: string;
}
interface IntrinsicElements {
"open-chat-studio-widget": OpenChatStudioWidget;
}
}
export { LocalJSX as JSX };
declare module "@stencil/core" {
export namespace JSX {
interface IntrinsicElements {
"open-chat-studio-widget": LocalJSX.OpenChatStudioWidget & JSXBase.HTMLAttributes<HTMLOpenChatStudioWidgetElement>;
}
}
}