@memnexus-ai/typescript-sdk 1.50.0 → 1.51.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
@@ -4898,6 +4898,8 @@ var memory = import_zod.z.object({
4898
4898
  var createMemoryRequest = import_zod.z.object({
4899
4899
  /** Conversation ID - use "NEW" to create a new conversation or provide existing conversation ID */
4900
4900
  conversationId: import_zod.z.string().min(1),
4901
+ /** AI agent session ID (e.g. Claude Code session UUID). When provided with conversationId "NEW", reuses the existing conversation for this session instead of creating a new one. */
4902
+ claudeSessionId: import_zod.z.string().max(200).optional(),
4901
4903
  /** Optional human-readable name for deterministic retrieval. Must be unique per user. */
4902
4904
  name: import_zod.z.string().regex(/^[a-z0-9][a-z0-9-]{0,62}[a-z0-9]$/).optional(),
4903
4905
  /** Memory content */
@@ -5459,7 +5461,7 @@ var entityNode = import_zod.z.object({
5459
5461
  /** Normalized (lowercase) name for deduplication */
5460
5462
  normalizedName: import_zod.z.string(),
5461
5463
  /** Entity type classification */
5462
- type: import_zod.z.enum(["PERSON", "PROJECT", "TECHNOLOGY", "VERSION", "API_ENDPOINT", "CONFIGURATION", "CONCEPT", "ORGANIZATION"]),
5464
+ type: import_zod.z.enum(["PERSON", "PROJECT", "TECHNOLOGY", "COMPONENT", "API_ENDPOINT", "FILE", "CONCEPT", "ORGANIZATION", "LOCATION"]),
5463
5465
  /** Alternative names for this entity */
5464
5466
  aliases: import_zod.z.array(import_zod.z.string()).optional(),
5465
5467
  /** Extraction confidence score (0-1) */