@memnexus-ai/typescript-sdk 1.58.9 → 1.59.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.cjs +6 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +57 -0
- package/dist/index.d.ts +57 -0
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -6155,6 +6155,8 @@ var memory = import_zod.z.lazy(() => import_zod.z.object({
|
|
|
6155
6155
|
content: import_zod.z.string(),
|
|
6156
6156
|
/** Type of memory */
|
|
6157
6157
|
memoryType: import_zod.z.enum(["episodic", "semantic", "procedural"]),
|
|
6158
|
+
/** 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. */
|
|
6159
|
+
memoryTypeUserSet: import_zod.z.boolean().optional(),
|
|
6158
6160
|
/** Context or domain of the memory */
|
|
6159
6161
|
context: import_zod.z.string().optional(),
|
|
6160
6162
|
/** Associated topics */
|
|
@@ -6356,6 +6358,8 @@ var relatedMemoryResult = import_zod.z.lazy(() => import_zod.z.object({
|
|
|
6356
6358
|
content: import_zod.z.string(),
|
|
6357
6359
|
/** Type of memory */
|
|
6358
6360
|
memoryType: import_zod.z.enum(["episodic", "semantic", "procedural"]),
|
|
6361
|
+
/** 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. */
|
|
6362
|
+
memoryTypeUserSet: import_zod.z.boolean().optional(),
|
|
6359
6363
|
/** Context or domain of the memory */
|
|
6360
6364
|
context: import_zod.z.string().optional(),
|
|
6361
6365
|
/** Associated topics */
|
|
@@ -7225,6 +7229,8 @@ var narrativeMemory = import_zod.z.lazy(() => import_zod.z.object({
|
|
|
7225
7229
|
content: import_zod.z.string(),
|
|
7226
7230
|
/** Type of memory */
|
|
7227
7231
|
memoryType: import_zod.z.enum(["episodic", "semantic", "procedural"]),
|
|
7232
|
+
/** 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. */
|
|
7233
|
+
memoryTypeUserSet: import_zod.z.boolean().optional(),
|
|
7228
7234
|
/** Context or domain of the memory */
|
|
7229
7235
|
context: import_zod.z.string().optional(),
|
|
7230
7236
|
/** Associated topics */
|