@memnexus-ai/sdk 1.61.0 → 1.62.1

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.d.cts CHANGED
@@ -646,7 +646,7 @@ interface SearchRequest {
646
646
  expandEntities?: boolean;
647
647
  /** Enable topic graph traversal branch in hybrid search (default true) */
648
648
  expandTopics?: boolean;
649
- /** Enable fact graph traversal branch in hybrid search (default true) */
649
+ /** Enable fact graph traversal branch in hybrid search (default false) */
650
650
  expandFacts?: boolean;
651
651
  /** Include superseded and contradicted memories in results (default false) */
652
652
  includeSuperseded?: boolean;
@@ -1298,11 +1298,11 @@ interface DigestRequest {
1298
1298
  recent?: string;
1299
1299
  /** Filter to memories with these topics */
1300
1300
  topics?: string[];
1301
- /** Limit to specific conversation IDs */
1301
+ /** Limit to specific conversation IDs (max 10). Each id triggers its own hybrid search during gather, so the list is bounded to prevent a single-request memory blow-up. */
1302
1302
  conversationIds?: string[];
1303
1303
  /** Output format: "structured" (sections with headers), "narrative" (chronological prose), "timeline" (dated event list), "status-report" (done/in-progress/blocked) */
1304
1304
  format?: 'structured' | 'narrative' | 'timeline' | 'status-report';
1305
- /** Maximum number of memories to consider (1-500, default 100) */
1305
+ /** Maximum number of memories to consider (1-100, default 100) */
1306
1306
  maxSources?: number;
1307
1307
  /** Whether to include source memory IDs in the response */
1308
1308
  includeMemoryIds?: boolean;
package/dist/index.d.ts CHANGED
@@ -646,7 +646,7 @@ interface SearchRequest {
646
646
  expandEntities?: boolean;
647
647
  /** Enable topic graph traversal branch in hybrid search (default true) */
648
648
  expandTopics?: boolean;
649
- /** Enable fact graph traversal branch in hybrid search (default true) */
649
+ /** Enable fact graph traversal branch in hybrid search (default false) */
650
650
  expandFacts?: boolean;
651
651
  /** Include superseded and contradicted memories in results (default false) */
652
652
  includeSuperseded?: boolean;
@@ -1298,11 +1298,11 @@ interface DigestRequest {
1298
1298
  recent?: string;
1299
1299
  /** Filter to memories with these topics */
1300
1300
  topics?: string[];
1301
- /** Limit to specific conversation IDs */
1301
+ /** Limit to specific conversation IDs (max 10). Each id triggers its own hybrid search during gather, so the list is bounded to prevent a single-request memory blow-up. */
1302
1302
  conversationIds?: string[];
1303
1303
  /** Output format: "structured" (sections with headers), "narrative" (chronological prose), "timeline" (dated event list), "status-report" (done/in-progress/blocked) */
1304
1304
  format?: 'structured' | 'narrative' | 'timeline' | 'status-report';
1305
- /** Maximum number of memories to consider (1-500, default 100) */
1305
+ /** Maximum number of memories to consider (1-100, default 100) */
1306
1306
  maxSources?: number;
1307
1307
  /** Whether to include source memory IDs in the response */
1308
1308
  includeMemoryIds?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@memnexus-ai/sdk",
3
- "version": "1.61.0",
3
+ "version": "1.62.1",
4
4
  "description": "Official Node.js SDK for the MemNexus API",
5
5
  "license": "Proprietary",
6
6
  "type": "module",