@memnexus-ai/sdk 1.58.8 → 1.59.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.d.cts CHANGED
@@ -96,6 +96,8 @@ interface Memory {
96
96
  content: string;
97
97
  /** Type of memory */
98
98
  memoryType: 'episodic' | 'semantic' | 'procedural';
99
+ /** True when memoryType was explicitly supplied by the caller on create/update, rather than defaulted from role/name. The async graph-extraction classifier reads this to skip auto-classification of user-set types. Absent on memories written before v3.84. */
100
+ memoryTypeUserSet?: boolean;
99
101
  /** Context or domain of the memory */
100
102
  context?: string;
101
103
  /** Associated topics */
@@ -281,6 +283,7 @@ interface RelatedMemoryResult {
281
283
  version?: number;
282
284
  content: string;
283
285
  memoryType: 'episodic' | 'semantic' | 'procedural';
286
+ memoryTypeUserSet?: boolean;
284
287
  context?: string;
285
288
  topics?: string[];
286
289
  timestamp?: string;
@@ -1068,6 +1071,7 @@ interface NarrativeMemory {
1068
1071
  version?: number;
1069
1072
  content: string;
1070
1073
  memoryType: 'episodic' | 'semantic' | 'procedural';
1074
+ memoryTypeUserSet?: boolean;
1071
1075
  context?: string;
1072
1076
  topics?: string[];
1073
1077
  timestamp?: string;
@@ -3032,6 +3036,7 @@ declare class Memories {
3032
3036
  version?: number;
3033
3037
  content: string;
3034
3038
  memoryType: 'episodic' | 'semantic' | 'procedural';
3039
+ memoryTypeUserSet?: boolean;
3035
3040
  context?: string;
3036
3041
  topics?: string[];
3037
3042
  timestamp?: string;
package/dist/index.d.ts CHANGED
@@ -96,6 +96,8 @@ interface Memory {
96
96
  content: string;
97
97
  /** Type of memory */
98
98
  memoryType: 'episodic' | 'semantic' | 'procedural';
99
+ /** True when memoryType was explicitly supplied by the caller on create/update, rather than defaulted from role/name. The async graph-extraction classifier reads this to skip auto-classification of user-set types. Absent on memories written before v3.84. */
100
+ memoryTypeUserSet?: boolean;
99
101
  /** Context or domain of the memory */
100
102
  context?: string;
101
103
  /** Associated topics */
@@ -281,6 +283,7 @@ interface RelatedMemoryResult {
281
283
  version?: number;
282
284
  content: string;
283
285
  memoryType: 'episodic' | 'semantic' | 'procedural';
286
+ memoryTypeUserSet?: boolean;
284
287
  context?: string;
285
288
  topics?: string[];
286
289
  timestamp?: string;
@@ -1068,6 +1071,7 @@ interface NarrativeMemory {
1068
1071
  version?: number;
1069
1072
  content: string;
1070
1073
  memoryType: 'episodic' | 'semantic' | 'procedural';
1074
+ memoryTypeUserSet?: boolean;
1071
1075
  context?: string;
1072
1076
  topics?: string[];
1073
1077
  timestamp?: string;
@@ -3032,6 +3036,7 @@ declare class Memories {
3032
3036
  version?: number;
3033
3037
  content: string;
3034
3038
  memoryType: 'episodic' | 'semantic' | 'procedural';
3039
+ memoryTypeUserSet?: boolean;
3035
3040
  context?: string;
3036
3041
  topics?: string[];
3037
3042
  timestamp?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@memnexus-ai/sdk",
3
- "version": "1.58.8",
3
+ "version": "1.59.0",
4
4
  "description": "Official Node.js SDK for the MemNexus API",
5
5
  "license": "Proprietary",
6
6
  "type": "module",