processcube-etw-library 2026.1.22.145211__py3-none-any.whl → 2026.1.29.71849b0__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 (52) hide show
  1. processcube_etw_library/__init__.py +7 -5
  2. processcube_etw_library/create_external_task_client.py +4 -2
  3. processcube_etw_library/etw_app.py +18 -5
  4. processcube_etw_library/health/built_in.py +3 -4
  5. processcube_etw_library/health/check.py +14 -4
  6. processcube_etw_library/identity_provider.py +0 -2
  7. processcube_etw_library/processcube_client/__init__.py +22 -0
  8. processcube_etw_library/processcube_client/app_info/__init__.py +1 -0
  9. processcube_etw_library/processcube_client/app_info/app_info_client.py +36 -0
  10. processcube_etw_library/processcube_client/client_factory.py +37 -0
  11. processcube_etw_library/processcube_client/core/__init__.py +2 -0
  12. processcube_etw_library/processcube_client/core/api/__init__.py +13 -0
  13. processcube_etw_library/processcube_client/core/api/base_client.py +235 -0
  14. processcube_etw_library/processcube_client/core/api/client.py +816 -0
  15. processcube_etw_library/processcube_client/core/api/helpers/__init__.py +0 -0
  16. processcube_etw_library/processcube_client/core/api/helpers/application_info.py +34 -0
  17. processcube_etw_library/processcube_client/core/api/helpers/data_object_instances.py +61 -0
  18. processcube_etw_library/processcube_client/core/api/helpers/empty_tasks.py +86 -0
  19. processcube_etw_library/processcube_client/core/api/helpers/events.py +39 -0
  20. processcube_etw_library/processcube_client/core/api/helpers/external_tasks.py +142 -0
  21. processcube_etw_library/processcube_client/core/api/helpers/flow_node_instances.py +80 -0
  22. processcube_etw_library/processcube_client/core/api/helpers/manual_tasks.py +87 -0
  23. processcube_etw_library/processcube_client/core/api/helpers/process_definitions.py +46 -0
  24. processcube_etw_library/processcube_client/core/api/helpers/process_instances.py +96 -0
  25. processcube_etw_library/processcube_client/core/api/helpers/process_models.py +51 -0
  26. processcube_etw_library/processcube_client/core/api/helpers/user_tasks.py +130 -0
  27. processcube_etw_library/processcube_client/core/base_client.py +175 -0
  28. processcube_etw_library/processcube_client/core/loop_helper.py +200 -0
  29. processcube_etw_library/processcube_client/event/__init__.py +1 -0
  30. processcube_etw_library/processcube_client/event/event_client.py +43 -0
  31. processcube_etw_library/processcube_client/external_task/__init__.py +3 -0
  32. processcube_etw_library/processcube_client/external_task/client_wrapper.py +28 -0
  33. processcube_etw_library/processcube_client/external_task/external_task_client.py +195 -0
  34. processcube_etw_library/processcube_client/external_task/external_task_worker.py +205 -0
  35. processcube_etw_library/processcube_client/external_task/functional_error.py +17 -0
  36. processcube_etw_library/processcube_client/flow_node_instance/__init__.py +1 -0
  37. processcube_etw_library/processcube_client/flow_node_instance/flow_node_instance_client.py +43 -0
  38. processcube_etw_library/processcube_client/notification/__init__.py +1 -0
  39. processcube_etw_library/processcube_client/notification/notification_client.py +103 -0
  40. processcube_etw_library/processcube_client/process_definition/__init__.py +2 -0
  41. processcube_etw_library/processcube_client/process_definition/process_definition_client.py +94 -0
  42. processcube_etw_library/processcube_client/process_definition/start_callback_type.py +6 -0
  43. processcube_etw_library/processcube_client/process_instance/__init__.py +1 -0
  44. processcube_etw_library/processcube_client/process_instance/process_instance_client.py +32 -0
  45. processcube_etw_library/processcube_client/user_task/__init__.py +1 -0
  46. processcube_etw_library/processcube_client/user_task/user_task_client.py +63 -0
  47. processcube_etw_library/settings.py +35 -9
  48. {processcube_etw_library-2026.1.22.145211.dist-info → processcube_etw_library-2026.1.29.71849b0.dist-info}/METADATA +13 -11
  49. processcube_etw_library-2026.1.29.71849b0.dist-info/RECORD +58 -0
  50. {processcube_etw_library-2026.1.22.145211.dist-info → processcube_etw_library-2026.1.29.71849b0.dist-info}/WHEEL +1 -1
  51. processcube_etw_library-2026.1.22.145211.dist-info/RECORD +0 -18
  52. {processcube_etw_library-2026.1.22.145211.dist-info → processcube_etw_library-2026.1.29.71849b0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,32 @@
1
+ import logging
2
+
3
+ from ..core import base_client
4
+
5
+ logger = logging.getLogger(__name__)
6
+
7
+
8
+ class ProcessInstanceClient(base_client.BaseClient):
9
+
10
+ def __init__(self, url, session=None, identity=None):
11
+ super(ProcessInstanceClient, self).__init__(url, session, identity)
12
+
13
+ def terminate(self, process_instance_id):
14
+
15
+ async def _terminate():
16
+ url = f"/atlas_engine/api/v1/process_instances/{process_instance_id}/terminate"
17
+ return await self.do_put(url, {})
18
+
19
+ logger.info(f"Connection to process engine at url '{self._url}'.")
20
+ logger.info(f"Terminate the process-instance '{process_instance_id}'.")
21
+
22
+ return base_client.run_async_in_sync_context(_terminate())
23
+
24
+ def retry(self, process_instance_id):
25
+
26
+ async def _retry():
27
+ url = f"/atlas_engine/api/v1/process_instances/{process_instance_id}/retry"
28
+ return await self.do_put(url, {})
29
+
30
+ logger.info(f"Retry process instance '{process_instance_id}' for atlas engine at url '{self._url}'.")
31
+
32
+ return base_client.run_async_in_sync_context(_retry())
@@ -0,0 +1 @@
1
+ from .user_task_client import UserTaskClient
@@ -0,0 +1,63 @@
1
+ from ..core import base_client
2
+
3
+
4
+ class UserTaskClient(base_client.BaseClient):
5
+
6
+ def __init__(self, url, session=None, identity=None):
7
+ super(UserTaskClient, self).__init__(url, session, identity)
8
+
9
+ async def reserve_user_task(self, user_task_instance_id, owner_id):
10
+ path = f"/atlas_engine/api/v1/user_tasks/{user_task_instance_id}/reserve"
11
+
12
+ payload = {
13
+ 'actualOwnerId': owner_id
14
+ }
15
+
16
+ result = await self.do_put(path, payload)
17
+
18
+ return result
19
+
20
+ async def cancel_reservation_user_task(self, user_task_instance_id):
21
+ path = f"/atlas_engine/api/v1/user_tasks/{user_task_instance_id}/cancel-reservation"
22
+
23
+ result = await self.do_delete(path, {})
24
+
25
+ return result
26
+
27
+ async def finish_user_task(self, user_task_instance_id, answer):
28
+ path = f"/atlas_engine/api/v1/user_tasks/{user_task_instance_id}/finish"
29
+
30
+ result = await self.do_put(path, answer)
31
+
32
+ return result
33
+
34
+ async def get_user_tasks(self, state='suspended'):
35
+
36
+ def map_user_tasks(user_task):
37
+ new_user_task = {}
38
+ new_user_task['userTaskInstanceId'] = user_task['flowNodeInstanceId']
39
+ new_user_task['flowNodeId'] = user_task['flowNodeId']
40
+ new_user_task['flowNodeName'] = user_task['flowNodeName']
41
+ new_user_task['processModelId'] = user_task['processModelId']
42
+ new_user_task['processInstanceId'] = user_task['processInstanceId']
43
+ new_user_task['correlationId'] = user_task['correlationId']
44
+ new_user_task['formFields'] = user_task['userTaskConfig']['formFields']
45
+ new_user_task['token'] = user_task['tokens'][1]
46
+ new_user_task['meta_info'] = user_task['metaInfo']
47
+
48
+ # only for debug
49
+ #new_user_task['origin_user_task'] = user_task
50
+
51
+ return new_user_task
52
+
53
+ bpmn_type = 'bpmn:UserTask'
54
+ path = f"/atlas_engine/api/v1/flow_node_instances?flowNodeType={bpmn_type}&state={state}"
55
+
56
+ result = await self.do_get(path)
57
+
58
+ user_tasks = []
59
+
60
+ if result['totalCount'] > 0:
61
+ user_tasks = list(map(map_user_tasks, result['flowNodeInstances']))
62
+
63
+ return user_tasks
@@ -4,18 +4,31 @@ from typing import Optional, Type, TypeVar
4
4
  from pydantic import Field, model_validator
5
5
  from pydantic_settings import BaseSettings, SettingsConfigDict
6
6
 
7
- from processcube_client.app_info import AppInfoClient
7
+ from .processcube_client.app_info import AppInfoClient
8
+ from typing import TypedDict
8
9
 
9
10
  logger = logging.getLogger(__name__)
10
11
 
11
12
  T = TypeVar("T", bound="ETWSettings")
12
13
 
13
- DEFAULTS = {
14
+
15
+ class DefaultsDict(TypedDict):
16
+ PROCESSCUBE_ENGINE_URL: str
17
+ PROCESSCUBE_ETW_CLIENT_ID: str
18
+ PROCESSCUBE_ETW_CLIENT_SECRET: str
19
+ PROCESSCUBE_ETW_CLIENT_SCOPES: str
20
+ PROCESSCUBE_MAX_GET_OAUTH_ACCESS_TOKEN_RETRIES: int
21
+ PROCESSCUBE_ETW_LONG_POLLING_TIMEOUT_IN_MS: int
22
+ ENVIRONMENT: str
23
+
24
+
25
+ DEFAULTS: DefaultsDict = {
14
26
  "PROCESSCUBE_ENGINE_URL": "http://localhost:56000",
15
27
  "PROCESSCUBE_ETW_CLIENT_ID": "test_etw",
16
28
  "PROCESSCUBE_ETW_CLIENT_SECRET": "3ef62eb3-fe49-4c2c-ba6f-73e4d234321b",
17
29
  "PROCESSCUBE_ETW_CLIENT_SCOPES": "engine_etw",
18
- "MAX_GET_OAUTH_ACCESS_TOKEN_RETRIES": 10,
30
+ "PROCESSCUBE_MAX_GET_OAUTH_ACCESS_TOKEN_RETRIES": 10,
31
+ "PROCESSCUBE_ETW_LONG_POLLING_TIMEOUT_IN_MS": 60_000,
19
32
  "ENVIRONMENT": "development",
20
33
  }
21
34
 
@@ -50,10 +63,21 @@ class ETWSettings(BaseSettings):
50
63
 
51
64
  processcube_engine_url: str = Field(default=DEFAULTS["PROCESSCUBE_ENGINE_URL"])
52
65
  processcube_authority_url: str = Field(default="")
53
- processcube_etw_client_id: str = Field(default=DEFAULTS["PROCESSCUBE_ETW_CLIENT_ID"])
54
- processcube_etw_client_secret: str = Field(default=DEFAULTS["PROCESSCUBE_ETW_CLIENT_SECRET"])
55
- processcube_etw_client_scopes: str = Field(default=DEFAULTS["PROCESSCUBE_ETW_CLIENT_SCOPES"])
56
- max_get_oauth_access_token_retries: int = Field(default=DEFAULTS["MAX_GET_OAUTH_ACCESS_TOKEN_RETRIES"])
66
+ processcube_etw_client_id: str = Field(
67
+ default=DEFAULTS["PROCESSCUBE_ETW_CLIENT_ID"]
68
+ )
69
+ processcube_etw_client_secret: str = Field(
70
+ default=DEFAULTS["PROCESSCUBE_ETW_CLIENT_SECRET"]
71
+ )
72
+ processcube_etw_client_scopes: str = Field(
73
+ default=DEFAULTS["PROCESSCUBE_ETW_CLIENT_SCOPES"]
74
+ )
75
+ processcube_max_get_oauth_access_token_retries: int = Field(
76
+ default=DEFAULTS["PROCESSCUBE_MAX_GET_OAUTH_ACCESS_TOKEN_RETRIES"]
77
+ )
78
+ processcube_etw_long_polling_timeout_in_ms: int = Field(
79
+ default=DEFAULTS["PROCESSCUBE_ETW_LONG_POLLING_TIMEOUT_IN_MS"]
80
+ )
57
81
  environment: str = Field(default=DEFAULTS["ENVIRONMENT"])
58
82
 
59
83
  @model_validator(mode="before")
@@ -71,7 +95,9 @@ class ETWSettings(BaseSettings):
71
95
  @model_validator(mode="after")
72
96
  def resolve_authority_url(self) -> "ETWSettings":
73
97
  if not self.processcube_authority_url.strip():
74
- self.processcube_authority_url = _determine_authority_url(self.processcube_engine_url)
98
+ self.processcube_authority_url = _determine_authority_url(
99
+ self.processcube_engine_url
100
+ )
75
101
  logger.info(
76
102
  f"Authority URL resolved from AppInfoClient: {self.processcube_authority_url}"
77
103
  )
@@ -94,4 +120,4 @@ def load_settings(settings_class: Type[T] = ETWSettings) -> T:
94
120
  global _settings
95
121
  if _settings is None:
96
122
  _settings = settings_class()
97
- return _settings # type: ignore
123
+ return _settings # type: ignore
@@ -1,14 +1,15 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: processcube-etw-library
3
- Version: 2026.1.22.145211
3
+ Version: 2026.1.29.71849b0
4
4
  Summary: A library to create ETW apps with the ProcessCube platform.
5
5
  Author-email: Jeremy Hill <jeremy.hill@profection.de>
6
6
  License: MIT
7
7
  Requires-Python: >=3.12
8
8
  Description-Content-Type: text/markdown
9
+ Requires-Dist: async-lru>=2.1.0
10
+ Requires-Dist: dataclasses-json>=0.6.7
9
11
  Requires-Dist: fastapi[standard]>=0.128.0
10
12
  Requires-Dist: oauth2-client>=1.4.2
11
- Requires-Dist: processcube-client>=5.0.0
12
13
  Requires-Dist: tenacity>=9.1.2
13
14
 
14
15
  # ProcessCube ETW Library
@@ -27,15 +28,16 @@ uv add processcube-etw-library
27
28
 
28
29
  The library uses environment variables for configuration. You can set these in your environment or in a `.env` file in your project root.
29
30
 
30
- | Variable | Default | Description |
31
- | ------------------------------------ | -------------------------------------- | ------------------------------------------------ |
32
- | `PROCESSCUBE_ENGINE_URL` | `http://localhost:56000` | URL of the ProcessCube Engine |
33
- | `PROCESSCUBE_AUTHORITY_URL` | Auto-discovered from engine | URL of the ProcessCube Authority (OAuth server) |
34
- | `PROCESSCUBE_ETW_CLIENT_ID` | `test_etw` | OAuth client ID for the External Task Worker |
35
- | `PROCESSCUBE_ETW_CLIENT_SECRET` | `3ef62eb3-fe49-4c2c-ba6f-73e4d234321b` | OAuth client secret for the External Task Worker |
36
- | `PROCESSCUBE_ETW_CLIENT_SCOPES` | `engine_etw` | OAuth scopes for the External Task Worker |
37
- | `MAX_GET_OAUTH_ACCESS_TOKEN_RETRIES` | `10` | Maximum retries for obtaining OAuth access token |
38
- | `ENVIRONMENT` | `development` | Environment mode (`development` or `production`) |
31
+ | Variable | Default | Description |
32
+ | ------------------------------------------------ | -------------------------------------- | ------------------------------------------------------- |
33
+ | `PROCESSCUBE_ENGINE_URL` | `http://localhost:56000` | URL of the ProcessCube Engine |
34
+ | `PROCESSCUBE_AUTHORITY_URL` | Auto-discovered from engine | URL of the ProcessCube Authority (OAuth server) |
35
+ | `PROCESSCUBE_ETW_CLIENT_ID` | `test_etw` | OAuth client ID for the External Task Worker |
36
+ | `PROCESSCUBE_ETW_CLIENT_SECRET` | `3ef62eb3-fe49-4c2c-ba6f-73e4d234321b` | OAuth client secret for the External Task Worker |
37
+ | `PROCESSCUBE_ETW_CLIENT_SCOPES` | `engine_etw` | OAuth scopes for the External Task Worker |
38
+ | `PROCESSCUBE_MAX_GET_OAUTH_ACCESS_TOKEN_RETRIES` | `10` | Maximum retries for obtaining OAuth access token |
39
+ | `PROCESSCUBE_ETW_LONG_POLLING_TIMEOUT_IN_MS` | `60000` | Long polling timeout in milliseconds for external tasks |
40
+ | `ENVIRONMENT` | `development` | Environment mode (`development` or `production`) |
39
41
 
40
42
  #### Example `.env` File
41
43
 
@@ -0,0 +1,58 @@
1
+ processcube_etw_library/__init__.py,sha256=MFwzDQQKhUvQ_FyQgJBDVpp7w7vh5QQjBzfU5v3eqBw,726
2
+ processcube_etw_library/create_external_task_client.py,sha256=AlrgD-kN8uneLdlGtYz7pSw2iJWdrvQIsU_Ubbv9WFE,956
3
+ processcube_etw_library/etw_app.py,sha256=zBYrf2GXMEZjLVksW5bCUwOfy8vMrf0oY9WJVOxjLs4,3642
4
+ processcube_etw_library/identity_provider.py,sha256=MQQm2PPysSAVZFjUmAHkMCieMYhHGXD-RQ_YoOBNtV0,2783
5
+ processcube_etw_library/server_config.py,sha256=qgKiNjgf2GzteZ1rAdSLH8GHt_i9rVpy32ttvKI4CGA,630
6
+ processcube_etw_library/settings.py,sha256=XPU1Ul_UN7F1u1GGPuMuKLIys7ojMSUUbZdFpMo0OfY,4041
7
+ processcube_etw_library/typed_handler.py,sha256=ipfKK09D4zP8exz9PnMRBj2hSVJwJFS85v7x7h9IGrs,1670
8
+ processcube_etw_library/health/__init__.py,sha256=-x-XcvovAF-4CIGFY_SaxBGz60tPg3VoPMavxvOWxQ4,588
9
+ processcube_etw_library/health/built_in.py,sha256=Rlr_owamml_dgxQurffOAuaacStD1A2o-dEt_hsfx5A,1064
10
+ processcube_etw_library/health/check.py,sha256=1XJlAe1T0xhVIsxiindnnspR8v6DMR-N4XTX7VIXCdo,1673
11
+ processcube_etw_library/health/handlers.py,sha256=iP9PIM1n_dfdwY8uFpxlbwe7oUNsch9Pg2AYI4SN8RY,1423
12
+ processcube_etw_library/health/models.py,sha256=mSDCaPvRjwddP41E05vbplk8abvemygj75FmmnAS65g,1529
13
+ processcube_etw_library/health/registry.py,sha256=h3ThPts9xTdnzuJeIpL_aG6xhI1DAHyaXXE3UzkiLWU,955
14
+ processcube_etw_library/health/routes.py,sha256=9zbi1TkPUP7t8hLu32IvS3tGBfSm7dkmEDxdwaM6JX4,754
15
+ processcube_etw_library/processcube_client/__init__.py,sha256=DZlhvkQTOf0HK_LQMKnffwH0xGehySAGZv8kD0gdqEw,673
16
+ processcube_etw_library/processcube_client/client_factory.py,sha256=J8pe109GqmJTf4x7vST9oIdS15L3XFpVMZgK9QK5d0E,1216
17
+ processcube_etw_library/processcube_client/app_info/__init__.py,sha256=EuYyeLJfYNTFyXdHSGQdVNmxc5k50etUQWfjMLH8s1w,42
18
+ processcube_etw_library/processcube_client/app_info/app_info_client.py,sha256=3wHoedaUkeLJ1q2tsCB65MXJBlWV8tVYLcSvMF2a-xA,1027
19
+ processcube_etw_library/processcube_client/core/__init__.py,sha256=GkBXZEuJVPQH7FGfjbVshS69FA0ArrjJa-OBslcGEkA,109
20
+ processcube_etw_library/processcube_client/core/base_client.py,sha256=VHT6hqjt6bh6TY6KCYlC6Q7XlpdKomSfx1-a1J8llK0,6163
21
+ processcube_etw_library/processcube_client/core/loop_helper.py,sha256=3MthWNSBLC0yEaXcPofD1PYaEp02I5EjYTJEToR5z0E,6828
22
+ processcube_etw_library/processcube_client/core/api/__init__.py,sha256=52m-5-17Wof2Rj1jzMCNFJpteP3cjfCojOhTtRcjyfw,1090
23
+ processcube_etw_library/processcube_client/core/api/base_client.py,sha256=El79ypGIMu8KP_PFVvJrn5VWLtf68niYIS-xujxHQAk,6806
24
+ processcube_etw_library/processcube_client/core/api/client.py,sha256=nYDc7-fqH9Lr08o3tZpNEr6wGHobDiVnEGuRm5Wo3oM,27489
25
+ processcube_etw_library/processcube_client/core/api/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
+ processcube_etw_library/processcube_client/core/api/helpers/application_info.py,sha256=8BpvQI6VQtk8CngfPQVevHszhjGf43J_iZW1YtYHrPs,853
27
+ processcube_etw_library/processcube_client/core/api/helpers/data_object_instances.py,sha256=R0XqNS4pDTnlCeROwNXx2zhPTZ-wW36BRfRGSGW7pQs,2063
28
+ processcube_etw_library/processcube_client/core/api/helpers/empty_tasks.py,sha256=61z76hhALw4SjJ2UwnC_B0yAxbyxSZi6cGvZ0IsmwwQ,2652
29
+ processcube_etw_library/processcube_client/core/api/helpers/events.py,sha256=mvy1bS9b7bJ1xBP03WDHTxQcsbVh4dFG9lOA6m0eI5c,1107
30
+ processcube_etw_library/processcube_client/core/api/helpers/external_tasks.py,sha256=Rtox-rGrc4cUvCfOV21Edn6giiNRFfQeK5AhnyN2nlY,3644
31
+ processcube_etw_library/processcube_client/core/api/helpers/flow_node_instances.py,sha256=JKpr3xPYD5fowdC20dHVt26QGKOz1JzlESG8CUo87TE,2954
32
+ processcube_etw_library/processcube_client/core/api/helpers/manual_tasks.py,sha256=T63SIsbXQqlh5KjWMYwLIJ4GO8YFReDLgPig71rKxAc,2670
33
+ processcube_etw_library/processcube_client/core/api/helpers/process_definitions.py,sha256=70IM8ZO4XCpBblmExtyn0Vp9rWvK1V2eGZ3bwWmQW_U,1275
34
+ processcube_etw_library/processcube_client/core/api/helpers/process_instances.py,sha256=Tx4YjrzfAsaRHOq-1APQMrf5DP3KDRf8Ak-X91tm1kY,3106
35
+ processcube_etw_library/processcube_client/core/api/helpers/process_models.py,sha256=LHCAxAeCZED_6Lu8LVz8Iu9AQCfTnUFhw_reYfyPNVk,1526
36
+ processcube_etw_library/processcube_client/core/api/helpers/user_tasks.py,sha256=S60FXI43FTGdSiZC0EeZXmODc70-X1lB_enPC9ljOxE,3628
37
+ processcube_etw_library/processcube_client/event/__init__.py,sha256=fOOoMCNG5z510b0AGe8hevZaSfLUA5ntwZn8RyvlozM,37
38
+ processcube_etw_library/processcube_client/event/event_client.py,sha256=gBWhvPZXb9BIOhLUA-6oFEImmpigTNF-_826vmwDm98,1495
39
+ processcube_etw_library/processcube_client/external_task/__init__.py,sha256=Iw0aaROIgLbOrLzGMYAMJVrabJQnwzochkQLjXqxORE,141
40
+ processcube_etw_library/processcube_client/external_task/client_wrapper.py,sha256=oz4_3fObvWWNyBe6G_aDQSAj328wzy68mTfKhknCL_8,980
41
+ processcube_etw_library/processcube_client/external_task/external_task_client.py,sha256=KmDWKyDd92q6LpJAvgy-pdYj7OlwcqgTMuTlRJyxZAI,7346
42
+ processcube_etw_library/processcube_client/external_task/external_task_worker.py,sha256=lEvgRKZhiu4i3n60rkQYtJmS8JBsNLUjRndAv85l6Tc,8030
43
+ processcube_etw_library/processcube_client/external_task/functional_error.py,sha256=r_bYu4BdpUNoiF1hXZseuy73ro_Kd8TcFaFPo6Q770w,400
44
+ processcube_etw_library/processcube_client/flow_node_instance/__init__.py,sha256=P7zoIqY06KpLJrOFs8j0biWEvNWtQmoHBW59bqSYlLI,61
45
+ processcube_etw_library/processcube_client/flow_node_instance/flow_node_instance_client.py,sha256=eFUwYvQV99E2ONbbLxoikWmlh_jygnOOBNcASX5U-FE,1444
46
+ processcube_etw_library/processcube_client/notification/__init__.py,sha256=98jTIaczvyREwSnM1mFkV6OL0SdsUyBDMLe-a3AmUTg,51
47
+ processcube_etw_library/processcube_client/notification/notification_client.py,sha256=GFlIWu6hSWMmCztWlRHcAljDPqn7LT1CphScHL54JWA,3808
48
+ processcube_etw_library/processcube_client/process_definition/__init__.py,sha256=pd_7uihuMPWrBLiDI6xonjKz9IiToiLDEMK_xP0fmc8,114
49
+ processcube_etw_library/processcube_client/process_definition/process_definition_client.py,sha256=3NTaLISqvC2NAVeqj-WGPs9HcdToH0xkUl4SqItINxY,3866
50
+ processcube_etw_library/processcube_client/process_definition/start_callback_type.py,sha256=x-zK6V7rI945No0GGsSizLZdK1t3xkUsHr2AV4ukoRM,159
51
+ processcube_etw_library/processcube_client/process_instance/__init__.py,sha256=uvhO0Rki1QZrfGEPzbB4Q0ITa4TrsX31Q2JPQpzMfQA,58
52
+ processcube_etw_library/processcube_client/process_instance/process_instance_client.py,sha256=MgODFnkbJteRVokgXSRxI0F_RGqSAJBN7uTMhu0y5-c,1098
53
+ processcube_etw_library/processcube_client/user_task/__init__.py,sha256=zqY9EtWDQR7_ens_ivuPqr0tm7Q7TkaZTG-TkitYMYM,45
54
+ processcube_etw_library/processcube_client/user_task/user_task_client.py,sha256=R2_r8Wh794ZrmNWN8tjK3OkA-7EB6z88HCl28u018Xw,2217
55
+ processcube_etw_library-2026.1.29.71849b0.dist-info/METADATA,sha256=ScJjuYIi6cC64V7C7l80WQGjNCXUFcuO6YiAxljoaCw,6188
56
+ processcube_etw_library-2026.1.29.71849b0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
57
+ processcube_etw_library-2026.1.29.71849b0.dist-info/top_level.txt,sha256=4PHR_mnrU9J-d4zMU4XHDSmB7BURAAryRmBgbuypSuI,24
58
+ processcube_etw_library-2026.1.29.71849b0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.10.1)
2
+ Generator: setuptools (80.10.2)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,18 +0,0 @@
1
- processcube_etw_library/__init__.py,sha256=-Kf99BVV-XUw9xJBAmDoZRcFH0BUp3jGOMQA0on2sNI,662
2
- processcube_etw_library/create_external_task_client.py,sha256=3_ABFll4ad5hX20EYxuExS4FTIymyFDQSG340xSq38k,927
3
- processcube_etw_library/etw_app.py,sha256=CiRvZC5N6lSfu_IDoKmrAgCkS4xZpIll-QAaObRfGos,3260
4
- processcube_etw_library/identity_provider.py,sha256=X33lOEPrB-HaZGc5DjTSPHynU7EdbTVFJ6vPg0K_boc,2785
5
- processcube_etw_library/server_config.py,sha256=qgKiNjgf2GzteZ1rAdSLH8GHt_i9rVpy32ttvKI4CGA,630
6
- processcube_etw_library/settings.py,sha256=sxRapYtGzV3JtFs988MDVYfTRXltHd4Kxvyj2p1sL6w,3370
7
- processcube_etw_library/typed_handler.py,sha256=ipfKK09D4zP8exz9PnMRBj2hSVJwJFS85v7x7h9IGrs,1670
8
- processcube_etw_library/health/__init__.py,sha256=-x-XcvovAF-4CIGFY_SaxBGz60tPg3VoPMavxvOWxQ4,588
9
- processcube_etw_library/health/built_in.py,sha256=nix40LwD8vPzsTLzVqvjvc1V8oLPvJnARWedhhYRbx8,1022
10
- processcube_etw_library/health/check.py,sha256=2NiyMXsHCZmB9KD5XB3PprpgJK1HFblM-E9c1Ermt2E,1335
11
- processcube_etw_library/health/handlers.py,sha256=iP9PIM1n_dfdwY8uFpxlbwe7oUNsch9Pg2AYI4SN8RY,1423
12
- processcube_etw_library/health/models.py,sha256=mSDCaPvRjwddP41E05vbplk8abvemygj75FmmnAS65g,1529
13
- processcube_etw_library/health/registry.py,sha256=h3ThPts9xTdnzuJeIpL_aG6xhI1DAHyaXXE3UzkiLWU,955
14
- processcube_etw_library/health/routes.py,sha256=9zbi1TkPUP7t8hLu32IvS3tGBfSm7dkmEDxdwaM6JX4,754
15
- processcube_etw_library-2026.1.22.145211.dist-info/METADATA,sha256=FJZLjBRqCck96xxi_qOeD0WfFFh_1hlc4osqhPmvmdA,5834
16
- processcube_etw_library-2026.1.22.145211.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
17
- processcube_etw_library-2026.1.22.145211.dist-info/top_level.txt,sha256=4PHR_mnrU9J-d4zMU4XHDSmB7BURAAryRmBgbuypSuI,24
18
- processcube_etw_library-2026.1.22.145211.dist-info/RECORD,,