@timardex/cluemart-shared 1.2.92 → 1.2.94
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/{ad-Dz2H7DBc.d.ts → ad-BAdLwWe8.d.ts} +1 -0
- package/dist/{ad-lpA7ovDO.d.mts → ad-B_E4DMtS.d.mts} +1 -0
- package/dist/{chunk-HDGKA6GS.mjs → chunk-BK3ZTKW7.mjs} +1 -1
- package/dist/chunk-BK3ZTKW7.mjs.map +1 -0
- package/dist/graphql/index.cjs +284 -255
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +17 -2
- package/dist/graphql/index.d.ts +17 -2
- package/dist/graphql/index.mjs +211 -183
- package/dist/graphql/index.mjs.map +1 -1
- package/dist/hooks/index.cjs +3 -2
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.d.mts +1 -1
- package/dist/hooks/index.d.ts +1 -1
- package/dist/hooks/index.mjs +4 -3
- package/dist/hooks/index.mjs.map +1 -1
- package/dist/index.cjs +287 -257
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +17 -1
- package/dist/index.d.ts +17 -1
- package/dist/index.mjs +214 -185
- package/dist/index.mjs.map +1 -1
- package/dist/types/index.cjs.map +1 -1
- package/dist/types/index.d.mts +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/index.mjs +1 -1
- package/package.json +1 -1
- package/dist/chunk-HDGKA6GS.mjs.map +0 -1
package/dist/hooks/index.cjs
CHANGED
|
@@ -713,7 +713,7 @@ var testerVendorSchema = yup6.object().shape({
|
|
|
713
713
|
Object.values(VendorSellingFrequency),
|
|
714
714
|
"Please select a valid selling frequency"
|
|
715
715
|
).required("Required field"),
|
|
716
|
-
yearlySellingApprox: yup6.number().label("Yearly Selling Approx").min(
|
|
716
|
+
yearlySellingApprox: yup6.number().label("Yearly Selling Approx").min(1, "Yearly selling approximate must be at least 1").integer("Yearly selling approximate must be a whole number").required("Yearly selling approximate is required").test("no-leading-zeros", "", noLeadingZeros("Yearly selling approximate"))
|
|
717
717
|
});
|
|
718
718
|
var testerEventSchema = yup6.object().shape({
|
|
719
719
|
markets: yup6.array().of(
|
|
@@ -739,7 +739,8 @@ var testerEventSchema = yup6.object().shape({
|
|
|
739
739
|
inviteAtLeastFiveStallholders: yup6.boolean().required("Required field"),
|
|
740
740
|
manageApplicationsAndCommunication: yup6.boolean().required("Required field"),
|
|
741
741
|
organizerExpectations: yup6.string().trim().optional(),
|
|
742
|
-
registerMarketsFirstWeek: yup6.boolean().required("Required field")
|
|
742
|
+
registerMarketsFirstWeek: yup6.boolean().required("Required field"),
|
|
743
|
+
spaceForClueMart: yup6.boolean().optional()
|
|
743
744
|
})
|
|
744
745
|
});
|
|
745
746
|
var testerSchema = yup6.object().shape({
|