@onehat/data 1.18.7 → 1.18.8

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.18.7",
3
+ "version": "1.18.8",
4
4
  "description": "JS data modeling package with adapters for many storage mediums.",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
@@ -118,6 +118,6 @@ JsonProperty.type = 'json';
118
118
 
119
119
 
120
120
  // For the sake of OneBuild, create an alias of Json, that's Tag
121
- class TagProperty extends JsonProperty {}
121
+ export class TagProperty extends JsonProperty {}
122
122
  TagProperty.className = 'Tag';
123
123
  TagProperty.type = 'tag';