@contentful/experiences-visual-editor-react 3.0.0-dev-20250806T1122-ad32c9f.0 → 3.0.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 -2
- package/dist/index.js.map +1 -1
- package/dist/renderApp.js +2 -2
- package/dist/renderApp.js.map +1 -1
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -825,7 +825,7 @@ const ParameterDefinitionSchema$1 = z.object({
|
|
|
825
825
|
}),
|
|
826
826
|
})
|
|
827
827
|
.optional(),
|
|
828
|
-
contentTypes: z.array(z.string()),
|
|
828
|
+
contentTypes: z.array(z.string()).min(1),
|
|
829
829
|
passToNodes: z.array(PassToNodeSchema$1).optional(),
|
|
830
830
|
});
|
|
831
831
|
const ParameterDefinitionsSchema$1 = z.record(propertyKeySchema$1, ParameterDefinitionSchema$1);
|
|
@@ -3507,7 +3507,7 @@ const ParameterDefinitionSchema = z.object({
|
|
|
3507
3507
|
}),
|
|
3508
3508
|
})
|
|
3509
3509
|
.optional(),
|
|
3510
|
-
contentTypes: z.array(z.string()),
|
|
3510
|
+
contentTypes: z.array(z.string()).min(1),
|
|
3511
3511
|
passToNodes: z.array(PassToNodeSchema).optional(),
|
|
3512
3512
|
});
|
|
3513
3513
|
const ParameterDefinitionsSchema = z.record(propertyKeySchema, ParameterDefinitionSchema);
|