@3dverse/api 0.2.0 → 0.2.2

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
  }