logs-py 2.8.2__py3-none-any.whl → 2.9__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/Entities/Bridge.py +4 -1
- LOGS/Entities/BridgeRequestParameter.py +5 -1
- LOGS/Entities/DataSource.py +2 -0
- LOGS/Entities/DataSourceRequestParameter.py +5 -1
- LOGS/Entities/Dataset.py +2 -0
- LOGS/Entities/DatasetRequestParameter.py +2 -0
- LOGS/Entities/Experiment.py +2 -0
- LOGS/Entities/ExperimentRequestParameter.py +2 -0
- LOGS/Entities/Instrument.py +2 -0
- LOGS/Entities/InstrumentRequestParameter.py +2 -0
- LOGS/Entities/LabNotebookEntry.py +2 -0
- LOGS/Entities/LabNotebookEntryRequestParameter.py +2 -0
- LOGS/Entities/Method.py +2 -0
- LOGS/Entities/MethodRequestParameter.py +2 -0
- LOGS/Entities/Person.py +2 -0
- LOGS/Entities/PersonRequestParameter.py +2 -0
- LOGS/Entities/Project.py +4 -2
- LOGS/Entities/ProjectRequestParameter.py +2 -0
- LOGS/Entities/ProjectUserPermission.py +9 -0
- LOGS/Entities/Role.py +2 -0
- LOGS/Entities/RoleRequestParameter.py +2 -0
- LOGS/Entities/Sample.py +2 -0
- LOGS/Entities/SampleRequestParameter.py +2 -0
- LOGS/Entities/__init__.py +1 -1
- LOGS/Interfaces/IPermissionedEntity.py +27 -0
- {logs_py-2.8.2.dist-info → logs_py-2.9.dist-info}/METADATA +1 -1
- {logs_py-2.8.2.dist-info → logs_py-2.9.dist-info}/RECORD +29 -28
- {logs_py-2.8.2.dist-info → logs_py-2.9.dist-info}/WHEEL +0 -0
- {logs_py-2.8.2.dist-info → logs_py-2.9.dist-info}/top_level.txt +0 -0
LOGS/Entities/Bridge.py
CHANGED
|
@@ -8,12 +8,15 @@ from LOGS.Entities.BridgeRelations import BridgeRelations
|
|
|
8
8
|
from LOGS.Entities.BridgeType import BridgeType
|
|
9
9
|
from LOGS.Entity.EntityWithIntId import IEntityWithIntId
|
|
10
10
|
from LOGS.Interfaces.INamedEntity import INamedEntity
|
|
11
|
+
from LOGS.Interfaces.IPermissionedEntity import IPermissionedEntity
|
|
11
12
|
from LOGS.Interfaces.IRelatedEntity import IRelatedEntity
|
|
12
13
|
from LOGS.LOGSConnection import LOGSConnection
|
|
13
14
|
|
|
14
15
|
|
|
15
16
|
@Endpoint("bridges")
|
|
16
|
-
class Bridge(
|
|
17
|
+
class Bridge(
|
|
18
|
+
IEntityWithIntId, INamedEntity, IRelatedEntity[BridgeRelations], IPermissionedEntity
|
|
19
|
+
):
|
|
17
20
|
_relationType = type(BridgeRelations)
|
|
18
21
|
|
|
19
22
|
_type: Optional[BridgeType]
|
|
@@ -5,11 +5,15 @@ from LOGS.Entities.BridgeType import BridgeType
|
|
|
5
5
|
from LOGS.Entities.IRelatedEntityRequest import IRelatedEntityRequest
|
|
6
6
|
from LOGS.Entity.EntityRequestParameter import DefaultOrder, EntityRequestParameter
|
|
7
7
|
from LOGS.Interfaces.INamedEntity import INamedEntityRequest
|
|
8
|
+
from LOGS.Interfaces.IPermissionedEntity import IPermissionedEntityRequest
|
|
8
9
|
|
|
9
10
|
|
|
10
11
|
@dataclass
|
|
11
12
|
class BridgeRequestParameter(
|
|
12
|
-
EntityRequestParameter[DefaultOrder],
|
|
13
|
+
EntityRequestParameter[DefaultOrder],
|
|
14
|
+
INamedEntityRequest,
|
|
15
|
+
IRelatedEntityRequest,
|
|
16
|
+
IPermissionedEntityRequest,
|
|
13
17
|
):
|
|
14
18
|
hostnames: Optional[List[str]] = None
|
|
15
19
|
usernames: Optional[List[str]] = None
|
LOGS/Entities/DataSource.py
CHANGED
|
@@ -22,6 +22,7 @@ from LOGS.Entity.EntityWithIntId import IEntityWithIntId
|
|
|
22
22
|
from LOGS.Interfaces.ICreationRecord import ICreationRecord
|
|
23
23
|
from LOGS.Interfaces.IModificationRecord import IModificationRecord
|
|
24
24
|
from LOGS.Interfaces.INamedEntity import INamedEntity
|
|
25
|
+
from LOGS.Interfaces.IPermissionedEntity import IPermissionedEntity
|
|
25
26
|
from LOGS.Interfaces.IRelatedEntity import IRelatedEntity
|
|
26
27
|
from LOGS.LOGSConnection import LOGSConnection
|
|
27
28
|
|
|
@@ -38,6 +39,7 @@ class DataSource(
|
|
|
38
39
|
ICreationRecord,
|
|
39
40
|
IModificationRecord,
|
|
40
41
|
IRelatedEntity[DataSourceRelations],
|
|
42
|
+
IPermissionedEntity,
|
|
41
43
|
):
|
|
42
44
|
_relationType = type(DataSourceRelations)
|
|
43
45
|
|
|
@@ -6,6 +6,7 @@ from LOGS.Entities.DataSource import DataSourceType
|
|
|
6
6
|
from LOGS.Entities.IRelatedEntityRequest import IRelatedEntityRequest
|
|
7
7
|
from LOGS.Entity.EntityRequestParameter import EntityRequestParameter
|
|
8
8
|
from LOGS.Interfaces.INamedEntity import INamedEntityRequest
|
|
9
|
+
from LOGS.Interfaces.IPermissionedEntity import IPermissionedEntityRequest
|
|
9
10
|
|
|
10
11
|
|
|
11
12
|
class DataSourceOrder(Enum):
|
|
@@ -29,7 +30,10 @@ class DataSourceOrder(Enum):
|
|
|
29
30
|
|
|
30
31
|
@dataclass
|
|
31
32
|
class DataSourceRequestParameter(
|
|
32
|
-
EntityRequestParameter[DataSourceOrder],
|
|
33
|
+
EntityRequestParameter[DataSourceOrder],
|
|
34
|
+
INamedEntityRequest,
|
|
35
|
+
IRelatedEntityRequest,
|
|
36
|
+
IPermissionedEntityRequest,
|
|
33
37
|
):
|
|
34
38
|
enabled: Optional[bool] = None
|
|
35
39
|
bridgeIds: Optional[List[int]] = None
|
LOGS/Entities/Dataset.py
CHANGED
|
@@ -36,6 +36,7 @@ from LOGS.Entity.EntityWithIntId import IEntityWithIntId
|
|
|
36
36
|
from LOGS.Entity.SerializeableContent import SerializeableContent
|
|
37
37
|
from LOGS.Interfaces.INamedEntity import INamedEntity
|
|
38
38
|
from LOGS.Interfaces.IOwnedEntity import IOwnedEntity
|
|
39
|
+
from LOGS.Interfaces.IPermissionedEntity import IPermissionedEntity
|
|
39
40
|
from LOGS.Interfaces.IProjectBased import IProjectBased
|
|
40
41
|
from LOGS.Interfaces.IRelatedEntity import IRelatedEntity
|
|
41
42
|
from LOGS.Interfaces.ISoftDeletable import ISoftDeletable
|
|
@@ -73,6 +74,7 @@ class Dataset(
|
|
|
73
74
|
ITypedEntity,
|
|
74
75
|
ISoftDeletable,
|
|
75
76
|
IUniqueEntity,
|
|
77
|
+
IPermissionedEntity,
|
|
76
78
|
):
|
|
77
79
|
_noInfo = True
|
|
78
80
|
_noParameters = True
|
|
@@ -9,6 +9,7 @@ from LOGS.Entities.IRelatedEntityRequest import IRelatedEntityRequest
|
|
|
9
9
|
from LOGS.Entity.EntityRequestParameter import EntityRequestParameter
|
|
10
10
|
from LOGS.Interfaces.INamedEntity import INamedEntityRequest
|
|
11
11
|
from LOGS.Interfaces.IOwnedEntity import IOwnedEntityRequest
|
|
12
|
+
from LOGS.Interfaces.IPermissionedEntity import IPermissionedEntityRequest
|
|
12
13
|
from LOGS.Interfaces.ISoftDeletable import ISoftDeletableRequest
|
|
13
14
|
from LOGS.Interfaces.ITypedEntity import ITypedEntityRequest
|
|
14
15
|
from LOGS.Interfaces.IUniqueEntity import IUniqueEntityRequest
|
|
@@ -57,6 +58,7 @@ class DatasetRequestParameter(
|
|
|
57
58
|
IOwnedEntityRequest,
|
|
58
59
|
INamedEntityRequest,
|
|
59
60
|
IUniqueEntityRequest,
|
|
61
|
+
IPermissionedEntityRequest,
|
|
60
62
|
):
|
|
61
63
|
includeParameters: Optional[bool] = None
|
|
62
64
|
methodIds: Optional[List[int]] = None
|
LOGS/Entities/Experiment.py
CHANGED
|
@@ -9,6 +9,7 @@ from LOGS.Interfaces.ICreationRecord import ICreationRecord
|
|
|
9
9
|
from LOGS.Interfaces.IModificationRecord import IModificationRecord
|
|
10
10
|
from LOGS.Interfaces.INamedEntity import INamedEntity
|
|
11
11
|
from LOGS.Interfaces.IOwnedEntity import IOwnedEntity
|
|
12
|
+
from LOGS.Interfaces.IPermissionedEntity import IPermissionedEntity
|
|
12
13
|
from LOGS.Interfaces.IRelatedEntity import IRelatedEntity
|
|
13
14
|
from LOGS.Interfaces.IUniqueEntity import IUniqueEntity
|
|
14
15
|
from LOGS.LOGSConnection import LOGSConnection
|
|
@@ -23,6 +24,7 @@ class Experiment(
|
|
|
23
24
|
IModificationRecord,
|
|
24
25
|
IOwnedEntity,
|
|
25
26
|
IRelatedEntity[ExperimentRelations],
|
|
27
|
+
IPermissionedEntity,
|
|
26
28
|
):
|
|
27
29
|
_relationType = type(ExperimentRelations)
|
|
28
30
|
|
|
@@ -6,6 +6,7 @@ from LOGS.Entities.IRelatedEntityRequest import IRelatedEntityRequest
|
|
|
6
6
|
from LOGS.Entity.EntityRequestParameter import EntityRequestParameter
|
|
7
7
|
from LOGS.Interfaces.ICreationRecord import ICreationRecordRequest
|
|
8
8
|
from LOGS.Interfaces.IModificationRecord import IModificationRecordRequest
|
|
9
|
+
from LOGS.Interfaces.IPermissionedEntity import IPermissionedEntityRequest
|
|
9
10
|
|
|
10
11
|
|
|
11
12
|
class ExperimentOrder(Enum):
|
|
@@ -31,6 +32,7 @@ class ExperimentRequestParameter(
|
|
|
31
32
|
IRelatedEntityRequest,
|
|
32
33
|
ICreationRecordRequest,
|
|
33
34
|
IModificationRecordRequest,
|
|
35
|
+
IPermissionedEntityRequest,
|
|
34
36
|
):
|
|
35
37
|
name: Optional[str] = None
|
|
36
38
|
methodIds: Optional[List[int]] = None
|
LOGS/Entities/Instrument.py
CHANGED
|
@@ -9,6 +9,7 @@ from LOGS.Interfaces.ICreationRecord import ICreatedOn
|
|
|
9
9
|
from LOGS.Interfaces.IModificationRecord import IModifiedOn
|
|
10
10
|
from LOGS.Interfaces.INamedEntity import INamedEntity
|
|
11
11
|
from LOGS.Interfaces.IOwnedEntity import IOwnedEntity
|
|
12
|
+
from LOGS.Interfaces.IPermissionedEntity import IPermissionedEntity
|
|
12
13
|
from LOGS.Interfaces.IRelatedEntity import IRelatedEntity
|
|
13
14
|
from LOGS.Interfaces.IUniqueEntity import IUniqueEntity
|
|
14
15
|
from LOGS.LOGSConnection import LOGSConnection
|
|
@@ -23,6 +24,7 @@ class Instrument(
|
|
|
23
24
|
IUniqueEntity,
|
|
24
25
|
ICreatedOn,
|
|
25
26
|
IModifiedOn,
|
|
27
|
+
IPermissionedEntity,
|
|
26
28
|
):
|
|
27
29
|
_relationType = type(InstrumentRelations)
|
|
28
30
|
|
|
@@ -7,6 +7,7 @@ from LOGS.Entity.EntityRequestParameter import EntityRequestParameter
|
|
|
7
7
|
from LOGS.Interfaces.ICreationRecord import ICreatedOnRequest
|
|
8
8
|
from LOGS.Interfaces.IModificationRecord import IModifiedOnRequest
|
|
9
9
|
from LOGS.Interfaces.IOwnedEntity import IOwnedEntityRequest
|
|
10
|
+
from LOGS.Interfaces.IPermissionedEntity import IPermissionedEntityRequest
|
|
10
11
|
|
|
11
12
|
|
|
12
13
|
class InstrumentOrder(Enum):
|
|
@@ -35,6 +36,7 @@ class InstrumentRequestParameter(
|
|
|
35
36
|
ICreatedOnRequest,
|
|
36
37
|
IModifiedOnRequest,
|
|
37
38
|
IOwnedEntityRequest,
|
|
39
|
+
IPermissionedEntityRequest,
|
|
38
40
|
):
|
|
39
41
|
name: Optional[str] = None
|
|
40
42
|
methodIds: Optional[List[int]] = None
|
|
@@ -8,6 +8,7 @@ from LOGS.Entity.EntityWithIntId import IEntityWithIntId
|
|
|
8
8
|
from LOGS.Interfaces.ICreationRecord import ICreationRecord
|
|
9
9
|
from LOGS.Interfaces.IModificationRecord import IModificationRecord
|
|
10
10
|
from LOGS.Interfaces.INamedEntity import INamedEntity
|
|
11
|
+
from LOGS.Interfaces.IPermissionedEntity import IPermissionedEntity
|
|
11
12
|
from LOGS.Interfaces.IRelatedEntity import IRelatedEntity
|
|
12
13
|
from LOGS.Interfaces.ISoftDeletable import ISoftDeletable
|
|
13
14
|
from LOGS.LOGSConnection import LOGSConnection
|
|
@@ -21,6 +22,7 @@ class LabNotebookEntry(
|
|
|
21
22
|
ICreationRecord,
|
|
22
23
|
IModificationRecord,
|
|
23
24
|
ISoftDeletable,
|
|
25
|
+
IPermissionedEntity,
|
|
24
26
|
):
|
|
25
27
|
_relationType = type(LabNotebookEntryRelations)
|
|
26
28
|
|
|
@@ -7,6 +7,7 @@ from LOGS.Entities.IRelatedEntityRequest import IRelatedEntityRequest
|
|
|
7
7
|
from LOGS.Entity.EntityRequestParameter import EntityRequestParameter
|
|
8
8
|
from LOGS.Interfaces.ICreationRecord import ICreationRecordRequest
|
|
9
9
|
from LOGS.Interfaces.IModificationRecord import IModificationRecordRequest
|
|
10
|
+
from LOGS.Interfaces.IPermissionedEntity import IPermissionedEntityRequest
|
|
10
11
|
from LOGS.Interfaces.ISoftDeletable import ISoftDeletableRequest
|
|
11
12
|
|
|
12
13
|
|
|
@@ -42,6 +43,7 @@ class LabNotebookEntryRequestParameter(
|
|
|
42
43
|
ISoftDeletableRequest,
|
|
43
44
|
ICreationRecordRequest,
|
|
44
45
|
IModificationRecordRequest,
|
|
46
|
+
IPermissionedEntityRequest,
|
|
45
47
|
):
|
|
46
48
|
includeContent: Optional[bool] = None
|
|
47
49
|
|
LOGS/Entities/Method.py
CHANGED
|
@@ -6,6 +6,7 @@ from LOGS.Entity.EntityWithIntId import IEntityWithIntId
|
|
|
6
6
|
from LOGS.Interfaces.ICreationRecord import ICreationRecord
|
|
7
7
|
from LOGS.Interfaces.IModificationRecord import IModificationRecord
|
|
8
8
|
from LOGS.Interfaces.INamedEntity import INamedEntity
|
|
9
|
+
from LOGS.Interfaces.IPermissionedEntity import IPermissionedEntity
|
|
9
10
|
from LOGS.Interfaces.IRelatedEntity import IRelatedEntity
|
|
10
11
|
from LOGS.Interfaces.IUniqueEntity import IUniqueEntity
|
|
11
12
|
|
|
@@ -18,6 +19,7 @@ class Method(
|
|
|
18
19
|
ICreationRecord,
|
|
19
20
|
IModificationRecord,
|
|
20
21
|
IRelatedEntity[MethodRelations],
|
|
22
|
+
IPermissionedEntity,
|
|
21
23
|
):
|
|
22
24
|
_relationType = type(MethodRelations)
|
|
23
25
|
|
|
@@ -6,6 +6,7 @@ from LOGS.Interfaces.ICreationRecord import ICreatedByRequest
|
|
|
6
6
|
from LOGS.Interfaces.IModificationRecord import IModificationRecord
|
|
7
7
|
from LOGS.Interfaces.INamedEntity import INamedEntityRequest
|
|
8
8
|
from LOGS.Interfaces.IPaginationRequest import IPaginationRequest
|
|
9
|
+
from LOGS.Interfaces.IPermissionedEntity import IPermissionedEntityRequest
|
|
9
10
|
|
|
10
11
|
|
|
11
12
|
class MethodOrder(Enum):
|
|
@@ -40,5 +41,6 @@ class MethodRequestParameter(
|
|
|
40
41
|
ICreatedByRequest,
|
|
41
42
|
IModificationRecord,
|
|
42
43
|
INamedEntityRequest,
|
|
44
|
+
IPermissionedEntityRequest,
|
|
43
45
|
):
|
|
44
46
|
pass
|
LOGS/Entities/Person.py
CHANGED
|
@@ -9,6 +9,7 @@ from LOGS.Entity.EntityWithIntId import IEntityWithIntId
|
|
|
9
9
|
from LOGS.Interfaces.ICreationRecord import ICreationRecord
|
|
10
10
|
from LOGS.Interfaces.IModificationRecord import IModificationRecord
|
|
11
11
|
from LOGS.Interfaces.INamedEntity import INamedEntity
|
|
12
|
+
from LOGS.Interfaces.IPermissionedEntity import IPermissionedEntity
|
|
12
13
|
from LOGS.Interfaces.IRelatedEntity import IRelatedEntity
|
|
13
14
|
from LOGS.Interfaces.ISoftDeletable import ISoftDeletable
|
|
14
15
|
from LOGS.Interfaces.IUniqueEntity import IUniqueEntity
|
|
@@ -30,6 +31,7 @@ class Person(
|
|
|
30
31
|
ISoftDeletable,
|
|
31
32
|
ICreationRecord,
|
|
32
33
|
IModificationRecord,
|
|
34
|
+
IPermissionedEntity,
|
|
33
35
|
):
|
|
34
36
|
_firstName: Optional[str]
|
|
35
37
|
_lastName: Optional[str]
|
|
@@ -6,6 +6,7 @@ from LOGS.Entities.IRelatedEntityRequest import IRelatedEntityRequest
|
|
|
6
6
|
from LOGS.Entity.EntityRequestParameter import EntityRequestParameter
|
|
7
7
|
from LOGS.Interfaces.ICreationRecord import ICreationRecordRequest
|
|
8
8
|
from LOGS.Interfaces.IModificationRecord import IModificationRecordRequest
|
|
9
|
+
from LOGS.Interfaces.IPermissionedEntity import IPermissionedEntityRequest
|
|
9
10
|
from LOGS.Interfaces.ISoftDeletable import ISoftDeletableRequest
|
|
10
11
|
|
|
11
12
|
|
|
@@ -45,6 +46,7 @@ class PersonRequestParameter(
|
|
|
45
46
|
ISoftDeletableRequest,
|
|
46
47
|
ICreationRecordRequest,
|
|
47
48
|
IModificationRecordRequest,
|
|
49
|
+
IPermissionedEntityRequest,
|
|
48
50
|
):
|
|
49
51
|
personTagIds: Optional[List[int]] = None
|
|
50
52
|
personTags: Optional[List[str]] = None
|
LOGS/Entities/Project.py
CHANGED
|
@@ -9,6 +9,7 @@ from LOGS.Interfaces.ICreationRecord import ICreationRecord
|
|
|
9
9
|
from LOGS.Interfaces.IModificationRecord import IModificationRecord
|
|
10
10
|
from LOGS.Interfaces.INamedEntity import INamedEntity
|
|
11
11
|
from LOGS.Interfaces.IOwnedEntity import IOwnedEntity
|
|
12
|
+
from LOGS.Interfaces.IPermissionedEntity import IPermissionedEntity
|
|
12
13
|
from LOGS.Interfaces.IRelatedEntity import IRelatedEntity
|
|
13
14
|
from LOGS.Interfaces.IUniqueEntity import IUniqueEntity
|
|
14
15
|
from LOGS.LOGSConnection import LOGSConnection
|
|
@@ -32,13 +33,14 @@ class Project(
|
|
|
32
33
|
ICreationRecord,
|
|
33
34
|
IModificationRecord,
|
|
34
35
|
IOwnedEntity,
|
|
36
|
+
IPermissionedEntity,
|
|
35
37
|
):
|
|
36
38
|
_relationType = type(ProjectRelations)
|
|
37
39
|
|
|
38
40
|
_notes: Optional[str]
|
|
39
41
|
_projectTags: Optional[List[ProjectTag]]
|
|
40
42
|
_relations: Optional[ProjectRelations]
|
|
41
|
-
|
|
43
|
+
_projectPersonPermissions: Optional[List[ProjectUserPermission]]
|
|
42
44
|
|
|
43
45
|
def __init__(
|
|
44
46
|
self,
|
|
@@ -53,7 +55,7 @@ class Project(
|
|
|
53
55
|
self._notes = None
|
|
54
56
|
self._projectTags = None
|
|
55
57
|
self._relations = None
|
|
56
|
-
self.
|
|
58
|
+
self._projectPersonPermissions = None
|
|
57
59
|
super().__init__(ref=ref, id=id, connection=connection)
|
|
58
60
|
|
|
59
61
|
@property
|
|
@@ -8,6 +8,7 @@ from LOGS.Interfaces.ICreationRecord import ICreationRecordRequest
|
|
|
8
8
|
from LOGS.Interfaces.IModificationRecord import IModificationRecordRequest
|
|
9
9
|
from LOGS.Interfaces.INamedEntity import INamedEntityRequest
|
|
10
10
|
from LOGS.Interfaces.IOwnedEntity import IOwnedEntityRequest
|
|
11
|
+
from LOGS.Interfaces.IPermissionedEntity import IPermissionedEntityRequest
|
|
11
12
|
|
|
12
13
|
|
|
13
14
|
class ProjectOrder(Enum):
|
|
@@ -41,6 +42,7 @@ class ProjectRequestParameter(
|
|
|
41
42
|
ICreationRecordRequest,
|
|
42
43
|
IModificationRecordRequest,
|
|
43
44
|
INamedEntityRequest,
|
|
45
|
+
IPermissionedEntityRequest,
|
|
44
46
|
):
|
|
45
47
|
typeIds: Optional[List[str]] = None
|
|
46
48
|
notes: Optional[str] = None
|
|
@@ -10,6 +10,7 @@ if TYPE_CHECKING:
|
|
|
10
10
|
class ProjectUserPermission(SerializeableContent):
|
|
11
11
|
_person: Optional["PersonMinimal"] = None
|
|
12
12
|
_administer: Optional[bool] = None
|
|
13
|
+
_edit: Optional[bool] = None
|
|
13
14
|
_add: Optional[bool] = None
|
|
14
15
|
_read: Optional[bool] = None
|
|
15
16
|
|
|
@@ -29,6 +30,14 @@ class ProjectUserPermission(SerializeableContent):
|
|
|
29
30
|
def administer(self, value):
|
|
30
31
|
self._administer = self.checkAndConvertNullable(value, bool, "administer")
|
|
31
32
|
|
|
33
|
+
@property
|
|
34
|
+
def edit(self) -> Optional[bool]:
|
|
35
|
+
return self._edit
|
|
36
|
+
|
|
37
|
+
@edit.setter
|
|
38
|
+
def edit(self, value):
|
|
39
|
+
self._edit = self.checkAndConvertNullable(value, bool, "edit")
|
|
40
|
+
|
|
32
41
|
@property
|
|
33
42
|
def add(self) -> Optional[bool]:
|
|
34
43
|
return self._add
|
LOGS/Entities/Role.py
CHANGED
|
@@ -6,6 +6,7 @@ from LOGS.Entity.EntityWithIntId import IEntityWithIntId
|
|
|
6
6
|
from LOGS.Interfaces.ICreationRecord import ICreationRecord
|
|
7
7
|
from LOGS.Interfaces.IModificationRecord import IModificationRecord
|
|
8
8
|
from LOGS.Interfaces.INamedEntity import INamedEntity
|
|
9
|
+
from LOGS.Interfaces.IPermissionedEntity import IPermissionedEntity
|
|
9
10
|
from LOGS.Interfaces.IRelatedEntity import IRelatedEntity
|
|
10
11
|
from LOGS.LOGSConnection import LOGSConnection
|
|
11
12
|
|
|
@@ -20,6 +21,7 @@ class Role(
|
|
|
20
21
|
ICreationRecord,
|
|
21
22
|
IModificationRecord,
|
|
22
23
|
IRelatedEntity[RoleRelations],
|
|
24
|
+
IPermissionedEntity,
|
|
23
25
|
):
|
|
24
26
|
_relationType = type(RoleRelations)
|
|
25
27
|
|
|
@@ -6,6 +6,7 @@ from LOGS.Entities.IRelatedEntityRequest import IRelatedEntityRequest
|
|
|
6
6
|
from LOGS.Entity.EntityRequestParameter import EntityRequestParameter
|
|
7
7
|
from LOGS.Interfaces.ICreationRecord import ICreationRecordRequest
|
|
8
8
|
from LOGS.Interfaces.IModificationRecord import IModificationRecordRequest
|
|
9
|
+
from LOGS.Interfaces.IPermissionedEntity import IPermissionedEntityRequest
|
|
9
10
|
|
|
10
11
|
|
|
11
12
|
class RoleOrder(Enum):
|
|
@@ -31,6 +32,7 @@ class RoleRequestParameter(
|
|
|
31
32
|
IRelatedEntityRequest,
|
|
32
33
|
ICreationRecordRequest,
|
|
33
34
|
IModificationRecordRequest,
|
|
35
|
+
IPermissionedEntityRequest,
|
|
34
36
|
):
|
|
35
37
|
name: Optional[str] = None
|
|
36
38
|
roleId: Optional[str] = None
|
LOGS/Entities/Sample.py
CHANGED
|
@@ -11,6 +11,7 @@ from LOGS.Entities.SampleTypeMinimal import SampleTypeMinimal
|
|
|
11
11
|
from LOGS.Entity.EntityWithIntId import IEntityWithIntId
|
|
12
12
|
from LOGS.Interfaces.INamedEntity import INamedEntity
|
|
13
13
|
from LOGS.Interfaces.IOwnedEntity import IOwnedEntity
|
|
14
|
+
from LOGS.Interfaces.IPermissionedEntity import IPermissionedEntity
|
|
14
15
|
from LOGS.Interfaces.IProjectBased import IProjectBased
|
|
15
16
|
from LOGS.Interfaces.IRelatedEntity import IRelatedEntity
|
|
16
17
|
from LOGS.Interfaces.ISoftDeletable import ISoftDeletable
|
|
@@ -34,6 +35,7 @@ class Sample(
|
|
|
34
35
|
IOwnedEntity,
|
|
35
36
|
ISoftDeletable,
|
|
36
37
|
INamedEntity,
|
|
38
|
+
IPermissionedEntity,
|
|
37
39
|
):
|
|
38
40
|
_relationType = type(SampleRelations)
|
|
39
41
|
|
|
@@ -7,6 +7,7 @@ from LOGS.Entity.EntityRequestParameter import EntityRequestParameter
|
|
|
7
7
|
from LOGS.Interfaces.INamedEntity import INamedEntityRequest
|
|
8
8
|
from LOGS.Interfaces.IOwnedEntity import IOwnedEntityRequest
|
|
9
9
|
from LOGS.Interfaces.IPaginationRequest import IPaginationRequest
|
|
10
|
+
from LOGS.Interfaces.IPermissionedEntity import IPermissionedEntityRequest
|
|
10
11
|
from LOGS.Interfaces.ISoftDeletable import ISoftDeletableRequest
|
|
11
12
|
from LOGS.Interfaces.ITypedEntity import ITypedEntityRequest
|
|
12
13
|
|
|
@@ -32,6 +33,7 @@ class SampleRequestParameter(
|
|
|
32
33
|
ITypedEntityRequest,
|
|
33
34
|
INamedEntityRequest,
|
|
34
35
|
ISoftDeletableRequest,
|
|
36
|
+
IPermissionedEntityRequest,
|
|
35
37
|
):
|
|
36
38
|
projectIds: Optional[List[int]] = None
|
|
37
39
|
organizationIds: Optional[List[int]] = None
|
LOGS/Entities/__init__.py
CHANGED
|
@@ -16,9 +16,9 @@ from .BridgeRequestParameter import *
|
|
|
16
16
|
from .BridgeType import *
|
|
17
17
|
from .CustomField import *
|
|
18
18
|
from .CustomFieldEnums import *
|
|
19
|
-
from .CustomSchemaSection import *
|
|
20
19
|
from .CustomFieldRequestParameter import *
|
|
21
20
|
from .CustomSchema import *
|
|
21
|
+
from .CustomSchemaSection import *
|
|
22
22
|
from .Dataset import *
|
|
23
23
|
from .DatasetCreator import *
|
|
24
24
|
from .DatasetInfo import *
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
from dataclasses import dataclass
|
|
2
|
+
from typing import TYPE_CHECKING, 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 IPermissionedEntityRequest:
|
|
13
|
+
includePermissions: Optional[bool] = None
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class IPermissionedEntity(IEntityInterface):
|
|
17
|
+
_permissions: Optional[dict[str, bool]] = None
|
|
18
|
+
|
|
19
|
+
@property
|
|
20
|
+
def permissions(self) -> Optional[dict[str, bool]]:
|
|
21
|
+
return self._permissions
|
|
22
|
+
|
|
23
|
+
@permissions.setter
|
|
24
|
+
def permissions(self, value):
|
|
25
|
+
self._permissions = Tools.checkAndConvert(
|
|
26
|
+
value, dict, "permissions", allowNone=True
|
|
27
|
+
)
|
|
@@ -17,10 +17,10 @@ LOGS/Entities/AutoloadFileInfo.py,sha256=thiK1isWkNa719kCzohPJsAkblnKj78BohHDMvr
|
|
|
17
17
|
LOGS/Entities/AutoloadStatus.py,sha256=2qIoRXZih_cWkr_MLINpB6jUfcZHBwm7nwB7DN_EpyY,672
|
|
18
18
|
LOGS/Entities/AutoloadStatusError.py,sha256=44AWs6nn5RsVSdII3fNT8HtkuBfRNSU_xMJXsTeWp04,176
|
|
19
19
|
LOGS/Entities/AxisNaming.py,sha256=mje3aCK38OOMQhbMdPd0eNwUBc2e3DDPzjh5fDR7Pa0,749
|
|
20
|
-
LOGS/Entities/Bridge.py,sha256=
|
|
20
|
+
LOGS/Entities/Bridge.py,sha256=7doxERF0rdR309bFJnOPoipffs9el0cEOEepiH4gTXU,5164
|
|
21
21
|
LOGS/Entities/BridgeMinimal.py,sha256=ADNhHqoHA9VhzaItBVeknRVRD-ASqEYEL2GTGB97oEM,241
|
|
22
22
|
LOGS/Entities/BridgeRelations.py,sha256=nI6mqu_BIDt01tKHKyK38COHhpqrRHCi8wyy9Iyw0AU,650
|
|
23
|
-
LOGS/Entities/BridgeRequestParameter.py,sha256=
|
|
23
|
+
LOGS/Entities/BridgeRequestParameter.py,sha256=m0C3iQLYZppFChj4lQ9cteAdDtpDClyrcBM9OAdryHM,838
|
|
24
24
|
LOGS/Entities/BridgeType.py,sha256=YB55JKJtS38fAlRb5T_OIPvT2qTJIzUC6uoC24eq3sE,88
|
|
25
25
|
LOGS/Entities/Bridges.py,sha256=WgspgZ9zXxi9tDPg4JPsDLq-fvNQkiaUbKEfbz1iG7E,420
|
|
26
26
|
LOGS/Entities/CustomField.py,sha256=jUvaEHdWiVnimao8sD1sgKvYDMqP5GOSO42aag7oiaY,5219
|
|
@@ -31,20 +31,20 @@ LOGS/Entities/CustomFields.py,sha256=-LVjEtaKvyzVFcT7JkhPUnaoKu6-7TvZEB6kl2ZLnM0
|
|
|
31
31
|
LOGS/Entities/CustomSchema.py,sha256=LD2PIpWKSBd8b9bMBZXdNqIMBGtMgcMVVOwMfE5I0R4,2223
|
|
32
32
|
LOGS/Entities/CustomSchemaParameter.py,sha256=hU7bB0QiKHM9bSjunZePqB5Xvmm01g1cGP3H-6QHxi8,1195
|
|
33
33
|
LOGS/Entities/CustomSchemaSection.py,sha256=StY01Cy_DS6d5ht_Fc-TRBA5grRoqWPIj2lIh2ktOB8,1076
|
|
34
|
-
LOGS/Entities/DataSource.py,sha256=
|
|
34
|
+
LOGS/Entities/DataSource.py,sha256=tOvavyAyH90Xl4xudovKnLj70Fz50A6UogLOvQwHKwQ,6400
|
|
35
35
|
LOGS/Entities/DataSourceMinimal.py,sha256=KlejLccyZR_AP2LvFQgCJXpcmWwtaOg6rRTVsXXlODI,261
|
|
36
36
|
LOGS/Entities/DataSourceRelations.py,sha256=eIszpHjZqz6v4WyhaPNu8efSzedsJLNrYR9b3hCa3HY,658
|
|
37
|
-
LOGS/Entities/DataSourceRequestParameter.py,sha256=
|
|
37
|
+
LOGS/Entities/DataSourceRequestParameter.py,sha256=zAfC61NvVt4XO3HhIy1PLViN3AEBJo7Q6Fa_EtyqNvA,1610
|
|
38
38
|
LOGS/Entities/DataSourceStatus.py,sha256=81IAcLhdvkrAxgcL1Hw47aJqiZ0Vb7UnZUj-UEo8wX0,430
|
|
39
39
|
LOGS/Entities/DataSources.py,sha256=UU5ey98_vX4WQknyWITMy-dPOV-wgjblXxu5uXpnVso,481
|
|
40
|
-
LOGS/Entities/Dataset.py,sha256=
|
|
40
|
+
LOGS/Entities/Dataset.py,sha256=f2OGkekH85UrI5-nHvGnqfZmgp7YB_DaGODYqw5naOw,21864
|
|
41
41
|
LOGS/Entities/DatasetCreator.py,sha256=vMaTOukqABDaeax3YmLROesfbumt9pbLShYDfDr-PTI,5033
|
|
42
42
|
LOGS/Entities/DatasetInfo.py,sha256=VnobiT04yd9GSZQ6tH8eUrO9jknzfLW9-wvMz-QAhTw,3882
|
|
43
43
|
LOGS/Entities/DatasetMatchTypes.py,sha256=iEkUCky6IHnvAB76XIY6m4Z2ajKMRr3WcvEJrByqkGU,4234
|
|
44
44
|
LOGS/Entities/DatasetMatching.py,sha256=1tLYQKFMssOQIPuCh06dr70oYCpjj4bXer6VAO3papM,6596
|
|
45
45
|
LOGS/Entities/DatasetMinimal.py,sha256=AfSMihe4mU53D3dib1MzW7ZAtfvFytVyGpMMi3Fr2Cw,246
|
|
46
46
|
LOGS/Entities/DatasetRelations.py,sha256=gQWlm4BAJbeb0J2lLgdwO0grQFDTSSls162OWGwUsEU,1465
|
|
47
|
-
LOGS/Entities/DatasetRequestParameter.py,sha256=
|
|
47
|
+
LOGS/Entities/DatasetRequestParameter.py,sha256=UHj-lg2LRyUtNYNkjCNZdTuB7uNuizm3lDm7VoNDgNE,3727
|
|
48
48
|
LOGS/Entities/DatasetType.py,sha256=QyeiT2zHF6aCHRals6tUC2obQgCima71pVJAAM70xxs,170
|
|
49
49
|
LOGS/Entities/DatasetTypeMinimal.py,sha256=zszCE4feq8hYIYkCogh8iH-ynmFFVv5SmJq6mmnQDps,266
|
|
50
50
|
LOGS/Entities/DatasetUploadParameter.py,sha256=bfH3Nm3BZs-hvWhFzWfxWSL-9hHJCRfW_PHwORtY_tw,470
|
|
@@ -60,10 +60,10 @@ LOGS/Entities/EntitiesRequestParameter.py,sha256=2ZgzPzaRO2ELkBN9gm7xS6W7YRlguRl
|
|
|
60
60
|
LOGS/Entities/EntityOriginWriteModelWithId.py,sha256=DyhxVtfGKyLYxK5NLj01knWzYDsYh8b7ZZjPRbiDn1w,468
|
|
61
61
|
LOGS/Entities/Equipment.py,sha256=kQeic7hZ5nOIJAMfqvDvvE232_oi8Qrd310izfkJ_pQ,213
|
|
62
62
|
LOGS/Entities/EquipmentMinimal.py,sha256=OpTDgr9wOdFxTYKNRUWzPaogwVoXNZvb_3gL-8GFoEo,256
|
|
63
|
-
LOGS/Entities/Experiment.py,sha256=
|
|
63
|
+
LOGS/Entities/Experiment.py,sha256=81MGLjN-Z-XT4VUGzgTAj-KEJrCD6ttKpWWexsBXTas,2057
|
|
64
64
|
LOGS/Entities/ExperimentMinimal.py,sha256=45NzqBQNwxC96qlEyf8ESLk76ATHem6F765m9sItpXo,261
|
|
65
65
|
LOGS/Entities/ExperimentRelations.py,sha256=NgHv9xbOrsqi7JkExB34-zXsBh5UtZHVv_uheTt-tns,658
|
|
66
|
-
LOGS/Entities/ExperimentRequestParameter.py,sha256=
|
|
66
|
+
LOGS/Entities/ExperimentRequestParameter.py,sha256=qz0a1JejJ0cAr-oSJVKQGnYSKinQABwdqCFjNQsP9VQ,1248
|
|
67
67
|
LOGS/Entities/Experiments.py,sha256=U9O4JaKpOTui2vWEZ9WeOPHXkI-GMO__vFFYqB5t7Ws,453
|
|
68
68
|
LOGS/Entities/FileEntry.py,sha256=jJa-uPidQrMwIu0H04USpiH0kvo2ezlcye9QAQE5Txk,3919
|
|
69
69
|
LOGS/Entities/Format.py,sha256=yH4k1wLyhq09oD0N1SATJN-M4xbAZJLwQV8rMlXYWCA,2377
|
|
@@ -91,48 +91,48 @@ LOGS/Entities/HierarchyLeaf.py,sha256=Y2aYdbkNvSzGT_ia_1oxenW-RmTxXuve212scj8UiX
|
|
|
91
91
|
LOGS/Entities/HierarchyNode.py,sha256=jEiVX-ybh06FzdOCp0Adzh5yxg6GQ2uB57KBBE9xSI4,1285
|
|
92
92
|
LOGS/Entities/ICustomSchemaRequest.py,sha256=l7do2v3GfLPNn0Ieei0H-v4l2Sgtcju0FvVF5yUtDHs,149
|
|
93
93
|
LOGS/Entities/IRelatedEntityRequest.py,sha256=BKR8dZj552nfFSk2mIKDRn_JbAKSbbU3eC9A69YD1pM,243
|
|
94
|
-
LOGS/Entities/Instrument.py,sha256=
|
|
94
|
+
LOGS/Entities/Instrument.py,sha256=fSjqU9YDm6xfQo6zo0_ChNwHh55NTWj0qrRY5LOmhrE,2965
|
|
95
95
|
LOGS/Entities/InstrumentMinimal.py,sha256=cZrIRJvmMZwA29unGcS9i1dOuTVO5aXHEN0RW1KAuvc,261
|
|
96
96
|
LOGS/Entities/InstrumentRelations.py,sha256=sXlLo_TQiRnkWAOkAAYlYxqquas9KBVEJVW6Td8f_WE,658
|
|
97
|
-
LOGS/Entities/InstrumentRequestParameter.py,sha256=
|
|
97
|
+
LOGS/Entities/InstrumentRequestParameter.py,sha256=mDPAtXMHVLaYiGnXSUVXGzitG6xFMr75FzCOLD5sUME,1433
|
|
98
98
|
LOGS/Entities/Instruments.py,sha256=0KgCWU5J9nFOM9qQw5s6tRyAdnCzOnjuvAtSwpdbyiU,453
|
|
99
99
|
LOGS/Entities/LabNotebookEntries.py,sha256=zbP78OV-pD2Yrg6bxQSU4e12AJd-ZqbPn1n5QGykTro,542
|
|
100
|
-
LOGS/Entities/LabNotebookEntry.py,sha256=
|
|
100
|
+
LOGS/Entities/LabNotebookEntry.py,sha256=H_TFNLKqg5zGePhD9UPqsZ2-fOjlWnaMQSiSNkPEI0A,2911
|
|
101
101
|
LOGS/Entities/LabNotebookEntryMinimal.py,sha256=2VbggIr1QnKT_VFizupZH6ubIsD-PntL7HOH7rHuzzs,291
|
|
102
102
|
LOGS/Entities/LabNotebookEntryRelations.py,sha256=SljETldOvUZ6xCaywxGxwEKEZnz0ONwEnPlsY4SZkOo,2608
|
|
103
|
-
LOGS/Entities/LabNotebookEntryRequestParameter.py,sha256=
|
|
104
|
-
LOGS/Entities/Method.py,sha256=
|
|
103
|
+
LOGS/Entities/LabNotebookEntryRequestParameter.py,sha256=bLuF6ysxBWvJCxLbRvPoyfEnJuY-ZqWdJkgm2vu76nU,2769
|
|
104
|
+
LOGS/Entities/Method.py,sha256=P37RQ0ydiewfwizAcZyAwtQOdxgx24Ot-J8wssAdJ8U,1332
|
|
105
105
|
LOGS/Entities/MethodMinimal.py,sha256=P4TnY-OXCWMjZmGMg7zeejZF6t6SQ7mxi5wVTpBYiDY,241
|
|
106
106
|
LOGS/Entities/MethodRelations.py,sha256=z2F7SsXZCoNTDwqL0VMoaCf20_OJkMljVUZijg0lX9s,1071
|
|
107
|
-
LOGS/Entities/MethodRequestParameter.py,sha256=
|
|
107
|
+
LOGS/Entities/MethodRequestParameter.py,sha256=tkkmR_lAv7DAYF_nDPbnQGkYZ-B56JFXCWls7seBHds,1422
|
|
108
108
|
LOGS/Entities/Methods.py,sha256=YKCZ0kRooxxdRu9AeD54Gk9TifKZwPWHD1HxpsCC_NQ,413
|
|
109
109
|
LOGS/Entities/Origin.py,sha256=xa2Lxpou1Ebd6Za5laTOT0jnyt4U6XiQM3yROuWOTDE,1433
|
|
110
110
|
LOGS/Entities/OriginMinimal.py,sha256=Rg3ufOMKlayAExniIdhUOGcWykqL6qysSsML79pKrIs,241
|
|
111
111
|
LOGS/Entities/OriginRequestParameter.py,sha256=qGco80zdmxqNLmEoZAAOF_usAmQYnXSWAz2OCaSIirI,446
|
|
112
112
|
LOGS/Entities/Origins.py,sha256=3gN9jAPwfBBQsqS3q3nrb2kZTJDxfdvKBIzmgnhi-NI,413
|
|
113
113
|
LOGS/Entities/ParserLog.py,sha256=KEPnbxaeC0w0HRt_WhvVEoLJ9Cqaep9Vk1s2m2xE7b8,1197
|
|
114
|
-
LOGS/Entities/Person.py,sha256=
|
|
114
|
+
LOGS/Entities/Person.py,sha256=NdNBFcxy-VIVUnrKN4_7IE7jmgYICnwp0lU-C-4Q42c,5773
|
|
115
115
|
LOGS/Entities/PersonCategory.py,sha256=3JBVCmN5FNyriDqF2GtSRCbxrFyDSb-MZ079gqoEah0,352
|
|
116
116
|
LOGS/Entities/PersonMinimal.py,sha256=W5lhHvFtYi_Ln4B9g91pnZddrhyJGoOwiX81hszmKNs,241
|
|
117
117
|
LOGS/Entities/PersonRelations.py,sha256=kN8Rfkg5qP0QSLbmCcqonZjKW5VtDSDyCMJ5WoUDvHk,2701
|
|
118
|
-
LOGS/Entities/PersonRequestParameter.py,sha256=
|
|
118
|
+
LOGS/Entities/PersonRequestParameter.py,sha256=U9jQ1hVQZAXrg-49ao-o8WIk8kJ7pHvBIDqbW0_Po1A,2220
|
|
119
119
|
LOGS/Entities/Persons.py,sha256=cj4SKaJZvitaIe7Fd1M9_qqNdAEEG38iuMPNiKPDPUA,413
|
|
120
|
-
LOGS/Entities/Project.py,sha256=
|
|
120
|
+
LOGS/Entities/Project.py,sha256=YhQGVxNocRoSBPSmn46Xkp6bwEFtjTLb5X3YPuHrV_0,3073
|
|
121
121
|
LOGS/Entities/ProjectMinimal.py,sha256=Xw8wnA2iSixEkVaisY_b4Z3Ujudum3MG6tBUfbiAk0s,246
|
|
122
122
|
LOGS/Entities/ProjectRelations.py,sha256=Hf3F42iYanTqrLgG6GjY4HXBCFWCcVNjXzwrnEJc9GU,2136
|
|
123
|
-
LOGS/Entities/ProjectRequestParameter.py,sha256=
|
|
124
|
-
LOGS/Entities/ProjectUserPermission.py,sha256=
|
|
123
|
+
LOGS/Entities/ProjectRequestParameter.py,sha256=KXvBbvoadB5F5Xap9t3GPzpb3lqdpH_Ob9SORCvstEU,2030
|
|
124
|
+
LOGS/Entities/ProjectUserPermission.py,sha256=js8L_5-vU_Etj0CqmM48BmTM7cITu8r_S13wZPtjVQY,1480
|
|
125
125
|
LOGS/Entities/Projects.py,sha256=8xvaHUrH8Y8g8WOcRN0Sa7BXH1QJnPB39SrfP3GpXXE,425
|
|
126
|
-
LOGS/Entities/Role.py,sha256=
|
|
126
|
+
LOGS/Entities/Role.py,sha256=uwECQ_DCGDrsxzg1iQdPKBjZAYaew9HA0pDmahq_It8,1854
|
|
127
127
|
LOGS/Entities/RoleMinimal.py,sha256=O_69AQ0d06fq47pKuqYUp2gNn4o9xsuoxwwwKzE2F5k,231
|
|
128
128
|
LOGS/Entities/RoleRelations.py,sha256=785kHVBPUlBytAGtEa_Oia7IYHbMB-zteKFq5Qli6wk,633
|
|
129
|
-
LOGS/Entities/RoleRequestParameter.py,sha256=
|
|
129
|
+
LOGS/Entities/RoleRequestParameter.py,sha256=nxwTuSGfPFfx0WfuNMXVfJDBu5A3f0k4em0S5BdSYfU,1235
|
|
130
130
|
LOGS/Entities/Roles.py,sha256=E4-XxiutsN8dyrvAu-xkEFRajDcyOPKwGZg0lgTv424,393
|
|
131
131
|
LOGS/Entities/RunState.py,sha256=RJvL7CPqxAiJ_NEVooiRqX_A2xoE2uNAvYI9uVVuMnw,118
|
|
132
|
-
LOGS/Entities/Sample.py,sha256=
|
|
132
|
+
LOGS/Entities/Sample.py,sha256=MLbpNrLQ6uVdBCocQUCMhgd5VwGg-XAMdsWUrd_7JLY,6703
|
|
133
133
|
LOGS/Entities/SampleMinimal.py,sha256=rlLN_MVB2KNxY9wTbArnDGtyGrQ0_NGllGzocNxeZSY,241
|
|
134
134
|
LOGS/Entities/SampleRelations.py,sha256=dVCJGrM90sbme63PzWrFhbrzaEdWm_-OtaUfMfihQcs,1423
|
|
135
|
-
LOGS/Entities/SampleRequestParameter.py,sha256=
|
|
135
|
+
LOGS/Entities/SampleRequestParameter.py,sha256=aPiHsLEOi6E-ic38CG7MfHET9GEVkoKeTaNHs4IQDmk,1693
|
|
136
136
|
LOGS/Entities/SampleType.py,sha256=OuYa6CD5c_aZ7rw9ij5ozSj757jSUzq2K0Ryke46vjY,888
|
|
137
137
|
LOGS/Entities/SampleTypeMinimal.py,sha256=e5bJ2ZJwJu9fMugaXrp9MxBsPkpNEihhx0fWncX5V5A,261
|
|
138
138
|
LOGS/Entities/SampleTypeRequestParameter.py,sha256=uWkYftn9c0iin0i2JobawECEUmCjsX8dSh0jXswDo58,222
|
|
@@ -145,7 +145,7 @@ LOGS/Entities/TrackXY.py,sha256=rffrNVR8DbQpWcjQpFMM1_7OnefKEE7UzVWBPfYaRp0,1186
|
|
|
145
145
|
LOGS/Entities/TrackXYComplex.py,sha256=dqByLLSTW3WerDrXkfOVgX6Nc2zuXHa6Pf3gulUlb6k,1692
|
|
146
146
|
LOGS/Entities/TrackXYComplexData.py,sha256=xWd3_jdXa347Gh53NYIMo66nFirA60Zd2KxaPs4KHaY,1368
|
|
147
147
|
LOGS/Entities/TrackXYData.py,sha256=6AbwG2qa2HN858ROLaLpzkuIlwsb8tN8wznaiKplRdo,819
|
|
148
|
-
LOGS/Entities/__init__.py,sha256=
|
|
148
|
+
LOGS/Entities/__init__.py,sha256=H2E_6M3VRrGPqPcJ3UuQIjeNyNPYuSIISwfaROei9uA,3237
|
|
149
149
|
LOGS/Entity/ConnectedEntity.py,sha256=RIaOcOJWCrWooc9H8CkN4tbrLD0q4pM4CAeBX3ZRIVg,1617
|
|
150
150
|
LOGS/Entity/Entity.py,sha256=uF7lCp-4HwUJ90ocRX_GCPu9KAZg2VAF5bCMlVfDtDs,6605
|
|
151
151
|
LOGS/Entity/EntityConnector.py,sha256=Lp5rGDyTEoayPslieh_3QSzezwLiaj0lehejhu1LdKg,2061
|
|
@@ -168,6 +168,7 @@ LOGS/Interfaces/IModificationRecord.py,sha256=SGXtCMHLCsH3pS199jr6QaxSD3LpGUXbNO
|
|
|
168
168
|
LOGS/Interfaces/INamedEntity.py,sha256=ds0qM8BGIr0Ii_sdIYZ7cG-8Mh0jeyTPbzEcQ_dRnbk,559
|
|
169
169
|
LOGS/Interfaces/IOwnedEntity.py,sha256=JmrTl3SI-ResGN5GQAiK_P1U5uoFwlEGep-lJ-9LdyQ,688
|
|
170
170
|
LOGS/Interfaces/IPaginationRequest.py,sha256=L0A5rul1B9r-g-xRqoPjLeDM0lpYXecLCJFaBQXkao8,210
|
|
171
|
+
LOGS/Interfaces/IPermissionedEntity.py,sha256=xZra5oZ0TXNL9brqF7DJSbfFVGlfF118MrLFMwJGQQU,671
|
|
171
172
|
LOGS/Interfaces/IProjectBased.py,sha256=dXmqBD6s4f8p0Eig_JqP4heqvo53Uq3cBz7SvHae_DA,863
|
|
172
173
|
LOGS/Interfaces/IRelatedEntity.py,sha256=Gg0dHtnTu5ykh874Lea7FxWmZz2Dw8BLyoyRi60q4VI,1012
|
|
173
174
|
LOGS/Interfaces/IRelationModel.py,sha256=oKwB7FOlf4ygD08zuUdow5BL4OncA8r2DK1xpK4K3h0,78
|
|
@@ -176,7 +177,7 @@ LOGS/Interfaces/ISoftDeletable.py,sha256=urnmSfcYJrEm1iIo0k3nyBvMMnpomJWAYAON_uv
|
|
|
176
177
|
LOGS/Interfaces/ITypedEntity.py,sha256=hMlzGuca8vW1qT5Dop-b-6_gteAeXjK0sz85eRjOZrY,724
|
|
177
178
|
LOGS/Interfaces/IUniqueEntity.py,sha256=K-Q80qZX1wTjPnjbs-1PF85BbzYre2su_2xMnescYi4,1894
|
|
178
179
|
LOGS/Interfaces/__init__.py,sha256=tGykqoQeT2_HV-oLYVKJJ9Z0a_Li8_y3AOJjG1btKYw,172
|
|
179
|
-
logs_py-2.
|
|
180
|
-
logs_py-2.
|
|
181
|
-
logs_py-2.
|
|
182
|
-
logs_py-2.
|
|
180
|
+
logs_py-2.9.dist-info/METADATA,sha256=DAbD5fEFRSpCRKj7abvH1gmMoi-ZN6Qalm3Nllx7EZU,2002
|
|
181
|
+
logs_py-2.9.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
182
|
+
logs_py-2.9.dist-info/top_level.txt,sha256=Ckn2LiAmGaR7k3tdEnKAc04z_uboMD4gLreYghRNdCs,5
|
|
183
|
+
logs_py-2.9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|