@timardex/cluemart-shared 1.2.93 → 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/graphql/index.cjs +284 -256
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +16 -1
- package/dist/graphql/index.d.ts +16 -1
- package/dist/graphql/index.mjs +211 -184
- package/dist/graphql/index.mjs.map +1 -1
- package/dist/hooks/index.cjs +1 -1
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.mjs +1 -1
- package/dist/hooks/index.mjs.map +1 -1
- package/dist/index.cjs +285 -257
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +16 -1
- package/dist/index.d.ts +16 -1
- package/dist/index.mjs +212 -185
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -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(
|