ayon-python-api 1.1.4__tar.gz → 1.2.1__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.1.4 → ayon-python-api-1.2.1}/PKG-INFO +1 -1
- {ayon-python-api-1.1.4 → ayon-python-api-1.2.1}/ayon_api/__init__.py +138 -132
- {ayon-python-api-1.1.4 → ayon-python-api-1.2.1}/ayon_api/_api.py +3712 -3575
- ayon-python-api-1.2.1/ayon_api/_api_helpers/__init__.py +42 -0
- ayon-python-api-1.1.4/ayon_api/_actions.py → ayon-python-api-1.2.1/ayon_api/_api_helpers/actions.py +51 -48
- ayon-python-api-1.2.1/ayon_api/_api_helpers/activities.py +295 -0
- ayon-python-api-1.2.1/ayon_api/_api_helpers/attributes.py +159 -0
- ayon-python-api-1.2.1/ayon_api/_api_helpers/base.py +130 -0
- ayon-python-api-1.2.1/ayon_api/_api_helpers/bundles_addons.py +885 -0
- ayon-python-api-1.2.1/ayon_api/_api_helpers/dependency_packages.py +236 -0
- ayon-python-api-1.2.1/ayon_api/_api_helpers/events.py +440 -0
- ayon-python-api-1.2.1/ayon_api/_api_helpers/folders.py +638 -0
- ayon-python-api-1.2.1/ayon_api/_api_helpers/installers.py +174 -0
- ayon-python-api-1.2.1/ayon_api/_api_helpers/links.py +661 -0
- ayon-python-api-1.1.4/ayon_api/_lists.py → ayon-python-api-1.2.1/ayon_api/_api_helpers/lists.py +40 -37
- ayon-python-api-1.2.1/ayon_api/_api_helpers/products.py +504 -0
- ayon-python-api-1.2.1/ayon_api/_api_helpers/projects.py +737 -0
- ayon-python-api-1.2.1/ayon_api/_api_helpers/representations.py +747 -0
- ayon-python-api-1.2.1/ayon_api/_api_helpers/secrets.py +81 -0
- ayon-python-api-1.2.1/ayon_api/_api_helpers/tasks.py +515 -0
- ayon-python-api-1.2.1/ayon_api/_api_helpers/thumbnails.py +307 -0
- ayon-python-api-1.2.1/ayon_api/_api_helpers/versions.py +640 -0
- ayon-python-api-1.2.1/ayon_api/_api_helpers/workfiles.py +265 -0
- {ayon-python-api-1.1.4 → ayon-python-api-1.2.1}/ayon_api/constants.py +8 -0
- {ayon-python-api-1.1.4 → ayon-python-api-1.2.1}/ayon_api/entity_hub.py +568 -452
- {ayon-python-api-1.1.4 → ayon-python-api-1.2.1}/ayon_api/exceptions.py +13 -0
- {ayon-python-api-1.1.4 → ayon-python-api-1.2.1}/ayon_api/graphql.py +156 -116
- {ayon-python-api-1.1.4 → ayon-python-api-1.2.1}/ayon_api/graphql_queries.py +5 -3
- {ayon-python-api-1.1.4 → ayon-python-api-1.2.1}/ayon_api/operations.py +359 -306
- ayon-python-api-1.2.1/ayon_api/server_api.py +2039 -0
- {ayon-python-api-1.1.4 → ayon-python-api-1.2.1}/ayon_api/typing.py +146 -65
- {ayon-python-api-1.1.4 → ayon-python-api-1.2.1}/ayon_api/utils.py +222 -21
- {ayon-python-api-1.1.4 → ayon-python-api-1.2.1}/ayon_api/version.py +1 -1
- {ayon-python-api-1.1.4 → ayon-python-api-1.2.1}/ayon_python_api.egg-info/PKG-INFO +1 -1
- ayon-python-api-1.2.1/ayon_python_api.egg-info/SOURCES.txt +42 -0
- {ayon-python-api-1.1.4 → ayon-python-api-1.2.1}/pyproject.toml +4 -3
- {ayon-python-api-1.1.4 → ayon-python-api-1.2.1}/setup.py +1 -1
- ayon-python-api-1.1.4/ayon_api/_base.py +0 -46
- ayon-python-api-1.1.4/ayon_api/server_api.py +0 -9093
- ayon-python-api-1.1.4/ayon_python_api.egg-info/SOURCES.txt +0 -25
- {ayon-python-api-1.1.4 → ayon-python-api-1.2.1}/LICENSE +0 -0
- {ayon-python-api-1.1.4 → ayon-python-api-1.2.1}/README.md +0 -0
- {ayon-python-api-1.1.4 → ayon-python-api-1.2.1}/ayon_api/events.py +0 -0
- {ayon-python-api-1.1.4 → ayon-python-api-1.2.1}/ayon_python_api.egg-info/dependency_links.txt +0 -0
- {ayon-python-api-1.1.4 → ayon-python-api-1.2.1}/ayon_python_api.egg-info/requires.txt +0 -0
- {ayon-python-api-1.1.4 → ayon-python-api-1.2.1}/ayon_python_api.egg-info/top_level.txt +0 -0
- {ayon-python-api-1.1.4 → ayon-python-api-1.2.1}/setup.cfg +0 -0
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
from .version import __version__
|
|
2
2
|
from .utils import (
|
|
3
|
+
RequestTypes,
|
|
3
4
|
TransferProgress,
|
|
4
5
|
slugify_string,
|
|
5
6
|
create_dependency_package_basename,
|
|
@@ -12,7 +13,6 @@ from .utils import (
|
|
|
12
13
|
SortOrder,
|
|
13
14
|
)
|
|
14
15
|
from .server_api import (
|
|
15
|
-
RequestTypes,
|
|
16
16
|
ServerAPI,
|
|
17
17
|
)
|
|
18
18
|
|
|
@@ -67,17 +67,6 @@ from ._api import (
|
|
|
67
67
|
patch,
|
|
68
68
|
get,
|
|
69
69
|
delete,
|
|
70
|
-
get_event,
|
|
71
|
-
get_events,
|
|
72
|
-
update_event,
|
|
73
|
-
dispatch_event,
|
|
74
|
-
delete_event,
|
|
75
|
-
enroll_event_job,
|
|
76
|
-
get_activities,
|
|
77
|
-
get_activity_by_id,
|
|
78
|
-
create_activity,
|
|
79
|
-
update_activity,
|
|
80
|
-
delete_activity,
|
|
81
70
|
download_file_to_stream,
|
|
82
71
|
download_file,
|
|
83
72
|
upload_file_from_stream,
|
|
@@ -88,17 +77,9 @@ from ._api import (
|
|
|
88
77
|
get_graphql_schema,
|
|
89
78
|
get_server_schema,
|
|
90
79
|
get_schemas,
|
|
91
|
-
get_attributes_schema,
|
|
92
|
-
reset_attributes_schema,
|
|
93
|
-
set_attribute_config,
|
|
94
|
-
remove_attribute_config,
|
|
95
|
-
get_attributes_for_type,
|
|
96
|
-
get_attributes_fields_for_type,
|
|
97
80
|
get_default_fields_for_type,
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
get_addon_url,
|
|
101
|
-
download_addon_private_file,
|
|
81
|
+
get_rest_entity_by_id,
|
|
82
|
+
send_batch_operations,
|
|
102
83
|
get_installers,
|
|
103
84
|
create_installer,
|
|
104
85
|
update_installer,
|
|
@@ -111,25 +92,34 @@ from ._api import (
|
|
|
111
92
|
delete_dependency_package,
|
|
112
93
|
download_dependency_package,
|
|
113
94
|
upload_dependency_package,
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
95
|
+
get_secrets,
|
|
96
|
+
get_secret,
|
|
97
|
+
save_secret,
|
|
98
|
+
delete_secret,
|
|
99
|
+
get_actions,
|
|
100
|
+
trigger_action,
|
|
101
|
+
get_action_config,
|
|
102
|
+
set_action_config,
|
|
103
|
+
take_action,
|
|
104
|
+
abort_action,
|
|
105
|
+
get_activities,
|
|
106
|
+
get_activity_by_id,
|
|
107
|
+
create_activity,
|
|
108
|
+
update_activity,
|
|
109
|
+
delete_activity,
|
|
110
|
+
send_activities_batch_operations,
|
|
117
111
|
get_bundles,
|
|
118
112
|
create_bundle,
|
|
119
113
|
update_bundle,
|
|
120
114
|
check_bundle_compatibility,
|
|
121
115
|
delete_bundle,
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
get_project_root_overrides_by_site_id,
|
|
130
|
-
get_project_roots_for_site,
|
|
131
|
-
get_project_roots_by_site_id,
|
|
132
|
-
get_project_roots_by_platform,
|
|
116
|
+
get_addon_endpoint,
|
|
117
|
+
get_addons_info,
|
|
118
|
+
get_addon_url,
|
|
119
|
+
delete_addon,
|
|
120
|
+
delete_addon_version,
|
|
121
|
+
upload_addon_zip,
|
|
122
|
+
download_addon_private_file,
|
|
133
123
|
get_addon_settings_schema,
|
|
134
124
|
get_addon_site_settings_schema,
|
|
135
125
|
get_addon_studio_settings,
|
|
@@ -140,22 +130,40 @@ from ._api import (
|
|
|
140
130
|
get_addons_studio_settings,
|
|
141
131
|
get_addons_project_settings,
|
|
142
132
|
get_addons_settings,
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
133
|
+
get_event,
|
|
134
|
+
get_events,
|
|
135
|
+
update_event,
|
|
136
|
+
dispatch_event,
|
|
137
|
+
create_event,
|
|
138
|
+
delete_event,
|
|
139
|
+
enroll_event_job,
|
|
140
|
+
get_attributes_schema,
|
|
141
|
+
reset_attributes_schema,
|
|
142
|
+
set_attribute_config,
|
|
143
|
+
remove_attribute_config,
|
|
144
|
+
get_attributes_for_type,
|
|
145
|
+
get_attributes_fields_for_type,
|
|
146
|
+
get_project_anatomy_presets,
|
|
147
|
+
get_default_anatomy_preset_name,
|
|
148
|
+
get_project_anatomy_preset,
|
|
149
|
+
get_built_in_anatomy_preset,
|
|
150
|
+
get_build_in_anatomy_preset,
|
|
147
151
|
get_rest_project,
|
|
148
152
|
get_rest_projects,
|
|
149
|
-
get_rest_entity_by_id,
|
|
150
|
-
get_rest_folder,
|
|
151
|
-
get_rest_folders,
|
|
152
|
-
get_rest_task,
|
|
153
|
-
get_rest_product,
|
|
154
|
-
get_rest_version,
|
|
155
|
-
get_rest_representation,
|
|
156
153
|
get_project_names,
|
|
157
154
|
get_projects,
|
|
158
155
|
get_project,
|
|
156
|
+
create_project,
|
|
157
|
+
update_project,
|
|
158
|
+
delete_project,
|
|
159
|
+
get_project_root_overrides,
|
|
160
|
+
get_project_roots_by_site,
|
|
161
|
+
get_project_root_overrides_by_site_id,
|
|
162
|
+
get_project_roots_for_site,
|
|
163
|
+
get_project_roots_by_site_id,
|
|
164
|
+
get_project_roots_by_platform,
|
|
165
|
+
get_rest_folder,
|
|
166
|
+
get_rest_folders,
|
|
159
167
|
get_folders_hierarchy,
|
|
160
168
|
get_folders_rest,
|
|
161
169
|
get_folders,
|
|
@@ -166,6 +174,7 @@ from ._api import (
|
|
|
166
174
|
create_folder,
|
|
167
175
|
update_folder,
|
|
168
176
|
delete_folder,
|
|
177
|
+
get_rest_task,
|
|
169
178
|
get_tasks,
|
|
170
179
|
get_task_by_name,
|
|
171
180
|
get_task_by_id,
|
|
@@ -175,6 +184,7 @@ from ._api import (
|
|
|
175
184
|
create_task,
|
|
176
185
|
update_task,
|
|
177
186
|
delete_task,
|
|
187
|
+
get_rest_product,
|
|
178
188
|
get_products,
|
|
179
189
|
get_product_by_id,
|
|
180
190
|
get_product_by_name,
|
|
@@ -184,6 +194,7 @@ from ._api import (
|
|
|
184
194
|
create_product,
|
|
185
195
|
update_product,
|
|
186
196
|
delete_product,
|
|
197
|
+
get_rest_version,
|
|
187
198
|
get_versions,
|
|
188
199
|
get_version_by_id,
|
|
189
200
|
get_version_by_name,
|
|
@@ -197,6 +208,7 @@ from ._api import (
|
|
|
197
208
|
create_version,
|
|
198
209
|
update_version,
|
|
199
210
|
delete_version,
|
|
211
|
+
get_rest_representation,
|
|
200
212
|
get_representations,
|
|
201
213
|
get_representation_by_id,
|
|
202
214
|
get_representation_by_name,
|
|
@@ -211,17 +223,8 @@ from ._api import (
|
|
|
211
223
|
get_workfiles_info,
|
|
212
224
|
get_workfile_info,
|
|
213
225
|
get_workfile_info_by_id,
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
get_folder_thumbnail,
|
|
217
|
-
get_task_thumbnail,
|
|
218
|
-
get_version_thumbnail,
|
|
219
|
-
get_workfile_thumbnail,
|
|
220
|
-
create_thumbnail,
|
|
221
|
-
update_thumbnail,
|
|
222
|
-
create_project,
|
|
223
|
-
update_project,
|
|
224
|
-
delete_project,
|
|
226
|
+
delete_workfile_info,
|
|
227
|
+
update_workfile_info,
|
|
225
228
|
get_full_link_type_name,
|
|
226
229
|
get_link_types,
|
|
227
230
|
get_link_type,
|
|
@@ -241,14 +244,6 @@ from ._api import (
|
|
|
241
244
|
get_version_links,
|
|
242
245
|
get_representations_links,
|
|
243
246
|
get_representation_links,
|
|
244
|
-
send_batch_operations,
|
|
245
|
-
send_activities_batch_operations,
|
|
246
|
-
get_actions,
|
|
247
|
-
trigger_action,
|
|
248
|
-
get_action_config,
|
|
249
|
-
set_action_config,
|
|
250
|
-
take_action,
|
|
251
|
-
abort_action,
|
|
252
247
|
get_entity_lists,
|
|
253
248
|
get_entity_list_rest,
|
|
254
249
|
get_entity_list_by_id,
|
|
@@ -261,12 +256,21 @@ from ._api import (
|
|
|
261
256
|
update_entity_list_items,
|
|
262
257
|
update_entity_list_item,
|
|
263
258
|
delete_entity_list_item,
|
|
259
|
+
get_thumbnail_by_id,
|
|
260
|
+
get_thumbnail,
|
|
261
|
+
get_folder_thumbnail,
|
|
262
|
+
get_task_thumbnail,
|
|
263
|
+
get_version_thumbnail,
|
|
264
|
+
get_workfile_thumbnail,
|
|
265
|
+
create_thumbnail,
|
|
266
|
+
update_thumbnail,
|
|
264
267
|
)
|
|
265
268
|
|
|
266
269
|
|
|
267
270
|
__all__ = (
|
|
268
271
|
"__version__",
|
|
269
272
|
|
|
273
|
+
"RequestTypes",
|
|
270
274
|
"TransferProgress",
|
|
271
275
|
"slugify_string",
|
|
272
276
|
"create_dependency_package_basename",
|
|
@@ -278,7 +282,6 @@ __all__ = (
|
|
|
278
282
|
"abort_web_action_event",
|
|
279
283
|
"SortOrder",
|
|
280
284
|
|
|
281
|
-
"RequestTypes",
|
|
282
285
|
"ServerAPI",
|
|
283
286
|
|
|
284
287
|
"GlobalServerAPI",
|
|
@@ -331,17 +334,6 @@ __all__ = (
|
|
|
331
334
|
"patch",
|
|
332
335
|
"get",
|
|
333
336
|
"delete",
|
|
334
|
-
"get_event",
|
|
335
|
-
"get_events",
|
|
336
|
-
"update_event",
|
|
337
|
-
"dispatch_event",
|
|
338
|
-
"delete_event",
|
|
339
|
-
"enroll_event_job",
|
|
340
|
-
"get_activities",
|
|
341
|
-
"get_activity_by_id",
|
|
342
|
-
"create_activity",
|
|
343
|
-
"update_activity",
|
|
344
|
-
"delete_activity",
|
|
345
337
|
"download_file_to_stream",
|
|
346
338
|
"download_file",
|
|
347
339
|
"upload_file_from_stream",
|
|
@@ -352,17 +344,9 @@ __all__ = (
|
|
|
352
344
|
"get_graphql_schema",
|
|
353
345
|
"get_server_schema",
|
|
354
346
|
"get_schemas",
|
|
355
|
-
"get_attributes_schema",
|
|
356
|
-
"reset_attributes_schema",
|
|
357
|
-
"set_attribute_config",
|
|
358
|
-
"remove_attribute_config",
|
|
359
|
-
"get_attributes_for_type",
|
|
360
|
-
"get_attributes_fields_for_type",
|
|
361
347
|
"get_default_fields_for_type",
|
|
362
|
-
"
|
|
363
|
-
"
|
|
364
|
-
"get_addon_url",
|
|
365
|
-
"download_addon_private_file",
|
|
348
|
+
"get_rest_entity_by_id",
|
|
349
|
+
"send_batch_operations",
|
|
366
350
|
"get_installers",
|
|
367
351
|
"create_installer",
|
|
368
352
|
"update_installer",
|
|
@@ -375,25 +359,34 @@ __all__ = (
|
|
|
375
359
|
"delete_dependency_package",
|
|
376
360
|
"download_dependency_package",
|
|
377
361
|
"upload_dependency_package",
|
|
378
|
-
"
|
|
379
|
-
"
|
|
380
|
-
"
|
|
362
|
+
"get_secrets",
|
|
363
|
+
"get_secret",
|
|
364
|
+
"save_secret",
|
|
365
|
+
"delete_secret",
|
|
366
|
+
"get_actions",
|
|
367
|
+
"trigger_action",
|
|
368
|
+
"get_action_config",
|
|
369
|
+
"set_action_config",
|
|
370
|
+
"take_action",
|
|
371
|
+
"abort_action",
|
|
372
|
+
"get_activities",
|
|
373
|
+
"get_activity_by_id",
|
|
374
|
+
"create_activity",
|
|
375
|
+
"update_activity",
|
|
376
|
+
"delete_activity",
|
|
377
|
+
"send_activities_batch_operations",
|
|
381
378
|
"get_bundles",
|
|
382
379
|
"create_bundle",
|
|
383
380
|
"update_bundle",
|
|
384
381
|
"check_bundle_compatibility",
|
|
385
382
|
"delete_bundle",
|
|
386
|
-
"
|
|
387
|
-
"
|
|
388
|
-
"
|
|
389
|
-
"
|
|
390
|
-
"
|
|
391
|
-
"
|
|
392
|
-
"
|
|
393
|
-
"get_project_root_overrides_by_site_id",
|
|
394
|
-
"get_project_roots_for_site",
|
|
395
|
-
"get_project_roots_by_site_id",
|
|
396
|
-
"get_project_roots_by_platform",
|
|
383
|
+
"get_addon_endpoint",
|
|
384
|
+
"get_addons_info",
|
|
385
|
+
"get_addon_url",
|
|
386
|
+
"delete_addon",
|
|
387
|
+
"delete_addon_version",
|
|
388
|
+
"upload_addon_zip",
|
|
389
|
+
"download_addon_private_file",
|
|
397
390
|
"get_addon_settings_schema",
|
|
398
391
|
"get_addon_site_settings_schema",
|
|
399
392
|
"get_addon_studio_settings",
|
|
@@ -404,22 +397,40 @@ __all__ = (
|
|
|
404
397
|
"get_addons_studio_settings",
|
|
405
398
|
"get_addons_project_settings",
|
|
406
399
|
"get_addons_settings",
|
|
407
|
-
"
|
|
408
|
-
"
|
|
409
|
-
"
|
|
410
|
-
"
|
|
400
|
+
"get_event",
|
|
401
|
+
"get_events",
|
|
402
|
+
"update_event",
|
|
403
|
+
"dispatch_event",
|
|
404
|
+
"create_event",
|
|
405
|
+
"delete_event",
|
|
406
|
+
"enroll_event_job",
|
|
407
|
+
"get_attributes_schema",
|
|
408
|
+
"reset_attributes_schema",
|
|
409
|
+
"set_attribute_config",
|
|
410
|
+
"remove_attribute_config",
|
|
411
|
+
"get_attributes_for_type",
|
|
412
|
+
"get_attributes_fields_for_type",
|
|
413
|
+
"get_project_anatomy_presets",
|
|
414
|
+
"get_default_anatomy_preset_name",
|
|
415
|
+
"get_project_anatomy_preset",
|
|
416
|
+
"get_built_in_anatomy_preset",
|
|
417
|
+
"get_build_in_anatomy_preset",
|
|
411
418
|
"get_rest_project",
|
|
412
419
|
"get_rest_projects",
|
|
413
|
-
"get_rest_entity_by_id",
|
|
414
|
-
"get_rest_folder",
|
|
415
|
-
"get_rest_folders",
|
|
416
|
-
"get_rest_task",
|
|
417
|
-
"get_rest_product",
|
|
418
|
-
"get_rest_version",
|
|
419
|
-
"get_rest_representation",
|
|
420
420
|
"get_project_names",
|
|
421
421
|
"get_projects",
|
|
422
422
|
"get_project",
|
|
423
|
+
"create_project",
|
|
424
|
+
"update_project",
|
|
425
|
+
"delete_project",
|
|
426
|
+
"get_project_root_overrides",
|
|
427
|
+
"get_project_roots_by_site",
|
|
428
|
+
"get_project_root_overrides_by_site_id",
|
|
429
|
+
"get_project_roots_for_site",
|
|
430
|
+
"get_project_roots_by_site_id",
|
|
431
|
+
"get_project_roots_by_platform",
|
|
432
|
+
"get_rest_folder",
|
|
433
|
+
"get_rest_folders",
|
|
423
434
|
"get_folders_hierarchy",
|
|
424
435
|
"get_folders_rest",
|
|
425
436
|
"get_folders",
|
|
@@ -430,6 +441,7 @@ __all__ = (
|
|
|
430
441
|
"create_folder",
|
|
431
442
|
"update_folder",
|
|
432
443
|
"delete_folder",
|
|
444
|
+
"get_rest_task",
|
|
433
445
|
"get_tasks",
|
|
434
446
|
"get_task_by_name",
|
|
435
447
|
"get_task_by_id",
|
|
@@ -439,6 +451,7 @@ __all__ = (
|
|
|
439
451
|
"create_task",
|
|
440
452
|
"update_task",
|
|
441
453
|
"delete_task",
|
|
454
|
+
"get_rest_product",
|
|
442
455
|
"get_products",
|
|
443
456
|
"get_product_by_id",
|
|
444
457
|
"get_product_by_name",
|
|
@@ -448,6 +461,7 @@ __all__ = (
|
|
|
448
461
|
"create_product",
|
|
449
462
|
"update_product",
|
|
450
463
|
"delete_product",
|
|
464
|
+
"get_rest_version",
|
|
451
465
|
"get_versions",
|
|
452
466
|
"get_version_by_id",
|
|
453
467
|
"get_version_by_name",
|
|
@@ -461,6 +475,7 @@ __all__ = (
|
|
|
461
475
|
"create_version",
|
|
462
476
|
"update_version",
|
|
463
477
|
"delete_version",
|
|
478
|
+
"get_rest_representation",
|
|
464
479
|
"get_representations",
|
|
465
480
|
"get_representation_by_id",
|
|
466
481
|
"get_representation_by_name",
|
|
@@ -475,17 +490,8 @@ __all__ = (
|
|
|
475
490
|
"get_workfiles_info",
|
|
476
491
|
"get_workfile_info",
|
|
477
492
|
"get_workfile_info_by_id",
|
|
478
|
-
"
|
|
479
|
-
"
|
|
480
|
-
"get_folder_thumbnail",
|
|
481
|
-
"get_task_thumbnail",
|
|
482
|
-
"get_version_thumbnail",
|
|
483
|
-
"get_workfile_thumbnail",
|
|
484
|
-
"create_thumbnail",
|
|
485
|
-
"update_thumbnail",
|
|
486
|
-
"create_project",
|
|
487
|
-
"update_project",
|
|
488
|
-
"delete_project",
|
|
493
|
+
"delete_workfile_info",
|
|
494
|
+
"update_workfile_info",
|
|
489
495
|
"get_full_link_type_name",
|
|
490
496
|
"get_link_types",
|
|
491
497
|
"get_link_type",
|
|
@@ -505,14 +511,6 @@ __all__ = (
|
|
|
505
511
|
"get_version_links",
|
|
506
512
|
"get_representations_links",
|
|
507
513
|
"get_representation_links",
|
|
508
|
-
"send_batch_operations",
|
|
509
|
-
"send_activities_batch_operations",
|
|
510
|
-
"get_actions",
|
|
511
|
-
"trigger_action",
|
|
512
|
-
"get_action_config",
|
|
513
|
-
"set_action_config",
|
|
514
|
-
"take_action",
|
|
515
|
-
"abort_action",
|
|
516
514
|
"get_entity_lists",
|
|
517
515
|
"get_entity_list_rest",
|
|
518
516
|
"get_entity_list_by_id",
|
|
@@ -525,4 +523,12 @@ __all__ = (
|
|
|
525
523
|
"update_entity_list_items",
|
|
526
524
|
"update_entity_list_item",
|
|
527
525
|
"delete_entity_list_item",
|
|
526
|
+
"get_thumbnail_by_id",
|
|
527
|
+
"get_thumbnail",
|
|
528
|
+
"get_folder_thumbnail",
|
|
529
|
+
"get_task_thumbnail",
|
|
530
|
+
"get_version_thumbnail",
|
|
531
|
+
"get_workfile_thumbnail",
|
|
532
|
+
"create_thumbnail",
|
|
533
|
+
"update_thumbnail",
|
|
528
534
|
)
|