ac-storage 0.15.1 → 0.16.0

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/bundle.cjs CHANGED
@@ -103,6 +103,7 @@ class BooleanJSONTypeLeaf extends BaseJSONTypeLeaf {
103
103
  }
104
104
 
105
105
  class StructJSONTypeLeaf extends BaseJSONTypeLeaf {
106
+ __brand = 'struct';
106
107
  constructor(tree) {
107
108
  super('struct');
108
109
  this.value['struct'] = tree;
@@ -115,6 +116,7 @@ class StructJSONTypeLeaf extends BaseJSONTypeLeaf {
115
116
  }
116
117
 
117
118
  class ArrayJSONTypeLeaf extends BaseJSONTypeLeaf {
119
+ __brand = 'array';
118
120
  constructor(element) {
119
121
  super('array');
120
122
  this.value['strict'] = false;