@memnexus-ai/sdk 1.62.7 → 1.63.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 CHANGED
@@ -824,6 +824,8 @@ interface ClaimGroup {
824
824
  id: string;
825
825
  /** Claims in this group, sorted by createdAt descending (newest first) */
826
826
  claims: ClaimGroupClaim[];
827
+ /** Scoring completeness of the SAMPLED neighbor set (up to the top 20 ALIGNS_WITH edges per claim, by embedding similarity — edges beyond that sample are not evaluated): 'conflict' = all sampled edges scored and a conflict was detected, 'partial' = some sampled edges unscored, 'unknown' = all sampled edges unscored */
828
+ conflict_status: 'conflict' | 'partial' | 'unknown';
827
829
  /** Computed signals about the claim cluster */
828
830
  signals: ClaimGroupSignals;
829
831
  }
package/dist/index.d.ts CHANGED
@@ -824,6 +824,8 @@ interface ClaimGroup {
824
824
  id: string;
825
825
  /** Claims in this group, sorted by createdAt descending (newest first) */
826
826
  claims: ClaimGroupClaim[];
827
+ /** Scoring completeness of the SAMPLED neighbor set (up to the top 20 ALIGNS_WITH edges per claim, by embedding similarity — edges beyond that sample are not evaluated): 'conflict' = all sampled edges scored and a conflict was detected, 'partial' = some sampled edges unscored, 'unknown' = all sampled edges unscored */
828
+ conflict_status: 'conflict' | 'partial' | 'unknown';
827
829
  /** Computed signals about the claim cluster */
828
830
  signals: ClaimGroupSignals;
829
831
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@memnexus-ai/sdk",
3
- "version": "1.62.7",
3
+ "version": "1.63.0",
4
4
  "description": "Official Node.js SDK for the MemNexus API",
5
5
  "license": "Proprietary",
6
6
  "type": "module",