@timardex/cluemart-shared 1.3.21 → 1.3.22

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.
@@ -924,7 +924,7 @@ var contentDataSchema = yup9.mixed().required("Content data is required").test(
924
924
  }
925
925
  );
926
926
  var postContentSchema = yup9.object().shape({
927
- contentData: contentDataSchema.optional().nullable(),
927
+ contentData: yup9.mixed().optional().nullable(),
928
928
  contentOrder: yup9.number().nullable(),
929
929
  contentType: yup9.mixed().oneOf(Object.values(EnumPostContentType)).nullable()
930
930
  });