@shopware-ag/dive 1.15.1 → 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
@@ -879,7 +879,8 @@ var _DIVECommunication = class _DIVECommunication {
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
881
  cameras: Array.from(this.registered.values()).filter((object) => object.entityType === "pov"),
882
- primitives: Array.from(this.registered.values()).filter((object) => object.entityType === "primitive")
882
+ primitives: Array.from(this.registered.values()).filter((object) => object.entityType === "primitive"),
883
+ groups: Array.from(this.registered.values()).filter((object) => object.entityType === "group")
883
884
  };
884
885
  Object.assign(payload, sceneData);
885
886
  return sceneData;