@3dverse/api 0.8.3 → 0.8.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 +224 -89
- package/dist/index.js +2 -2
- package/dist/index.js.map +2 -2
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
@@ -680,12 +680,12 @@ function getUploadTask({
|
|
680
680
|
});
|
681
681
|
}
|
682
682
|
function getConversionTaskMetadata({
|
683
|
-
|
683
|
+
conversion_task_id,
|
684
684
|
filename
|
685
685
|
}, headers, responseType) {
|
686
686
|
return axiosInstance({
|
687
687
|
method: "get",
|
688
|
-
url: "/conversion_tasks/" +
|
688
|
+
url: "/conversion_tasks/" + conversion_task_id + "/metadata/" + filename,
|
689
689
|
headers,
|
690
690
|
responseType: responseType || "arraybuffer"
|
691
691
|
});
|