@evomap/evolver-adapter-public 2.0.0-beta.7 → 2.0.0-beta.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.
@@ -723,12 +723,12 @@ function assetsFromBody(body) {
723
723
  .filter((candidate) => Boolean(candidate && typeof candidate === 'object' && !Array.isArray(candidate)))
724
724
  .map(unwrapFetchDeliveryRow);
725
725
  }
726
- // Delivery-row ranking metadata carried over onto the unwrapped GEP record: hubReuse's candidate
727
- // ranking reads these from the row (toRankedCandidate), and reuse's ingest strips them before
728
- // hashing, so carrying them is both useful and integrity-safe. Do not carry `confidence`: it is
729
- // transport metadata on Gene rows but canonical content on Capsules, so overloading it here can
730
- // either poison a Gene hash or overwrite the meaning of Capsule content (#565).
731
- const FETCH_ROW_CARRYOVER_KEYS = ['gdi_score', 'success_rate', 'reuse_count', 'source_node_id'];
726
+ // Delivery-row metadata carried over onto the unwrapped GEP record. Ranking fields are consumed by
727
+ // hubReuse and stripped before canonical storage. `payload_backfill_reason` must also survive this
728
+ // boundary so integrity consumers can report that the Hub synthesized the payload (#570). Do not
729
+ // carry `confidence`: it is transport metadata on Gene rows but canonical content on Capsules, so
730
+ // overloading it can either poison a Gene hash or overwrite Capsule content (#565).
731
+ const FETCH_ROW_CARRYOVER_KEYS = ['gdi_score', 'success_rate', 'reuse_count', 'source_node_id', 'payload_backfill_reason'];
732
732
  /**
733
733
  * The live hub's /a2a/fetch results are DELIVERY ROWS, not raw GEP records (#565, observed on
734
734
  * evomap.ai 2026-07-22): the record itself nests under `payload`, while the row's own keys are
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evomap/evolver-adapter-public",
3
- "version": "2.0.0-beta.7",
3
+ "version": "2.0.0-beta.9",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "description": "公版 hub 适配器 (积分/治理)",
@@ -14,7 +14,7 @@
14
14
  },
15
15
  "dependencies": {
16
16
  "@evomap/atp-sdk": "^0.1.0",
17
- "@evomap/evolver-core": "2.0.0-beta.7",
17
+ "@evomap/evolver-core": "2.0.0-beta.9",
18
18
  "undici": "^6.27.0"
19
19
  },
20
20
  "optionalDependencies": {