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