@memnexus-ai/sdk 1.66.12 → 1.67.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 +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -706,6 +706,8 @@ interface SearchResult {
|
|
|
706
706
|
updatedAt?: string;
|
|
707
707
|
/** Effective state of the memory */
|
|
708
708
|
effectiveState?: string;
|
|
709
|
+
/** Human-readable caveat present ONLY on results with effectiveState='superseded' (v2.76, #4611). Supersession is session-granular: a memory is marked superseded when ANY fact in it was later updated, so most of its facts are typically still accurate. This notice says the session was partially updated; individual outdated lines in summary_facts are marked [SUPERSEDED] with the newer value quoted inline. Additive and optional — absent on current results, and absent entirely unless SUPERSEDED_RETRIEVAL_MODE='demote'. */
|
|
710
|
+
supersessionNotice?: string;
|
|
709
711
|
/** Confidence score (0-1) */
|
|
710
712
|
confidenceScore?: number;
|
|
711
713
|
/** Overall relevance score for this result */
|
package/dist/index.d.ts
CHANGED
|
@@ -706,6 +706,8 @@ interface SearchResult {
|
|
|
706
706
|
updatedAt?: string;
|
|
707
707
|
/** Effective state of the memory */
|
|
708
708
|
effectiveState?: string;
|
|
709
|
+
/** Human-readable caveat present ONLY on results with effectiveState='superseded' (v2.76, #4611). Supersession is session-granular: a memory is marked superseded when ANY fact in it was later updated, so most of its facts are typically still accurate. This notice says the session was partially updated; individual outdated lines in summary_facts are marked [SUPERSEDED] with the newer value quoted inline. Additive and optional — absent on current results, and absent entirely unless SUPERSEDED_RETRIEVAL_MODE='demote'. */
|
|
710
|
+
supersessionNotice?: string;
|
|
709
711
|
/** Confidence score (0-1) */
|
|
710
712
|
confidenceScore?: number;
|
|
711
713
|
/** Overall relevance score for this result */
|