logs-py 1.14__py3-none-any.whl → 2.1__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 logs-py might be problematic. Click here for more details.
- LOGS/Auxiliary/Constants.py +2 -2
- LOGS/Auxiliary/DateTimeConverter.py +1 -1
- LOGS/Auxiliary/Exceptions.py +1 -1
- LOGS/Auxiliary/MinimalModelGenerator.py +28 -6
- LOGS/Auxiliary/Tools.py +4 -0
- LOGS/Entities/AutoloadClientInfo.py +6 -8
- LOGS/Entities/AutoloadStatus.py +3 -3
- LOGS/Entities/{AutoloadSource.py → Bridge.py} +11 -10
- LOGS/Entities/BridgeMinimal.py +8 -0
- LOGS/Entities/BridgeRelations.py +23 -0
- LOGS/Entities/BridgeRequestParameter.py +19 -0
- LOGS/Entities/{AutoloadSourceType.py → BridgeType.py} +1 -1
- LOGS/Entities/Bridges.py +12 -0
- LOGS/Entities/{AutoloadConfiguration.py → DataSource.py} +97 -23
- LOGS/Entities/DataSourceMinimal.py +8 -0
- LOGS/Entities/DataSourceRelations.py +23 -0
- LOGS/Entities/DataSourceRequestParameter.py +44 -0
- LOGS/Entities/{AutoloadConfigurationStatus.py → DataSourceStatus.py} +1 -1
- LOGS/Entities/DataSources.py +12 -0
- LOGS/Entities/Dataset.py +83 -71
- LOGS/Entities/DatasetCreator.py +38 -18
- LOGS/Entities/DatasetMatchTypes.py +38 -6
- LOGS/Entities/DatasetRelations.py +13 -2
- LOGS/Entities/DatasetRequestParameter.py +19 -7
- LOGS/Entities/Datasets.py +1 -1
- LOGS/Entities/Document.py +2 -2
- LOGS/Entities/Experiment.py +9 -24
- LOGS/Entities/ExperimentRelations.py +23 -0
- LOGS/Entities/ExperimentRequestParameter.py +27 -2
- LOGS/Entities/Format.py +27 -61
- LOGS/Entities/FormatFormat.py +8 -6
- LOGS/Entities/FormatInstrument.py +2 -2
- LOGS/Entities/FormatMetaData.py +13 -5
- LOGS/Entities/FormatMethod.py +34 -3
- LOGS/Entities/FormatMinimal.py +11 -1
- LOGS/Entities/FormatRequestParameter.py +8 -3
- LOGS/Entities/FormatVendor.py +14 -1
- LOGS/Entities/FormatVendorRequestParameter.py +1 -0
- LOGS/Entities/ICustomSchemaRequest.py +7 -0
- LOGS/Entities/IRelatedEntityRequest.py +9 -0
- LOGS/Entities/Instrument.py +16 -2
- LOGS/Entities/InstrumentRelations.py +23 -0
- LOGS/Entities/InstrumentRequestParameter.py +34 -2
- LOGS/Entities/LabNotebookEntry.py +67 -7
- LOGS/Entities/LabNotebookEntryRelations.py +81 -0
- LOGS/Entities/LabNotebookEntryRequestParameter.py +57 -2
- LOGS/Entities/Method.py +24 -2
- LOGS/Entities/MethodRelations.py +35 -0
- LOGS/Entities/MethodRequestParameter.py +35 -1
- LOGS/Entities/Origin.py +2 -2
- LOGS/Entities/OriginRequestParameter.py +3 -3
- LOGS/Entities/Person.py +34 -3
- LOGS/Entities/PersonRelations.py +36 -3
- LOGS/Entities/PersonRequestParameter.py +50 -10
- LOGS/Entities/Project.py +15 -2
- LOGS/Entities/ProjectRelations.py +11 -0
- LOGS/Entities/ProjectRequestParameter.py +44 -3
- LOGS/Entities/Role.py +45 -16
- LOGS/Entities/RoleRelations.py +23 -0
- LOGS/Entities/RoleRequestParameter.py +28 -1
- LOGS/Entities/Sample.py +26 -32
- LOGS/Entities/SampleRelations.py +4 -2
- LOGS/Entities/SampleRequestParameter.py +5 -10
- LOGS/Entities/__init__.py +8 -7
- LOGS/Entity/Entity.py +30 -6
- LOGS/Entity/EntityRelations.py +3 -2
- LOGS/Entity/EntityRequestParameter.py +10 -5
- LOGS/Entity/EntityWithIntId.py +1 -1
- LOGS/Entity/SerializeableContent.py +10 -4
- LOGS/Interfaces/ICreationRecord.py +12 -3
- LOGS/Interfaces/IModificationRecord.py +10 -1
- LOGS/Interfaces/IProjectBased.py +30 -0
- LOGS/Interfaces/IRelatedEntity.py +34 -0
- LOGS/Interfaces/IRelationModel.py +6 -0
- LOGS/Interfaces/IRelationRequest.py +12 -0
- LOGS/Interfaces/ITypedEntity.py +28 -0
- LOGS/Interfaces/IUniqueEntity.py +2 -3
- LOGS/LOGS.py +128 -40
- LOGS/LOGSConnection.py +2 -1
- {logs_py-1.14.dist-info → logs_py-2.1.dist-info}/METADATA +1 -1
- {logs_py-1.14.dist-info → logs_py-2.1.dist-info}/RECORD +84 -70
- LOGS/Entities/AutoloadConfigurationMinimal.py +0 -8
- LOGS/Entities/AutoloadConfigurationRequestParameter.py +0 -17
- LOGS/Entities/AutoloadConfigurations.py +0 -16
- LOGS/Entities/AutoloadSourceMinimal.py +0 -8
- LOGS/Entities/AutoloadSourceRequestParameter.py +0 -13
- LOGS/Entities/AutoloadSources.py +0 -12
- /LOGS/Interfaces/{ICustomFields.py → ICustomField.py} +0 -0
- {logs_py-1.14.dist-info → logs_py-2.1.dist-info}/WHEEL +0 -0
- {logs_py-1.14.dist-info → logs_py-2.1.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
from dataclasses import dataclass
|
|
2
|
+
from typing import TYPE_CHECKING, Any, Dict, Optional
|
|
3
|
+
|
|
4
|
+
from LOGS.Auxiliary import Tools
|
|
5
|
+
from LOGS.Interfaces.IEntityInterface import IEntityInterface
|
|
6
|
+
|
|
7
|
+
if TYPE_CHECKING:
|
|
8
|
+
pass
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
@dataclass
|
|
12
|
+
class ITypedEntityRequest:
|
|
13
|
+
includeCustomFields: Optional[bool] = None
|
|
14
|
+
customFields: Optional[Dict[str, Any]] = None
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class ITypedEntity(IEntityInterface):
|
|
18
|
+
_customFields: Optional[Dict[str, Any]] = None
|
|
19
|
+
|
|
20
|
+
@property
|
|
21
|
+
def customFields(self) -> Optional[Dict[str, Any]]:
|
|
22
|
+
return self._customFields
|
|
23
|
+
|
|
24
|
+
@customFields.setter
|
|
25
|
+
def customFields(self, value):
|
|
26
|
+
self._customFields = Tools.checkAndConvert(
|
|
27
|
+
value, dict, "customFields", allowNone=True
|
|
28
|
+
)
|
LOGS/Interfaces/IUniqueEntity.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
from dataclasses import dataclass
|
|
2
|
-
from typing import Optional, Union
|
|
2
|
+
from typing import List, Optional, Union
|
|
3
3
|
from uuid import UUID
|
|
4
4
|
|
|
5
5
|
from LOGS.Auxiliary.MinimalModelGenerator import OriginMinimalFromDict
|
|
@@ -11,8 +11,7 @@ from LOGS.Interfaces.IEntityInterface import IEntityInterface
|
|
|
11
11
|
|
|
12
12
|
@dataclass
|
|
13
13
|
class IUniqueEntityRequest:
|
|
14
|
-
|
|
15
|
-
isSoftDeleted: Optional[bool] = None
|
|
14
|
+
originIds: Optional[List[int]] = None
|
|
16
15
|
|
|
17
16
|
|
|
18
17
|
class IUniqueEntity(IEntityInterface):
|
LOGS/LOGS.py
CHANGED
|
@@ -37,7 +37,7 @@ from LOGS.Auxiliary import (
|
|
|
37
37
|
formatErrorMessage,
|
|
38
38
|
)
|
|
39
39
|
from LOGS.Entities import (
|
|
40
|
-
|
|
40
|
+
Bridge,
|
|
41
41
|
Dataset,
|
|
42
42
|
DatasetCreator,
|
|
43
43
|
DatasetMatching,
|
|
@@ -76,13 +76,11 @@ from LOGS.Entities import (
|
|
|
76
76
|
SampleRequestParameter,
|
|
77
77
|
Samples,
|
|
78
78
|
)
|
|
79
|
-
from LOGS.Entities.
|
|
80
|
-
from LOGS.Entities.
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
from LOGS.Entities.
|
|
84
|
-
from LOGS.Entities.AutoloadSourceRequestParameter import AutoloadSourceRequestParameter
|
|
85
|
-
from LOGS.Entities.AutoloadSources import AutoloadSources
|
|
79
|
+
from LOGS.Entities.BridgeRequestParameter import BridgeRequestParameter
|
|
80
|
+
from LOGS.Entities.Bridges import Bridges
|
|
81
|
+
from LOGS.Entities.DataSource import DataSource
|
|
82
|
+
from LOGS.Entities.DataSourceRequestParameter import DataSourceRequestParameter
|
|
83
|
+
from LOGS.Entities.DataSources import DataSources
|
|
86
84
|
from LOGS.Entities.Format import Format
|
|
87
85
|
from LOGS.Entities.FormatFormat import FormatFormat
|
|
88
86
|
from LOGS.Entities.FormatFormatRequestParameter import FormatFormatRequestParameter
|
|
@@ -107,7 +105,9 @@ from LOGS.Entities.LabNotebookEntryRequestParameter import (
|
|
|
107
105
|
from LOGS.Entities.Role import Role
|
|
108
106
|
from LOGS.Entities.RoleRequestParameter import RoleRequestParameter
|
|
109
107
|
from LOGS.Entities.Roles import Roles
|
|
110
|
-
from LOGS.Entity import Entity, EntityIterator,
|
|
108
|
+
from LOGS.Entity import Entity, EntityIterator, IEntityWithIntId
|
|
109
|
+
from LOGS.Entity.ConnectedEntity import ConnectedEntity
|
|
110
|
+
from LOGS.Interfaces.ISoftDeletable import ISoftDeletable
|
|
111
111
|
from LOGS.LOGSConnection import LOGSConnection
|
|
112
112
|
|
|
113
113
|
_T = TypeVar(
|
|
@@ -117,14 +117,14 @@ _T = TypeVar(
|
|
|
117
117
|
Project,
|
|
118
118
|
Sample,
|
|
119
119
|
Dataset,
|
|
120
|
-
|
|
121
|
-
|
|
120
|
+
Bridge,
|
|
121
|
+
DataSource,
|
|
122
122
|
Equipment,
|
|
123
123
|
Experiment,
|
|
124
124
|
Instrument,
|
|
125
125
|
Method,
|
|
126
126
|
LabNotebookEntry,
|
|
127
|
-
|
|
127
|
+
IEntityWithIntId,
|
|
128
128
|
Origin,
|
|
129
129
|
Format,
|
|
130
130
|
Role,
|
|
@@ -145,8 +145,8 @@ class LOGS:
|
|
|
145
145
|
Project,
|
|
146
146
|
Sample,
|
|
147
147
|
Dataset,
|
|
148
|
-
|
|
149
|
-
|
|
148
|
+
Bridge,
|
|
149
|
+
DataSource,
|
|
150
150
|
Equipment,
|
|
151
151
|
Experiment,
|
|
152
152
|
Instrument,
|
|
@@ -259,6 +259,61 @@ class LOGS:
|
|
|
259
259
|
e.fetch()
|
|
260
260
|
return e
|
|
261
261
|
|
|
262
|
+
def _restoreEntitiesByTypeName(self, typeDict: Dict[str, Any]):
|
|
263
|
+
for typeName, entities in typeDict.items():
|
|
264
|
+
if not entities:
|
|
265
|
+
continue
|
|
266
|
+
t = self._entityByName.get(typeName, None)
|
|
267
|
+
if not t:
|
|
268
|
+
continue
|
|
269
|
+
self._restoreEntities(cast(Any, t), entities)
|
|
270
|
+
|
|
271
|
+
def _restoreEntities(
|
|
272
|
+
self, entityType: Type[Entity], entities: List[Constants.ENTITIES]
|
|
273
|
+
):
|
|
274
|
+
if not entityType._endpoint:
|
|
275
|
+
raise NotImplementedError(
|
|
276
|
+
"Restoring of entity type %a is not implemented."
|
|
277
|
+
% (
|
|
278
|
+
type(self).__name__
|
|
279
|
+
if type(self).__name__ != Entity.__name__
|
|
280
|
+
else "unknown"
|
|
281
|
+
)
|
|
282
|
+
)
|
|
283
|
+
|
|
284
|
+
if len(entities) < 1:
|
|
285
|
+
return
|
|
286
|
+
elif len(entities) == 1:
|
|
287
|
+
if not entities[0].id:
|
|
288
|
+
raise EntityNotFoundException(entities[0])
|
|
289
|
+
|
|
290
|
+
data, errors = self._connection.postEndpoint(
|
|
291
|
+
entityType._endpoint + ["restore", str(entities[0].id)],
|
|
292
|
+
data=entities[0].toDict(),
|
|
293
|
+
)
|
|
294
|
+
if (
|
|
295
|
+
isinstance(data, dict)
|
|
296
|
+
and "results" in data
|
|
297
|
+
and isinstance(data["results"], list)
|
|
298
|
+
and len(data["results"]) > 0
|
|
299
|
+
):
|
|
300
|
+
entities[0].override(data["results"][0])
|
|
301
|
+
else:
|
|
302
|
+
data, errors = self._connection.postEndpoint(
|
|
303
|
+
entityType._endpoint + ["bulk_restore"],
|
|
304
|
+
data=[e.id for e in entities],
|
|
305
|
+
)
|
|
306
|
+
if (
|
|
307
|
+
isinstance(data, dict)
|
|
308
|
+
and "results" in data
|
|
309
|
+
and isinstance(data["results"], list)
|
|
310
|
+
):
|
|
311
|
+
for i, d in enumerate(data["results"]):
|
|
312
|
+
entities[i].override(d)
|
|
313
|
+
|
|
314
|
+
if errors:
|
|
315
|
+
raise EntityUpdatingException(entity=entities, errors=errors)
|
|
316
|
+
|
|
262
317
|
def _updateEntitiesByTypeName(self, typeDict: Dict[str, Any]):
|
|
263
318
|
for typeName, entities in typeDict.items():
|
|
264
319
|
if not entities:
|
|
@@ -268,7 +323,9 @@ class LOGS:
|
|
|
268
323
|
continue
|
|
269
324
|
self._updateEntities(cast(Any, t), entities)
|
|
270
325
|
|
|
271
|
-
def _updateEntities(
|
|
326
|
+
def _updateEntities(
|
|
327
|
+
self, entityType: Type[Entity], entities: List[Constants.ENTITIES]
|
|
328
|
+
):
|
|
272
329
|
if not entityType._endpoint:
|
|
273
330
|
raise NotImplementedError(
|
|
274
331
|
"Updating of entity type %a is not implemented."
|
|
@@ -460,7 +517,7 @@ class LOGS:
|
|
|
460
517
|
|
|
461
518
|
def _deleteEntities(
|
|
462
519
|
self,
|
|
463
|
-
entityType: Type,
|
|
520
|
+
entityType: Type[Entity],
|
|
464
521
|
entityIds: List[Constants.ID_TYPE],
|
|
465
522
|
permanently: bool = False,
|
|
466
523
|
):
|
|
@@ -512,6 +569,33 @@ class LOGS:
|
|
|
512
569
|
def printServerStatus(self):
|
|
513
570
|
self._connection.printServerStatus()
|
|
514
571
|
|
|
572
|
+
@overload
|
|
573
|
+
def restore(self, entities: Constants.ENTITIES):
|
|
574
|
+
...
|
|
575
|
+
|
|
576
|
+
@overload
|
|
577
|
+
def restore(self, entities: List[Constants.ENTITIES]):
|
|
578
|
+
...
|
|
579
|
+
|
|
580
|
+
# Implementation of overload
|
|
581
|
+
def restore(self, entities: Any):
|
|
582
|
+
def decorator(entities: Any):
|
|
583
|
+
types = self._collectTypes(entities)
|
|
584
|
+
if len(types["unknown"]) > 0:
|
|
585
|
+
raise EntityUpdatingException(
|
|
586
|
+
types["unknown"][0],
|
|
587
|
+
errors=[
|
|
588
|
+
"Entity type %a not valid for this action."
|
|
589
|
+
% type(types["unknown"][0]).__name__
|
|
590
|
+
],
|
|
591
|
+
)
|
|
592
|
+
|
|
593
|
+
self._restoreEntitiesByTypeName(types)
|
|
594
|
+
|
|
595
|
+
if not isinstance(entities, list):
|
|
596
|
+
entities = [entities]
|
|
597
|
+
return decorator(entities)
|
|
598
|
+
|
|
515
599
|
@overload
|
|
516
600
|
def update(self, entities: Constants.ENTITIES):
|
|
517
601
|
...
|
|
@@ -580,8 +664,9 @@ class LOGS:
|
|
|
580
664
|
types: Dict[str, List[Union[Constants.ID_TYPE, None]]] = self._collectTypes(
|
|
581
665
|
entities
|
|
582
666
|
)
|
|
583
|
-
types
|
|
584
|
-
|
|
667
|
+
print(types)
|
|
668
|
+
typesIds = {
|
|
669
|
+
typeName: cast(List, [cast(Entity, e).id for e in entities if e])
|
|
585
670
|
for typeName, entities in types.items()
|
|
586
671
|
}
|
|
587
672
|
if len(types["unknown"]) > 0:
|
|
@@ -593,7 +678,14 @@ class LOGS:
|
|
|
593
678
|
],
|
|
594
679
|
)
|
|
595
680
|
|
|
596
|
-
self._deleteEntitiesByTypeName(
|
|
681
|
+
self._deleteEntitiesByTypeName(typesIds, permanently=permanently)
|
|
682
|
+
|
|
683
|
+
for entityList in types.values():
|
|
684
|
+
for entity in entityList:
|
|
685
|
+
if permanently and isinstance(entity, ConnectedEntity):
|
|
686
|
+
entity.connection = None
|
|
687
|
+
if isinstance(entity, ISoftDeletable):
|
|
688
|
+
entity.isDeleted = True
|
|
597
689
|
|
|
598
690
|
if isinstance(entities, EntityIterator):
|
|
599
691
|
raise LOGSException(
|
|
@@ -775,7 +867,7 @@ class LOGS:
|
|
|
775
867
|
)
|
|
776
868
|
return Origins(connection=self._connection, parameters=parameter)
|
|
777
869
|
|
|
778
|
-
def format(self, id:
|
|
870
|
+
def format(self, id: str) -> Format:
|
|
779
871
|
return self._fetchEntity(Format, id)
|
|
780
872
|
|
|
781
873
|
def formats(self, parameter: Optional[FormatRequestParameter] = None) -> Formats:
|
|
@@ -805,41 +897,37 @@ class LOGS:
|
|
|
805
897
|
)
|
|
806
898
|
return Roles(connection=self._connection, parameters=parameter)
|
|
807
899
|
|
|
808
|
-
def
|
|
809
|
-
return self._fetchEntity(
|
|
900
|
+
def bridge(self, id: int) -> Bridge:
|
|
901
|
+
return self._fetchEntity(Bridge, id)
|
|
810
902
|
|
|
811
|
-
def
|
|
812
|
-
|
|
813
|
-
) -> AutoloadSources:
|
|
814
|
-
if parameter and not isinstance(parameter, AutoloadSourceRequestParameter):
|
|
903
|
+
def bridges(self, parameter: Optional[BridgeRequestParameter] = None) -> Bridges:
|
|
904
|
+
if parameter and not isinstance(parameter, BridgeRequestParameter):
|
|
815
905
|
raise LOGSException(
|
|
816
|
-
"Parameter for %s.
|
|
906
|
+
"Parameter for %s.Bridges must be of type %a. (Got %a)"
|
|
817
907
|
% (
|
|
818
908
|
type(self).__name__,
|
|
819
|
-
|
|
909
|
+
BridgeRequestParameter.__name__,
|
|
820
910
|
type(parameter).__name__,
|
|
821
911
|
)
|
|
822
912
|
)
|
|
823
|
-
return
|
|
913
|
+
return Bridges(connection=self._connection, parameters=parameter)
|
|
824
914
|
|
|
825
|
-
def
|
|
826
|
-
return self._fetchEntity(
|
|
915
|
+
def dataSource(self, id: int) -> DataSource:
|
|
916
|
+
return self._fetchEntity(DataSource, id)
|
|
827
917
|
|
|
828
|
-
def
|
|
829
|
-
self, parameter: Optional[
|
|
830
|
-
) ->
|
|
831
|
-
if parameter and not isinstance(
|
|
832
|
-
parameter, AutoloadConfigurationRequestParameter
|
|
833
|
-
):
|
|
918
|
+
def dataSources(
|
|
919
|
+
self, parameter: Optional[DataSourceRequestParameter] = None
|
|
920
|
+
) -> DataSources:
|
|
921
|
+
if parameter and not isinstance(parameter, DataSourceRequestParameter):
|
|
834
922
|
raise LOGSException(
|
|
835
|
-
"Parameter for %s.
|
|
923
|
+
"Parameter for %s.DataSources must be of type %a. (Got %a)"
|
|
836
924
|
% (
|
|
837
925
|
type(self).__name__,
|
|
838
|
-
|
|
926
|
+
DataSourceRequestParameter.__name__,
|
|
839
927
|
type(parameter).__name__,
|
|
840
928
|
)
|
|
841
929
|
)
|
|
842
|
-
return
|
|
930
|
+
return DataSources(connection=self._connection, parameters=parameter)
|
|
843
931
|
|
|
844
932
|
def labNotebookEntry(self, id: int) -> LabNotebookEntry:
|
|
845
933
|
return self._fetchEntity(LabNotebookEntry, id)
|
LOGS/LOGSConnection.py
CHANGED
|
@@ -31,7 +31,8 @@ class LOGSConnection:
|
|
|
31
31
|
"""Python class to access the LOGS web API"""
|
|
32
32
|
|
|
33
33
|
_noErrorStates = set([200, 201, 204])
|
|
34
|
-
_compatibleAPIVersions = set(["
|
|
34
|
+
_compatibleAPIVersions = set(["2.0"])
|
|
35
|
+
# _compatibleAPIVersions = set(["1.1"])
|
|
35
36
|
__urlRe = re.compile(r"(?:(https*)\:\/\/)*([^\/:]+)(?:\:(\d+))*(?:\/(.*))*")
|
|
36
37
|
__urlApiRe = re.compile(r"api\/(\d+\.\d+)")
|
|
37
38
|
_port: Optional[int]
|
|
@@ -1,47 +1,49 @@
|
|
|
1
|
-
LOGS/LOGS.py,sha256=
|
|
2
|
-
LOGS/LOGSConnection.py,sha256=
|
|
1
|
+
LOGS/LOGS.py,sha256=6dDyQDzPSbFJh4tg3-AIqwYDn8FmmgbqmLHqQfLG3tI,37970
|
|
2
|
+
LOGS/LOGSConnection.py,sha256=5f6iQ0g19-jT2LTa115QFoYWP2_rF7Nt_PvxE_9r2Oo,19981
|
|
3
3
|
LOGS/ServerMetaData.py,sha256=WdXCCiCSFqER6s9c3N3v0O273OvxygxBzmE6_C8FmXs,3361
|
|
4
4
|
LOGS/__init__.py,sha256=faGD87i0eeKbqEq6DTcteF6KoNa2O0BH1RnjxEvuGbQ,253
|
|
5
|
-
LOGS/Auxiliary/Constants.py,sha256=
|
|
6
|
-
LOGS/Auxiliary/DateTimeConverter.py,sha256=
|
|
5
|
+
LOGS/Auxiliary/Constants.py,sha256=jKsThb6TS6b1adgnv1uAoqohBJi8ySGo7fULHlE2Es0,2504
|
|
6
|
+
LOGS/Auxiliary/DateTimeConverter.py,sha256=N4NAUrnTtnZH-JoBqa8POVEM4VK1gedDf0_0LIjRSqc,912
|
|
7
7
|
LOGS/Auxiliary/Decorators.py,sha256=dzuIa6eTi-iOwhD9A8eICum9XIFeh6QdcKrNWKQ4LEo,3572
|
|
8
|
-
LOGS/Auxiliary/Exceptions.py,sha256=
|
|
9
|
-
LOGS/Auxiliary/MinimalModelGenerator.py,sha256=
|
|
8
|
+
LOGS/Auxiliary/Exceptions.py,sha256=9MEuZS1Y4A-Tx5_4xl6kKcfn2UZpQzIT7V-utKEFv8o,7464
|
|
9
|
+
LOGS/Auxiliary/MinimalModelGenerator.py,sha256=wu45FzU1Yitt_viBxP47K_oTjdl3ymzIl46PdsOENKc,11622
|
|
10
10
|
LOGS/Auxiliary/ParameterHelper.py,sha256=rP9DK5c4m7VJSIWRtkhdq7ECDUfNzK0Xs4bq7PAXuCA,1631
|
|
11
11
|
LOGS/Auxiliary/ReplaceMessage.py,sha256=RLzsmocAHxh06GfrPzxfkA1e58Yp_0rfqrusv9_4_88,353
|
|
12
|
-
LOGS/Auxiliary/Tools.py,sha256=
|
|
12
|
+
LOGS/Auxiliary/Tools.py,sha256=Fs_IU5kYG5RwDffyaBkT-x6MxpHG_homqhxnSBNcsac,9628
|
|
13
13
|
LOGS/Auxiliary/__init__.py,sha256=1EGkaXLM87nZzl85T-cqGc9FZMqZG57Ch0-HnicPqtQ,371
|
|
14
|
-
LOGS/Entities/AutoloadClientInfo.py,sha256=
|
|
15
|
-
LOGS/Entities/AutoloadConfiguration.py,sha256=VGwPpYIpgHtMOZtpGaFIkW3VMWSRFNMwakpzsvKpVO8,4137
|
|
16
|
-
LOGS/Entities/AutoloadConfigurationMinimal.py,sha256=4UclVzBEIOVfIsEXUggg1Ta5OEw_xRermcYmDeYoCBc,316
|
|
17
|
-
LOGS/Entities/AutoloadConfigurationRequestParameter.py,sha256=Yy2TJTebbUsP_d8I835oxHt_k5uDPGZJb7k1Z4kqhp4,614
|
|
18
|
-
LOGS/Entities/AutoloadConfigurationStatus.py,sha256=xQFjaBuC2GU0kkAGhBi0R6J2nSjO6K5lVL8QmooaV2E,441
|
|
19
|
-
LOGS/Entities/AutoloadConfigurations.py,sha256=EdubVkCsjpx-nxF-rNY9PG75qYab63QXypLybk0YQHE,595
|
|
14
|
+
LOGS/Entities/AutoloadClientInfo.py,sha256=MKTIgkMZOJD0D9sANj1JOXrwRROVPqg6yaWeiyRp080,2623
|
|
20
15
|
LOGS/Entities/AutoloadFileInfo.py,sha256=thiK1isWkNa719kCzohPJsAkblnKj78BohHDMvracl0,338
|
|
21
|
-
LOGS/Entities/
|
|
22
|
-
LOGS/Entities/AutoloadSourceMinimal.py,sha256=cQiwoJ37hcWElqSU_kNFCpe7sYQzeioJHc8MIwiOGQM,281
|
|
23
|
-
LOGS/Entities/AutoloadSourceRequestParameter.py,sha256=dHFhsx_7bHFus1YBeHFXlm388w6WdwUkmgpPnmE8sRM,429
|
|
24
|
-
LOGS/Entities/AutoloadSourceType.py,sha256=K9PNCFABxGwQvsYN_hSkjebqCdW-074pGvlOQyeMiZg,96
|
|
25
|
-
LOGS/Entities/AutoloadSources.py,sha256=jbe65_41Rni2d4w2KhCrnWlbZpxCwdWxij4713cSGHI,510
|
|
26
|
-
LOGS/Entities/AutoloadStatus.py,sha256=BFdOZ5g9YQT8b89hakhNuHANgWwdX9Usv8zE5eqQDII,707
|
|
16
|
+
LOGS/Entities/AutoloadStatus.py,sha256=2qIoRXZih_cWkr_MLINpB6jUfcZHBwm7nwB7DN_EpyY,672
|
|
27
17
|
LOGS/Entities/AutoloadStatusError.py,sha256=44AWs6nn5RsVSdII3fNT8HtkuBfRNSU_xMJXsTeWp04,176
|
|
28
18
|
LOGS/Entities/AxisNaming.py,sha256=mje3aCK38OOMQhbMdPd0eNwUBc2e3DDPzjh5fDR7Pa0,749
|
|
19
|
+
LOGS/Entities/Bridge.py,sha256=BB-J-ftZYji71utWm_EXZivTCyU08mKO8TpdCoBCZmA,5041
|
|
20
|
+
LOGS/Entities/BridgeMinimal.py,sha256=ADNhHqoHA9VhzaItBVeknRVRD-ASqEYEL2GTGB97oEM,241
|
|
21
|
+
LOGS/Entities/BridgeRelations.py,sha256=nI6mqu_BIDt01tKHKyK38COHhpqrRHCi8wyy9Iyw0AU,650
|
|
22
|
+
LOGS/Entities/BridgeRequestParameter.py,sha256=OwBb72M2Jmft6D_04mmSbYzOMaK7GsfffB_s3tVwjJs,722
|
|
23
|
+
LOGS/Entities/BridgeType.py,sha256=YB55JKJtS38fAlRb5T_OIPvT2qTJIzUC6uoC24eq3sE,88
|
|
24
|
+
LOGS/Entities/Bridges.py,sha256=WgspgZ9zXxi9tDPg4JPsDLq-fvNQkiaUbKEfbz1iG7E,420
|
|
29
25
|
LOGS/Entities/CustomSchema.py,sha256=8ACKbuC_nEZWstFBQvsChqEQmyGvrRxy9_tnFdU2A5Q,1185
|
|
30
|
-
LOGS/Entities/
|
|
31
|
-
LOGS/Entities/
|
|
26
|
+
LOGS/Entities/DataSource.py,sha256=JPp-buGIhnIv44ivwHcljs5wAxVqNY906rwXnsbIX-Y,6279
|
|
27
|
+
LOGS/Entities/DataSourceMinimal.py,sha256=KlejLccyZR_AP2LvFQgCJXpcmWwtaOg6rRTVsXXlODI,261
|
|
28
|
+
LOGS/Entities/DataSourceRelations.py,sha256=eIszpHjZqz6v4WyhaPNu8efSzedsJLNrYR9b3hCa3HY,658
|
|
29
|
+
LOGS/Entities/DataSourceRequestParameter.py,sha256=6dD3mo6fE0A8C2t7vh4zIToP10YlqwRbd4BiWhou5o0,1494
|
|
30
|
+
LOGS/Entities/DataSourceStatus.py,sha256=81IAcLhdvkrAxgcL1Hw47aJqiZ0Vb7UnZUj-UEo8wX0,430
|
|
31
|
+
LOGS/Entities/DataSources.py,sha256=UU5ey98_vX4WQknyWITMy-dPOV-wgjblXxu5uXpnVso,481
|
|
32
|
+
LOGS/Entities/Dataset.py,sha256=Ld6r-jc0ETJG3x_08lZTXryMeU8JN-UREW9lugWsc9Y,19979
|
|
33
|
+
LOGS/Entities/DatasetCreator.py,sha256=lNPKX9mPyFBOhs0kO78cfIssSz37ijwCPk0ut0JEhpc,4948
|
|
32
34
|
LOGS/Entities/DatasetInfo.py,sha256=VnobiT04yd9GSZQ6tH8eUrO9jknzfLW9-wvMz-QAhTw,3882
|
|
33
|
-
LOGS/Entities/DatasetMatchTypes.py,sha256=
|
|
35
|
+
LOGS/Entities/DatasetMatchTypes.py,sha256=7XDMMXFCZ-iOp8as-nOFdTYhuwo3U98_mgvbhqWg2Y8,4233
|
|
34
36
|
LOGS/Entities/DatasetMatching.py,sha256=1tLYQKFMssOQIPuCh06dr70oYCpjj4bXer6VAO3papM,6596
|
|
35
37
|
LOGS/Entities/DatasetMinimal.py,sha256=AfSMihe4mU53D3dib1MzW7ZAtfvFytVyGpMMi3Fr2Cw,246
|
|
36
|
-
LOGS/Entities/DatasetRelations.py,sha256=
|
|
37
|
-
LOGS/Entities/DatasetRequestParameter.py,sha256=
|
|
38
|
+
LOGS/Entities/DatasetRelations.py,sha256=gQWlm4BAJbeb0J2lLgdwO0grQFDTSSls162OWGwUsEU,1465
|
|
39
|
+
LOGS/Entities/DatasetRequestParameter.py,sha256=0hpTS4v_ys5pCckElDzohaeRsK_0GP1DxLfYWNwngWs,3620
|
|
38
40
|
LOGS/Entities/DatasetType.py,sha256=QyeiT2zHF6aCHRals6tUC2obQgCima71pVJAAM70xxs,170
|
|
39
41
|
LOGS/Entities/DatasetTypeMinimal.py,sha256=zszCE4feq8hYIYkCogh8iH-ynmFFVv5SmJq6mmnQDps,266
|
|
40
42
|
LOGS/Entities/DatasetUploadParameter.py,sha256=bfH3Nm3BZs-hvWhFzWfxWSL-9hHJCRfW_PHwORtY_tw,470
|
|
41
|
-
LOGS/Entities/Datasets.py,sha256=
|
|
43
|
+
LOGS/Entities/Datasets.py,sha256=wGeHowTv62F91oDtyJIVQzRl7qJsPT0SQlNoKBwWfs0,5022
|
|
42
44
|
LOGS/Entities/Datatrack.py,sha256=m8f4SHLjE8KYHGQN1rU3wIZNrrnpk_16NADzDbZjczk,3824
|
|
43
45
|
LOGS/Entities/DatatrackNumericArray.py,sha256=ubIUR9wcnPnXXp8sxWwITZSOhB7E28sPzUpcT-aLqEw,1756
|
|
44
|
-
LOGS/Entities/Document.py,sha256=
|
|
46
|
+
LOGS/Entities/Document.py,sha256=AyD6fEa92TY404QOOscxvYGQarOCdOuP6at6iy5y9PY,6617
|
|
45
47
|
LOGS/Entities/DocumentRelations.py,sha256=6BMfK5hl2qnVUTBelMd5_htRE_oIR1zlwoYlMXb2GwM,1120
|
|
46
48
|
LOGS/Entities/DocumentRequestParameter.py,sha256=UPMEbXsA4u0WvVVqDw2TIC6bnFIrhfHsOjWBYifgMmM,654
|
|
47
49
|
LOGS/Entities/Documents.py,sha256=dA312FplAbU9xA5P4v8aT4Ca4h8TZbY6fBc4jfEE-jE,435
|
|
@@ -50,72 +52,79 @@ LOGS/Entities/EntitiesRequestParameter.py,sha256=2ZgzPzaRO2ELkBN9gm7xS6W7YRlguRl
|
|
|
50
52
|
LOGS/Entities/EntityOriginWriteModelWithId.py,sha256=DyhxVtfGKyLYxK5NLj01knWzYDsYh8b7ZZjPRbiDn1w,468
|
|
51
53
|
LOGS/Entities/Equipment.py,sha256=kQeic7hZ5nOIJAMfqvDvvE232_oi8Qrd310izfkJ_pQ,213
|
|
52
54
|
LOGS/Entities/EquipmentMinimal.py,sha256=OpTDgr9wOdFxTYKNRUWzPaogwVoXNZvb_3gL-8GFoEo,256
|
|
53
|
-
LOGS/Entities/Experiment.py,sha256=
|
|
55
|
+
LOGS/Entities/Experiment.py,sha256=xX-lCx5uTH5NazUchF-rc-kb42EIrS5T6KGidO7_-Zw,1964
|
|
54
56
|
LOGS/Entities/ExperimentMinimal.py,sha256=45NzqBQNwxC96qlEyf8ESLk76ATHem6F765m9sItpXo,261
|
|
55
|
-
LOGS/Entities/
|
|
57
|
+
LOGS/Entities/ExperimentRelations.py,sha256=NgHv9xbOrsqi7JkExB34-zXsBh5UtZHVv_uheTt-tns,658
|
|
58
|
+
LOGS/Entities/ExperimentRequestParameter.py,sha256=pWHL_4w6oGKUzg2jURG2rdaYUvSFuUJZLYG-Sk9an6c,1141
|
|
56
59
|
LOGS/Entities/Experiments.py,sha256=U9O4JaKpOTui2vWEZ9WeOPHXkI-GMO__vFFYqB5t7Ws,453
|
|
57
60
|
LOGS/Entities/FileEntry.py,sha256=jJa-uPidQrMwIu0H04USpiH0kvo2ezlcye9QAQE5Txk,3919
|
|
58
|
-
LOGS/Entities/Format.py,sha256=
|
|
59
|
-
LOGS/Entities/FormatFormat.py,sha256=
|
|
61
|
+
LOGS/Entities/Format.py,sha256=yH4k1wLyhq09oD0N1SATJN-M4xbAZJLwQV8rMlXYWCA,2377
|
|
62
|
+
LOGS/Entities/FormatFormat.py,sha256=o-ZavFH6McYIyEz5zxe9BK34b2eKOAa7Q2Da1VXosr8,852
|
|
60
63
|
LOGS/Entities/FormatFormatMinimal.py,sha256=S4UPkBmUrPLaeZAQ7lVcwQusi9gfaYLLTXY14TEGRP8,271
|
|
61
64
|
LOGS/Entities/FormatFormatRequestParameter.py,sha256=uotfQeMGVuRGp6K1vHldQ4tlJIzFbtdEvFvA69iJZQI,187
|
|
62
65
|
LOGS/Entities/FormatFormats.py,sha256=O1PuZr4zxODuC7zENDXVY2Lhu1TzFACQRFUpR4brnNc,479
|
|
63
|
-
LOGS/Entities/FormatInstrument.py,sha256=
|
|
66
|
+
LOGS/Entities/FormatInstrument.py,sha256=uTAEUMiuRhLhUl_pwCCnsv91LZX_HKWZqZwt37SmyYo,549
|
|
64
67
|
LOGS/Entities/FormatInstrumentMinimal.py,sha256=QVRrJws-qZhy2h4aEXvbIe9pS6Jig7-5xD5RDGdIqHc,291
|
|
65
68
|
LOGS/Entities/FormatInstrumentRequestParameter.py,sha256=dDZBtaexM1BRVmrCLLozD80V9Lp-1NzM4PehPPtxPgs,241
|
|
66
69
|
LOGS/Entities/FormatInstruments.py,sha256=kA5EWMvU2ERfCJrubBR8-E0pYaM8lhOPSqva8TDgU_8,545
|
|
67
|
-
LOGS/Entities/FormatMetaData.py,sha256=
|
|
68
|
-
LOGS/Entities/FormatMethod.py,sha256=
|
|
70
|
+
LOGS/Entities/FormatMetaData.py,sha256=s44Yhn_rxJTdRg8OYRmrVK7FJWgeB76HcvELZNXRXw8,2111
|
|
71
|
+
LOGS/Entities/FormatMethod.py,sha256=1IPwKndK6DpWga_AQkeZTKNhrwxgLzCds3A0ZYXFzhE,1843
|
|
69
72
|
LOGS/Entities/FormatMethodMinimal.py,sha256=GS4f8GmX6YRrBVxWugeHnBgiuGRjjtVeNQamqMx0IBs,271
|
|
70
73
|
LOGS/Entities/FormatMethodRequestParameter.py,sha256=-s5xFzAUGSp3FFilS5EByWhT0iv5grquZQ8NfmS3xE8,237
|
|
71
74
|
LOGS/Entities/FormatMethods.py,sha256=9GXFYed_o0YRYc2R_W2J6kHSyLqyl6G9Is_PMXRVZ5s,486
|
|
72
|
-
LOGS/Entities/FormatMinimal.py,sha256=
|
|
73
|
-
LOGS/Entities/FormatRequestParameter.py,sha256=
|
|
74
|
-
LOGS/Entities/FormatVendor.py,sha256=
|
|
75
|
+
LOGS/Entities/FormatMinimal.py,sha256=NinLacjNqQaf44c8TeCnkNFeP3rmLuvvhGDE4ODWlBs,529
|
|
76
|
+
LOGS/Entities/FormatRequestParameter.py,sha256=mHWzMUjRP0GklfwfrebhosgAhQVLPKSImV92lV4sXZ4,469
|
|
77
|
+
LOGS/Entities/FormatVendor.py,sha256=qW827A-ozqxYEnvuh_ymila-XqOdeX9t5E6ilFKtOY8,1115
|
|
75
78
|
LOGS/Entities/FormatVendorMinimal.py,sha256=So3kB_OD1rVaDaHXTiwyTo-PU98fCIOQl-Ig1LIaf7U,271
|
|
76
|
-
LOGS/Entities/FormatVendorRequestParameter.py,sha256=
|
|
79
|
+
LOGS/Entities/FormatVendorRequestParameter.py,sha256=YpmhPnlAH4DbmAZELFbBwndiGxdxYNoXrK6tAlEzYZs,276
|
|
77
80
|
LOGS/Entities/FormatVendors.py,sha256=-yX2ryanXPCeC9h3rZn4VnIhMjtjAoNd-ub83WsjVNQ,480
|
|
78
81
|
LOGS/Entities/Formats.py,sha256=FSE4U3bYyZ87fX4XmywCtJELHqBtjdW-jFLI65BMlUk,407
|
|
79
82
|
LOGS/Entities/HierarchyLeaf.py,sha256=Y2aYdbkNvSzGT_ia_1oxenW-RmTxXuve212scj8UiXA,372
|
|
80
83
|
LOGS/Entities/HierarchyNode.py,sha256=jEiVX-ybh06FzdOCp0Adzh5yxg6GQ2uB57KBBE9xSI4,1285
|
|
81
|
-
LOGS/Entities/
|
|
84
|
+
LOGS/Entities/ICustomSchemaRequest.py,sha256=l7do2v3GfLPNn0Ieei0H-v4l2Sgtcju0FvVF5yUtDHs,149
|
|
85
|
+
LOGS/Entities/IRelatedEntityRequest.py,sha256=BKR8dZj552nfFSk2mIKDRn_JbAKSbbU3eC9A69YD1pM,243
|
|
86
|
+
LOGS/Entities/Instrument.py,sha256=jzLVNd-mouND3iN_L12r99oYD0BuEP0KvXiZ76iEo7I,2872
|
|
82
87
|
LOGS/Entities/InstrumentMinimal.py,sha256=cZrIRJvmMZwA29unGcS9i1dOuTVO5aXHEN0RW1KAuvc,261
|
|
83
|
-
LOGS/Entities/
|
|
88
|
+
LOGS/Entities/InstrumentRelations.py,sha256=sXlLo_TQiRnkWAOkAAYlYxqquas9KBVEJVW6Td8f_WE,658
|
|
89
|
+
LOGS/Entities/InstrumentRequestParameter.py,sha256=wpck9E5BPTU0fJRpN5bmy8njkDfWQBwB6xJ6_HJRJ_8,1326
|
|
84
90
|
LOGS/Entities/Instruments.py,sha256=0KgCWU5J9nFOM9qQw5s6tRyAdnCzOnjuvAtSwpdbyiU,453
|
|
85
91
|
LOGS/Entities/LabNotebookEntries.py,sha256=zbP78OV-pD2Yrg6bxQSU4e12AJd-ZqbPn1n5QGykTro,542
|
|
86
|
-
LOGS/Entities/LabNotebookEntry.py,sha256=
|
|
92
|
+
LOGS/Entities/LabNotebookEntry.py,sha256=uihJ0gjq8oqkAv1uz8lY7E2Lx_dHrRPax6UWk2TiomY,2818
|
|
87
93
|
LOGS/Entities/LabNotebookEntryMinimal.py,sha256=2VbggIr1QnKT_VFizupZH6ubIsD-PntL7HOH7rHuzzs,291
|
|
88
|
-
LOGS/Entities/
|
|
89
|
-
LOGS/Entities/
|
|
94
|
+
LOGS/Entities/LabNotebookEntryRelations.py,sha256=SljETldOvUZ6xCaywxGxwEKEZnz0ONwEnPlsY4SZkOo,2608
|
|
95
|
+
LOGS/Entities/LabNotebookEntryRequestParameter.py,sha256=uEnMOqo0jboc-P1ElpnjRMfV-FDpC0g2jejmSNG5RHo,2662
|
|
96
|
+
LOGS/Entities/Method.py,sha256=TCopQONhonoiFAXP33polxZfj1r0Rvv8pV06drzsTSA,1239
|
|
90
97
|
LOGS/Entities/MethodMinimal.py,sha256=P4TnY-OXCWMjZmGMg7zeejZF6t6SQ7mxi5wVTpBYiDY,241
|
|
91
|
-
LOGS/Entities/
|
|
98
|
+
LOGS/Entities/MethodRelations.py,sha256=z2F7SsXZCoNTDwqL0VMoaCf20_OJkMljVUZijg0lX9s,1071
|
|
99
|
+
LOGS/Entities/MethodRequestParameter.py,sha256=5LrliOWhDqAEhCcaVcEUxZTeMkEf2TPYDjjcOYe0K3U,1229
|
|
92
100
|
LOGS/Entities/Methods.py,sha256=YKCZ0kRooxxdRu9AeD54Gk9TifKZwPWHD1HxpsCC_NQ,413
|
|
93
|
-
LOGS/Entities/Origin.py,sha256=
|
|
101
|
+
LOGS/Entities/Origin.py,sha256=xa2Lxpou1Ebd6Za5laTOT0jnyt4U6XiQM3yROuWOTDE,1433
|
|
94
102
|
LOGS/Entities/OriginMinimal.py,sha256=Rg3ufOMKlayAExniIdhUOGcWykqL6qysSsML79pKrIs,241
|
|
95
|
-
LOGS/Entities/OriginRequestParameter.py,sha256=
|
|
103
|
+
LOGS/Entities/OriginRequestParameter.py,sha256=qGco80zdmxqNLmEoZAAOF_usAmQYnXSWAz2OCaSIirI,446
|
|
96
104
|
LOGS/Entities/Origins.py,sha256=3gN9jAPwfBBQsqS3q3nrb2kZTJDxfdvKBIzmgnhi-NI,413
|
|
97
105
|
LOGS/Entities/ParserLog.py,sha256=KEPnbxaeC0w0HRt_WhvVEoLJ9Cqaep9Vk1s2m2xE7b8,1197
|
|
98
|
-
LOGS/Entities/Person.py,sha256=
|
|
106
|
+
LOGS/Entities/Person.py,sha256=tf_FK1YLSPY2DIs-DE2BKjJ_YcHF4iPT8taRjGfJSa0,5680
|
|
99
107
|
LOGS/Entities/PersonCategory.py,sha256=3JBVCmN5FNyriDqF2GtSRCbxrFyDSb-MZ079gqoEah0,352
|
|
100
108
|
LOGS/Entities/PersonMinimal.py,sha256=W5lhHvFtYi_Ln4B9g91pnZddrhyJGoOwiX81hszmKNs,241
|
|
101
|
-
LOGS/Entities/PersonRelations.py,sha256=
|
|
102
|
-
LOGS/Entities/PersonRequestParameter.py,sha256=
|
|
109
|
+
LOGS/Entities/PersonRelations.py,sha256=kN8Rfkg5qP0QSLbmCcqonZjKW5VtDSDyCMJ5WoUDvHk,2701
|
|
110
|
+
LOGS/Entities/PersonRequestParameter.py,sha256=PsWJJeawEvhL_HcjD5NwvoSXrfXMIn3oN_BCvAfVCfE,2113
|
|
103
111
|
LOGS/Entities/Persons.py,sha256=cj4SKaJZvitaIe7Fd1M9_qqNdAEEG38iuMPNiKPDPUA,413
|
|
104
|
-
LOGS/Entities/Project.py,sha256=
|
|
112
|
+
LOGS/Entities/Project.py,sha256=rtmWRJTOK5Gafq38CO3mX_udgbNXashHK0TdKXCd0oE,2520
|
|
105
113
|
LOGS/Entities/ProjectMinimal.py,sha256=Xw8wnA2iSixEkVaisY_b4Z3Ujudum3MG6tBUfbiAk0s,246
|
|
106
|
-
LOGS/Entities/ProjectRelations.py,sha256=
|
|
107
|
-
LOGS/Entities/ProjectRequestParameter.py,sha256=
|
|
114
|
+
LOGS/Entities/ProjectRelations.py,sha256=Hf3F42iYanTqrLgG6GjY4HXBCFWCcVNjXzwrnEJc9GU,2136
|
|
115
|
+
LOGS/Entities/ProjectRequestParameter.py,sha256=KRq5HlTySlROsS-hrbDEGDy22_chz_NA_KXXSMUH7NY,1923
|
|
108
116
|
LOGS/Entities/ProjectUserPermission.py,sha256=ie_ijFaGfbnGyeKEDrlMyN4UeonLn5k62c_wIikEwiQ,1252
|
|
109
117
|
LOGS/Entities/Projects.py,sha256=8xvaHUrH8Y8g8WOcRN0Sa7BXH1QJnPB39SrfP3GpXXE,425
|
|
110
|
-
LOGS/Entities/Role.py,sha256=
|
|
118
|
+
LOGS/Entities/Role.py,sha256=cttz-E4T-SIr4w7-bfm-i-3xmQabeNNtVQ1emokJkLM,1761
|
|
111
119
|
LOGS/Entities/RoleMinimal.py,sha256=O_69AQ0d06fq47pKuqYUp2gNn4o9xsuoxwwwKzE2F5k,231
|
|
112
|
-
LOGS/Entities/
|
|
120
|
+
LOGS/Entities/RoleRelations.py,sha256=785kHVBPUlBytAGtEa_Oia7IYHbMB-zteKFq5Qli6wk,633
|
|
121
|
+
LOGS/Entities/RoleRequestParameter.py,sha256=CQWkGlYLLSenAhA-i7-WTARpWFkEOTKYNQLyntoLzQw,1128
|
|
113
122
|
LOGS/Entities/Roles.py,sha256=E4-XxiutsN8dyrvAu-xkEFRajDcyOPKwGZg0lgTv424,393
|
|
114
123
|
LOGS/Entities/RunState.py,sha256=RJvL7CPqxAiJ_NEVooiRqX_A2xoE2uNAvYI9uVVuMnw,118
|
|
115
|
-
LOGS/Entities/Sample.py,sha256=
|
|
124
|
+
LOGS/Entities/Sample.py,sha256=RWfGDpj8terRfdt8cajHalK-P5rdqWYu92PtiL-2A90,6610
|
|
116
125
|
LOGS/Entities/SampleMinimal.py,sha256=rlLN_MVB2KNxY9wTbArnDGtyGrQ0_NGllGzocNxeZSY,241
|
|
117
|
-
LOGS/Entities/SampleRelations.py,sha256=
|
|
118
|
-
LOGS/Entities/SampleRequestParameter.py,sha256=
|
|
126
|
+
LOGS/Entities/SampleRelations.py,sha256=dVCJGrM90sbme63PzWrFhbrzaEdWm_-OtaUfMfihQcs,1423
|
|
127
|
+
LOGS/Entities/SampleRequestParameter.py,sha256=3irGUXGit2dKaiW5EizH2VeDp-4Hosrom4fuTCDzoZQ,1586
|
|
119
128
|
LOGS/Entities/SampleType.py,sha256=8DlY-rebHQyv-kq6uVmgBGRov5347HAPi_VOBkBtky4,168
|
|
120
129
|
LOGS/Entities/SampleTypeMinimal.py,sha256=e5bJ2ZJwJu9fMugaXrp9MxBsPkpNEihhx0fWncX5V5A,261
|
|
121
130
|
LOGS/Entities/Samples.py,sha256=fAOp5MvHnACilEF0gehmdmLD3-gdvDEZAFAHitm3ib0,414
|
|
@@ -126,9 +135,9 @@ LOGS/Entities/TrackXY.py,sha256=rffrNVR8DbQpWcjQpFMM1_7OnefKEE7UzVWBPfYaRp0,1186
|
|
|
126
135
|
LOGS/Entities/TrackXYComplex.py,sha256=dqByLLSTW3WerDrXkfOVgX6Nc2zuXHa6Pf3gulUlb6k,1692
|
|
127
136
|
LOGS/Entities/TrackXYComplexData.py,sha256=xWd3_jdXa347Gh53NYIMo66nFirA60Zd2KxaPs4KHaY,1368
|
|
128
137
|
LOGS/Entities/TrackXYData.py,sha256=6AbwG2qa2HN858ROLaLpzkuIlwsb8tN8wznaiKplRdo,819
|
|
129
|
-
LOGS/Entities/__init__.py,sha256=
|
|
138
|
+
LOGS/Entities/__init__.py,sha256=S-M2_NYcugZT-kAbksGQ8VknnjBT_wwdiFIXhvhaqrc,3058
|
|
130
139
|
LOGS/Entity/ConnectedEntity.py,sha256=RIaOcOJWCrWooc9H8CkN4tbrLD0q4pM4CAeBX3ZRIVg,1617
|
|
131
|
-
LOGS/Entity/Entity.py,sha256=
|
|
140
|
+
LOGS/Entity/Entity.py,sha256=WDWWK4kLf3bubQroreOy6x84CBuNZKUiHQe0NU0X9n0,6437
|
|
132
141
|
LOGS/Entity/EntityConnector.py,sha256=Lp5rGDyTEoayPslieh_3QSzezwLiaj0lehejhu1LdKg,2061
|
|
133
142
|
LOGS/Entity/EntityIterator.py,sha256=mCF4f6U5Ar8Mg7v7pvKhVgc4T78JAnugQKi6JtsFRng,7259
|
|
134
143
|
LOGS/Entity/EntityMinimal.py,sha256=GysThwk8YbT8xqbHvJqmYKgPf8ckALO5pG-J_SNT0vw,3237
|
|
@@ -136,23 +145,28 @@ LOGS/Entity/EntityMinimalWithIntId.py,sha256=6eVhFFbXKdH3LPj-fAzQLpnzbkWqh1AmV_u
|
|
|
136
145
|
LOGS/Entity/EntityMinimalWithStrId.py,sha256=JmuY0Aah4YLngrgluzwMkhIyeExj2j6kiBZ6Y115hbA,1046
|
|
137
146
|
LOGS/Entity/EntityMinimalWithType.py,sha256=ZFOenkc9s3OAlFAl10wFQLx9Lj6imQRmgWVO-bS_Slk,1300
|
|
138
147
|
LOGS/Entity/EntityRelation.py,sha256=UDCOcmyOo7zcysC3EgIBX6fzPrDBhSRzkYVuRHXlZ4Q,1482
|
|
139
|
-
LOGS/Entity/EntityRelations.py,sha256=
|
|
140
|
-
LOGS/Entity/EntityRequestParameter.py,sha256=
|
|
141
|
-
LOGS/Entity/EntityWithIntId.py,sha256=
|
|
148
|
+
LOGS/Entity/EntityRelations.py,sha256=zaAASS5SVDwPVMUyNgUH8DcZhWdErRulrZjD6MAWlhM,1266
|
|
149
|
+
LOGS/Entity/EntityRequestParameter.py,sha256=RH6-Sh8ug3aeq_AOFHs0Lp2J94cKI9Ts3slAATZ1tNA,828
|
|
150
|
+
LOGS/Entity/EntityWithIntId.py,sha256=B79VqAQ9I0uEQwbf3DMHXoi064gCw4fv3vCKoXwrHQM,631
|
|
142
151
|
LOGS/Entity/EntityWithStrId.py,sha256=5hz8-F_t_X4kf85DMwW3DJ2NqH_RiRV1Io1WiMN11yk,631
|
|
143
|
-
LOGS/Entity/SerializeableContent.py,sha256=
|
|
152
|
+
LOGS/Entity/SerializeableContent.py,sha256=pW9I51n5GyDM5oGCzFI_FoS1g2HJ-DipkzEDalvtVZ4,19115
|
|
144
153
|
LOGS/Entity/__init__.py,sha256=8q6dB_AqlLGx-6PexFn8QH7LWOnSGRhgPfFVkYAghR0,749
|
|
145
|
-
LOGS/Interfaces/ICreationRecord.py,sha256=
|
|
146
|
-
LOGS/Interfaces/
|
|
154
|
+
LOGS/Interfaces/ICreationRecord.py,sha256=Tb-gGXsclkYs2N-g2AUHSqvFgY6yEjacRRioE5kycfM,1386
|
|
155
|
+
LOGS/Interfaces/ICustomField.py,sha256=rAMnUKW9wMxgUfkXUFECCclggYt9aGKgXlIep67sEo4,726
|
|
147
156
|
LOGS/Interfaces/IEntityInterface.py,sha256=WMMxK-XsIqC6IItBRdcJzF7rDxI0p5gQXVqvkQiFneI,167
|
|
148
|
-
LOGS/Interfaces/IModificationRecord.py,sha256=
|
|
157
|
+
LOGS/Interfaces/IModificationRecord.py,sha256=SGXtCMHLCsH3pS199jr6QaxSD3LpGUXbNOLoi3qptCU,1379
|
|
149
158
|
LOGS/Interfaces/INamedEntity.py,sha256=ds0qM8BGIr0Ii_sdIYZ7cG-8Mh0jeyTPbzEcQ_dRnbk,559
|
|
150
159
|
LOGS/Interfaces/IOwnedEntity.py,sha256=JmrTl3SI-ResGN5GQAiK_P1U5uoFwlEGep-lJ-9LdyQ,688
|
|
151
160
|
LOGS/Interfaces/IPaginationRequest.py,sha256=L0A5rul1B9r-g-xRqoPjLeDM0lpYXecLCJFaBQXkao8,210
|
|
161
|
+
LOGS/Interfaces/IProjectBased.py,sha256=dXmqBD6s4f8p0Eig_JqP4heqvo53Uq3cBz7SvHae_DA,863
|
|
162
|
+
LOGS/Interfaces/IRelatedEntity.py,sha256=Gg0dHtnTu5ykh874Lea7FxWmZz2Dw8BLyoyRi60q4VI,1012
|
|
163
|
+
LOGS/Interfaces/IRelationModel.py,sha256=oKwB7FOlf4ygD08zuUdow5BL4OncA8r2DK1xpK4K3h0,78
|
|
164
|
+
LOGS/Interfaces/IRelationRequest.py,sha256=NGSBLyKD4G341giLfPMd1NH0RmeXKnxcAWHAwsrZsXI,283
|
|
152
165
|
LOGS/Interfaces/ISoftDeletable.py,sha256=urnmSfcYJrEm1iIo0k3nyBvMMnpomJWAYAON_uvSX64,672
|
|
153
|
-
LOGS/Interfaces/
|
|
166
|
+
LOGS/Interfaces/ITypedEntity.py,sha256=hMlzGuca8vW1qT5Dop-b-6_gteAeXjK0sz85eRjOZrY,724
|
|
167
|
+
LOGS/Interfaces/IUniqueEntity.py,sha256=K-Q80qZX1wTjPnjbs-1PF85BbzYre2su_2xMnescYi4,1894
|
|
154
168
|
LOGS/Interfaces/__init__.py,sha256=tGykqoQeT2_HV-oLYVKJJ9Z0a_Li8_y3AOJjG1btKYw,172
|
|
155
|
-
logs_py-1.
|
|
156
|
-
logs_py-1.
|
|
157
|
-
logs_py-1.
|
|
158
|
-
logs_py-1.
|
|
169
|
+
logs_py-2.1.dist-info/METADATA,sha256=TvnLDAdb_zW5cL5q95fbScEUC05dijSdvky7IjvGS0s,2002
|
|
170
|
+
logs_py-2.1.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
171
|
+
logs_py-2.1.dist-info/top_level.txt,sha256=Ckn2LiAmGaR7k3tdEnKAc04z_uboMD4gLreYghRNdCs,5
|
|
172
|
+
logs_py-2.1.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
from LOGS.Auxiliary.Decorators import FullModel
|
|
2
|
-
from LOGS.Entities.AutoloadConfiguration import AutoloadConfiguration
|
|
3
|
-
from LOGS.Entity.EntityMinimalWithIntId import EntityMinimalWithIntId
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
@FullModel(AutoloadConfiguration)
|
|
7
|
-
class AutoloadConfigurationMinimal(EntityMinimalWithIntId[AutoloadConfiguration]):
|
|
8
|
-
pass
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
from dataclasses import dataclass
|
|
2
|
-
from typing import List, Optional
|
|
3
|
-
|
|
4
|
-
from LOGS.Entity.EntityRequestParameter import EntityRequestParameter
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
@dataclass
|
|
8
|
-
class AutoloadConfigurationRequestParameter(EntityRequestParameter):
|
|
9
|
-
names: Optional[List[str]] = None
|
|
10
|
-
enabled: Optional[bool] = None
|
|
11
|
-
autoloadSourceIds: Optional[List[int]] = None
|
|
12
|
-
formats: Optional[List[str]] = None
|
|
13
|
-
directories: Optional[List[str]] = None
|
|
14
|
-
methodIds: Optional[List[int]] = None
|
|
15
|
-
instrumentIds: Optional[List[int]] = None
|
|
16
|
-
sourceHostnames: Optional[List[str]] = None
|
|
17
|
-
sourceIpAddresses: Optional[List[str]] = None
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
from LOGS.Auxiliary.Decorators import Endpoint
|
|
2
|
-
from LOGS.Entities.AutoloadConfiguration import AutoloadConfiguration
|
|
3
|
-
from LOGS.Entities.AutoloadConfigurationRequestParameter import (
|
|
4
|
-
AutoloadConfigurationRequestParameter,
|
|
5
|
-
)
|
|
6
|
-
from LOGS.Entity.EntityIterator import EntityIterator
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
@Endpoint("autoload_configurations")
|
|
10
|
-
class AutoloadConfigurations(
|
|
11
|
-
EntityIterator[AutoloadConfiguration, AutoloadConfigurationRequestParameter]
|
|
12
|
-
):
|
|
13
|
-
"""LOGS connected class AutouploadSource iterator"""
|
|
14
|
-
|
|
15
|
-
_generatorType = AutoloadConfiguration
|
|
16
|
-
_parameterType = AutoloadConfigurationRequestParameter
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
from LOGS.Auxiliary.Decorators import FullModel
|
|
2
|
-
from LOGS.Entities.AutoloadSource import AutoloadSource
|
|
3
|
-
from LOGS.Entity.EntityMinimalWithIntId import EntityMinimalWithIntId
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
@FullModel(AutoloadSource)
|
|
7
|
-
class AutoloadSourceMinimal(EntityMinimalWithIntId[AutoloadSource]):
|
|
8
|
-
pass
|