@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.
- package/dist/hooks/index.cjs +1 -1
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.mjs +1 -1
- package/dist/hooks/index.mjs.map +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/hooks/index.cjs
CHANGED
|
@@ -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:
|
|
927
|
+
contentData: yup9.mixed().optional().nullable(),
|
|
928
928
|
contentOrder: yup9.number().nullable(),
|
|
929
929
|
contentType: yup9.mixed().oneOf(Object.values(EnumPostContentType)).nullable()
|
|
930
930
|
});
|