Skip to content

Commit 0965474

Browse files
committed
Merge remote-tracking branch 'origin/develop' into enhancement/254-product-base-types-add-support
2 parents 072bef1 + ae71136 commit 0965474

File tree

16 files changed

+1205
-105
lines changed

16 files changed

+1205
-105
lines changed

ayon_api/__init__.py

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@
8181
get_default_fields_for_type,
8282
get_rest_entity_by_id,
8383
send_batch_operations,
84+
send_background_batch_operations,
85+
get_background_operations_status,
8486
get_installers,
8587
create_installer,
8688
update_installer,
@@ -221,11 +223,17 @@
221223
create_representation,
222224
update_representation,
223225
delete_representation,
226+
get_workfile_entities,
227+
get_workfile_entity,
228+
get_workfile_entity_by_id,
229+
create_workfile_entity,
230+
update_workfile_entity,
231+
delete_workfile_entity,
224232
get_workfiles_info,
225233
get_workfile_info,
226234
get_workfile_info_by_id,
227-
delete_workfile_info,
228235
update_workfile_info,
236+
delete_workfile_info,
229237
get_full_link_type_name,
230238
get_link_types,
231239
get_link_type,
@@ -264,7 +272,9 @@
264272
get_version_thumbnail,
265273
get_workfile_thumbnail,
266274
create_thumbnail,
275+
create_thumbnail_with_stream,
267276
update_thumbnail,
277+
update_thumbnail_from_stream,
268278
)
269279

270280

@@ -349,6 +359,8 @@
349359
"get_default_fields_for_type",
350360
"get_rest_entity_by_id",
351361
"send_batch_operations",
362+
"send_background_batch_operations",
363+
"get_background_operations_status",
352364
"get_installers",
353365
"create_installer",
354366
"update_installer",
@@ -489,11 +501,17 @@
489501
"create_representation",
490502
"update_representation",
491503
"delete_representation",
504+
"get_workfile_entities",
505+
"get_workfile_entity",
506+
"get_workfile_entity_by_id",
507+
"create_workfile_entity",
508+
"update_workfile_entity",
509+
"delete_workfile_entity",
492510
"get_workfiles_info",
493511
"get_workfile_info",
494512
"get_workfile_info_by_id",
495-
"delete_workfile_info",
496513
"update_workfile_info",
514+
"delete_workfile_info",
497515
"get_full_link_type_name",
498516
"get_link_types",
499517
"get_link_type",
@@ -532,5 +550,7 @@
532550
"get_version_thumbnail",
533551
"get_workfile_thumbnail",
534552
"create_thumbnail",
553+
"create_thumbnail_with_stream",
535554
"update_thumbnail",
555+
"update_thumbnail_from_stream",
536556
)

0 commit comments

Comments
 (0)