@onehat/data 1.19.4 → 1.19.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onehat/data",
3
- "version": "1.19.4",
3
+ "version": "1.19.5",
4
4
  "description": "JS data modeling package with adapters for many storage mediums.",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -128,6 +128,11 @@ export default class Property extends EventEmitter {
128
128
  */
129
129
  isFilteringDisabled: false,
130
130
 
131
+ /**
132
+ * @member {object} viewerType - The UI viewer type of this property
133
+ */
134
+ viewerType: null,
135
+
131
136
  /**
132
137
  * @member {object} editorType - The UI editor type of this property
133
138
  */
@@ -236,10 +236,6 @@ class OneBuildRepository extends AjaxRepository {
236
236
  };
237
237
  }
238
238
 
239
- if (!result) {
240
- debugger;
241
- }
242
-
243
239
  const
244
240
  response = _.isPlainObject(result.data) ? result.data : this.reader.read(result.data),
245
241
  root = response[this.rootProperty],