@3dverse/api 0.8.6 → 0.8.7
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 +2 -1
- 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 +1 -1
package/dist/index.mjs
CHANGED
@@ -910,7 +910,8 @@ function getRunningSessions({
|
|
910
910
|
function createSession({
|
911
911
|
scene_id,
|
912
912
|
renderer_version,
|
913
|
-
is_transient = false
|
913
|
+
is_transient = false,
|
914
|
+
options
|
914
915
|
}, headers) {
|
915
916
|
return axiosInstance({
|
916
917
|
method: "post",
|
@@ -918,7 +919,8 @@ function createSession({
|
|
918
919
|
data: {
|
919
920
|
scene_id,
|
920
921
|
renderer_version,
|
921
|
-
is_transient
|
922
|
+
is_transient,
|
923
|
+
options
|
922
924
|
},
|
923
925
|
headers
|
924
926
|
});
|