@ruiapp/rapid-core 0.1.48 → 0.1.49

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
@@ -1858,6 +1858,9 @@ function mapDbRowToEntity(server, model, row, keepNonPropertyFields) {
1858
1858
  propertyName = columnName;
1859
1859
  }
1860
1860
  }
1861
+ if (property?.config?.dataManage?.hidden) {
1862
+ return;
1863
+ }
1861
1864
  if (isRelationProp) {
1862
1865
  if (row[propertyName]) {
1863
1866
  if (!result[propertyName]) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ruiapp/rapid-core",
3
- "version": "0.1.48",
3
+ "version": "0.1.49",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -33,6 +33,10 @@ export function mapDbRowToEntity(server: IRpdServer, model: RpdDataModel, row: a
33
33
  }
34
34
  }
35
35
 
36
+ if (property?.config?.dataManage?.hidden) {
37
+ return;
38
+ }
39
+
36
40
  if (isRelationProp) {
37
41
  if (row[propertyName]) {
38
42
  if (!result[propertyName]) {