ayon-python-api 1.0.2__tar.gz → 1.0.3__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. {ayon-python-api-1.0.2 → ayon-python-api-1.0.3}/PKG-INFO +1 -1
  2. {ayon-python-api-1.0.2 → ayon-python-api-1.0.3}/ayon_api/server_api.py +4 -1
  3. {ayon-python-api-1.0.2 → ayon-python-api-1.0.3}/ayon_api/version.py +1 -1
  4. {ayon-python-api-1.0.2 → ayon-python-api-1.0.3}/ayon_python_api.egg-info/PKG-INFO +1 -1
  5. {ayon-python-api-1.0.2 → ayon-python-api-1.0.3}/pyproject.toml +2 -2
  6. {ayon-python-api-1.0.2 → ayon-python-api-1.0.3}/LICENSE +0 -0
  7. {ayon-python-api-1.0.2 → ayon-python-api-1.0.3}/README.md +0 -0
  8. {ayon-python-api-1.0.2 → ayon-python-api-1.0.3}/ayon_api/__init__.py +0 -0
  9. {ayon-python-api-1.0.2 → ayon-python-api-1.0.3}/ayon_api/_api.py +0 -0
  10. {ayon-python-api-1.0.2 → ayon-python-api-1.0.3}/ayon_api/constants.py +0 -0
  11. {ayon-python-api-1.0.2 → ayon-python-api-1.0.3}/ayon_api/entity_hub.py +0 -0
  12. {ayon-python-api-1.0.2 → ayon-python-api-1.0.3}/ayon_api/events.py +0 -0
  13. {ayon-python-api-1.0.2 → ayon-python-api-1.0.3}/ayon_api/exceptions.py +0 -0
  14. {ayon-python-api-1.0.2 → ayon-python-api-1.0.3}/ayon_api/graphql.py +0 -0
  15. {ayon-python-api-1.0.2 → ayon-python-api-1.0.3}/ayon_api/graphql_queries.py +0 -0
  16. {ayon-python-api-1.0.2 → ayon-python-api-1.0.3}/ayon_api/operations.py +0 -0
  17. {ayon-python-api-1.0.2 → ayon-python-api-1.0.3}/ayon_api/utils.py +0 -0
  18. {ayon-python-api-1.0.2 → ayon-python-api-1.0.3}/ayon_python_api.egg-info/SOURCES.txt +0 -0
  19. {ayon-python-api-1.0.2 → ayon-python-api-1.0.3}/ayon_python_api.egg-info/dependency_links.txt +0 -0
  20. {ayon-python-api-1.0.2 → ayon-python-api-1.0.3}/ayon_python_api.egg-info/requires.txt +0 -0
  21. {ayon-python-api-1.0.2 → ayon-python-api-1.0.3}/ayon_python_api.egg-info/top_level.txt +0 -0
  22. {ayon-python-api-1.0.2 → ayon-python-api-1.0.3}/setup.cfg +0 -0
  23. {ayon-python-api-1.0.2 → ayon-python-api-1.0.3}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ayon-python-api
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: AYON Python API
5
5
  Home-page: https://github.com/ynput/ayon-python-api
6
6
  Author: ynput.io
@@ -3536,7 +3536,10 @@ class ServerAPI(object):
3536
3536
 
3537
3537
  use_rest = self._should_use_rest_project(fields)
3538
3538
  if use_rest:
3539
- return self.get_rest_project(project_name)
3539
+ project = self.get_rest_project(project_name)
3540
+ if own_attributes:
3541
+ fill_own_attribs(project)
3542
+ return project
3540
3543
 
3541
3544
  self._prepare_project_fields(fields, own_attributes)
3542
3545
 
@@ -1,2 +1,2 @@
1
1
  """Package declaring Python API for AYON server."""
2
- __version__ = "1.0.2"
2
+ __version__ = "1.0.3"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ayon-python-api
3
- Version: 1.0.2
3
+ Version: 1.0.3
4
4
  Summary: AYON Python API
5
5
  Home-page: https://github.com/ynput/ayon-python-api
6
6
  Author: ynput.io
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "ayon-python-api"
3
- version = "1.0.2"
3
+ version = "1.0.3"
4
4
  description = "AYON Python API"
5
5
  license = {file = "LICENSE"}
6
6
  readme = {file = "README.md", content-type = "text/markdown"}
@@ -31,7 +31,7 @@ build-backend = "poetry.core.masonry.api"
31
31
 
32
32
  [tool.poetry]
33
33
  name = "ayon-python-api"
34
- version = "1.0.2"
34
+ version = "1.0.3"
35
35
  description = "AYON Python API"
36
36
  authors = [
37
37
  "ynput.io <info@ynput.io>"
File without changes