datasynth-generators 2.4.0

50+ data generators covering GL, P2P, O2C, S2C, HR, manufacturing, audit, tax, treasury, and ESG
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Context-aware anomaly injection.
//!
//! This module provides entity-aware injection patterns and behavioral
//! baseline tracking for context-sensitive anomaly generation.

mod behavioral_baseline;
mod entity_aware;

pub use behavioral_baseline::{
    BehavioralBaseline, BehavioralBaselineConfig, BehavioralDeviation, DeviationType,
    EntityBaseline, Observation,
};
pub use entity_aware::{
    AccountAnomalyRules, AccountContext, EmployeeAnomalyRules, EmployeeContext, EntityAwareConfig,
    EntityAwareInjector, VendorAnomalyRules, VendorContext,
};