ayon-python-api 1.0.11__tar.gz → 1.1.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 (25) hide show
  1. {ayon-python-api-1.0.11 → ayon-python-api-1.1.0}/PKG-INFO +1 -1
  2. {ayon-python-api-1.0.11 → ayon-python-api-1.1.0}/ayon_api/__init__.py +4 -0
  3. {ayon-python-api-1.0.11 → ayon-python-api-1.1.0}/ayon_api/_api.py +1046 -953
  4. {ayon-python-api-1.0.11 → ayon-python-api-1.1.0}/ayon_api/constants.py +1 -0
  5. {ayon-python-api-1.0.11 → ayon-python-api-1.1.0}/ayon_api/entity_hub.py +8 -70
  6. {ayon-python-api-1.0.11 → ayon-python-api-1.1.0}/ayon_api/graphql_queries.py +4 -0
  7. {ayon-python-api-1.0.11 → ayon-python-api-1.1.0}/ayon_api/operations.py +22 -4
  8. {ayon-python-api-1.0.11 → ayon-python-api-1.1.0}/ayon_api/server_api.py +1455 -1252
  9. ayon-python-api-1.1.0/ayon_api/typing.py +355 -0
  10. {ayon-python-api-1.0.11 → ayon-python-api-1.1.0}/ayon_api/utils.py +122 -74
  11. {ayon-python-api-1.0.11 → ayon-python-api-1.1.0}/ayon_api/version.py +1 -1
  12. {ayon-python-api-1.0.11 → ayon-python-api-1.1.0}/ayon_python_api.egg-info/PKG-INFO +1 -1
  13. {ayon-python-api-1.0.11 → ayon-python-api-1.1.0}/ayon_python_api.egg-info/SOURCES.txt +1 -1
  14. {ayon-python-api-1.0.11 → ayon-python-api-1.1.0}/ayon_python_api.egg-info/requires.txt +0 -1
  15. {ayon-python-api-1.0.11 → ayon-python-api-1.1.0}/pyproject.toml +2 -4
  16. ayon-python-api-1.0.11/ayon_api/_typing.py +0 -19
  17. {ayon-python-api-1.0.11 → ayon-python-api-1.1.0}/LICENSE +0 -0
  18. {ayon-python-api-1.0.11 → ayon-python-api-1.1.0}/README.md +0 -0
  19. {ayon-python-api-1.0.11 → ayon-python-api-1.1.0}/ayon_api/events.py +0 -0
  20. {ayon-python-api-1.0.11 → ayon-python-api-1.1.0}/ayon_api/exceptions.py +0 -0
  21. {ayon-python-api-1.0.11 → ayon-python-api-1.1.0}/ayon_api/graphql.py +0 -0
  22. {ayon-python-api-1.0.11 → ayon-python-api-1.1.0}/ayon_python_api.egg-info/dependency_links.txt +0 -0
  23. {ayon-python-api-1.0.11 → ayon-python-api-1.1.0}/ayon_python_api.egg-info/top_level.txt +0 -0
  24. {ayon-python-api-1.0.11 → ayon-python-api-1.1.0}/setup.cfg +0 -0
  25. {ayon-python-api-1.0.11 → ayon-python-api-1.1.0}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ayon-python-api
3
- Version: 1.0.11
3
+ Version: 1.1.0
4
4
  Summary: AYON Python API
5
5
  Home-page: https://github.com/ynput/ayon-python-api
6
6
  Author: ynput.io
@@ -122,6 +122,7 @@ from ._api import (
122
122
  get_project_anatomy_presets,
123
123
  get_default_anatomy_preset_name,
124
124
  get_project_anatomy_preset,
125
+ get_built_in_anatomy_preset,
125
126
  get_build_in_anatomy_preset,
126
127
  get_project_root_overrides,
127
128
  get_project_roots_by_site,
@@ -213,6 +214,7 @@ from ._api import (
213
214
  get_thumbnail_by_id,
214
215
  get_thumbnail,
215
216
  get_folder_thumbnail,
217
+ get_task_thumbnail,
216
218
  get_version_thumbnail,
217
219
  get_workfile_thumbnail,
218
220
  create_thumbnail,
@@ -366,6 +368,7 @@ __all__ = (
366
368
  "get_project_anatomy_presets",
367
369
  "get_default_anatomy_preset_name",
368
370
  "get_project_anatomy_preset",
371
+ "get_built_in_anatomy_preset",
369
372
  "get_build_in_anatomy_preset",
370
373
  "get_project_root_overrides",
371
374
  "get_project_roots_by_site",
@@ -457,6 +460,7 @@ __all__ = (
457
460
  "get_thumbnail_by_id",
458
461
  "get_thumbnail",
459
462
  "get_folder_thumbnail",
463
+ "get_task_thumbnail",
460
464
  "get_version_thumbnail",
461
465
  "get_workfile_thumbnail",
462
466
  "create_thumbnail",