@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/{auth-kPVsfJlW.d.mts → auth-PF5MJgeu.d.mts} +1 -1
- package/dist/{auth-CMRsaJGn.d.ts → auth-diJnZy6e.d.ts} +1 -1
- package/dist/formFields/index.d.mts +1 -1
- package/dist/formFields/index.d.ts +1 -1
- package/dist/{global-BJbi-2I6.d.ts → global-BsFcXLgV.d.ts} +4 -7
- package/dist/{global-ZW2_JxF5.d.mts → global-E8ve8XPP.d.mts} +4 -7
- package/dist/graphql/index.d.mts +2 -2
- package/dist/graphql/index.d.ts +2 -2
- package/dist/hooks/index.cjs +2 -2
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.d.mts +3 -3
- package/dist/hooks/index.d.ts +3 -3
- 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.d.mts +7 -6
- package/dist/index.d.ts +7 -6
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/dist/{post-DPNd79g3.d.ts → post-BZFDbJZT.d.ts} +1 -1
- package/dist/{post-BsN99WIF.d.mts → post-C5EZIi9r.d.mts} +1 -1
- package/dist/types/index.d.mts +9 -5
- package/dist/types/index.d.ts +9 -5
- package/dist/utils/index.d.mts +1 -1
- package/dist/utils/index.d.ts +1 -1
- package/package.json +1 -1
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().
|
|
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().
|
|
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"),
|