@ruiapp/rapid-core 0.1.57 → 0.1.58

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/dist/index.js CHANGED
@@ -1809,7 +1809,7 @@ function getEntityPropertiesIncludingBase(server, model) {
1809
1809
  });
1810
1810
  let baseProperties = [];
1811
1811
  if (baseModel) {
1812
- baseModel.properties.map((property) => {
1812
+ baseProperties = baseModel.properties.map((property) => {
1813
1813
  property = lodash.cloneDeep(property);
1814
1814
  property.isBaseProperty = true;
1815
1815
  return property;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ruiapp/rapid-core",
3
- "version": "0.1.57",
3
+ "version": "0.1.58",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -16,7 +16,7 @@ export function getEntityPropertiesIncludingBase(server: IRpdServer, model: RpdD
16
16
  });
17
17
  let baseProperties: RpdDataModelProperty[] = [];
18
18
  if (baseModel) {
19
- baseModel.properties.map((property) => {
19
+ baseProperties = baseModel.properties.map((property) => {
20
20
  property = cloneDeep(property);
21
21
  property.isBaseProperty = true;
22
22
  return property;