@3dverse/api 0.8.9 → 0.8.10
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 +55 -41
- package/dist/index.js +8 -4
- package/dist/index.js.map +2 -2
- package/dist/index.mjs +5 -1
- package/dist/index.mjs.map +2 -2
- package/package.json +6 -6
package/dist/index.mjs
CHANGED
@@ -960,11 +960,15 @@ function killSession({
|
|
960
960
|
});
|
961
961
|
}
|
962
962
|
function joinSession({
|
963
|
-
session_id
|
963
|
+
session_id,
|
964
|
+
is_headless = false
|
964
965
|
}, headers) {
|
965
966
|
return axiosInstance({
|
966
967
|
method: "post",
|
967
968
|
url: "/sessions/" + session_id + "/clients",
|
969
|
+
data: {
|
970
|
+
is_headless
|
971
|
+
},
|
968
972
|
headers
|
969
973
|
});
|
970
974
|
}
|