@libxai/board 1.4.21 → 1.4.22

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.cts CHANGED
@@ -295,6 +295,13 @@ interface GanttAIAssistantConfig {
295
295
  maxHistory?: number;
296
296
  /** Persist chat history in localStorage @version 0.17.42 */
297
297
  persistHistory?: PersistHistoryConfig;
298
+ /** Mentionable users for @mention autocomplete in the chat input */
299
+ mentionableUsers?: Array<{
300
+ id: string;
301
+ name: string;
302
+ email?: string;
303
+ avatar?: string;
304
+ }>;
298
305
  }
299
306
  /**
300
307
  * AI Command result interface
package/dist/index.d.ts CHANGED
@@ -295,6 +295,13 @@ interface GanttAIAssistantConfig {
295
295
  maxHistory?: number;
296
296
  /** Persist chat history in localStorage @version 0.17.42 */
297
297
  persistHistory?: PersistHistoryConfig;
298
+ /** Mentionable users for @mention autocomplete in the chat input */
299
+ mentionableUsers?: Array<{
300
+ id: string;
301
+ name: string;
302
+ email?: string;
303
+ avatar?: string;
304
+ }>;
298
305
  }
299
306
  /**
300
307
  * AI Command result interface