@resolveio/server-lib 22.2.32 → 22.2.33
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 +6 -0
- package/methods/ai-terminal.js +405 -181
- package/methods/ai-terminal.js.map +1 -1
- package/package.json +1 -1
package/methods/ai-terminal.d.ts
CHANGED
|
@@ -194,6 +194,12 @@ export declare function repairAssistantFieldPathReferenceInPipeline(pipeline: Ar
|
|
|
194
194
|
export declare function rewriteMatchExpressionsToExpr(match: any): any;
|
|
195
195
|
export declare function normalizeAssistantMonthlyCalendarWindowPipeline(pipeline: Array<Record<string, any>>): Array<Record<string, any>>;
|
|
196
196
|
export declare function normalizeAssistantAggregatePipeline(pipeline?: Array<Record<string, any>>, collection?: string, originalMessage?: string): Array<Record<string, any>>;
|
|
197
|
+
export declare function resolveReadMultiTermJobRegexFallbackForTesting(query: Record<string, any>, probeDocs?: any[], schemaFields?: string[]): {
|
|
198
|
+
query: Record<string, any>;
|
|
199
|
+
fields: string[];
|
|
200
|
+
sourceFields: string[];
|
|
201
|
+
terms: string[];
|
|
202
|
+
} | null;
|
|
197
203
|
export declare function stripQueryFieldPathsDeep(query: any, fieldsToStrip: string[]): any;
|
|
198
204
|
export declare function stripScopedFieldsFromPipeline(pipeline: any[], fieldsToStrip: string[]): any[];
|
|
199
205
|
export declare function rewriteEmbeddedMatchObjects(query: any): any;
|