ayon-python-api 1.0.10__tar.gz → 1.0.12__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.
- {ayon-python-api-1.0.10 → ayon-python-api-1.0.12}/PKG-INFO +1 -1
- {ayon-python-api-1.0.10 → ayon-python-api-1.0.12}/ayon_api/__init__.py +28 -2
- {ayon-python-api-1.0.10 → ayon-python-api-1.0.12}/ayon_api/_api.py +2754 -461
- {ayon-python-api-1.0.10 → ayon-python-api-1.0.12}/ayon_api/constants.py +11 -0
- {ayon-python-api-1.0.10 → ayon-python-api-1.0.12}/ayon_api/entity_hub.py +1093 -478
- {ayon-python-api-1.0.10 → ayon-python-api-1.0.12}/ayon_api/graphql.py +88 -13
- {ayon-python-api-1.0.10 → ayon-python-api-1.0.12}/ayon_api/graphql_queries.py +51 -4
- {ayon-python-api-1.0.10 → ayon-python-api-1.0.12}/ayon_api/server_api.py +1861 -1214
- ayon-python-api-1.0.12/ayon_api/typing.py +355 -0
- {ayon-python-api-1.0.10 → ayon-python-api-1.0.12}/ayon_api/utils.py +162 -77
- {ayon-python-api-1.0.10 → ayon-python-api-1.0.12}/ayon_api/version.py +1 -1
- {ayon-python-api-1.0.10 → ayon-python-api-1.0.12}/ayon_python_api.egg-info/PKG-INFO +1 -1
- {ayon-python-api-1.0.10 → ayon-python-api-1.0.12}/ayon_python_api.egg-info/SOURCES.txt +1 -0
- {ayon-python-api-1.0.10 → ayon-python-api-1.0.12}/pyproject.toml +2 -2
- {ayon-python-api-1.0.10 → ayon-python-api-1.0.12}/LICENSE +0 -0
- {ayon-python-api-1.0.10 → ayon-python-api-1.0.12}/README.md +0 -0
- {ayon-python-api-1.0.10 → ayon-python-api-1.0.12}/ayon_api/events.py +0 -0
- {ayon-python-api-1.0.10 → ayon-python-api-1.0.12}/ayon_api/exceptions.py +0 -0
- {ayon-python-api-1.0.10 → ayon-python-api-1.0.12}/ayon_api/operations.py +0 -0
- {ayon-python-api-1.0.10 → ayon-python-api-1.0.12}/ayon_python_api.egg-info/dependency_links.txt +0 -0
- {ayon-python-api-1.0.10 → ayon-python-api-1.0.12}/ayon_python_api.egg-info/requires.txt +0 -0
- {ayon-python-api-1.0.10 → ayon-python-api-1.0.12}/ayon_python_api.egg-info/top_level.txt +0 -0
- {ayon-python-api-1.0.10 → ayon-python-api-1.0.12}/setup.cfg +0 -0
- {ayon-python-api-1.0.10 → ayon-python-api-1.0.12}/setup.py +0 -0
|
@@ -9,6 +9,7 @@ from .utils import (
|
|
|
9
9
|
login_to_server,
|
|
10
10
|
take_web_action_event,
|
|
11
11
|
abort_web_action_event,
|
|
12
|
+
SortOrder,
|
|
12
13
|
)
|
|
13
14
|
from .server_api import (
|
|
14
15
|
RequestTypes,
|
|
@@ -29,6 +30,7 @@ from ._api import (
|
|
|
29
30
|
change_token,
|
|
30
31
|
set_environments,
|
|
31
32
|
get_server_api_connection,
|
|
33
|
+
get_default_settings_variant,
|
|
32
34
|
get_base_url,
|
|
33
35
|
get_rest_url,
|
|
34
36
|
get_ssl_verify,
|
|
@@ -44,10 +46,11 @@ from ._api import (
|
|
|
44
46
|
set_site_id,
|
|
45
47
|
get_client_version,
|
|
46
48
|
set_client_version,
|
|
47
|
-
get_default_settings_variant,
|
|
48
49
|
set_default_settings_variant,
|
|
49
50
|
get_sender,
|
|
50
51
|
set_sender,
|
|
52
|
+
get_sender_type,
|
|
53
|
+
set_sender_type,
|
|
51
54
|
get_info,
|
|
52
55
|
get_server_version,
|
|
53
56
|
get_server_version_tuple,
|
|
@@ -68,7 +71,13 @@ from ._api import (
|
|
|
68
71
|
get_events,
|
|
69
72
|
update_event,
|
|
70
73
|
dispatch_event,
|
|
74
|
+
delete_event,
|
|
71
75
|
enroll_event_job,
|
|
76
|
+
get_activities,
|
|
77
|
+
get_activity_by_id,
|
|
78
|
+
create_activity,
|
|
79
|
+
update_activity,
|
|
80
|
+
delete_activity,
|
|
72
81
|
download_file_to_stream,
|
|
73
82
|
download_file,
|
|
74
83
|
upload_file_from_stream,
|
|
@@ -102,6 +111,8 @@ from ._api import (
|
|
|
102
111
|
delete_dependency_package,
|
|
103
112
|
download_dependency_package,
|
|
104
113
|
upload_dependency_package,
|
|
114
|
+
delete_addon,
|
|
115
|
+
delete_addon_version,
|
|
105
116
|
upload_addon_zip,
|
|
106
117
|
get_bundles,
|
|
107
118
|
create_bundle,
|
|
@@ -111,6 +122,7 @@ from ._api import (
|
|
|
111
122
|
get_project_anatomy_presets,
|
|
112
123
|
get_default_anatomy_preset_name,
|
|
113
124
|
get_project_anatomy_preset,
|
|
125
|
+
get_built_in_anatomy_preset,
|
|
114
126
|
get_build_in_anatomy_preset,
|
|
115
127
|
get_project_root_overrides,
|
|
116
128
|
get_project_roots_by_site,
|
|
@@ -229,6 +241,7 @@ from ._api import (
|
|
|
229
241
|
get_representations_links,
|
|
230
242
|
get_representation_links,
|
|
231
243
|
send_batch_operations,
|
|
244
|
+
send_activities_batch_operations,
|
|
232
245
|
)
|
|
233
246
|
|
|
234
247
|
|
|
@@ -244,6 +257,7 @@ __all__ = (
|
|
|
244
257
|
"login_to_server",
|
|
245
258
|
"take_web_action_event",
|
|
246
259
|
"abort_web_action_event",
|
|
260
|
+
"SortOrder",
|
|
247
261
|
|
|
248
262
|
"RequestTypes",
|
|
249
263
|
"ServerAPI",
|
|
@@ -261,6 +275,7 @@ __all__ = (
|
|
|
261
275
|
"change_token",
|
|
262
276
|
"set_environments",
|
|
263
277
|
"get_server_api_connection",
|
|
278
|
+
"get_default_settings_variant",
|
|
264
279
|
"get_base_url",
|
|
265
280
|
"get_rest_url",
|
|
266
281
|
"get_ssl_verify",
|
|
@@ -276,10 +291,11 @@ __all__ = (
|
|
|
276
291
|
"set_site_id",
|
|
277
292
|
"get_client_version",
|
|
278
293
|
"set_client_version",
|
|
279
|
-
"get_default_settings_variant",
|
|
280
294
|
"set_default_settings_variant",
|
|
281
295
|
"get_sender",
|
|
282
296
|
"set_sender",
|
|
297
|
+
"get_sender_type",
|
|
298
|
+
"set_sender_type",
|
|
283
299
|
"get_info",
|
|
284
300
|
"get_server_version",
|
|
285
301
|
"get_server_version_tuple",
|
|
@@ -300,7 +316,13 @@ __all__ = (
|
|
|
300
316
|
"get_events",
|
|
301
317
|
"update_event",
|
|
302
318
|
"dispatch_event",
|
|
319
|
+
"delete_event",
|
|
303
320
|
"enroll_event_job",
|
|
321
|
+
"get_activities",
|
|
322
|
+
"get_activity_by_id",
|
|
323
|
+
"create_activity",
|
|
324
|
+
"update_activity",
|
|
325
|
+
"delete_activity",
|
|
304
326
|
"download_file_to_stream",
|
|
305
327
|
"download_file",
|
|
306
328
|
"upload_file_from_stream",
|
|
@@ -334,6 +356,8 @@ __all__ = (
|
|
|
334
356
|
"delete_dependency_package",
|
|
335
357
|
"download_dependency_package",
|
|
336
358
|
"upload_dependency_package",
|
|
359
|
+
"delete_addon",
|
|
360
|
+
"delete_addon_version",
|
|
337
361
|
"upload_addon_zip",
|
|
338
362
|
"get_bundles",
|
|
339
363
|
"create_bundle",
|
|
@@ -343,6 +367,7 @@ __all__ = (
|
|
|
343
367
|
"get_project_anatomy_presets",
|
|
344
368
|
"get_default_anatomy_preset_name",
|
|
345
369
|
"get_project_anatomy_preset",
|
|
370
|
+
"get_built_in_anatomy_preset",
|
|
346
371
|
"get_build_in_anatomy_preset",
|
|
347
372
|
"get_project_root_overrides",
|
|
348
373
|
"get_project_roots_by_site",
|
|
@@ -461,4 +486,5 @@ __all__ = (
|
|
|
461
486
|
"get_representations_links",
|
|
462
487
|
"get_representation_links",
|
|
463
488
|
"send_batch_operations",
|
|
489
|
+
"send_activities_batch_operations",
|
|
464
490
|
)
|