@3dverse/api 0.4.3 → 0.4.5
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.
- package/dist/_prebuild/wrapper.d.ts +22 -18
- package/dist/index.js +16 -0
- package/dist/index.js.map +2 -2
- package/dist/index.mjs +15 -0
- package/dist/index.mjs.map +2 -2
- package/package.json +1 -1
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,
|