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