@3dverse/api 0.8.8 → 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/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
  }