@timardex/cluemart-shared 1.3.78 → 1.3.80

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/index.cjs CHANGED
@@ -6170,9 +6170,9 @@ var eventInfoSchema = yup2.object().shape({
6170
6170
  // src/yupSchema/vendor.ts
6171
6171
  var yup3 = __toESM(require("yup"));
6172
6172
  var vendroMenuSchema = yup3.object().shape({
6173
- description: yup3.string().trim().max(100).optional().nullable(),
6173
+ description: yup3.string().trim().optional().nullable(),
6174
6174
  price: yup3.number().transform((value, originalValue) => originalValue === "" ? null : value).min(0).optional().nullable(),
6175
- title: yup3.string().trim().max(50).optional().nullable()
6175
+ title: yup3.string().trim().optional().nullable()
6176
6176
  });
6177
6177
  var vendorSchema = globalResourceSchema.shape({
6178
6178
  categories: categorySchema.min(1, "Category list must contain at least one item").required("Categories are required"),