@lucern/contracts 0.3.0-alpha.8 → 0.3.0-alpha.9

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.
@@ -4731,12 +4731,12 @@ var linkEvidenceToBeliefEdgeInput = (input, context) => withCreatedBy(
4731
4731
  compactRecord({
4732
4732
  fromNodeId: input.insightId ?? input.evidenceNodeId ?? input.evidenceId,
4733
4733
  toNodeId: input.beliefNodeId ?? input.beliefId ?? input.targetId,
4734
- edgeType: "evidence_supports_belief",
4734
+ edgeType: "informs",
4735
4735
  globalId: input.globalId ?? `edge:${String(
4736
4736
  input.insightId ?? input.evidenceNodeId ?? input.evidenceId
4737
4737
  )}:${String(
4738
4738
  input.beliefNodeId ?? input.beliefId ?? input.targetId
4739
- )}:evidence_supports_belief`,
4739
+ )}:informs`,
4740
4740
  weight: typeof input.weight === "number" ? input.weight : input.type === "contradicting" ? -1 : 1,
4741
4741
  context: input.rationale ?? input.context,
4742
4742
  skipLayerValidation: true,
@@ -4749,12 +4749,12 @@ var linkEvidenceToQuestionEdgeInput = (input, context) => withCreatedBy(
4749
4749
  compactRecord({
4750
4750
  fromNodeId: input.insightId ?? input.evidenceNodeId ?? input.evidenceId,
4751
4751
  toNodeId: input.questionId ?? input.questionNodeId ?? input.targetId,
4752
- edgeType: "evidence_supports_question",
4752
+ edgeType: "responds_to",
4753
4753
  globalId: input.globalId ?? `edge:${String(
4754
4754
  input.insightId ?? input.evidenceNodeId ?? input.evidenceId
4755
4755
  )}:${String(
4756
4756
  input.questionId ?? input.questionNodeId ?? input.targetId
4757
- )}:evidence_supports_question`,
4757
+ )}:responds_to`,
4758
4758
  weight: input.impactScore ?? input.weight,
4759
4759
  context: input.rationale ?? input.context,
4760
4760
  skipLayerValidation: true,