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