@resolveio/server-lib 20.15.7 → 20.15.8

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.
@@ -60,12 +60,16 @@ export declare function executeAiAssistantMongoRead(payload: AiAssistantMongoRea
60
60
  export declare function executeAiAssistantMongoAggregate(payload: AiAssistantMongoAggregateInput, context: any): Promise<any>;
61
61
  export declare function extractAssistantMongoDirective(content: string): AssistantMongoDirective | null;
62
62
  export declare function serializeMongoValue(value: any, maxLength?: number): string | number | boolean | null;
63
- export declare function flattenForTable(doc: any): Record<string, any>;
63
+ export declare function flattenForTable(doc: any, options?: {
64
+ includeGroupFromId?: boolean;
65
+ includeIds?: boolean;
66
+ }): Record<string, any>;
64
67
  export declare function buildDisplayTable(docs: any[], options?: {
65
68
  maxColumns?: number;
66
69
  maxRows?: number;
67
70
  includeIds?: boolean;
68
71
  priorityFields?: string[];
72
+ includeGroupFromId?: boolean;
69
73
  }): AiAssistantDisplayTable;
70
74
  export declare function formatDisplayTableMarkdown(display: AiAssistantDisplayTable): string;
71
75
  export {};