type-bridge-server 1.5.0

Query-intercepting proxy server for TypeDB with validation and audit logging
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod audit_log;
pub mod chain;
pub mod crud_info;
pub mod crud_interceptor;
pub mod traits;

pub use chain::InterceptorChain;
pub use crud_info::{CrudInfo, CrudOperation, TypeKind};
pub use crud_interceptor::{CrudInterceptor, CrudInterceptorAdapter};
#[allow(unused_imports)] // re-exported for downstream use
pub use traits::InterceptError;
pub use traits::{Interceptor, RequestContext};