mirror of
https://github.com/reconurge/flowsint.git
synced 2026-07-15 12:36:48 -05:00
FlowsintType declared an inner `class ConfigDict: extra = "allow"`, which Pydantic v2 treats as an ordinary nested class and ignores entirely. The base therefore fell back to the default extra="ignore", silently dropping user-supplied extra properties on every entity type. Replaced with model_config = ConfigDict(extra="allow"). Extra keys are now retained. flowsint-types (44), flowsint-enrichers (12) and flowsint-core (390) suites pass.
flowsint-types
The types used in the flowsint enrichers and core for flowsint.
Testing
uv run pytest
⚠️ 🚧 Work in progress !.