pinexq-client 1.0.0__py3-none-any.whl → 1.1.0__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.
- pinexq/client/job_management/__init__.py +1 -1
- pinexq/client/job_management/hcos/job_hco.py +2 -1
- pinexq/client/job_management/hcos/processing_step_hco.py +2 -1
- pinexq/client/job_management/hcos/workdata_hco.py +3 -2
- pinexq/client/job_management/model/open_api_generated.py +120 -96
- {pinexq_client-1.0.0.dist-info → pinexq_client-1.1.0.dist-info}/METADATA +1 -1
- {pinexq_client-1.0.0.dist-info → pinexq_client-1.1.0.dist-info}/RECORD +8 -8
- {pinexq_client-1.0.0.dist-info → pinexq_client-1.1.0.dist-info}/WHEEL +1 -1
|
@@ -17,7 +17,7 @@ from ..model.open_api_generated import (
|
|
|
17
17
|
ProcessingView,
|
|
18
18
|
RenameJobParameters,
|
|
19
19
|
SelectProcessingParameters,
|
|
20
|
-
SetJobTagsParameters,
|
|
20
|
+
SetJobTagsParameters, TagDetailsHto,
|
|
21
21
|
)
|
|
22
22
|
from ..model.sirenentities import InputDataSlotEntity, JobEntity, OutputDataSlotEntity
|
|
23
23
|
|
|
@@ -121,6 +121,7 @@ class JobHco(Hco[JobEntity]):
|
|
|
121
121
|
state: JobStates = Property()
|
|
122
122
|
hidden: bool = Property()
|
|
123
123
|
tags: list[str] | None = Property()
|
|
124
|
+
tag_details: List[TagDetailsHto] | None = Property()
|
|
124
125
|
output_is_deletable: bool = Property()
|
|
125
126
|
created_at: datetime = Property()
|
|
126
127
|
started_at: datetime = Property()
|
|
@@ -23,7 +23,7 @@ from ..model.open_api_generated import (
|
|
|
23
23
|
DataSpecificationHto,
|
|
24
24
|
DeploymentStates,
|
|
25
25
|
ProcessingStepDeploymentHto,
|
|
26
|
-
SetProcessingStepTagsParameters, SetProcessingStepTitleParameters,
|
|
26
|
+
SetProcessingStepTagsParameters, SetProcessingStepTitleParameters, TagDetailsHto,
|
|
27
27
|
)
|
|
28
28
|
from ..model.sirenentities import ProcessingStepEntity
|
|
29
29
|
|
|
@@ -181,6 +181,7 @@ class ProcessingStepHco(Hco[ProcessingStepEntity]):
|
|
|
181
181
|
owner_id: str | None= Property()
|
|
182
182
|
|
|
183
183
|
tags: list[str] | None = Property()
|
|
184
|
+
tag_details: List[TagDetailsHto] | None = Property()
|
|
184
185
|
has_parameters: bool | None = Property()
|
|
185
186
|
is_public: bool | None = Property()
|
|
186
187
|
created_at: datetime | None = Property()
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
from datetime import datetime
|
|
2
|
-
from typing import Self
|
|
2
|
+
from typing import Self, List
|
|
3
3
|
|
|
4
4
|
import httpx
|
|
5
5
|
|
|
@@ -18,7 +18,7 @@ from ..model.open_api_generated import (
|
|
|
18
18
|
SetCommentWorkDataParameters,
|
|
19
19
|
SetNameWorkDataParameters,
|
|
20
20
|
SetTagsWorkDataParameters,
|
|
21
|
-
WorkDataKind,
|
|
21
|
+
WorkDataKind, TagDetailsHto,
|
|
22
22
|
)
|
|
23
23
|
from ..model.sirenentities import WorkDataEntity
|
|
24
24
|
|
|
@@ -100,6 +100,7 @@ class WorkDataHco(Hco[WorkDataEntity]):
|
|
|
100
100
|
created_at: datetime | None = Property()
|
|
101
101
|
size_in_bytes: int | None = Property()
|
|
102
102
|
tags: list[str] | None = Property()
|
|
103
|
+
tag_details: List[TagDetailsHto] | None = Property()
|
|
103
104
|
media_type: str | None = Property()
|
|
104
105
|
kind: WorkDataKind | None = Property()
|
|
105
106
|
comments: str | None = Property()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# generated by datamodel-codegen:
|
|
2
2
|
# filename: openapi.json
|
|
3
|
-
# timestamp: 2026-01-
|
|
3
|
+
# timestamp: 2026-01-28T11:09:12+00:00
|
|
4
4
|
|
|
5
5
|
from __future__ import annotations
|
|
6
6
|
|
|
@@ -508,6 +508,17 @@ class SuspendAllDeploymentsParameters(BaseModel):
|
|
|
508
508
|
suspension_type: DeploymentSuspensionTypes = Field(..., alias='SuspensionType')
|
|
509
509
|
|
|
510
510
|
|
|
511
|
+
class TagValueTypes(StrEnum):
|
|
512
|
+
key_only = 'KeyOnly'
|
|
513
|
+
string = 'String'
|
|
514
|
+
integer = 'Integer'
|
|
515
|
+
float = 'Float'
|
|
516
|
+
boolean = 'Boolean'
|
|
517
|
+
date = 'Date'
|
|
518
|
+
time = 'Time'
|
|
519
|
+
timestamp = 'Timestamp'
|
|
520
|
+
|
|
521
|
+
|
|
511
522
|
class UserHtoOpenApiProperties(BaseModel):
|
|
512
523
|
model_config = ConfigDict(
|
|
513
524
|
extra='allow',
|
|
@@ -807,29 +818,6 @@ class JobFilterParameter(BaseModel):
|
|
|
807
818
|
)
|
|
808
819
|
|
|
809
820
|
|
|
810
|
-
class JobHtoOpenApiProperties(BaseModel):
|
|
811
|
-
model_config = ConfigDict(
|
|
812
|
-
extra='allow',
|
|
813
|
-
populate_by_name=True,
|
|
814
|
-
)
|
|
815
|
-
name: str | None = Field(None, alias='Name')
|
|
816
|
-
owner_id: str | None = Field(
|
|
817
|
-
None, alias='OwnerId', description='The owner of this resource'
|
|
818
|
-
)
|
|
819
|
-
created_by: str | None = Field(None, alias='CreatedBy')
|
|
820
|
-
state: JobStates | None = Field(None, alias='State')
|
|
821
|
-
tags: List[str] | None = Field(None, alias='Tags')
|
|
822
|
-
hidden: bool | None = Field(None, alias='Hidden')
|
|
823
|
-
output_is_deletable: bool | None = Field(None, alias='OutputIsDeletable')
|
|
824
|
-
created_at: AwareDatetime | None = Field(None, alias='CreatedAt')
|
|
825
|
-
started_at: AwareDatetime | None = Field(None, alias='StartedAt')
|
|
826
|
-
completed_at: AwareDatetime | None = Field(None, alias='CompletedAt')
|
|
827
|
-
error_description: str | None = Field(None, alias='ErrorDescription')
|
|
828
|
-
processing: ProcessingView | None = Field(None, alias='Processing')
|
|
829
|
-
result: str | None = Field(None, alias='Result')
|
|
830
|
-
configured_parameters: str | None = Field(None, alias='ConfiguredParameters')
|
|
831
|
-
|
|
832
|
-
|
|
833
821
|
class JobQueryResultHtoOpenApi(BaseModel):
|
|
834
822
|
model_config = ConfigDict(
|
|
835
823
|
extra='allow',
|
|
@@ -908,64 +896,6 @@ class ProcessingStepDeploymentHto(BaseModel):
|
|
|
908
896
|
entrypoint: str | None = Field(None, alias='Entrypoint')
|
|
909
897
|
|
|
910
898
|
|
|
911
|
-
class ProcessingStepHtoOpenApiProperties(BaseModel):
|
|
912
|
-
model_config = ConfigDict(
|
|
913
|
-
extra='allow',
|
|
914
|
-
populate_by_name=True,
|
|
915
|
-
)
|
|
916
|
-
title: str | None = Field(None, alias='Title')
|
|
917
|
-
owner_id: str | None = Field(
|
|
918
|
-
None, alias='OwnerId', description='The owner of this resource'
|
|
919
|
-
)
|
|
920
|
-
created_by: str | None = Field(
|
|
921
|
-
None, alias='CreatedBy', description='The creator of this resource'
|
|
922
|
-
)
|
|
923
|
-
version: str | None = Field(
|
|
924
|
-
None, alias='Version', description='Version of the algorithm. Default = "0"'
|
|
925
|
-
)
|
|
926
|
-
function_name: str | None = Field(
|
|
927
|
-
None,
|
|
928
|
-
alias='FunctionName',
|
|
929
|
-
description='Unique name (possibly human-readable) for the function so that it can be identified',
|
|
930
|
-
)
|
|
931
|
-
short_description: str | None = Field(
|
|
932
|
-
None, alias='ShortDescription', description='Human-readable short description'
|
|
933
|
-
)
|
|
934
|
-
long_description: str | None = Field(
|
|
935
|
-
None, alias='LongDescription', description='Human-readable long description'
|
|
936
|
-
)
|
|
937
|
-
pro_con_version: str | None = Field(
|
|
938
|
-
None,
|
|
939
|
-
alias='ProConVersion',
|
|
940
|
-
description='The version of ProCon used in the code which generated the manifest',
|
|
941
|
-
)
|
|
942
|
-
code_hash: str | None = Field(
|
|
943
|
-
None,
|
|
944
|
-
alias='CodeHash',
|
|
945
|
-
description='The hash of the code executing this function. This is intended to inhibit\r\nredeployment of different code for the same function version.',
|
|
946
|
-
)
|
|
947
|
-
has_parameters: bool | None = Field(None, alias='HasParameters')
|
|
948
|
-
is_public: bool | None = Field(None, alias='IsPublic')
|
|
949
|
-
tags: List[str] | None = Field(None, alias='Tags')
|
|
950
|
-
hidden: bool | None = Field(None, alias='Hidden')
|
|
951
|
-
is_deprecated: bool | None = Field(None, alias='IsDeprecated')
|
|
952
|
-
deprecated_at: AwareDatetime | None = Field(None, alias='DeprecatedAt')
|
|
953
|
-
reason_for_deprecation: str | None = Field(None, alias='ReasonForDeprecation')
|
|
954
|
-
created_at: AwareDatetime | None = Field(None, alias='CreatedAt')
|
|
955
|
-
last_modified_at: AwareDatetime | None = Field(None, alias='LastModifiedAt')
|
|
956
|
-
parameter_schema: str | None = Field(None, alias='ParameterSchema')
|
|
957
|
-
default_parameters: str | None = Field(None, alias='DefaultParameters')
|
|
958
|
-
return_schema: str | None = Field(None, alias='ReturnSchema')
|
|
959
|
-
input_data_slot_specification: List[DataSpecificationHto] | None = Field(
|
|
960
|
-
None, alias='InputDataSlotSpecification'
|
|
961
|
-
)
|
|
962
|
-
output_data_slot_specification: List[DataSpecificationHto] | None = Field(
|
|
963
|
-
None, alias='OutputDataSlotSpecification'
|
|
964
|
-
)
|
|
965
|
-
deployment_state: DeploymentStates | None = Field(None, alias='DeploymentState')
|
|
966
|
-
deployment: ProcessingStepDeploymentHto | None = Field(None, alias='Deployment')
|
|
967
|
-
|
|
968
|
-
|
|
969
899
|
class ProcessingStepQueryResultHtoOpenApi(BaseModel):
|
|
970
900
|
model_config = ConfigDict(
|
|
971
901
|
extra='allow',
|
|
@@ -1029,6 +959,16 @@ class ProcessingStepUsedTagsHtoOpenApi(BaseModel):
|
|
|
1029
959
|
links: List[Link] | None = None
|
|
1030
960
|
|
|
1031
961
|
|
|
962
|
+
class TagDetailsHto(BaseModel):
|
|
963
|
+
model_config = ConfigDict(
|
|
964
|
+
extra='allow',
|
|
965
|
+
populate_by_name=True,
|
|
966
|
+
)
|
|
967
|
+
key: str | None = Field(None, alias='Key')
|
|
968
|
+
value: str | None = Field(None, alias='Value')
|
|
969
|
+
type: TagValueTypes | None = Field(None, alias='Type')
|
|
970
|
+
|
|
971
|
+
|
|
1032
972
|
class UserHtoOpenApi(BaseModel):
|
|
1033
973
|
model_config = ConfigDict(
|
|
1034
974
|
extra='allow',
|
|
@@ -1079,6 +1019,7 @@ class WorkDataHtoOpenApiProperties(BaseModel):
|
|
|
1079
1019
|
created_at: AwareDatetime | None = Field(None, alias='CreatedAt')
|
|
1080
1020
|
size_in_bytes: int | None = Field(None, alias='SizeInBytes')
|
|
1081
1021
|
tags: List[str] | None = Field(None, alias='Tags')
|
|
1022
|
+
tag_details: List[TagDetailsHto] | None = Field(None, alias='TagDetails')
|
|
1082
1023
|
media_type: str | None = Field(None, alias='MediaType')
|
|
1083
1024
|
kind: WorkDataKind | None = Field(None, alias='Kind')
|
|
1084
1025
|
is_deletable: bool | None = Field(None, alias='IsDeletable')
|
|
@@ -1174,17 +1115,28 @@ class AdminProcessingStepQueryParameters(BaseModel):
|
|
|
1174
1115
|
include_remaining_tags: bool | None = Field(None, alias='IncludeRemainingTags')
|
|
1175
1116
|
|
|
1176
1117
|
|
|
1177
|
-
class
|
|
1118
|
+
class JobHtoOpenApiProperties(BaseModel):
|
|
1178
1119
|
model_config = ConfigDict(
|
|
1179
1120
|
extra='allow',
|
|
1180
1121
|
populate_by_name=True,
|
|
1181
1122
|
)
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1123
|
+
name: str | None = Field(None, alias='Name')
|
|
1124
|
+
owner_id: str | None = Field(
|
|
1125
|
+
None, alias='OwnerId', description='The owner of this resource'
|
|
1126
|
+
)
|
|
1127
|
+
created_by: str | None = Field(None, alias='CreatedBy')
|
|
1128
|
+
state: JobStates | None = Field(None, alias='State')
|
|
1129
|
+
tags: List[str] | None = Field(None, alias='Tags')
|
|
1130
|
+
tag_details: List[TagDetailsHto] | None = Field(None, alias='TagDetails')
|
|
1131
|
+
hidden: bool | None = Field(None, alias='Hidden')
|
|
1132
|
+
output_is_deletable: bool | None = Field(None, alias='OutputIsDeletable')
|
|
1133
|
+
created_at: AwareDatetime | None = Field(None, alias='CreatedAt')
|
|
1134
|
+
started_at: AwareDatetime | None = Field(None, alias='StartedAt')
|
|
1135
|
+
completed_at: AwareDatetime | None = Field(None, alias='CompletedAt')
|
|
1136
|
+
error_description: str | None = Field(None, alias='ErrorDescription')
|
|
1137
|
+
processing: ProcessingView | None = Field(None, alias='Processing')
|
|
1138
|
+
result: str | None = Field(None, alias='Result')
|
|
1139
|
+
configured_parameters: str | None = Field(None, alias='ConfiguredParameters')
|
|
1188
1140
|
|
|
1189
1141
|
|
|
1190
1142
|
class JobQueryParameters(BaseModel):
|
|
@@ -1198,17 +1150,63 @@ class JobQueryParameters(BaseModel):
|
|
|
1198
1150
|
include_remaining_tags: bool | None = Field(None, alias='IncludeRemainingTags')
|
|
1199
1151
|
|
|
1200
1152
|
|
|
1201
|
-
class
|
|
1153
|
+
class ProcessingStepHtoOpenApiProperties(BaseModel):
|
|
1202
1154
|
model_config = ConfigDict(
|
|
1203
1155
|
extra='allow',
|
|
1204
1156
|
populate_by_name=True,
|
|
1205
1157
|
)
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1158
|
+
title: str | None = Field(None, alias='Title')
|
|
1159
|
+
owner_id: str | None = Field(
|
|
1160
|
+
None, alias='OwnerId', description='The owner of this resource'
|
|
1161
|
+
)
|
|
1162
|
+
created_by: str | None = Field(
|
|
1163
|
+
None, alias='CreatedBy', description='The creator of this resource'
|
|
1164
|
+
)
|
|
1165
|
+
version: str | None = Field(
|
|
1166
|
+
None, alias='Version', description='Version of the algorithm. Default = "0"'
|
|
1167
|
+
)
|
|
1168
|
+
function_name: str | None = Field(
|
|
1169
|
+
None,
|
|
1170
|
+
alias='FunctionName',
|
|
1171
|
+
description='Unique name (possibly human-readable) for the function so that it can be identified',
|
|
1172
|
+
)
|
|
1173
|
+
short_description: str | None = Field(
|
|
1174
|
+
None, alias='ShortDescription', description='Human-readable short description'
|
|
1175
|
+
)
|
|
1176
|
+
long_description: str | None = Field(
|
|
1177
|
+
None, alias='LongDescription', description='Human-readable long description'
|
|
1178
|
+
)
|
|
1179
|
+
pro_con_version: str | None = Field(
|
|
1180
|
+
None,
|
|
1181
|
+
alias='ProConVersion',
|
|
1182
|
+
description='The version of ProCon used in the code which generated the manifest',
|
|
1183
|
+
)
|
|
1184
|
+
code_hash: str | None = Field(
|
|
1185
|
+
None,
|
|
1186
|
+
alias='CodeHash',
|
|
1187
|
+
description='The hash of the code executing this function. This is intended to inhibit\r\nredeployment of different code for the same function version.',
|
|
1188
|
+
)
|
|
1189
|
+
has_parameters: bool | None = Field(None, alias='HasParameters')
|
|
1190
|
+
is_public: bool | None = Field(None, alias='IsPublic')
|
|
1191
|
+
tags: List[str] | None = Field(None, alias='Tags')
|
|
1192
|
+
tag_details: List[TagDetailsHto] | None = Field(None, alias='TagDetails')
|
|
1193
|
+
hidden: bool | None = Field(None, alias='Hidden')
|
|
1194
|
+
is_deprecated: bool | None = Field(None, alias='IsDeprecated')
|
|
1195
|
+
deprecated_at: AwareDatetime | None = Field(None, alias='DeprecatedAt')
|
|
1196
|
+
reason_for_deprecation: str | None = Field(None, alias='ReasonForDeprecation')
|
|
1197
|
+
created_at: AwareDatetime | None = Field(None, alias='CreatedAt')
|
|
1198
|
+
last_modified_at: AwareDatetime | None = Field(None, alias='LastModifiedAt')
|
|
1199
|
+
parameter_schema: str | None = Field(None, alias='ParameterSchema')
|
|
1200
|
+
default_parameters: str | None = Field(None, alias='DefaultParameters')
|
|
1201
|
+
return_schema: str | None = Field(None, alias='ReturnSchema')
|
|
1202
|
+
input_data_slot_specification: List[DataSpecificationHto] | None = Field(
|
|
1203
|
+
None, alias='InputDataSlotSpecification'
|
|
1204
|
+
)
|
|
1205
|
+
output_data_slot_specification: List[DataSpecificationHto] | None = Field(
|
|
1206
|
+
None, alias='OutputDataSlotSpecification'
|
|
1207
|
+
)
|
|
1208
|
+
deployment_state: DeploymentStates | None = Field(None, alias='DeploymentState')
|
|
1209
|
+
deployment: ProcessingStepDeploymentHto | None = Field(None, alias='Deployment')
|
|
1212
1210
|
|
|
1213
1211
|
|
|
1214
1212
|
class ProcessingStepQueryParameters(BaseModel):
|
|
@@ -1235,3 +1233,29 @@ class WorkDataHtoOpenApi(BaseModel):
|
|
|
1235
1233
|
entities: List[Any] | None = None
|
|
1236
1234
|
actions: List[Action] | None = None
|
|
1237
1235
|
links: List[Link] | None = None
|
|
1236
|
+
|
|
1237
|
+
|
|
1238
|
+
class JobHtoOpenApi(BaseModel):
|
|
1239
|
+
model_config = ConfigDict(
|
|
1240
|
+
extra='allow',
|
|
1241
|
+
populate_by_name=True,
|
|
1242
|
+
)
|
|
1243
|
+
class_: List[str] | None = Field(None, alias='class')
|
|
1244
|
+
title: str | None = None
|
|
1245
|
+
properties: JobHtoOpenApiProperties | None = None
|
|
1246
|
+
entities: List[Any] | None = None
|
|
1247
|
+
actions: List[Action] | None = None
|
|
1248
|
+
links: List[Link] | None = None
|
|
1249
|
+
|
|
1250
|
+
|
|
1251
|
+
class ProcessingStepHtoOpenApi(BaseModel):
|
|
1252
|
+
model_config = ConfigDict(
|
|
1253
|
+
extra='allow',
|
|
1254
|
+
populate_by_name=True,
|
|
1255
|
+
)
|
|
1256
|
+
class_: List[str] | None = Field(None, alias='class')
|
|
1257
|
+
title: str | None = None
|
|
1258
|
+
properties: ProcessingStepHtoOpenApiProperties | None = None
|
|
1259
|
+
entities: List[Any] | None = None
|
|
1260
|
+
actions: List[Action] | None = None
|
|
1261
|
+
links: List[Link] | None = None
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: pinexq-client
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.1.0
|
|
4
4
|
Summary: A hypermedia-based client for the DataCybernetics PinexQ platform.
|
|
5
5
|
Author: Sebastian Höfer, Mathias Reichardt, Pratik Poudel
|
|
6
6
|
Author-email: Sebastian Höfer <hoefer@data-cybernetics.com>, Mathias Reichardt <reichardt@data-cybernetics.com>, Pratik Poudel <poudel@data-cybernetics.com>
|
|
@@ -18,35 +18,35 @@ pinexq/client/core/model/error.py,sha256=ZDbUlwsj7d8XPMolSSLTFwgs3RBLvOvgmlEtoBu
|
|
|
18
18
|
pinexq/client/core/model/sirenmodels.py,sha256=vGRQlhM2cSa2caxQel91Jr48KWqM-vMYX32iaQCzIds,5547
|
|
19
19
|
pinexq/client/core/polling.py,sha256=nNEDONEkB3Gu5WUMm2u9RFG1OIclnixaiy7l_U2Z4No,1146
|
|
20
20
|
pinexq/client/core/sirenaccess.py,sha256=F7eZI5Pz79el0D30SYNGsiS2qWaAZF_jrCrUy-q2GgY,6992
|
|
21
|
-
pinexq/client/job_management/__init__.py,sha256=
|
|
21
|
+
pinexq/client/job_management/__init__.py,sha256=8Q-qq_yIDFFDcb4GybEnEXKhyGfFRoI62zAuj-ios7s,598
|
|
22
22
|
pinexq/client/job_management/enterjma.py,sha256=N_jNM2UhQmWL8e-xBrTHbjZzP7WkX98MyFuKsYgD-XQ,3252
|
|
23
23
|
pinexq/client/job_management/hcos/__init__.py,sha256=TZgs5kuBk3lSBxPfn5ehgbdUgzPy2jn1PC3Ea6VQY-k,584
|
|
24
24
|
pinexq/client/job_management/hcos/entrypoint_hco.py,sha256=omFPggY7XGRWI5ogR85I7BHUi5o6OBnLyMggYh76JEg,2204
|
|
25
25
|
pinexq/client/job_management/hcos/info_hco.py,sha256=iJRjPfb1p4EXqSJA0xSRPxwEpAjquwEOuxHcUICQioI,2013
|
|
26
26
|
pinexq/client/job_management/hcos/input_dataslot_hco.py,sha256=CBw-FND7aUOUquXi3u09KK-BidZ3ChrmLy1pE-jmdvI,3590
|
|
27
|
-
pinexq/client/job_management/hcos/job_hco.py,sha256=
|
|
27
|
+
pinexq/client/job_management/hcos/job_hco.py,sha256=3XRu5gu31Jq68ljRffFq2vF9uYq-Hb9mCFeikUafhLQ,8836
|
|
28
28
|
pinexq/client/job_management/hcos/job_query_result_hco.py,sha256=52fIrEKS7mVzEt8Ugg1_xP7O2NptCy_v-v6F5h8CXDE,3795
|
|
29
29
|
pinexq/client/job_management/hcos/job_used_tags_hco.py,sha256=BGNGOQE33zW8AhYG8tVn1O4nExetBrKCXzCPfe73W1w,1603
|
|
30
30
|
pinexq/client/job_management/hcos/jobsroot_hco.py,sha256=sKapT6tO7-q0P2bwpoPAH8kIugwYOJeB4IF7nQBFdJI,4716
|
|
31
31
|
pinexq/client/job_management/hcos/output_dataslot_hco.py,sha256=nwS5bY5bCZtvFWgDELCUlTxpa6qdDCD1LM2LoDlmNuM,1475
|
|
32
|
-
pinexq/client/job_management/hcos/processing_step_hco.py,sha256=
|
|
32
|
+
pinexq/client/job_management/hcos/processing_step_hco.py,sha256=0zaRcp23GH0nhtc_nzHukmE5tinIg-ObPL1zgf6_eZM,12267
|
|
33
33
|
pinexq/client/job_management/hcos/processing_step_used_tags_hco.py,sha256=zsed5d04FpZNacZW9l4x-kflWpl1_thGAJfIsWO0co0,1844
|
|
34
34
|
pinexq/client/job_management/hcos/processingstep_query_result_hco.py,sha256=1TMTfxEucryTPzQl4UZcgJb8Ro-9j9lqo2OMlM_hV6Q,4132
|
|
35
35
|
pinexq/client/job_management/hcos/processingsteproot_hco.py,sha256=O9e9Vj4cAc5qiT7RYEXsRLggKIfN8n4eUr-847cZRvk,4041
|
|
36
36
|
pinexq/client/job_management/hcos/user_hco.py,sha256=qihX1lRbedj37shrzYTjdQPgL_giuSRCLhoUqtq1chs,1019
|
|
37
|
-
pinexq/client/job_management/hcos/workdata_hco.py,sha256=
|
|
37
|
+
pinexq/client/job_management/hcos/workdata_hco.py,sha256=fnLOgFpUeqUbC4t9hc39qbM1IEIUyx8CWeBJGNrdzts,7046
|
|
38
38
|
pinexq/client/job_management/hcos/workdata_query_result_hco.py,sha256=wgFm5SmgSnj9KbvxkPFYYBWnLANQRkf9IdoA-Yvfohs,3766
|
|
39
39
|
pinexq/client/job_management/hcos/workdata_used_tags_query_result_hco.py,sha256=uIDB7admcEe81lhWBp0KOuM2Ric7caD7Em6r41Rm9ps,1888
|
|
40
40
|
pinexq/client/job_management/hcos/workdataroot_hco.py,sha256=WRAFihgbyxJBrGKEhAzQwds57G_WndoS0EAW1AZ38tU,4221
|
|
41
41
|
pinexq/client/job_management/known_relations.py,sha256=do-u2wjb6u_HK2-y604f2gs3rk9O19MTIZpvbkfTSpA,905
|
|
42
42
|
pinexq/client/job_management/model/__init__.py,sha256=iuAKRXdW_Mxo0i3HsBfEzhJJZUKkNe3qs4gLW-ge1PU,63
|
|
43
|
-
pinexq/client/job_management/model/open_api_generated.py,sha256=
|
|
43
|
+
pinexq/client/job_management/model/open_api_generated.py,sha256=IVBfhLgDi4axgaXr7iQvFPbTBRBQBsWiS7ITDyRnpkA,41498
|
|
44
44
|
pinexq/client/job_management/model/sirenentities.py,sha256=E29Z2MSAYIO1RYvOW_rDpzUHZUMNMioQd_-k_S4KnbQ,3958
|
|
45
45
|
pinexq/client/job_management/tool/__init__.py,sha256=zPobd-hQyANHzC0-TjJG91z9XrewvE54ZJ6VViymW5M,128
|
|
46
46
|
pinexq/client/job_management/tool/job.py,sha256=w81-WVVjrdg4wNaQ1yoCqJLIvvcLAhCYi-gX4at70WY,34688
|
|
47
47
|
pinexq/client/job_management/tool/job_group.py,sha256=ZFUHTk6j3oZOD52D6SOsREdBm5hVn9iUhLykrN_Ghes,11117
|
|
48
48
|
pinexq/client/job_management/tool/processing_step.py,sha256=vlByzSHNY-f_QwP3O__qKCBuI7QhQiY-G0pkhUC7aJ4,15595
|
|
49
49
|
pinexq/client/job_management/tool/workdata.py,sha256=eDzinv70fa76xP0LjugGzicl8GxkQ6Ozq8rz-c4k5IU,6080
|
|
50
|
-
pinexq_client-1.
|
|
51
|
-
pinexq_client-1.
|
|
52
|
-
pinexq_client-1.
|
|
50
|
+
pinexq_client-1.1.0.dist-info/WHEEL,sha256=fAguSjoiATBe7TNBkJwOjyL1Tt4wwiaQGtNtjRPNMQA,80
|
|
51
|
+
pinexq_client-1.1.0.dist-info/METADATA,sha256=xeNcvqcRZkk83Un_haYkcBbWbbiqcZ4glZ7oEOrXBL8,3459
|
|
52
|
+
pinexq_client-1.1.0.dist-info/RECORD,,
|