@3dverse/api 0.6.5 → 0.6.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/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,