vellum-workflow-server 0.14.72.post5__py3-none-any.whl → 0.14.72.post6__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.

Potentially problematic release.


This version of vellum-workflow-server might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: vellum-workflow-server
3
- Version: 0.14.72.post5
3
+ Version: 0.14.72.post6
4
4
  Summary:
5
5
  License: AGPL
6
6
  Requires-Python: >=3.9.0,<4
@@ -6,7 +6,7 @@ workflow_server/api/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJW
6
6
  workflow_server/api/tests/test_input_display_mapping.py,sha256=drBZqMudFyB5wgiUOcMgRXz7E7ge-Qgxbstw4E4f0zE,2211
7
7
  workflow_server/api/tests/test_workflow_view.py,sha256=2nscM_QsYPHkkTG8_JhNbE2LmGL5FQKXEtaLLjXouw0,14591
8
8
  workflow_server/api/tests/test_workflow_view_stream_workflow_route.py,sha256=wmeH8oGo0lKx3YzEJQ9nGjw7adqQD0EL7-xGLPgYWqc,24872
9
- workflow_server/api/workflow_view.py,sha256=LNE_VDjATslkHQee4urJJoKRhzrrd0Y64MCCZfo4AW8,17683
9
+ workflow_server/api/workflow_view.py,sha256=x9SSsWCzLuwXBhLJMc-vDMtmP626O6tw1AGh6KII_lc,17697
10
10
  workflow_server/code_exec_runner.py,sha256=p6lGaEGAfMFCxIpOJtH9KTvkffCDsJ3bbpmHdCGWquM,3265
11
11
  workflow_server/config.py,sha256=K5Tavm7wiqCZt0RWWue7zzb8N6e8aWnFOTNlBqEJPcI,1330
12
12
  workflow_server/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -26,7 +26,7 @@ workflow_server/utils/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMp
26
26
  workflow_server/utils/tests/test_system_utils.py,sha256=MdBxI9gxUOpR_JBAHpEz6dGFY6JjxhMSM2oExpqFvNA,4314
27
27
  workflow_server/utils/tests/test_utils.py,sha256=qwK5Rmy3RQyjtlUrYAuGuDlBeRzZKsf1yS-y2IpUizQ,6452
28
28
  workflow_server/utils/utils.py,sha256=Wqqn-1l2ugkGgy5paWWdt0AVxAyPMQCYcnRSSOMjXlA,4355
29
- vellum_workflow_server-0.14.72.post5.dist-info/METADATA,sha256=Uoalwd4URf7euPWiSzsaEIc0W15byp1rC8E903n7jSg,2243
30
- vellum_workflow_server-0.14.72.post5.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
31
- vellum_workflow_server-0.14.72.post5.dist-info/entry_points.txt,sha256=uB_0yPkr7YV6RhEXzvFReUM8P4OQBlVXD6TN6eb9-oc,277
32
- vellum_workflow_server-0.14.72.post5.dist-info/RECORD,,
29
+ vellum_workflow_server-0.14.72.post6.dist-info/METADATA,sha256=pmr1HyQdJhIDgb7E0Qwu5YtfYqjXq9U1RAhfNqE_JyI,2243
30
+ vellum_workflow_server-0.14.72.post6.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
31
+ vellum_workflow_server-0.14.72.post6.dist-info/entry_points.txt,sha256=uB_0yPkr7YV6RhEXzvFReUM8P4OQBlVXD6TN6eb9-oc,277
32
+ vellum_workflow_server-0.14.72.post6.dist-info/RECORD,,
@@ -398,7 +398,7 @@ def get_version_route() -> tuple[dict, int]:
398
398
  node_display_class = get_node_display_class(obj)
399
399
  exec_config_raw = node_display_class().serialize(WorkflowDisplayContext())
400
400
  exec_config = cast(Dict[str, Any], exec_config_raw)
401
- module = exec_config["definition"]["module"]
401
+ config_module = exec_config["definition"]["module"]
402
402
  label = exec_config["label"]
403
403
  description = (
404
404
  exec_config["display_data"]["comment"]["value"]
@@ -408,7 +408,7 @@ def get_version_route() -> tuple[dict, int]:
408
408
  nodes.append(
409
409
  {
410
410
  "id": str(uuid4()),
411
- "module": module,
411
+ "module": config_module,
412
412
  "name": obj.__name__,
413
413
  "label": pascal_to_title_case(label),
414
414
  "description": description,