@memnexus-ai/typescript-sdk 1.32.1 → 1.33.0

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/dist/index.cjs CHANGED
@@ -5386,7 +5386,18 @@ var digestMetadata = import_zod.z.lazy(() => import_zod.z.object({
5386
5386
  /** Output format used for this digest */
5387
5387
  format: import_zod.z.enum(["structured", "narrative", "timeline", "status-report"]),
5388
5388
  /** ISO 8601 timestamp when the digest was generated */
5389
- generatedAt: import_zod.z.string().datetime()
5389
+ generatedAt: import_zod.z.string().datetime(),
5390
+ /** Recursion stats (only present when recursive synthesis is used) */
5391
+ recursion: import_zod.z.object({
5392
+ /** Whether recursive synthesis was used */
5393
+ enabled: import_zod.z.boolean(),
5394
+ /** Number of leaf groups synthesized */
5395
+ leafGroups: import_zod.z.number().min(0),
5396
+ /** Total LLM calls made during recursive synthesis */
5397
+ llmCallsUsed: import_zod.z.number().min(0),
5398
+ /** Maximum recursion depth reached */
5399
+ maxDepthReached: import_zod.z.number().min(0)
5400
+ }).optional()
5390
5401
  }));
5391
5402
  var digestSource = import_zod.z.object({
5392
5403
  /** Source memory ID */