orchestrator-core 4.0.0rc4__py3-none-any.whl → 4.0.0rc5__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/subscriptions.py +1 -0
- orchestrator/schemas/workflow.py +2 -1
- {orchestrator_core-4.0.0rc4.dist-info → orchestrator_core-4.0.0rc5.dist-info}/METADATA +1 -1
- {orchestrator_core-4.0.0rc4.dist-info → orchestrator_core-4.0.0rc5.dist-info}/RECORD +7 -7
- {orchestrator_core-4.0.0rc4.dist-info → orchestrator_core-4.0.0rc5.dist-info}/WHEEL +0 -0
- {orchestrator_core-4.0.0rc4.dist-info → orchestrator_core-4.0.0rc5.dist-info}/licenses/LICENSE +0 -0
orchestrator/__init__.py
CHANGED
|
@@ -163,6 +163,7 @@ def subscriptions_search(
|
|
|
163
163
|
@router.get(
|
|
164
164
|
"/workflows/{subscription_id}",
|
|
165
165
|
response_model=SubscriptionWorkflowListsSchema,
|
|
166
|
+
response_model_by_alias=True,
|
|
166
167
|
response_model_exclude_none=True,
|
|
167
168
|
deprecated=True,
|
|
168
169
|
description="This endpoint is deprecated and will be removed in a future release. Please use the GraphQL query",
|
orchestrator/schemas/workflow.py
CHANGED
|
@@ -15,7 +15,7 @@ from datetime import datetime
|
|
|
15
15
|
from typing import Any
|
|
16
16
|
from uuid import UUID
|
|
17
17
|
|
|
18
|
-
from pydantic import ConfigDict
|
|
18
|
+
from pydantic import ConfigDict, Field
|
|
19
19
|
|
|
20
20
|
from orchestrator.schemas.base import OrchestratorBaseModel
|
|
21
21
|
from orchestrator.targets import Target
|
|
@@ -60,6 +60,7 @@ class SubscriptionWorkflowListsSchema(OrchestratorBaseModel):
|
|
|
60
60
|
modify: list[WorkflowListItemSchema]
|
|
61
61
|
terminate: list[WorkflowListItemSchema]
|
|
62
62
|
system: list[WorkflowListItemSchema]
|
|
63
|
+
validate_: list[WorkflowListItemSchema] = Field(default_factory=list, alias="validate")
|
|
63
64
|
|
|
64
65
|
|
|
65
66
|
class WorkflowPatchSchema(OrchestratorBaseModel):
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
orchestrator/__init__.py,sha256=
|
|
1
|
+
orchestrator/__init__.py,sha256=IM3ibXEFMEN_qpwa2Fr0n64tbz9uYe21MjKDu5SanHs,1066
|
|
2
2
|
orchestrator/app.py,sha256=7UrXKjBKNSEaSSXAd5ww_RdMFhFqE4yvfj8faS2MzAA,12089
|
|
3
3
|
orchestrator/exception_handlers.py,sha256=UsW3dw8q0QQlNLcV359bIotah8DYjMsj2Ts1LfX4ClY,1268
|
|
4
4
|
orchestrator/log_config.py,sha256=1tPRX5q65e57a6a_zEii_PFK8SzWT0mnA5w2sKg4hh8,1853
|
|
@@ -23,7 +23,7 @@ orchestrator/api/api_v1/endpoints/products.py,sha256=BfFtwu9dZXEQbtKxYj9icc73GKG
|
|
|
23
23
|
orchestrator/api/api_v1/endpoints/resource_types.py,sha256=gGyuaDyOD0TAVoeFGaGmjDGnQ8eQQArOxKrrk4MaDzA,2145
|
|
24
24
|
orchestrator/api/api_v1/endpoints/settings.py,sha256=orcwFqGiQ3Ala3mLm_27ChXPkUFoGUeGNaDZnEIk2Ak,5848
|
|
25
25
|
orchestrator/api/api_v1/endpoints/subscription_customer_descriptions.py,sha256=1_6LtgQleoq3M6z_W-Qz__Bj3OFUweoPrUqHMwSH6AM,3288
|
|
26
|
-
orchestrator/api/api_v1/endpoints/subscriptions.py,sha256=
|
|
26
|
+
orchestrator/api/api_v1/endpoints/subscriptions.py,sha256=V-ebvjtFEKlALx8SKX42SiNPM-GAgSMWbuaimyktUQQ,8758
|
|
27
27
|
orchestrator/api/api_v1/endpoints/translations.py,sha256=dIWh_fCnZZUxJoGiNeJ49DK_xpf75IpR_0EIMSvzIvY,963
|
|
28
28
|
orchestrator/api/api_v1/endpoints/user.py,sha256=RyI32EXVu6I-IxWjz0XB5zQWzzLL60zKXLgLqLH02xU,1827
|
|
29
29
|
orchestrator/api/api_v1/endpoints/workflows.py,sha256=_0vhGiQeu3-z16Zi0WmuDWBs8gmed6BzRNwYH_sF6AY,1977
|
|
@@ -258,7 +258,7 @@ orchestrator/schemas/product_block.py,sha256=kCqvm6qadHpegMr9aWI_fYX-T7mS-5S-ldP
|
|
|
258
258
|
orchestrator/schemas/resource_type.py,sha256=VDju4XywcDDLxdpbWU62RTvR9QF8x_GRrpTlN_NE8uI,1064
|
|
259
259
|
orchestrator/schemas/subscription.py,sha256=-jXyHZIed9Xlia18ksSDyenblNN6Q2yM2FlGELyJ458,3423
|
|
260
260
|
orchestrator/schemas/subscription_descriptions.py,sha256=Ft_jw1U0bf9Z0U8O4OWfLlcl0mXCVT_qYVagBP3GbIQ,1262
|
|
261
|
-
orchestrator/schemas/workflow.py,sha256=
|
|
261
|
+
orchestrator/schemas/workflow.py,sha256=VqQ9XfV4fVd6MjY0LRRQzWBJHmlPsAamWfTwDx1cZkg,2102
|
|
262
262
|
orchestrator/services/__init__.py,sha256=GyHNfEFCGKQwRiN6rQmvSRH2iYX7npjMZn97n8XzmLU,571
|
|
263
263
|
orchestrator/services/celery.py,sha256=ezw7IxkIZbmaRJt-9_Iwvn86TJV3Y3DTHI7Qjh0-r9s,5075
|
|
264
264
|
orchestrator/services/fixed_inputs.py,sha256=kyz7s2HLzyDulvcq-ZqefTw1om86COvyvTjz0_5CmgI,876
|
|
@@ -307,7 +307,7 @@ orchestrator/workflows/tasks/resume_workflows.py,sha256=MzJqlSXUvKStkT7NGzxZyRlf
|
|
|
307
307
|
orchestrator/workflows/tasks/validate_product_type.py,sha256=paG-NAY1bdde3Adt8zItkcBKf5Pxw6f5ngGW6an6dYU,3192
|
|
308
308
|
orchestrator/workflows/tasks/validate_products.py,sha256=GZJBoFF-WMphS7ghMs2-gqvV2iL1F0POhk0uSNt93n0,8510
|
|
309
309
|
orchestrator/workflows/translations/en-GB.json,sha256=ST53HxkphFLTMjFHonykDBOZ7-P_KxksktZU3GbxLt0,846
|
|
310
|
-
orchestrator_core-4.0.
|
|
311
|
-
orchestrator_core-4.0.
|
|
312
|
-
orchestrator_core-4.0.
|
|
313
|
-
orchestrator_core-4.0.
|
|
310
|
+
orchestrator_core-4.0.0rc5.dist-info/licenses/LICENSE,sha256=b-aA5OZQuuBATmLKo_mln8CQrDPPhg3ghLzjPjLn4Tg,11409
|
|
311
|
+
orchestrator_core-4.0.0rc5.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
|
|
312
|
+
orchestrator_core-4.0.0rc5.dist-info/METADATA,sha256=t7Xg52BnrdljCIrN0zoottzQaOtzlJo6tTspaBIEPRs,5073
|
|
313
|
+
orchestrator_core-4.0.0rc5.dist-info/RECORD,,
|
|
File without changes
|
{orchestrator_core-4.0.0rc4.dist-info → orchestrator_core-4.0.0rc5.dist-info}/licenses/LICENSE
RENAMED
|
File without changes
|