@contentful/experiences-visual-editor-react 1.24.0 → 1.25.0-beta.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/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/renderApp.js +2 -0
- package/dist/renderApp.js.map +1 -1
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -935,6 +935,7 @@ const UnboundValuesSchema$1 = z.record(uuidKeySchema$1, z.object({
|
|
|
935
935
|
}));
|
|
936
936
|
// Use helper schema to define a recursive schema with its type correctly below
|
|
937
937
|
const BaseComponentTreeNodeSchema$1 = z.object({
|
|
938
|
+
id: uuidKeySchema$1.optional(),
|
|
938
939
|
definitionId: DefinitionPropertyKeySchema$1,
|
|
939
940
|
displayName: z.string().optional(),
|
|
940
941
|
slotId: z.string().optional(),
|
|
@@ -3280,6 +3281,7 @@ const UnboundValuesSchema = z.record(uuidKeySchema, z.object({
|
|
|
3280
3281
|
}));
|
|
3281
3282
|
// Use helper schema to define a recursive schema with its type correctly below
|
|
3282
3283
|
const BaseComponentTreeNodeSchema = z.object({
|
|
3284
|
+
id: uuidKeySchema.optional(),
|
|
3283
3285
|
definitionId: DefinitionPropertyKeySchema,
|
|
3284
3286
|
displayName: z.string().optional(),
|
|
3285
3287
|
slotId: z.string().optional(),
|