@webspatial/core-sdk 0.1.6 → 0.1.8

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.
Files changed (77) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/dist/index.d.ts +712 -2
  3. package/dist/index.js +1502 -1
  4. package/dist/index.js.map +1 -0
  5. package/package.json +6 -5
  6. package/src/core/SpatialSession.ts +3 -2
  7. package/tsup.config.ts +23 -0
  8. package/dist/core/Spatial.d.ts +0 -27
  9. package/dist/core/Spatial.d.ts.map +0 -1
  10. package/dist/core/Spatial.js +0 -41
  11. package/dist/core/SpatialEntity.d.ts +0 -92
  12. package/dist/core/SpatialEntity.d.ts.map +0 -1
  13. package/dist/core/SpatialEntity.js +0 -122
  14. package/dist/core/SpatialHelper.d.ts +0 -39
  15. package/dist/core/SpatialHelper.d.ts.map +0 -1
  16. package/dist/core/SpatialHelper.js +0 -195
  17. package/dist/core/SpatialObject.d.ts +0 -20
  18. package/dist/core/SpatialObject.d.ts.map +0 -1
  19. package/dist/core/SpatialObject.js +0 -23
  20. package/dist/core/SpatialSession.d.ts +0 -164
  21. package/dist/core/SpatialSession.d.ts.map +0 -1
  22. package/dist/core/SpatialSession.js +0 -318
  23. package/dist/core/SpatialTransform.d.ts +0 -23
  24. package/dist/core/SpatialTransform.d.ts.map +0 -1
  25. package/dist/core/SpatialTransform.js +0 -31
  26. package/dist/core/SpatialWindowContainer.d.ts +0 -31
  27. package/dist/core/SpatialWindowContainer.d.ts.map +0 -1
  28. package/dist/core/SpatialWindowContainer.js +0 -48
  29. package/dist/core/component/EventSpatialComponent.d.ts +0 -22
  30. package/dist/core/component/EventSpatialComponent.d.ts.map +0 -1
  31. package/dist/core/component/EventSpatialComponent.js +0 -23
  32. package/dist/core/component/SpatialComponent.d.ts +0 -11
  33. package/dist/core/component/SpatialComponent.d.ts.map +0 -1
  34. package/dist/core/component/SpatialComponent.js +0 -23
  35. package/dist/core/component/SpatialInputComponent.d.ts +0 -22
  36. package/dist/core/component/SpatialInputComponent.d.ts.map +0 -1
  37. package/dist/core/component/SpatialInputComponent.js +0 -14
  38. package/dist/core/component/SpatialModel3DComponent.d.ts +0 -91
  39. package/dist/core/component/SpatialModel3DComponent.d.ts.map +0 -1
  40. package/dist/core/component/SpatialModel3DComponent.js +0 -185
  41. package/dist/core/component/SpatialModelComponent.d.ts +0 -22
  42. package/dist/core/component/SpatialModelComponent.d.ts.map +0 -1
  43. package/dist/core/component/SpatialModelComponent.js +0 -34
  44. package/dist/core/component/SpatialViewComponent.d.ts +0 -22
  45. package/dist/core/component/SpatialViewComponent.d.ts.map +0 -1
  46. package/dist/core/component/SpatialViewComponent.js +0 -30
  47. package/dist/core/component/SpatialWindowComponent.d.ts +0 -86
  48. package/dist/core/component/SpatialWindowComponent.d.ts.map +0 -1
  49. package/dist/core/component/SpatialWindowComponent.js +0 -114
  50. package/dist/core/component/index.d.ts +0 -7
  51. package/dist/core/component/index.d.ts.map +0 -1
  52. package/dist/core/component/index.js +0 -6
  53. package/dist/core/index.d.ts +0 -11
  54. package/dist/core/index.d.ts.map +0 -1
  55. package/dist/core/index.js +0 -9
  56. package/dist/core/private/WebSpatial.d.ts +0 -46
  57. package/dist/core/private/WebSpatial.d.ts.map +0 -1
  58. package/dist/core/private/WebSpatial.js +0 -282
  59. package/dist/core/private/remote-command/RemoteCommand.d.ts +0 -8
  60. package/dist/core/private/remote-command/RemoteCommand.d.ts.map +0 -1
  61. package/dist/core/private/remote-command/RemoteCommand.js +0 -11
  62. package/dist/core/private/remote-command/index.d.ts +0 -2
  63. package/dist/core/private/remote-command/index.d.ts.map +0 -1
  64. package/dist/core/private/remote-command/index.js +0 -1
  65. package/dist/core/resource/SpatialMeshResource.d.ts +0 -7
  66. package/dist/core/resource/SpatialMeshResource.d.ts.map +0 -1
  67. package/dist/core/resource/SpatialMeshResource.js +0 -6
  68. package/dist/core/resource/SpatialPhysicallyBasedMaterialResource.d.ts +0 -37
  69. package/dist/core/resource/SpatialPhysicallyBasedMaterialResource.d.ts.map +0 -1
  70. package/dist/core/resource/SpatialPhysicallyBasedMaterialResource.js +0 -37
  71. package/dist/core/resource/index.d.ts +0 -3
  72. package/dist/core/resource/index.d.ts.map +0 -1
  73. package/dist/core/resource/index.js +0 -2
  74. package/dist/core/types.d.ts +0 -23
  75. package/dist/core/types.d.ts.map +0 -1
  76. package/dist/core/types.js +0 -1
  77. package/dist/index.d.ts.map +0 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @webspatial/core-sdk
2
2
 
3
+ ## 0.1.8
4
+
5
+ ### Patch Changes
6
+
7
+ - 5be664b: add baseURI to createWindowContext method, fixing path issues related to assets
8
+
9
+ ## 0.1.7
10
+
11
+ ### Patch Changes
12
+
13
+ - 123ee60: bundle files into one
14
+
3
15
  ## 0.1.6
4
16
 
5
17
  ## 0.1.5