pinexq-client 0.9.2.20250728.45__py3-none-any.whl → 0.9.2.20250828.47__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.
@@ -22,4 +22,4 @@ from .model import JobSortPropertiesSortParameter, ProcessingView
22
22
  from .tool import Job, JobGroup, ProcessingStep, WorkData
23
23
 
24
24
  # Protocol version the JMA is using
25
- __jma_version__ = [8, 0, 0]
25
+ __jma_version__ = [8, 2, 0]
@@ -18,6 +18,7 @@ class InfoHco(Hco[InfoEntity]):
18
18
  api_version: str = Property()
19
19
  build_version: str = Property()
20
20
  current_user: UserHco
21
+ organization_id: str = Property()
21
22
  used_storage_in_bytes: int = Property()
22
23
 
23
24
  self_link: InfoLink
@@ -4,7 +4,7 @@ from typing import List, Self
4
4
  import httpx
5
5
  from pydantic import BaseModel, ConfigDict
6
6
 
7
- from pinexq_client.core import upload_json
7
+ from pinexq_client.core import upload_json, Link, MediaTypes
8
8
  from pinexq_client.core.hco.action_hco import ActionHco
9
9
  from pinexq_client.core.hco.action_with_parameters_hco import ActionWithParametersHco
10
10
  from pinexq_client.core.hco.download_link_hco import DownloadLinkHco
@@ -13,6 +13,7 @@ from pinexq_client.core.hco.link_hco import LinkHco
13
13
  from pinexq_client.core.hco.unavailable import UnavailableAction
14
14
  from pinexq_client.core.hco.upload_action_hco import UploadAction, UploadParameters
15
15
  from pinexq_client.job_management.known_relations import Relations
16
+ from pinexq_client.job_management.model import CopyPsFromUserToOrgActionParameters, CopyPsFromOrgToUserActionParameters
16
17
  from pinexq_client.job_management.model.open_api_generated import DataSpecificationHto, \
17
18
  SetProcessingStepTagsParameters, EditProcessingStepParameters
18
19
  from pinexq_client.job_management.model.sirenentities import ProcessingStepEntity
@@ -70,11 +71,38 @@ class ClearDefaultParametersAction(ActionHco):
70
71
  self._execute_internal()
71
72
 
72
73
 
74
+ class DeleteAction(ActionHco):
75
+ def execute(self):
76
+ self._execute_internal()
77
+
78
+
73
79
  class UploadConfigurationAction(UploadAction):
74
80
  def execute(self, parameters: UploadParameters):
75
81
  upload_json(self._client, self._action, parameters.json_, parameters.filename)
76
82
 
77
83
 
84
+ class ProcessingStepCopyFromUserToOrgAction(ActionWithParametersHco[CopyPsFromUserToOrgActionParameters]):
85
+ def execute(self, parameters: CopyPsFromUserToOrgActionParameters) -> ProcessingStepLink:
86
+ url = self._execute_returns_url(parameters)
87
+ link = Link.from_url(url, [str(Relations.CREATED_RESSOURCE)], "Copied Processing Step", MediaTypes.SIREN)
88
+ return ProcessingStepLink.from_link(self._client, link)
89
+
90
+ def default_parameters(self) -> CopyPsFromUserToOrgActionParameters:
91
+ return self._get_default_parameters(CopyPsFromUserToOrgActionParameters,
92
+ CopyPsFromUserToOrgActionParameters())
93
+
94
+
95
+ class ProcessingStepCopyFromOrgToUserAction(ActionWithParametersHco[CopyPsFromOrgToUserActionParameters]):
96
+ def execute(self, parameters: CopyPsFromOrgToUserActionParameters) -> ProcessingStepLink:
97
+ url = self._execute_returns_url(parameters)
98
+ link = Link.from_url(url, [str(Relations.CREATED_RESSOURCE)], "Copied Processing Step", MediaTypes.SIREN)
99
+ return ProcessingStepLink.from_link(self._client, link)
100
+
101
+ def default_parameters(self) -> CopyPsFromOrgToUserActionParameters:
102
+ return self._get_default_parameters(CopyPsFromOrgToUserActionParameters,
103
+ CopyPsFromOrgToUserActionParameters())
104
+
105
+
78
106
  class ProcessingStepHco(Hco[ProcessingStepEntity]):
79
107
  title: str = Property()
80
108
  version: str | None = Property()
@@ -102,6 +130,9 @@ class ProcessingStepHco(Hco[ProcessingStepEntity]):
102
130
  upload_configuration_action: UploadConfigurationAction | None
103
131
  hide_action: ProcessingStepHideAction | UnavailableAction
104
132
  unhide_action: ProcessingStepUnHideAction | UnavailableAction
133
+ copy_from_user_to_org_action: ProcessingStepCopyFromUserToOrgAction | UnavailableAction
134
+ copy_from_org_to_user_action: ProcessingStepCopyFromOrgToUserAction | UnavailableAction
135
+ delete_action: DeleteAction | UnavailableAction
105
136
 
106
137
  self_link: ProcessingStepLink
107
138
  download_link: DownloadLinkHco
@@ -130,5 +161,11 @@ class ProcessingStepHco(Hco[ProcessingStepEntity]):
130
161
  client, instance._entity, "Hide")
131
162
  instance.unhide_action = ProcessingStepUnHideAction.from_entity_optional(
132
163
  client, instance._entity, "UnHide")
164
+ instance.copy_from_user_to_org_action = ProcessingStepCopyFromUserToOrgAction.from_entity_optional(
165
+ client, instance._entity, "CopyToOrg")
166
+ instance.copy_from_org_to_user_action = ProcessingStepCopyFromOrgToUserAction.from_entity_optional(
167
+ client, instance._entity, "CopyToUser")
168
+ instance.delete_action = DeleteAction.from_entity_optional(
169
+ client, instance._entity, "Delete")
133
170
 
134
171
  return instance
@@ -3,6 +3,7 @@ from typing import Self
3
3
 
4
4
  import httpx
5
5
 
6
+ from pinexq_client.core import Link, MediaTypes
6
7
  from pinexq_client.core.hco.action_hco import ActionHco
7
8
  from pinexq_client.core.hco.action_with_parameters_hco import ActionWithParametersHco
8
9
  from pinexq_client.core.hco.download_link_hco import DownloadLinkHco
@@ -12,6 +13,7 @@ from pinexq_client.core.hco.unavailable import UnavailableAction, UnavailableLin
12
13
  from pinexq_client.job_management.hcos.processing_step_hco import ProcessingStepLink
13
14
  from pinexq_client.job_management.hcos.job_hco import JobLink
14
15
  from pinexq_client.job_management.known_relations import Relations
16
+ from pinexq_client.job_management.model import CopyWorkDataFromUserToOrgActionParameters
15
17
  from pinexq_client.job_management.model.open_api_generated import (
16
18
  SetNameWorkDataParameters,
17
19
  SetCommentWorkDataParameters,
@@ -76,6 +78,23 @@ class WorkDataUnHideAction(ActionHco):
76
78
  self._execute_internal()
77
79
 
78
80
 
81
+ class WorkDataCopyUserToOrgAction(ActionWithParametersHco[CopyWorkDataFromUserToOrgActionParameters]):
82
+ def execute(self, parameters: CopyWorkDataFromUserToOrgActionParameters) -> WorkDataLink:
83
+ url = self._execute_returns_url(parameters)
84
+ link = Link.from_url(url, [str(Relations.CREATED_RESSOURCE)], "Copied workdata", MediaTypes.SIREN)
85
+ return WorkDataLink.from_link(self._client, link)
86
+
87
+ def default_parameters(self) -> CopyWorkDataFromUserToOrgActionParameters:
88
+ return self._get_default_parameters(CopyWorkDataFromUserToOrgActionParameters, CopyWorkDataFromUserToOrgActionParameters())
89
+
90
+
91
+ class WorkDataCopyOrgToUserAction(ActionHco):
92
+ def execute(self) -> WorkDataLink:
93
+ url = self._execute_internal()
94
+ link = Link.from_url(url, [str(Relations.CREATED_RESSOURCE)], "Copied workdata", MediaTypes.SIREN)
95
+ return WorkDataLink.from_link(self._client, link)
96
+
97
+
79
98
  class WorkDataHco(Hco[WorkDataEntity]):
80
99
  name: str | None = Property()
81
100
  created_at: datetime | None = Property()
@@ -95,6 +114,8 @@ class WorkDataHco(Hco[WorkDataEntity]):
95
114
  rename_action: WorkDataRenameAction | UnavailableAction
96
115
  edit_comment_action: WorkDataEditCommentAction | UnavailableAction
97
116
  edit_tags_action: WorkDataEditTagsAction | UnavailableAction
117
+ copy_user_to_org_action: WorkDataCopyUserToOrgAction | UnavailableAction
118
+ copy_org_to_user_action: WorkDataCopyOrgToUserAction | UnavailableAction
98
119
 
99
120
  self_link: WorkDataLink
100
121
  download_link: DownloadLinkHco
@@ -123,6 +144,10 @@ class WorkDataHco(Hco[WorkDataEntity]):
123
144
  client, instance._entity, "AllowDeletion")
124
145
  instance.disallow_deletion_action = WorkDataDisallowAction.from_entity_optional(
125
146
  client, instance._entity, "DisallowDeletion")
147
+ instance.copy_user_to_org_action = WorkDataCopyUserToOrgAction.from_entity_optional(
148
+ client, instance._entity, "CopyToOrg")
149
+ instance.copy_org_to_user_action = WorkDataCopyOrgToUserAction.from_entity_optional(
150
+ client, instance._entity, "CopyToUser")
126
151
 
127
152
  # links
128
153
  instance.self_link = WorkDataLink.from_entity(
@@ -1,6 +1,6 @@
1
1
  # generated by datamodel-codegen:
2
2
  # filename: openapi.json
3
- # timestamp: 2025-07-28T08:17:01+00:00
3
+ # timestamp: 2025-08-27T15:51:53+00:00
4
4
 
5
5
  from __future__ import annotations
6
6
 
@@ -43,6 +43,35 @@ class AdminWorkDataQueryResultHtoOpenApiProperties(BaseModel):
43
43
  remaining_tags: List[str] | None = Field(None, alias='RemainingTags')
44
44
 
45
45
 
46
+ class CopyPsFromOrgToUserActionParameters(BaseModel):
47
+ model_config = ConfigDict(
48
+ extra='allow',
49
+ populate_by_name=True,
50
+ )
51
+ title: constr(min_length=1) = Field(..., alias='Title')
52
+ function_name: constr(min_length=1) = Field(..., alias='FunctionName')
53
+ version: constr(min_length=1) = Field(..., alias='Version')
54
+
55
+
56
+ class CopyPsFromUserToOrgActionParameters(BaseModel):
57
+ model_config = ConfigDict(
58
+ extra='allow',
59
+ populate_by_name=True,
60
+ )
61
+ org_id: constr(min_length=1) = Field(..., alias='OrgId')
62
+ title: constr(min_length=1) = Field(..., alias='Title')
63
+ function_name: constr(min_length=1) = Field(..., alias='FunctionName')
64
+ version: constr(min_length=1) = Field(..., alias='Version')
65
+
66
+
67
+ class CopyWorkDataFromUserToOrgActionParameters(BaseModel):
68
+ model_config = ConfigDict(
69
+ extra='allow',
70
+ populate_by_name=True,
71
+ )
72
+ org_id: constr(min_length=1) = Field(..., alias='OrgId')
73
+
74
+
46
75
  class CreateJobParameters(BaseModel):
47
76
  model_config = ConfigDict(
48
77
  extra='allow',
@@ -14,7 +14,8 @@ from pinexq_client.job_management.known_relations import Relations
14
14
  from pinexq_client.job_management.model import (
15
15
  CreateProcessingStepParameters,
16
16
  SetProcessingStepTagsParameters, ProcessingStepQueryParameters, ProcessingStepFilterParameter,
17
- FunctionNameMatchTypes, EditProcessingStepParameters,
17
+ FunctionNameMatchTypes, EditProcessingStepParameters, CopyPsFromUserToOrgActionParameters,
18
+ CopyPsFromOrgToUserActionParameters,
18
19
  )
19
20
 
20
21
 
@@ -266,6 +267,16 @@ class ProcessingStep:
266
267
  self.refresh()
267
268
  return self
268
269
 
270
+ def delete(self) -> Self:
271
+ """Delete ProcessingStep.
272
+
273
+ Returns:
274
+ This `ProcessingStep` object"""
275
+ self._raise_if_no_hco()
276
+ self.processing_step_hco.delete_action.execute()
277
+ self.processing_step_hco = None
278
+ return self
279
+
269
280
  def upload_configuration(self, json_data: Any) -> Self:
270
281
  """Upload processing configuration.
271
282
 
@@ -284,6 +295,48 @@ class ProcessingStep:
284
295
 
285
296
  return self
286
297
 
298
+ def copy_from_org_to_user(self, *, title: str, function_name: str, version: str) -> ProcessingStepLink:
299
+ """Copy ProcessingStep from organization to user.
300
+
301
+ Args:
302
+ title: New title for the copied ProcessingStep
303
+ function_name: New function for the copied ProcessingStep
304
+ version: New version for the copied ProcessingStep
305
+
306
+ Returns:
307
+ The URL of the copied ProcessingStep
308
+ """
309
+ self._raise_if_no_hco()
310
+ return self.processing_step_hco.copy_from_org_to_user_action.execute(
311
+ CopyPsFromOrgToUserActionParameters(
312
+ title=title,
313
+ function_name=function_name,
314
+ version=version
315
+ )
316
+ )
317
+
318
+ def copy_from_user_to_org(self, *, title: str, function_name: str, version: str, org_id: str) -> ProcessingStepLink:
319
+ """Copy ProcessingStep from user to organization.
320
+
321
+ Args:
322
+ org_id: The ID of the organization to copy the processing step to.
323
+ title: New title for the copied ProcessingStep
324
+ function_name: New function for the copied ProcessingStep
325
+ version: New version for the copied ProcessingStep
326
+
327
+ Returns:
328
+ The URL of the copied ProcessingStep
329
+ """
330
+ self._raise_if_no_hco()
331
+ return self.processing_step_hco.copy_from_user_to_org_action.execute(
332
+ CopyPsFromUserToOrgActionParameters(
333
+ org_id=org_id,
334
+ title=title,
335
+ function_name=function_name,
336
+ version=version
337
+ )
338
+ )
339
+
287
340
  def self_link(self) -> ProcessingStepLink:
288
341
  self._raise_if_no_hco()
289
342
  return self.processing_step_hco.self_link
@@ -10,7 +10,7 @@ from pinexq_client.job_management.enterjma import enter_jma
10
10
  from pinexq_client.job_management.hcos import WorkDataLink, WorkDataRootHco, WorkDataHco
11
11
  from pinexq_client.job_management.hcos.entrypoint_hco import EntryPointHco
12
12
  from pinexq_client.job_management.known_relations import Relations
13
- from pinexq_client.job_management.model import SetTagsWorkDataParameters
13
+ from pinexq_client.job_management.model import SetTagsWorkDataParameters, CopyWorkDataFromUserToOrgActionParameters
14
14
 
15
15
 
16
16
  class WorkData:
@@ -160,6 +160,29 @@ class WorkData:
160
160
  self._raise_if_no_hco()
161
161
  return self.work_data_hco.download_link.download()
162
162
 
163
+ def copy_to_user(self) -> WorkDataLink:
164
+ """Copy WorkData from organization to user.
165
+
166
+ Returns:
167
+ The URL of the copied WorkData
168
+ """
169
+ self._raise_if_no_hco()
170
+ return self.work_data_hco.copy_org_to_user_action.execute()
171
+
172
+ def copy_to_org(self, org_id: str) -> WorkDataLink:
173
+ """Copy WorkData from user to organization.
174
+
175
+ Args:
176
+ org_id: The ID of the organization to copy the WorkData to.
177
+
178
+ Returns:
179
+ The URL of the copied WorkData
180
+ """
181
+ self._raise_if_no_hco()
182
+ return self.work_data_hco.copy_user_to_org_action.execute(
183
+ CopyWorkDataFromUserToOrgActionParameters(org_id=org_id)
184
+ )
185
+
163
186
  def self_link(self) -> WorkDataLink:
164
187
  self._raise_if_no_hco()
165
188
  return self.work_data_hco.self_link
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pinexq-client
3
- Version: 0.9.2.20250728.45
3
+ Version: 0.9.2.20250828.47
4
4
  Summary: A hypermedia-based client for the DataCybernetics PinexQ platform.
5
5
  Author-Email: =?utf-8?q?Sebastian_H=C3=B6fer?= <hoefer@data-cybernetics.com>, Mathias Reichardt <reichardt@data-cybernetics.com>, Jasim Ahmed <ahmed@data-cybernetics.com>, Pratik Poudel <poudel@data-cybernetics.com>
6
6
  Maintainer-Email: Mathias Reichardt <reichardt@data-cybernetics.com>, =?utf-8?q?Sebastian_H=C3=B6fer?= <hoefer@data-cybernetics.com>, Carsten Blank <blank@data-cybernetics.com>
@@ -1,7 +1,7 @@
1
- pinexq_client-0.9.2.20250728.45.dist-info/METADATA,sha256=rpYp7wXC3mkwpuPzLGmEjObrX6rnq74CYCvOrhnCq6A,3279
2
- pinexq_client-0.9.2.20250728.45.dist-info/WHEEL,sha256=9P2ygRxDrTJz3gsagc0Z96ukrxjr-LFBGOgv3AuKlCA,90
3
- pinexq_client-0.9.2.20250728.45.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
4
- pinexq_client-0.9.2.20250728.45.dist-info/licenses/LICENSE,sha256=3oz3tAhM7kOgRukkRe7wmh5T_HihZY77ZtJDJm91ZN8,1072
1
+ pinexq_client-0.9.2.20250828.47.dist-info/METADATA,sha256=sNt7390BNnmdQNl5x6vy00g5WHdCEcrVNrI7wHznt8w,3279
2
+ pinexq_client-0.9.2.20250828.47.dist-info/WHEEL,sha256=9P2ygRxDrTJz3gsagc0Z96ukrxjr-LFBGOgv3AuKlCA,90
3
+ pinexq_client-0.9.2.20250828.47.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
4
+ pinexq_client-0.9.2.20250828.47.dist-info/licenses/LICENSE,sha256=3oz3tAhM7kOgRukkRe7wmh5T_HihZY77ZtJDJm91ZN8,1072
5
5
  pinexq_client/core/__init__.py,sha256=zO9vUuAl6AEokL-SqQO3Jl1qrxFBZPA2kH99VNZugEU,598
6
6
  pinexq_client/core/base_relations.py,sha256=oIUS58pkbMDdqm-3YOdsenhL1smtzeAk4fp7-U595MY,162
7
7
  pinexq_client/core/enterapi.py,sha256=eB4F2_t3lCbMgKhy-M-Sf_u9MhuJMO7OGh-GB-4Cc-8,731
@@ -21,33 +21,33 @@ pinexq_client/core/model/error.py,sha256=ZDbUlwsj7d8XPMolSSLTFwgs3RBLvOvgmlEtoBu
21
21
  pinexq_client/core/model/sirenmodels.py,sha256=vGRQlhM2cSa2caxQel91Jr48KWqM-vMYX32iaQCzIds,5547
22
22
  pinexq_client/core/polling.py,sha256=Z6VXn-PCGk4XX-4tQWZG59qJyCIS0eIrpPUORQDIGrs,1077
23
23
  pinexq_client/core/sirenaccess.py,sha256=F7eZI5Pz79el0D30SYNGsiS2qWaAZF_jrCrUy-q2GgY,6992
24
- pinexq_client/job_management/__init__.py,sha256=tpmrNGVVfoH6kfcU_-w1vN4kpBUxO2_zmtdt-ddgT5w,598
24
+ pinexq_client/job_management/__init__.py,sha256=D2Q6OGe8JfDGnllwsHJe2risNVVp03UsP6wNsF0ge04,598
25
25
  pinexq_client/job_management/enterjma.py,sha256=Ivl_jVPw_gaLyU5nKbywM-bbVGpn0MoCrZ0DMbJYf3s,1411
26
26
  pinexq_client/job_management/hcos/__init__.py,sha256=TZgs5kuBk3lSBxPfn5ehgbdUgzPy2jn1PC3Ea6VQY-k,584
27
27
  pinexq_client/job_management/hcos/entrypoint_hco.py,sha256=qodjAwO_MtawUuhmaYjhGXHV-uW1k94V9gKRYZRkhn4,2234
28
- pinexq_client/job_management/hcos/info_hco.py,sha256=zWjR63SCEO_sUcZ9ha_aIoC_qUzAWLf50Xu4AHddAn8,1328
28
+ pinexq_client/job_management/hcos/info_hco.py,sha256=foAIojj0qzv5qXwW418CtYLFtdX78AwyzSljtkig1zU,1366
29
29
  pinexq_client/job_management/hcos/input_dataslot_hco.py,sha256=SDflhyW8kjpcTUfKAXnJxNR-etPzAHfoTqlYUcJZrxs,3442
30
30
  pinexq_client/job_management/hcos/job_hco.py,sha256=8Lq5RABq7XUp3Z6jhYegPgVPfm591-38eC8CCLes0KQ,8934
31
31
  pinexq_client/job_management/hcos/job_query_result_hco.py,sha256=I0G8YIlYDhTahLz8n06L8BywlcsMGNWUEsmEr4Sk0GU,3315
32
32
  pinexq_client/job_management/hcos/job_used_tags_hco.py,sha256=nys6E97NNXATdnvX6KZ46JR9qEb2lnqol9ZvJVEiNpQ,944
33
33
  pinexq_client/job_management/hcos/jobsroot_hco.py,sha256=5h_CYb9FyjpmAlvDXuK_AimCvomadFTcCSQ6QmMD0QY,4726
34
34
  pinexq_client/job_management/hcos/output_dataslot_hco.py,sha256=zxpo-fI9eHcp_pMKcf2l-gRoPHX1RzQO53auHMRB_T8,1549
35
- pinexq_client/job_management/hcos/processing_step_hco.py,sha256=JH9s3ifchYvpwzPGkDon9AyDnjdZZiSCu1Xtgd2jKnY,6131
35
+ pinexq_client/job_management/hcos/processing_step_hco.py,sha256=HsG88iPHU4w8rHSTgmFvmXFnYPQBC2rZAXYJNJf_058,8371
36
36
  pinexq_client/job_management/hcos/processing_step_used_tags_hco.py,sha256=90-2IWlYTcYX62NzmAPnmcUCwMDhmMZyBrNs_G3yigs,1067
37
37
  pinexq_client/job_management/hcos/processingstep_query_result_hco.py,sha256=YcCgigKvOIggILixgaEbmnM23FlkjCgxnhZC2Eh98dY,3817
38
38
  pinexq_client/job_management/hcos/processingsteproot_hco.py,sha256=gQBGMWEKX5kq_HwC7-eEjjfAm6oYTuIxGX5kKw_GKUM,3684
39
39
  pinexq_client/job_management/hcos/user_hco.py,sha256=6GZrNeUZSZxwOiyCylkfl-pqDa1RL7Lc9Lg3vf0EuYc,1095
40
- pinexq_client/job_management/hcos/workdata_hco.py,sha256=utKgdvwJdtR5oFSdM0PQpjpFmH39X1RAvfF-2a1g3U8,5707
40
+ pinexq_client/job_management/hcos/workdata_hco.py,sha256=QI1m_IUWVBesCft9UR1svCRsWDz16moY7XMhWvfFGcE,7206
41
41
  pinexq_client/job_management/hcos/workdata_query_result_hco.py,sha256=yxEnu_COMxP3mt553JZD13jjPyqSp3DJjgd8es5Nq_E,3520
42
42
  pinexq_client/job_management/hcos/workdata_used_tags_query_result_hco.py,sha256=qB1iQpwD63579dq3tUF4DBB_rZRMqJ80y1ysf-41aOo,1087
43
43
  pinexq_client/job_management/hcos/workdataroot_hco.py,sha256=LdEPW2JJTqAWi-6zj-40lfREhthcDL6nPXQk_nfMtCA,3936
44
44
  pinexq_client/job_management/known_relations.py,sha256=f3-7RagAfeSFv9b54l5zxnLKbVQjQQHzYsM4W2QHf0Y,708
45
45
  pinexq_client/job_management/model/__init__.py,sha256=iuAKRXdW_Mxo0i3HsBfEzhJJZUKkNe3qs4gLW-ge1PU,63
46
- pinexq_client/job_management/model/open_api_generated.py,sha256=0zRqgTQWp2imTfIaAwQxun9XT1xLW9BMIr6yZ_5Wkes,33577
46
+ pinexq_client/job_management/model/open_api_generated.py,sha256=QBuNoOys6jd_LAguEjIN74qL0VzhF0DvsA-cKNT4Mec,34544
47
47
  pinexq_client/job_management/model/sirenentities.py,sha256=MUjgByEwzQcrduCEJuNK85uAj8SLTdyaiKmnlB44h3E,3430
48
48
  pinexq_client/job_management/tool/__init__.py,sha256=zPobd-hQyANHzC0-TjJG91z9XrewvE54ZJ6VViymW5M,128
49
49
  pinexq_client/job_management/tool/job.py,sha256=yVEVE3RRalQy8abA2G1X-a1Tj3v32YCsDeN52LDMSp8,30572
50
50
  pinexq_client/job_management/tool/job_group.py,sha256=TNWw46UDyP2gmArhbzMAqpHa6lS2hzwarLIrxxpOMnk,4822
51
- pinexq_client/job_management/tool/processing_step.py,sha256=LLesEbS7vaAiCoGs7MV8bnaD8bWnkK-2YTxAsyPiJFM,10796
52
- pinexq_client/job_management/tool/workdata.py,sha256=wRy_yfFZUJDh-hoGUuAbQaRGtPysDmEOhLwD84Fgz04,5510
53
- pinexq_client-0.9.2.20250728.45.dist-info/RECORD,,
51
+ pinexq_client/job_management/tool/processing_step.py,sha256=-OysrLTN-Qc8JbYanOrqV0USSYhMY6gw4hH5DMgnOIc,12757
52
+ pinexq_client/job_management/tool/workdata.py,sha256=E1Qt945tocXiSZuQo2IbTnlgW2VRnq2ODEFQ96lXTDI,6270
53
+ pinexq_client-0.9.2.20250828.47.dist-info/RECORD,,