@3dverse/api 0.2.1 → 0.2.3

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
@@ -371,7 +371,8 @@ function getUploadTasksInFolder({
371
371
  function getFolderAssets({
372
372
  folder_id,
373
373
  offset = 0,
374
- limit = 10
374
+ limit = 10,
375
+ filter
375
376
  }) {
376
377
  return axiosInstance({
377
378
  operationId: "getFolderAssets",
@@ -379,7 +380,8 @@ function getFolderAssets({
379
380
  url: "/folders/" + folder_id + "/assets",
380
381
  params: {
381
382
  offset,
382
- limit
383
+ limit,
384
+ filter
383
385
  }
384
386
  });
385
387
  }
@@ -654,6 +656,7 @@ function getAssetThumbnail({
654
656
  operationId: "getAssetThumbnail",
655
657
  method: "get",
656
658
  url: "/assets/" + asset_container + "/" + asset_id + "/thumbnail",
659
+ responseType: "arraybuffer",
657
660
  params: {
658
661
  size,
659
662
  default_url