@memnexus-ai/typescript-sdk 1.22.0 → 1.23.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 +15 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +29 -9
- package/dist/index.d.ts +29 -9
- package/dist/index.js +15 -5
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -4388,14 +4388,24 @@ var fact = import_zod.z.object({
|
|
|
4388
4388
|
id: import_zod.z.string(),
|
|
4389
4389
|
/** User ID who owns this fact */
|
|
4390
4390
|
userId: import_zod.z.string(),
|
|
4391
|
-
/**
|
|
4392
|
-
|
|
4393
|
-
/**
|
|
4394
|
-
|
|
4395
|
-
/**
|
|
4391
|
+
/** The subject of the fact (what the fact is about) */
|
|
4392
|
+
subject: import_zod.z.string(),
|
|
4393
|
+
/** The relationship or property type */
|
|
4394
|
+
predicate: import_zod.z.string(),
|
|
4395
|
+
/** The value or target of the relationship */
|
|
4396
|
+
object: import_zod.z.string(),
|
|
4397
|
+
/** Fact name/label (deprecated, use subject) */
|
|
4398
|
+
name: import_zod.z.string().optional(),
|
|
4399
|
+
/** Entity type (deprecated, use predicate) */
|
|
4400
|
+
type: import_zod.z.string().optional(),
|
|
4401
|
+
/** Fact description (deprecated) */
|
|
4396
4402
|
description: import_zod.z.string().nullable().optional(),
|
|
4397
4403
|
/** Confidence score (0-1) */
|
|
4398
4404
|
confidence: import_zod.z.number().min(0).max(1).optional(),
|
|
4405
|
+
/** ID of the memory this fact was extracted from */
|
|
4406
|
+
sourceMemoryId: import_zod.z.string().uuid().optional(),
|
|
4407
|
+
/** When this fact was extracted */
|
|
4408
|
+
extractedAt: import_zod.z.string().datetime().optional(),
|
|
4399
4409
|
/** Creation timestamp */
|
|
4400
4410
|
createdAt: import_zod.z.string().datetime(),
|
|
4401
4411
|
/** Last update timestamp */
|