@memnexus-ai/sdk 1.62.8 → 1.63.1
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
|
@@ -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
|
}
|