pyPreservica 2.3.3__tar.gz → 2.4.0__tar.gz

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.
Files changed (23) hide show
  1. {pyPreservica-2.3.3 → pyPreservica-2.4.0}/PKG-INFO +1 -1
  2. {pyPreservica-2.3.3 → pyPreservica-2.4.0}/pyPreservica/__init__.py +1 -1
  3. {pyPreservica-2.3.3 → pyPreservica-2.4.0}/pyPreservica/common.py +2 -2
  4. {pyPreservica-2.3.3 → pyPreservica-2.4.0}/pyPreservica/webHooksAPI.py +1 -0
  5. {pyPreservica-2.3.3 → pyPreservica-2.4.0}/pyPreservica.egg-info/PKG-INFO +1 -1
  6. {pyPreservica-2.3.3 → pyPreservica-2.4.0}/setup.py +1 -1
  7. {pyPreservica-2.3.3 → pyPreservica-2.4.0}/LICENSE.txt +0 -0
  8. {pyPreservica-2.3.3 → pyPreservica-2.4.0}/README.md +0 -0
  9. {pyPreservica-2.3.3 → pyPreservica-2.4.0}/pyPreservica/adminAPI.py +0 -0
  10. {pyPreservica-2.3.3 → pyPreservica-2.4.0}/pyPreservica/authorityAPI.py +0 -0
  11. {pyPreservica-2.3.3 → pyPreservica-2.4.0}/pyPreservica/contentAPI.py +0 -0
  12. {pyPreservica-2.3.3 → pyPreservica-2.4.0}/pyPreservica/entityAPI.py +0 -0
  13. {pyPreservica-2.3.3 → pyPreservica-2.4.0}/pyPreservica/monitorAPI.py +0 -0
  14. {pyPreservica-2.3.3 → pyPreservica-2.4.0}/pyPreservica/opex.py +0 -0
  15. {pyPreservica-2.3.3 → pyPreservica-2.4.0}/pyPreservica/parAPI.py +0 -0
  16. {pyPreservica-2.3.3 → pyPreservica-2.4.0}/pyPreservica/retentionAPI.py +0 -0
  17. {pyPreservica-2.3.3 → pyPreservica-2.4.0}/pyPreservica/uploadAPI.py +0 -0
  18. {pyPreservica-2.3.3 → pyPreservica-2.4.0}/pyPreservica/workflowAPI.py +0 -0
  19. {pyPreservica-2.3.3 → pyPreservica-2.4.0}/pyPreservica.egg-info/SOURCES.txt +0 -0
  20. {pyPreservica-2.3.3 → pyPreservica-2.4.0}/pyPreservica.egg-info/dependency_links.txt +0 -0
  21. {pyPreservica-2.3.3 → pyPreservica-2.4.0}/pyPreservica.egg-info/requires.txt +0 -0
  22. {pyPreservica-2.3.3 → pyPreservica-2.4.0}/pyPreservica.egg-info/top_level.txt +0 -0
  23. {pyPreservica-2.3.3 → pyPreservica-2.4.0}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyPreservica
3
- Version: 2.3.3
3
+ Version: 2.4.0
4
4
  Summary: Python library for the Preservica API
5
5
  Home-page: https://pypreservica.readthedocs.io/
6
6
  Author: James Carr
@@ -23,6 +23,6 @@ from .authorityAPI import AuthorityAPI, Table
23
23
  __author__ = "James Carr (drjamescarr@gmail.com)"
24
24
 
25
25
  # Version of the Preservica API package
26
- __version__ = "2.3.3"
26
+ __version__ = "2.4.0"
27
27
 
28
28
  __license__ = "Apache License Version 2.0"
@@ -742,7 +742,7 @@ class AuthenticatedAPI:
742
742
  RuntimeError(request.status_code, "version number failed")
743
743
 
744
744
  def __str__(self):
745
- return f"pyPreservica version: {pyPreservica.__version__} (Preservica 6.10 Compatible) " \
745
+ return f"pyPreservica version: {pyPreservica.__version__} (Preservica 6.12 Compatible) " \
746
746
  f"Connected to: {self.server} Preservica version: {self.version} as {self.username} " \
747
747
  f"in tenancy {self.tenant}"
748
748
 
@@ -769,7 +769,7 @@ class AuthenticatedAPI:
769
769
  logger.error(msg)
770
770
  logger.error(response.status_code)
771
771
  logger.error(str(response.content))
772
- RuntimeError(response.status_code, "Could not generate valid manager approval password")
772
+ RuntimeError(response.status_code, "Could not generate valid manager approval token")
773
773
 
774
774
  def __token__(self):
775
775
  logger.debug("Token Expired Requesting New Token")
@@ -73,6 +73,7 @@ class TriggerType(Enum):
73
73
  """
74
74
  MOVED = "MOVED"
75
75
  INDEXED = "FULL_TEXT_INDEXED"
76
+ SECURITY_CHANGED = "CHANGED_SECURITY_DESCRIPTOR"
76
77
 
77
78
 
78
79
  class WebHooksAPI(AuthenticatedAPI):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyPreservica
3
- Version: 2.3.3
3
+ Version: 2.4.0
4
4
  Summary: Python library for the Preservica API
5
5
  Home-page: https://pypreservica.readthedocs.io/
6
6
  Author: James Carr
@@ -21,7 +21,7 @@ if sys.argv[-1] == 'publish':
21
21
  # This call to setup() does all the work
22
22
  setup(
23
23
  name=PKG,
24
- version="2.3.3",
24
+ version="2.4.0",
25
25
  description="Python library for the Preservica API",
26
26
  long_description=README,
27
27
  long_description_content_type="text/markdown",
File without changes
File without changes
File without changes