@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/index.js CHANGED
@@ -680,12 +680,12 @@ function getUploadTask({
680
680
  });
681
681
  }
682
682
  function getConversionTaskMetadata({
683
- asset_id,
683
+ conversion_task_id,
684
684
  filename
685
685
  }, headers, responseType) {
686
686
  return axiosInstance({
687
687
  method: "get",
688
- url: "/conversion_tasks/" + asset_id + "/metadata/" + filename,
688
+ url: "/conversion_tasks/" + conversion_task_id + "/metadata/" + filename,
689
689
  headers,
690
690
  responseType: responseType || "arraybuffer"
691
691
  });