@memnexus-ai/typescript-sdk 1.50.1 → 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 +2 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
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 */
|