@xpert-ai/chatkit-types 0.4.3 → 0.4.4
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/index.d.ts +13 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -330,6 +330,15 @@ export declare interface ChatkitMessage {
|
|
|
330
330
|
visibleAt?: string | Date | null;
|
|
331
331
|
}
|
|
332
332
|
|
|
333
|
+
export declare type ChatKitMessageNavigationOptions = {
|
|
334
|
+
/**
|
|
335
|
+
* Whether to show the message quick navigation rail.
|
|
336
|
+
*
|
|
337
|
+
* @default true
|
|
338
|
+
*/
|
|
339
|
+
enabled?: boolean;
|
|
340
|
+
};
|
|
341
|
+
|
|
333
342
|
export declare type ChatKitOptions = {
|
|
334
343
|
/**
|
|
335
344
|
* ChatKit iframe URL for web component integrations.
|
|
@@ -371,6 +380,10 @@ export declare type ChatKitOptions = {
|
|
|
371
380
|
* Layout configuration for the ChatKit UI.
|
|
372
381
|
*/
|
|
373
382
|
layout?: ChatKitLayoutOptions;
|
|
383
|
+
/**
|
|
384
|
+
* Message list quick navigation controls.
|
|
385
|
+
*/
|
|
386
|
+
messageNavigation?: ChatKitMessageNavigationOptions;
|
|
374
387
|
/**
|
|
375
388
|
* Optional animated pet companion rendered by the ChatKit web component over
|
|
376
389
|
* the host page viewport.
|