@3dverse/api 0.8.15 → 0.8.16
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/_prebuild/wrapper.d.ts +225 -17
- package/dist/index.js +13 -0
- package/dist/index.js.map +2 -2
- package/dist/index.mjs +12 -0
- package/dist/index.mjs.map +2 -2
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -940,6 +940,17 @@ function getSceneSettings({
|
|
|
940
940
|
headers
|
|
941
941
|
});
|
|
942
942
|
}
|
|
943
|
+
function updateSceneSettings({
|
|
944
|
+
scene_id,
|
|
945
|
+
body
|
|
946
|
+
}, headers) {
|
|
947
|
+
return axiosInstance({
|
|
948
|
+
method: "patch",
|
|
949
|
+
url: "/assets/scenes/" + scene_id + "/settings",
|
|
950
|
+
data: body,
|
|
951
|
+
headers
|
|
952
|
+
});
|
|
953
|
+
}
|
|
943
954
|
function getRunningSessions({
|
|
944
955
|
filters
|
|
945
956
|
}, headers) {
|
|
@@ -1203,6 +1214,7 @@ export {
|
|
|
1203
1214
|
updateEntity,
|
|
1204
1215
|
updateFolder,
|
|
1205
1216
|
updateGroupDescription,
|
|
1217
|
+
updateSceneSettings,
|
|
1206
1218
|
updateSourceFileDetails,
|
|
1207
1219
|
updateUser,
|
|
1208
1220
|
uploadSourceFiles
|