@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/renderApp.js CHANGED
@@ -44263,7 +44263,7 @@ const ParameterDefinitionSchema$1 = z.object({
44263
44263
  }),
44264
44264
  })
44265
44265
  .optional(),
44266
- contentTypes: z.array(z.string()),
44266
+ contentTypes: z.array(z.string()).min(1),
44267
44267
  passToNodes: z.array(PassToNodeSchema$1).optional(),
44268
44268
  });
44269
44269
  const ParameterDefinitionsSchema$1 = z.record(propertyKeySchema$1, ParameterDefinitionSchema$1);
@@ -48877,7 +48877,7 @@ const ParameterDefinitionSchema = z.object({
48877
48877
  }),
48878
48878
  })
48879
48879
  .optional(),
48880
- contentTypes: z.array(z.string()),
48880
+ contentTypes: z.array(z.string()).min(1),
48881
48881
  passToNodes: z.array(PassToNodeSchema).optional(),
48882
48882
  });
48883
48883
  const ParameterDefinitionsSchema = z.record(propertyKeySchema, ParameterDefinitionSchema);