@2112-lab/central-plant 0.1.87 → 0.1.88

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.
@@ -19792,6 +19792,7 @@ var ComponentDataManager = /*#__PURE__*/function (_BaseDisposable) {
19792
19792
  id: key,
19793
19793
  name: component.name,
19794
19794
  type: ((_component$metadata = component.metadata) === null || _component$metadata === void 0 ? void 0 : _component$metadata.type) || 'Component',
19795
+ assetType: component.assetType || null,
19795
19796
  category: component.category,
19796
19797
  modelKey: component.modelKey,
19797
19798
  modelType: component.modelType,
@@ -19800,10 +19801,12 @@ var ComponentDataManager = /*#__PURE__*/function (_BaseDisposable) {
19800
19801
  // Preserve S3 metadata
19801
19802
  isS3Component: component.isS3Component,
19802
19803
  s3Path: component.s3Path,
19803
- preLoad: component.preLoad
19804
+ preLoad: component.preLoad,
19805
+ preCache: component.preCache
19804
19806
  };
19805
19807
  return _objectSpread2(_objectSpread2({}, baseData), {}, {
19806
19808
  metadata: component.metadata || {},
19809
+ ioConfig: component.ioConfig || null,
19807
19810
  boundingBox: component.boundingBox || null,
19808
19811
  adaptedBoundingBox: component.adaptedBoundingBox || null,
19809
19812
  children: component.children || [],
@@ -36771,7 +36774,7 @@ var CentralPlant = /*#__PURE__*/function (_BaseDisposable) {
36771
36774
  * Initialize the CentralPlant manager
36772
36775
  *
36773
36776
  * @constructor
36774
- * @version 0.1.87
36777
+ * @version 0.1.88
36775
36778
  * @updated 2025-10-22
36776
36779
  *
36777
36780
  * @description Creates a new CentralPlant instance and initializes internal managers and utilities.
@@ -19,7 +19,7 @@ var CentralPlant = /*#__PURE__*/function (_BaseDisposable) {
19
19
  * Initialize the CentralPlant manager
20
20
  *
21
21
  * @constructor
22
- * @version 0.1.87
22
+ * @version 0.1.88
23
23
  * @updated 2025-10-22
24
24
  *
25
25
  * @description Creates a new CentralPlant instance and initializes internal managers and utilities.
@@ -845,6 +845,7 @@ var ComponentDataManager = /*#__PURE__*/function (_BaseDisposable) {
845
845
  id: key,
846
846
  name: component.name,
847
847
  type: ((_component$metadata = component.metadata) === null || _component$metadata === void 0 ? void 0 : _component$metadata.type) || 'Component',
848
+ assetType: component.assetType || null,
848
849
  category: component.category,
849
850
  modelKey: component.modelKey,
850
851
  modelType: component.modelType,
@@ -853,10 +854,12 @@ var ComponentDataManager = /*#__PURE__*/function (_BaseDisposable) {
853
854
  // Preserve S3 metadata
854
855
  isS3Component: component.isS3Component,
855
856
  s3Path: component.s3Path,
856
- preLoad: component.preLoad
857
+ preLoad: component.preLoad,
858
+ preCache: component.preCache
857
859
  };
858
860
  return _rollupPluginBabelHelpers.objectSpread2(_rollupPluginBabelHelpers.objectSpread2({}, baseData), {}, {
859
861
  metadata: component.metadata || {},
862
+ ioConfig: component.ioConfig || null,
860
863
  boundingBox: component.boundingBox || null,
861
864
  adaptedBoundingBox: component.adaptedBoundingBox || null,
862
865
  children: component.children || [],
@@ -15,7 +15,7 @@ var CentralPlant = /*#__PURE__*/function (_BaseDisposable) {
15
15
  * Initialize the CentralPlant manager
16
16
  *
17
17
  * @constructor
18
- * @version 0.1.87
18
+ * @version 0.1.88
19
19
  * @updated 2025-10-22
20
20
  *
21
21
  * @description Creates a new CentralPlant instance and initializes internal managers and utilities.
@@ -821,6 +821,7 @@ var ComponentDataManager = /*#__PURE__*/function (_BaseDisposable) {
821
821
  id: key,
822
822
  name: component.name,
823
823
  type: ((_component$metadata = component.metadata) === null || _component$metadata === void 0 ? void 0 : _component$metadata.type) || 'Component',
824
+ assetType: component.assetType || null,
824
825
  category: component.category,
825
826
  modelKey: component.modelKey,
826
827
  modelType: component.modelType,
@@ -829,10 +830,12 @@ var ComponentDataManager = /*#__PURE__*/function (_BaseDisposable) {
829
830
  // Preserve S3 metadata
830
831
  isS3Component: component.isS3Component,
831
832
  s3Path: component.s3Path,
832
- preLoad: component.preLoad
833
+ preLoad: component.preLoad,
834
+ preCache: component.preCache
833
835
  };
834
836
  return _objectSpread2(_objectSpread2({}, baseData), {}, {
835
837
  metadata: component.metadata || {},
838
+ ioConfig: component.ioConfig || null,
836
839
  boundingBox: component.boundingBox || null,
837
840
  adaptedBoundingBox: component.adaptedBoundingBox || null,
838
841
  children: component.children || [],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@2112-lab/central-plant",
3
- "version": "0.1.87",
3
+ "version": "0.1.88",
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",