orionis 0.450.0__py3-none-any.whl → 0.451.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. orionis/console/base/contracts/command.py +0 -2
  2. orionis/console/core/__init__.py +0 -0
  3. orionis/container/container.py +1577 -69
  4. orionis/container/contracts/container.py +184 -33
  5. orionis/foundation/config/database/entities/mysql.py +0 -1
  6. orionis/metadata/framework.py +1 -1
  7. orionis/services/inspirational/contracts/__init__.py +0 -0
  8. orionis/services/introspection/abstract/contracts/reflection.py +5 -6
  9. orionis/services/introspection/abstract/reflection.py +5 -6
  10. orionis/services/introspection/callables/contracts/reflection.py +3 -2
  11. orionis/services/introspection/callables/reflection.py +4 -4
  12. orionis/services/introspection/concretes/contracts/reflection.py +5 -6
  13. orionis/services/introspection/concretes/reflection.py +5 -6
  14. orionis/services/introspection/dependencies/contracts/reflection.py +87 -23
  15. orionis/services/introspection/dependencies/entities/argument.py +95 -0
  16. orionis/services/introspection/dependencies/entities/resolve_argument.py +82 -0
  17. orionis/services/introspection/dependencies/reflection.py +176 -106
  18. orionis/services/introspection/instances/contracts/reflection.py +5 -6
  19. orionis/services/introspection/instances/reflection.py +5 -6
  20. orionis/test/core/unit_test.py +150 -48
  21. {orionis-0.450.0.dist-info → orionis-0.451.0.dist-info}/METADATA +1 -1
  22. {orionis-0.450.0.dist-info → orionis-0.451.0.dist-info}/RECORD +34 -37
  23. tests/container/mocks/mock_auto_resolution.py +192 -0
  24. tests/services/introspection/dependencies/test_reflect_dependencies.py +135 -58
  25. tests/services/introspection/reflection/test_reflection_abstract.py +5 -4
  26. tests/services/introspection/reflection/test_reflection_callable.py +3 -3
  27. tests/services/introspection/reflection/test_reflection_concrete.py +4 -4
  28. tests/services/introspection/reflection/test_reflection_instance.py +5 -5
  29. orionis/console/args/parser.py +0 -40
  30. orionis/container/contracts/resolver.py +0 -115
  31. orionis/container/resolver/resolver.py +0 -602
  32. orionis/services/introspection/dependencies/entities/callable_dependencies.py +0 -54
  33. orionis/services/introspection/dependencies/entities/class_dependencies.py +0 -61
  34. orionis/services/introspection/dependencies/entities/known_dependencies.py +0 -67
  35. orionis/services/introspection/dependencies/entities/method_dependencies.py +0 -61
  36. tests/container/resolver/test_resolver.py +0 -62
  37. /orionis/{container/resolver → console/commands}/__init__.py +0 -0
  38. {tests/container/resolver → orionis/console/contracts}/__init__.py +0 -0
  39. {orionis-0.450.0.dist-info → orionis-0.451.0.dist-info}/WHEEL +0 -0
  40. {orionis-0.450.0.dist-info → orionis-0.451.0.dist-info}/licenses/LICENCE +0 -0
  41. {orionis-0.450.0.dist-info → orionis-0.451.0.dist-info}/top_level.txt +0 -0
  42. {orionis-0.450.0.dist-info → orionis-0.451.0.dist-info}/zip-safe +0 -0
@@ -1,7 +1,5 @@
1
-
2
1
  from abc import ABC, abstractmethod
3
2
  from typing import Any, Dict, List
4
-
5
3
  from orionis.console.args.argument import CLIArgument
6
4
 
7
5
  class IBaseCommand(ABC):
File without changes