orchestrator-core 4.1.0rc1__py3-none-any.whl → 4.2.0rc1__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.
- orchestrator/__init__.py +1 -1
- orchestrator/api/api_v1/endpoints/processes.py +64 -11
- orchestrator/api/api_v1/endpoints/subscriptions.py +25 -2
- orchestrator/cli/generator/templates/create_product.j2 +1 -2
- orchestrator/db/models.py +6 -3
- orchestrator/graphql/schemas/process.py +21 -2
- orchestrator/graphql/schemas/product.py +8 -9
- orchestrator/graphql/schemas/workflow.py +9 -0
- orchestrator/graphql/types.py +7 -1
- orchestrator/migrations/versions/schema/2025-07-01_93fc5834c7e5_changed_timestamping_fields_in_process_steps.py +65 -0
- orchestrator/migrations/versions/schema/2025-07-04_4b58e336d1bf_deprecating_workflow_target_in_.py +30 -0
- orchestrator/schemas/process.py +5 -1
- orchestrator/services/celery.py +7 -2
- orchestrator/services/processes.py +12 -12
- orchestrator/utils/auth.py +9 -0
- orchestrator/utils/enrich_process.py +4 -2
- orchestrator/workflow.py +52 -9
- orchestrator/workflows/modify_note.py +1 -1
- orchestrator/workflows/steps.py +14 -8
- orchestrator/workflows/utils.py +13 -7
- orchestrator_core-4.2.0rc1.dist-info/METADATA +167 -0
- {orchestrator_core-4.1.0rc1.dist-info → orchestrator_core-4.2.0rc1.dist-info}/RECORD +24 -21
- orchestrator_core-4.1.0rc1.dist-info/METADATA +0 -118
- {orchestrator_core-4.1.0rc1.dist-info → orchestrator_core-4.2.0rc1.dist-info}/WHEEL +0 -0
- {orchestrator_core-4.1.0rc1.dist-info → orchestrator_core-4.2.0rc1.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,118 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: orchestrator-core
|
|
3
|
-
Version: 4.1.0rc1
|
|
4
|
-
Summary: This is the orchestrator workflow engine.
|
|
5
|
-
Requires-Python: >=3.11,<3.14
|
|
6
|
-
Classifier: Intended Audience :: Information Technology
|
|
7
|
-
Classifier: Intended Audience :: System Administrators
|
|
8
|
-
Classifier: Operating System :: OS Independent
|
|
9
|
-
Classifier: Programming Language :: Python :: 3
|
|
10
|
-
Classifier: Programming Language :: Python
|
|
11
|
-
Classifier: Topic :: Internet
|
|
12
|
-
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
13
|
-
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
14
|
-
Classifier: Topic :: Software Development :: Libraries
|
|
15
|
-
Classifier: Topic :: Software Development
|
|
16
|
-
Classifier: Typing :: Typed
|
|
17
|
-
Classifier: Development Status :: 5 - Production/Stable
|
|
18
|
-
Classifier: Environment :: Web Environment
|
|
19
|
-
Classifier: Framework :: AsyncIO
|
|
20
|
-
Classifier: Framework :: FastAPI
|
|
21
|
-
Classifier: Intended Audience :: Developers
|
|
22
|
-
Classifier: Intended Audience :: Telecommunications Industry
|
|
23
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
|
24
|
-
Classifier: Programming Language :: Python :: 3 :: Only
|
|
25
|
-
Classifier: Programming Language :: Python :: 3.13
|
|
26
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
27
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
28
|
-
Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers
|
|
29
|
-
Classifier: Topic :: Internet :: WWW/HTTP
|
|
30
|
-
License-File: LICENSE
|
|
31
|
-
Requires-Dist: alembic==1.16.1
|
|
32
|
-
Requires-Dist: anyio>=3.7.0
|
|
33
|
-
Requires-Dist: click==8.*
|
|
34
|
-
Requires-Dist: deprecated
|
|
35
|
-
Requires-Dist: deepmerge==2.0
|
|
36
|
-
Requires-Dist: fastapi~=0.115.2
|
|
37
|
-
Requires-Dist: fastapi-etag==0.4.0
|
|
38
|
-
Requires-Dist: more-itertools~=10.7.0
|
|
39
|
-
Requires-Dist: itsdangerous
|
|
40
|
-
Requires-Dist: Jinja2==3.1.6
|
|
41
|
-
Requires-Dist: orjson==3.10.18
|
|
42
|
-
Requires-Dist: prometheus-client==0.22.0
|
|
43
|
-
Requires-Dist: psycopg2-binary==2.9.10
|
|
44
|
-
Requires-Dist: pydantic[email]~=2.8.2
|
|
45
|
-
Requires-Dist: pydantic-settings~=2.9.1
|
|
46
|
-
Requires-Dist: python-dateutil==2.8.2
|
|
47
|
-
Requires-Dist: python-rapidjson>=1.18,<1.21
|
|
48
|
-
Requires-Dist: pytz==2025.2
|
|
49
|
-
Requires-Dist: redis==5.1.1
|
|
50
|
-
Requires-Dist: schedule==1.1.0
|
|
51
|
-
Requires-Dist: semver==3.0.4
|
|
52
|
-
Requires-Dist: sentry-sdk[fastapi]~=2.29.1
|
|
53
|
-
Requires-Dist: SQLAlchemy==2.0.41
|
|
54
|
-
Requires-Dist: SQLAlchemy-Utils==0.41.2
|
|
55
|
-
Requires-Dist: structlog
|
|
56
|
-
Requires-Dist: typer==0.15.4
|
|
57
|
-
Requires-Dist: uvicorn[standard]~=0.34.0
|
|
58
|
-
Requires-Dist: nwa-stdlib~=1.9.0
|
|
59
|
-
Requires-Dist: oauth2-lib~=2.4.0
|
|
60
|
-
Requires-Dist: tabulate==0.9.0
|
|
61
|
-
Requires-Dist: strawberry-graphql>=0.246.2
|
|
62
|
-
Requires-Dist: pydantic-forms>=1.4.0, <=2.1.0
|
|
63
|
-
Requires-Dist: celery~=5.5.1 ; extra == "celery"
|
|
64
|
-
Requires-Dist: toml ; extra == "dev"
|
|
65
|
-
Requires-Dist: bumpversion ; extra == "dev"
|
|
66
|
-
Requires-Dist: mypy_extensions ; extra == "dev"
|
|
67
|
-
Requires-Dist: pre-commit ; extra == "dev"
|
|
68
|
-
Requires-Dist: pydocstyle ; extra == "dev"
|
|
69
|
-
Requires-Dist: python-dotenv ; extra == "dev"
|
|
70
|
-
Requires-Dist: watchdog ; extra == "dev"
|
|
71
|
-
Requires-Dist: mkdocs ; extra == "doc"
|
|
72
|
-
Requires-Dist: mkdocs-material[imaging] ; extra == "doc"
|
|
73
|
-
Requires-Dist: mkdocs-render-swagger-plugin ; extra == "doc"
|
|
74
|
-
Requires-Dist: mkdocs-include-markdown-plugin ; extra == "doc"
|
|
75
|
-
Requires-Dist: mkdocstrings[python] ; extra == "doc"
|
|
76
|
-
Requires-Dist: mkdocs-open-in-new-tab ; extra == "doc"
|
|
77
|
-
Requires-Dist: mkdocs-macros-plugin ; extra == "doc"
|
|
78
|
-
Requires-Dist: mkdocs-embed-external-markdown ; extra == "doc"
|
|
79
|
-
Requires-Dist: apache-license-check ; extra == "test"
|
|
80
|
-
Requires-Dist: black ; extra == "test"
|
|
81
|
-
Requires-Dist: blinker ; extra == "test"
|
|
82
|
-
Requires-Dist: deepdiff ; extra == "test"
|
|
83
|
-
Requires-Dist: dirty-equals ; extra == "test"
|
|
84
|
-
Requires-Dist: jsonref ; extra == "test"
|
|
85
|
-
Requires-Dist: mypy==1.9 ; extra == "test"
|
|
86
|
-
Requires-Dist: pyinstrument ; extra == "test"
|
|
87
|
-
Requires-Dist: pytest==8.3.5 ; extra == "test"
|
|
88
|
-
Requires-Dist: pytest-asyncio==0.21.2 ; extra == "test"
|
|
89
|
-
Requires-Dist: pytest-codspeed ; extra == "test"
|
|
90
|
-
Requires-Dist: pytest-cov ; extra == "test"
|
|
91
|
-
Requires-Dist: pytest-httpx ; extra == "test"
|
|
92
|
-
Requires-Dist: pytest-xdist ; extra == "test"
|
|
93
|
-
Requires-Dist: requests-mock ; extra == "test"
|
|
94
|
-
Requires-Dist: ruff ; extra == "test"
|
|
95
|
-
Requires-Dist: sqlalchemy[mypy] ; extra == "test"
|
|
96
|
-
Requires-Dist: urllib3-mock ; extra == "test"
|
|
97
|
-
Requires-Dist: types-Deprecated ; extra == "test"
|
|
98
|
-
Requires-Dist: types-Jinja2 ; extra == "test"
|
|
99
|
-
Requires-Dist: types-aiofiles ; extra == "test"
|
|
100
|
-
Requires-Dist: types-certifi ; extra == "test"
|
|
101
|
-
Requires-Dist: types-click ; extra == "test"
|
|
102
|
-
Requires-Dist: types-itsdangerous ; extra == "test"
|
|
103
|
-
Requires-Dist: types-orjson ; extra == "test"
|
|
104
|
-
Requires-Dist: types-python-dateutil ; extra == "test"
|
|
105
|
-
Requires-Dist: types-pytz ; extra == "test"
|
|
106
|
-
Requires-Dist: types-redis ; extra == "test"
|
|
107
|
-
Requires-Dist: types-requests ; extra == "test"
|
|
108
|
-
Requires-Dist: types-setuptools ; extra == "test"
|
|
109
|
-
Requires-Dist: types-tabulate ; extra == "test"
|
|
110
|
-
Requires-Dist: types-toml ; extra == "test"
|
|
111
|
-
Requires-Dist: types-ujson ; extra == "test"
|
|
112
|
-
Requires-Dist: types-PyYAML ; extra == "test"
|
|
113
|
-
Project-URL: Documentation, https://workfloworchestrator.org/orchestrator-core/
|
|
114
|
-
Project-URL: Source, https://github.com/workfloworchestrator/orchestrator-core
|
|
115
|
-
Provides-Extra: celery
|
|
116
|
-
Provides-Extra: dev
|
|
117
|
-
Provides-Extra: doc
|
|
118
|
-
Provides-Extra: test
|
|
File without changes
|
{orchestrator_core-4.1.0rc1.dist-info → orchestrator_core-4.2.0rc1.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|