@3dverse/api 0.6.4 → 0.6.5

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
@@ -722,14 +722,16 @@ function deleteEntity({
722
722
  }
723
723
  function createSession({
724
724
  scene_id,
725
- renderer_version
725
+ renderer_version,
726
+ is_transient = false
726
727
  }) {
727
728
  return axiosInstance({
728
729
  method: "post",
729
730
  url: "/sessions",
730
731
  data: {
731
732
  scene_id,
732
- renderer_version
733
+ renderer_version,
734
+ is_transient
733
735
  }
734
736
  });
735
737
  }