@3dverse/api 0.6.5 → 0.6.7

Sign up to get free protection for your applications and to get access to all the features.
package/dist/index.mjs CHANGED
@@ -720,6 +720,17 @@ function deleteEntity({
720
720
  url: "/assets/scenes/" + scene_id + "/entities/" + entity_id
721
721
  });
722
722
  }
723
+ function getRunningSessions({
724
+ filters
725
+ }) {
726
+ return axiosInstance({
727
+ method: "get",
728
+ url: "/sessions",
729
+ params: {
730
+ filters
731
+ }
732
+ });
733
+ }
723
734
  function createSession({
724
735
  scene_id,
725
736
  renderer_version,
@@ -913,6 +924,7 @@ export {
913
924
  getFolderAssets,
914
925
  getFolderInfo,
915
926
  getGroup,
927
+ getRunningSessions,
916
928
  getSceneAABB,
917
929
  getSceneSessions,
918
930
  getSession,