@resolveio/server-lib 22.1.4 → 22.1.6
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 +1 -0
- package/methods/ai-terminal.js +450 -277
- package/methods/ai-terminal.js.map +1 -1
- package/package.json +1 -1
- package/services/codex-client.d.ts +3 -0
- package/services/codex-client.js +70 -5
- package/services/codex-client.js.map +1 -1
- package/workers/codex-runner.worker.js +21 -2
- package/workers/codex-runner.worker.js.map +1 -1
package/methods/ai-terminal.d.ts
CHANGED
|
@@ -95,6 +95,7 @@ export declare function executeAiAssistantMongoAggregate(payload: AiAssistantMon
|
|
|
95
95
|
export declare function extractAssistantMongoDirective(content: string): AssistantMongoDirective | null;
|
|
96
96
|
export declare function buildAssistantInvoiceCustomerLabelExpr(): Record<string, any>;
|
|
97
97
|
export declare function buildAssistantDatedPivotDisplay(display: AiAssistantDisplayTable, expectedMonths?: string[]): AiAssistantDisplayTable | null;
|
|
98
|
+
export declare function deriveAssistantCommandExecutionStatus(commandValue: any): string;
|
|
98
99
|
export declare function normalizeIdsForTargetField(ids: any[], targetDocs: any[], targetFieldPath: string, targetFieldTypeOverride?: 'objectId' | 'string' | 'unknown'): any[];
|
|
99
100
|
export declare function serializeMongoValue(value: any, maxLength?: number): string | number | boolean | null;
|
|
100
101
|
export declare function flattenForTable(doc: any, options?: {
|