ac-storage 0.15.1 → 0.16.1
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 +2 -0
- package/dist/bundle.cjs.map +1 -1
- package/dist/bundle.mjs +2 -0
- package/dist/bundle.mjs.map +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +2 -2
- package/AMBIGUOUS_TESTS_REPORT.md +0 -57
- package/CLAUDE.md +0 -415
- package/COMMENTS_IMPROVEMENT_REPORT.md +0 -259
- package/COMPLETE_TEST_CLEANUP_SUMMARY.md +0 -217
- package/FINAL_TEST_CLEANUP_REPORT.md +0 -116
- package/INCONSISTENT_TESTS_REPORT.md +0 -165
- package/REPORT.md +0 -178
- package/REPORT_2.md +0 -31
- package/TEST_CLEANUP_REPORT.md +0 -81
- package/TEST_COMMENTS_REVIEW.md +0 -283
- package/TEST_REFACTORING_REPORT.md +0 -209
- package/TODO.md +0 -167
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;
|