@3dverse/api 0.2.1 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/_prebuild/wrapper.d.ts +10 -4
- package/dist/index.js +4 -2
- package/dist/index.js.map +2 -2
- package/dist/index.mjs +4 -2
- package/dist/index.mjs.map +2 -2
- package/package.json +2 -2
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
|
}
|