@2112-lab/central-plant 0.3.37 → 0.3.38

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.
@@ -11772,7 +11772,8 @@ var SceneExportManager = /*#__PURE__*/function () {
11772
11772
 
11773
11773
  // Copy only essential userData properties (libraryId, objectType, direction, group)
11774
11774
  Object.keys(threeObject.userData).forEach(function (key) {
11775
- if (!excludedKeys.has(key)) {
11775
+ // Skip runtime/internal keys (e.g. _filteredBBoxCache from boundingBoxUtils)
11776
+ if (!excludedKeys.has(key) && !key.startsWith('_')) {
11776
11777
  jsonObject.userData[key] = threeObject.userData[key];
11777
11778
  }
11778
11779
  });
@@ -40194,7 +40195,7 @@ var CentralPlant = /*#__PURE__*/function (_BaseDisposable) {
40194
40195
  * Initialize the CentralPlant manager
40195
40196
  *
40196
40197
  * @constructor
40197
- * @version 0.3.37
40198
+ * @version 0.3.38
40198
40199
  * @updated 2025-10-22
40199
40200
  *
40200
40201
  * @description Creates a new CentralPlant instance and initializes internal managers and utilities.
@@ -35,7 +35,7 @@ var CentralPlant = /*#__PURE__*/function (_BaseDisposable) {
35
35
  * Initialize the CentralPlant manager
36
36
  *
37
37
  * @constructor
38
- * @version 0.3.37
38
+ * @version 0.3.38
39
39
  * @updated 2025-10-22
40
40
  *
41
41
  * @description Creates a new CentralPlant instance and initializes internal managers and utilities.
@@ -199,7 +199,8 @@ var SceneExportManager = /*#__PURE__*/function () {
199
199
 
200
200
  // Copy only essential userData properties (libraryId, objectType, direction, group)
201
201
  Object.keys(threeObject.userData).forEach(function (key) {
202
- if (!excludedKeys.has(key)) {
202
+ // Skip runtime/internal keys (e.g. _filteredBBoxCache from boundingBoxUtils)
203
+ if (!excludedKeys.has(key) && !key.startsWith('_')) {
203
204
  jsonObject.userData[key] = threeObject.userData[key];
204
205
  }
205
206
  });
@@ -31,7 +31,7 @@ var CentralPlant = /*#__PURE__*/function (_BaseDisposable) {
31
31
  * Initialize the CentralPlant manager
32
32
  *
33
33
  * @constructor
34
- * @version 0.3.37
34
+ * @version 0.3.38
35
35
  * @updated 2025-10-22
36
36
  *
37
37
  * @description Creates a new CentralPlant instance and initializes internal managers and utilities.
@@ -177,7 +177,8 @@ var SceneExportManager = /*#__PURE__*/function () {
177
177
 
178
178
  // Copy only essential userData properties (libraryId, objectType, direction, group)
179
179
  Object.keys(threeObject.userData).forEach(function (key) {
180
- if (!excludedKeys.has(key)) {
180
+ // Skip runtime/internal keys (e.g. _filteredBBoxCache from boundingBoxUtils)
181
+ if (!excludedKeys.has(key) && !key.startsWith('_')) {
181
182
  jsonObject.userData[key] = threeObject.userData[key];
182
183
  }
183
184
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@2112-lab/central-plant",
3
- "version": "0.3.37",
3
+ "version": "0.3.38",
4
4
  "description": "Utility modules for the Central Plant Application",
5
5
  "main": "dist/bundle/index.js",
6
6
  "module": "dist/esm/src/index.js",