@shopware-ag/dive 1.15.0 → 1.15.2

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/build/dive.cjs CHANGED
@@ -878,7 +878,9 @@ var _DIVECommunication = class _DIVECommunication {
878
878
  spotmarks: [],
879
879
  lights: Array.from(this.registered.values()).filter((object) => object.entityType === "light"),
880
880
  objects: Array.from(this.registered.values()).filter((object) => object.entityType === "model"),
881
- cameras: Array.from(this.registered.values()).filter((object) => object.entityType === "pov")
881
+ cameras: Array.from(this.registered.values()).filter((object) => object.entityType === "pov"),
882
+ primitives: Array.from(this.registered.values()).filter((object) => object.entityType === "primitive"),
883
+ groups: Array.from(this.registered.values()).filter((object) => object.entityType === "group")
882
884
  };
883
885
  Object.assign(payload, sceneData);
884
886
  return sceneData;