@timardex/cluemart-shared 1.3.31 → 1.3.32
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/index.mjs
CHANGED
|
@@ -5693,7 +5693,7 @@ var testerVendorSchema = yup6.object().shape({
|
|
|
5693
5693
|
tryVisitorFeatures: yup6.boolean().oneOf([true], "This field is required"),
|
|
5694
5694
|
uploadStallProfileFirstWeek: yup6.boolean().oneOf([true], "This field is required"),
|
|
5695
5695
|
usefulnessExpectations: yup6.string().trim().optional()
|
|
5696
|
-
}),
|
|
5696
|
+
}).required("Questionary is required"),
|
|
5697
5697
|
sellingFrequency: yup6.mixed().oneOf(
|
|
5698
5698
|
Object.values(VendorSellingFrequency),
|
|
5699
5699
|
"Please select a valid selling frequency"
|
|
@@ -5731,7 +5731,7 @@ var testerEventSchema = yup6.object().shape({
|
|
|
5731
5731
|
organizerExpectations: yup6.string().trim().optional(),
|
|
5732
5732
|
spaceForClueMart: yup6.boolean().oneOf([true], "This field is required"),
|
|
5733
5733
|
uploadStallList: yup6.boolean().oneOf([true], "This field is required")
|
|
5734
|
-
})
|
|
5734
|
+
}).required("Questionary is required")
|
|
5735
5735
|
});
|
|
5736
5736
|
var testerSchema = yup6.object().shape({
|
|
5737
5737
|
businessName: yup6.string().required("Business name is required"),
|