@3dverse/api 0.8.3 → 0.8.4
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 +2 -2
- 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.mjs
CHANGED
@@ -563,12 +563,12 @@ function getUploadTask({
|
|
563
563
|
});
|
564
564
|
}
|
565
565
|
function getConversionTaskMetadata({
|
566
|
-
|
566
|
+
conversion_task_id,
|
567
567
|
filename
|
568
568
|
}, headers, responseType) {
|
569
569
|
return axiosInstance({
|
570
570
|
method: "get",
|
571
|
-
url: "/conversion_tasks/" +
|
571
|
+
url: "/conversion_tasks/" + conversion_task_id + "/metadata/" + filename,
|
572
572
|
headers,
|
573
573
|
responseType: responseType || "arraybuffer"
|
574
574
|
});
|