@timardex/cluemart-shared 1.3.95 → 1.3.97
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 +2 -2
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.mjs +2 -2
- package/dist/hooks/index.mjs.map +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/hooks/index.cjs
CHANGED
|
@@ -514,8 +514,8 @@ var globalResourceSchema = yup.object().shape({
|
|
|
514
514
|
title: yup.string().label("Cover Title").required("Cover Title is required")
|
|
515
515
|
}),
|
|
516
516
|
contactDetails: contactDetailsSchema,
|
|
517
|
-
description: yup.string().label("Description").trim().min(
|
|
518
|
-
name: yup.string().label("Name").trim().min(3).
|
|
517
|
+
description: yup.string().label("Description").trim().min(50).required("Description is required"),
|
|
518
|
+
name: yup.string().label("Name").trim().min(3).required("Name is required"),
|
|
519
519
|
region: yup.string().label("Region").required("Region is required"),
|
|
520
520
|
socialMedia: yup.array().of(socialMediaSchema).nullable().default(null),
|
|
521
521
|
associates: yup.array().of(
|