Removes OneOf due to complexity and niche use case

After further analysis, the functionality was deemed too complex to implement for such a niche use case and will therefore be removed from the implementation backlog
This commit is contained in:
2025-04-17 16:06:55 -03:00
parent dc350aaa8b
commit 5fdb4fa724
4 changed files with 54 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
# Exports generic type parser
from ._type_parser import GenericTypeParser as GenericTypeParser
from .allof_type_parser import AllOfTypeParser as AllOfTypeParser
from .anyof_type_parser import AnyOfTypeParser as AnyOfTypeParser
from .array_type_parser import ArrayTypeParser as ArrayTypeParser
from .boolean_type_parser import BooleanTypeParser as BooleanTypeParser
from .float_type_parser import FloatTypeParser as FloatTypeParser