@snapshot-labs/snapshot.js 0.3.62 → 0.3.63
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 +12 -0
- package/dist/schemas/index.d.ts +12 -0
- package/dist/snapshot.cjs.js +12 -0
- package/dist/snapshot.esm.js +12 -0
- package/dist/snapshot.min.js +1 -1
- package/package.json +1 -1
- package/src/schemas/space.json +12 -0
package/dist/index.d.ts
CHANGED
|
@@ -215,6 +215,18 @@ declare const _default: {
|
|
|
215
215
|
enum: string[];
|
|
216
216
|
};
|
|
217
217
|
};
|
|
218
|
+
parent: {
|
|
219
|
+
type: string;
|
|
220
|
+
title: string;
|
|
221
|
+
};
|
|
222
|
+
children: {
|
|
223
|
+
type: string;
|
|
224
|
+
maxItems: number;
|
|
225
|
+
title: string;
|
|
226
|
+
items: {
|
|
227
|
+
type: string;
|
|
228
|
+
};
|
|
229
|
+
};
|
|
218
230
|
};
|
|
219
231
|
required: string[];
|
|
220
232
|
additionalProperties: boolean;
|
package/dist/schemas/index.d.ts
CHANGED
|
@@ -210,6 +210,18 @@ declare const _default: {
|
|
|
210
210
|
enum: string[];
|
|
211
211
|
};
|
|
212
212
|
};
|
|
213
|
+
parent: {
|
|
214
|
+
type: string;
|
|
215
|
+
title: string;
|
|
216
|
+
};
|
|
217
|
+
children: {
|
|
218
|
+
type: string;
|
|
219
|
+
maxItems: number;
|
|
220
|
+
title: string;
|
|
221
|
+
items: {
|
|
222
|
+
type: string;
|
|
223
|
+
};
|
|
224
|
+
};
|
|
213
225
|
};
|
|
214
226
|
required: string[];
|
|
215
227
|
additionalProperties: boolean;
|
package/dist/snapshot.cjs.js
CHANGED
|
@@ -816,6 +816,18 @@ var definitions = {
|
|
|
816
816
|
"collector"
|
|
817
817
|
]
|
|
818
818
|
}
|
|
819
|
+
},
|
|
820
|
+
parent: {
|
|
821
|
+
type: "string",
|
|
822
|
+
title: "parent"
|
|
823
|
+
},
|
|
824
|
+
children: {
|
|
825
|
+
type: "array",
|
|
826
|
+
maxItems: 8,
|
|
827
|
+
title: "children",
|
|
828
|
+
items: {
|
|
829
|
+
type: "string"
|
|
830
|
+
}
|
|
819
831
|
}
|
|
820
832
|
},
|
|
821
833
|
required: [
|
package/dist/snapshot.esm.js
CHANGED
|
@@ -807,6 +807,18 @@ var definitions = {
|
|
|
807
807
|
"collector"
|
|
808
808
|
]
|
|
809
809
|
}
|
|
810
|
+
},
|
|
811
|
+
parent: {
|
|
812
|
+
type: "string",
|
|
813
|
+
title: "parent"
|
|
814
|
+
},
|
|
815
|
+
children: {
|
|
816
|
+
type: "array",
|
|
817
|
+
maxItems: 8,
|
|
818
|
+
title: "children",
|
|
819
|
+
items: {
|
|
820
|
+
type: "string"
|
|
821
|
+
}
|
|
810
822
|
}
|
|
811
823
|
},
|
|
812
824
|
required: [
|