/** * Active Directory Group Mapping * * Maps AD groups to application roles and permissions using configurable * mapping rules. Supports pattern matching, hierarchical roles, and * dynamic conditions. * * @module auth/active-directory */ export { ADGroupMapper, type GroupMappingResult } from './core/mapper'; export { GROUP_MAPPING_PRESETS } from './presets'; export { createGroupMapper, mergeGroupMappings, validateGroupMapping } from './utils'; export type * from './types';