@lucern/confidence 1.0.16 → 1.0.17
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/README.md +3 -3
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/proof-attestation.json +3 -3
- package/dist/v1/index.js +2 -2
- package/dist/v1/index.js.map +1 -1
- package/dist/v1/operations/contracts/epistemicContract.js +1 -1
- package/dist/v1/operations/contracts/epistemicContract.js.map +1 -1
- package/dist/v1/operations/dynamics/propagation.js +1 -1
- package/dist/v1/operations/dynamics/propagation.js.map +1 -1
- package/dist/v1/operations/lucern.js +2 -2
- package/dist/v1/operations/lucern.js.map +1 -1
- package/dist/v1/types.d.ts +2 -2
- package/package.json +1 -1
|
@@ -31,15 +31,15 @@
|
|
|
31
31
|
}
|
|
32
32
|
],
|
|
33
33
|
"contractsCovered": [
|
|
34
|
+
"append_sl_scoring",
|
|
34
35
|
"create_evidence",
|
|
35
36
|
"list_beliefs",
|
|
36
|
-
"list_tasks"
|
|
37
|
-
"modulate_confidence"
|
|
37
|
+
"list_tasks"
|
|
38
38
|
],
|
|
39
39
|
"emittersUsed": [
|
|
40
40
|
"typescript-types",
|
|
41
41
|
"convex-validators",
|
|
42
42
|
"proof-attestation"
|
|
43
43
|
],
|
|
44
|
-
"signedAt":
|
|
44
|
+
"signedAt": 1780348395588
|
|
45
45
|
}
|
package/dist/v1/index.js
CHANGED
|
@@ -792,7 +792,7 @@ function propagateThroughEdge(sourceOpinion, targetOpinion, edgeType, weight = 1
|
|
|
792
792
|
if (!handler) {
|
|
793
793
|
return {
|
|
794
794
|
opinion: targetOpinion,
|
|
795
|
-
operator: "
|
|
795
|
+
operator: "no_op",
|
|
796
796
|
rationale: `Unknown edge type: ${edgeType} \u2014 no propagation`
|
|
797
797
|
};
|
|
798
798
|
}
|
|
@@ -1245,7 +1245,7 @@ function createInheritedContractRecord(contract, args) {
|
|
|
1245
1245
|
};
|
|
1246
1246
|
}
|
|
1247
1247
|
function normalizeEvidentialAction(value) {
|
|
1248
|
-
return value === "
|
|
1248
|
+
return value === "append_sl_scoring" || value === "flag_review" || value === "archive" ? value : void 0;
|
|
1249
1249
|
}
|
|
1250
1250
|
function parseComparisonOperator(value, evaluatorName) {
|
|
1251
1251
|
if (value === "gte" || value === "lte" || value === "eq" || value === "gt" || value === "lt") {
|