(&self)
| 4090 | /// Return structured verification reports recorded for this session. |
| 4091 | #[napi] |
| 4092 | pub fn verification_reports(&self) -> napi::Result<serde_json::Value> { |
| 4093 | serde_json::to_value(self.inner.verification_reports()) |
| 4094 | .map_err(|e| napi::Error::from_reason(format!("Serialization error: {e}"))) |
| 4095 | } |
| 4096 | |
| 4097 | /// Add externally produced verification reports to this session. |
| 4098 | #[napi] |
no outgoing calls