@snapshot-labs/snapshot.js 0.11.19 → 0.11.20
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.d.ts +1 -0
- package/dist/schemas/index.d.ts +1 -0
- package/dist/snapshot.cjs.js +3 -2
- package/dist/snapshot.esm.js +3 -2
- package/dist/snapshot.min.js +1 -1
- package/package.json +1 -1
- package/src/schemas/space.json +3 -2
package/dist/index.d.ts
CHANGED
package/dist/schemas/index.d.ts
CHANGED
package/dist/snapshot.cjs.js
CHANGED
|
@@ -994,11 +994,12 @@ var definitions = {
|
|
|
994
994
|
},
|
|
995
995
|
children: {
|
|
996
996
|
type: "array",
|
|
997
|
-
maxItems:
|
|
997
|
+
maxItems: 16,
|
|
998
998
|
title: "children",
|
|
999
999
|
items: {
|
|
1000
1000
|
type: "string"
|
|
1001
|
-
}
|
|
1001
|
+
},
|
|
1002
|
+
uniqueItems: true
|
|
1002
1003
|
},
|
|
1003
1004
|
boost: {
|
|
1004
1005
|
type: "object",
|
package/dist/snapshot.esm.js
CHANGED