@resolveio/server-lib 22.3.204 → 22.3.206
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/methods/ai-terminal.d.ts +8 -0
- package/methods/ai-terminal.js +967 -274
- package/methods/ai-terminal.js.map +1 -1
- package/package.json +1 -1
package/methods/ai-terminal.d.ts
CHANGED
|
@@ -107,6 +107,13 @@ type AiAssistantAppDataDimension = {
|
|
|
107
107
|
sort?: Record<string, any>;
|
|
108
108
|
preGroupStages?: Record<string, any>[];
|
|
109
109
|
};
|
|
110
|
+
type AiAssistantAppDataFilterField = {
|
|
111
|
+
id: string;
|
|
112
|
+
terms: string[];
|
|
113
|
+
fields: string[];
|
|
114
|
+
type?: 'string' | 'number' | 'boolean' | 'date';
|
|
115
|
+
operators: string[];
|
|
116
|
+
};
|
|
110
117
|
type AiAssistantDataRequestBreakdownContract = {
|
|
111
118
|
type: 'entity' | 'time' | 'unknown';
|
|
112
119
|
requested_text: string;
|
|
@@ -158,6 +165,7 @@ type AiAssistantAppDataIntent = {
|
|
|
158
165
|
acknowledgement?: string;
|
|
159
166
|
assumptions: string[];
|
|
160
167
|
dimensions: AiAssistantAppDataDimension[];
|
|
168
|
+
filterFields: AiAssistantAppDataFilterField[];
|
|
161
169
|
pipeline?: Record<string, any>[];
|
|
162
170
|
options?: Record<string, any>;
|
|
163
171
|
};
|