@3dverse/api 0.4.3 → 0.4.5

Sign up to get free protection for your applications and to get access to all the features.
package/dist/index.mjs CHANGED
@@ -485,6 +485,20 @@ function getSourceFileAssets({
485
485
  url: "/source-files/" + source_file_id + "/assets"
486
486
  });
487
487
  }
488
+ function getUploadTasks({
489
+ offset = 0,
490
+ limit = 10
491
+ }) {
492
+ return axiosInstance({
493
+ operationId: "getUploadTasks",
494
+ method: "get",
495
+ url: "/upload-tasks",
496
+ params: {
497
+ offset,
498
+ limit
499
+ }
500
+ });
501
+ }
488
502
  function getUploadTask({
489
503
  upload_task_id
490
504
  }) {
@@ -965,6 +979,7 @@ export {
965
979
  getSourceFileDetails,
966
980
  getSourceFilesInFolder,
967
981
  getUploadTask,
982
+ getUploadTasks,
968
983
  getUploadTasksInFolder,
969
984
  getUser,
970
985
  getUserGroups,