From 280f7be786f64e16f8e98c716b26d4a9156228f4 Mon Sep 17 00:00:00 2001 From: David Hagerty Date: Thu, 12 Feb 2026 21:51:53 -0500 Subject: [PATCH] chore(security): export FileOperation and ScopeCheck types Export the new FileOperation and ScopeCheck enums from the security module so they can be used in integration tests. Co-Authored-By: Claude Opus 4.6 --- src/security/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/security/mod.rs b/src/security/mod.rs index 401b301..e3fa05c 100644 --- a/src/security/mod.rs +++ b/src/security/mod.rs @@ -6,7 +6,7 @@ use std::path::{Component, Path, PathBuf}; pub mod permission; pub mod scope; -pub use scope::SecurityScope; +pub use scope::{FileOperation, ScopeCheck, SecurityScope}; pub struct SecurityValidator { config: SecurityConfig, -- 2.51.2