Method
record_verification_reports
(&self, reports: serde_json::Value)
Source from the content-addressed store, hash-verified
| 4097 | /// Add externally produced verification reports to this session. |
| 4098 | #[napi] |
| 4099 | pub fn record_verification_reports(&self, reports: serde_json::Value) -> napi::Result<()> { |
| 4100 | let reports = verification_reports_from_value(reports)?; |
| 4101 | self.inner.record_verification_reports(reports); |
| 4102 | Ok(()) |
| 4103 | } |
| 4104 | |
| 4105 | /// Return a structured verification summary for this session. |
| 4106 | #[napi] |