logs-py 1.11__py3-none-any.whl → 1.13__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/Person.py CHANGED
@@ -25,6 +25,7 @@ class Person(INamedEntity, EntityWithIntId, IUniqueEntity):
25
25
  _categories: Optional[List[PersonCategory]]
26
26
  _relations: Optional[PersonRelations]
27
27
  _roles: Optional[List[Role]]
28
+ _password: Optional[str]
28
29
 
29
30
  def __init__(
30
31
  self,
@@ -34,6 +35,7 @@ class Person(INamedEntity, EntityWithIntId, IUniqueEntity):
34
35
  ):
35
36
  self._firstName = None
36
37
  self._lastName = None
38
+ self._login = None
37
39
  self._salutation = " "
38
40
  self._notes = None
39
41
  self._officePhone = None
@@ -44,6 +46,7 @@ class Person(INamedEntity, EntityWithIntId, IUniqueEntity):
44
46
  self._categories = None
45
47
  self._relations = None
46
48
  self._roles = None
49
+ self._password = None
47
50
 
48
51
  super().__init__(ref=ref, id=id, connection=connection)
49
52
 
@@ -159,3 +162,11 @@ class Person(INamedEntity, EntityWithIntId, IUniqueEntity):
159
162
  self._roles = None
160
163
  else:
161
164
  self._roles = self.checkListAndConvertNullable(value, Role, "roles")
165
+
166
+ @property
167
+ def password(self) -> Optional[str]:
168
+ return self._password
169
+
170
+ @password.setter
171
+ def password(self, value):
172
+ self._password = self.checkAndConvertNullable(value, str, "password")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: logs-py
3
- Version: 1.11
3
+ Version: 1.13
4
4
  Summary: A python interface for the LOGS public API
5
5
  Home-page: https://docs.logs-python.com
6
6
  Author: Sina Kazemi
@@ -95,7 +95,7 @@ LOGS/Entities/OriginMinimal.py,sha256=Rg3ufOMKlayAExniIdhUOGcWykqL6qysSsML79pKrI
95
95
  LOGS/Entities/OriginRequestParameter.py,sha256=eDvn2ritzGur-E-Wh-0k5ahG13ZwVFmmrxZ-zk3lfSg,374
96
96
  LOGS/Entities/Origins.py,sha256=3gN9jAPwfBBQsqS3q3nrb2kZTJDxfdvKBIzmgnhi-NI,413
97
97
  LOGS/Entities/ParserLog.py,sha256=KEPnbxaeC0w0HRt_WhvVEoLJ9Cqaep9Vk1s2m2xE7b8,1197
98
- LOGS/Entities/Person.py,sha256=Dr71_0Xwp0-xxqTmqymMzdIpRFjiH_r9Ng3rqcr3UPQ,4503
98
+ LOGS/Entities/Person.py,sha256=QRMCl4PZzTDG9YcDxS3_6oHm98Yy8GiIByeahfwAGBg,4806
99
99
  LOGS/Entities/PersonCategory.py,sha256=3JBVCmN5FNyriDqF2GtSRCbxrFyDSb-MZ079gqoEah0,352
100
100
  LOGS/Entities/PersonMinimal.py,sha256=W5lhHvFtYi_Ln4B9g91pnZddrhyJGoOwiX81hszmKNs,241
101
101
  LOGS/Entities/PersonRelations.py,sha256=hdJKa44JRYEs0R5NnBkSBfu9k6Oa4cd-7i3qr0GaWdU,1396
@@ -152,7 +152,7 @@ LOGS/Interfaces/IPaginationRequest.py,sha256=L0A5rul1B9r-g-xRqoPjLeDM0lpYXecLCJF
152
152
  LOGS/Interfaces/ISoftDeletable.py,sha256=urnmSfcYJrEm1iIo0k3nyBvMMnpomJWAYAON_uvSX64,672
153
153
  LOGS/Interfaces/IUniqueEntity.py,sha256=Ce1PyniuPdqzA-eMFyWW3bz6Wky4JR4yiL_Nl-c8NJ0,1933
154
154
  LOGS/Interfaces/__init__.py,sha256=tGykqoQeT2_HV-oLYVKJJ9Z0a_Li8_y3AOJjG1btKYw,172
155
- logs_py-1.11.dist-info/METADATA,sha256=Gwzcy3N0H_z5BKLq0WRdFF-E9WaawmVxj1skPXV89OQ,2003
156
- logs_py-1.11.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
157
- logs_py-1.11.dist-info/top_level.txt,sha256=Ckn2LiAmGaR7k3tdEnKAc04z_uboMD4gLreYghRNdCs,5
158
- logs_py-1.11.dist-info/RECORD,,
155
+ logs_py-1.13.dist-info/METADATA,sha256=7dTjP91fBr7yBmiQ8iIT8uAZnUbktPGx7oh6Aibyix4,2003
156
+ logs_py-1.13.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
157
+ logs_py-1.13.dist-info/top_level.txt,sha256=Ckn2LiAmGaR7k3tdEnKAc04z_uboMD4gLreYghRNdCs,5
158
+ logs_py-1.13.dist-info/RECORD,,
File without changes