@docyrus/ui-pro-ai-assistant 0.4.7 → 0.4.9

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.
@@ -11,6 +11,14 @@ export interface EnumOption {
11
11
  name: string;
12
12
  color?: string;
13
13
  icon?: string;
14
+ parent?: string;
15
+ slug?: string;
16
+ sort_order?: number;
17
+ active?: boolean;
18
+ is_final_option?: boolean;
19
+ force_description?: boolean;
20
+ force_followup_date?: boolean;
21
+ description?: string;
14
22
  }
15
23
  export interface DataSourceField {
16
24
  id: string;
@@ -20,6 +28,11 @@ export interface DataSourceField {
20
28
  read_only?: boolean;
21
29
  sort_order?: number;
22
30
  enumOptions?: EnumOption[];
31
+ /** Inline enum data that may come directly from the field metadata */
32
+ data?: EnumOption[];
33
+ options?: Record<string, unknown>;
34
+ /** Related data source ID for relation fields */
35
+ relation_data_source_id?: string;
23
36
  }
24
37
  export interface DataSourceSchema {
25
38
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@docyrus/ui-pro-ai-assistant",
3
- "version": "0.4.7",
3
+ "version": "0.4.9",
4
4
  "description": "Docyrus AI Assistant component — full-featured chat UI with canvas, projects, and i18n support.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",