ayon-python-api 1.2.20__py3-none-any.whl → 1.2.22__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.
- ayon_api/__init__.py +16 -0
- ayon_api/_api.py +369 -158
- ayon_api/_api_helpers/links.py +1 -5
- ayon_api/_api_helpers/lists.py +223 -2
- ayon_api/_api_helpers/projects.py +18 -2
- ayon_api/graphql.py +13 -13
- ayon_api/server_api.py +495 -401
- ayon_api/typing.py +43 -35
- ayon_api/utils.py +128 -13
- ayon_api/version.py +1 -1
- {ayon_python_api-1.2.20.dist-info → ayon_python_api-1.2.22.dist-info}/METADATA +1 -1
- {ayon_python_api-1.2.20.dist-info → ayon_python_api-1.2.22.dist-info}/RECORD +15 -15
- {ayon_python_api-1.2.20.dist-info → ayon_python_api-1.2.22.dist-info}/WHEEL +0 -0
- {ayon_python_api-1.2.20.dist-info → ayon_python_api-1.2.22.dist-info}/licenses/LICENSE +0 -0
- {ayon_python_api-1.2.20.dist-info → ayon_python_api-1.2.22.dist-info}/top_level.txt +0 -0
ayon_api/__init__.py
CHANGED
|
@@ -31,6 +31,7 @@ from ._api import (
|
|
|
31
31
|
set_environments,
|
|
32
32
|
get_server_api_connection,
|
|
33
33
|
get_default_settings_variant,
|
|
34
|
+
as_username,
|
|
34
35
|
get_base_url,
|
|
35
36
|
get_rest_url,
|
|
36
37
|
get_ssl_verify,
|
|
@@ -298,6 +299,13 @@ from ._api import (
|
|
|
298
299
|
update_entity_list_items,
|
|
299
300
|
update_entity_list_item,
|
|
300
301
|
delete_entity_list_item,
|
|
302
|
+
get_entity_list_entities,
|
|
303
|
+
get_entity_list_folders_raw,
|
|
304
|
+
get_entity_list_folders,
|
|
305
|
+
create_entity_list_folder,
|
|
306
|
+
update_entity_list_folder,
|
|
307
|
+
delete_entity_list_folder,
|
|
308
|
+
set_entity_list_folders_order,
|
|
301
309
|
get_thumbnail_by_id,
|
|
302
310
|
get_thumbnail,
|
|
303
311
|
get_folder_thumbnail,
|
|
@@ -342,6 +350,7 @@ __all__ = (
|
|
|
342
350
|
"set_environments",
|
|
343
351
|
"get_server_api_connection",
|
|
344
352
|
"get_default_settings_variant",
|
|
353
|
+
"as_username",
|
|
345
354
|
"get_base_url",
|
|
346
355
|
"get_rest_url",
|
|
347
356
|
"get_ssl_verify",
|
|
@@ -609,6 +618,13 @@ __all__ = (
|
|
|
609
618
|
"update_entity_list_items",
|
|
610
619
|
"update_entity_list_item",
|
|
611
620
|
"delete_entity_list_item",
|
|
621
|
+
"get_entity_list_entities",
|
|
622
|
+
"get_entity_list_folders_raw",
|
|
623
|
+
"get_entity_list_folders",
|
|
624
|
+
"create_entity_list_folder",
|
|
625
|
+
"update_entity_list_folder",
|
|
626
|
+
"delete_entity_list_folder",
|
|
627
|
+
"set_entity_list_folders_order",
|
|
612
628
|
"get_thumbnail_by_id",
|
|
613
629
|
"get_thumbnail",
|
|
614
630
|
"get_folder_thumbnail",
|