@timardex/cluemart-shared 1.3.44 → 1.3.46
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/{chunk-FGYCES2I.mjs → chunk-6DQPQJ2R.mjs} +12 -2
- package/dist/chunk-6DQPQJ2R.mjs.map +1 -0
- package/dist/formFields/index.cjs +9 -0
- package/dist/formFields/index.cjs.map +1 -1
- package/dist/formFields/index.mjs +1 -1
- package/dist/graphql/index.cjs +7 -2
- package/dist/graphql/index.cjs.map +1 -1
- package/dist/graphql/index.d.mts +2 -0
- package/dist/graphql/index.d.ts +2 -0
- package/dist/graphql/index.mjs +7 -2
- package/dist/graphql/index.mjs.map +1 -1
- package/dist/hooks/index.cjs +9 -0
- package/dist/hooks/index.cjs.map +1 -1
- package/dist/hooks/index.mjs +1 -1
- package/dist/index.cjs +18 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.mjs +17 -2
- package/dist/index.mjs.map +1 -1
- package/dist/utils/index.cjs +11 -0
- package/dist/utils/index.cjs.map +1 -1
- package/dist/utils/index.d.mts +3 -2
- package/dist/utils/index.d.ts +3 -2
- package/dist/utils/index.mjs +3 -1
- package/package.json +1 -1
- package/dist/chunk-FGYCES2I.mjs.map +0 -1
package/dist/hooks/index.cjs
CHANGED
|
@@ -290,6 +290,15 @@ function normalizeUrl(url) {
|
|
|
290
290
|
}
|
|
291
291
|
return url;
|
|
292
292
|
}
|
|
293
|
+
var licenseNiceNames = {
|
|
294
|
+
["pro_event" /* PRO_EVENT */]: "Pro Event",
|
|
295
|
+
["pro_vendor" /* PRO_VENDOR */]: "Pro Stallholder",
|
|
296
|
+
["standard_event" /* STANDARD_EVENT */]: "Standard Event",
|
|
297
|
+
["standard_vendor" /* STANDARD_VENDOR */]: "Standard Stallholder",
|
|
298
|
+
["pro_plus_event" /* PRO_PLUS_EVENT */]: "Pro+ Event",
|
|
299
|
+
["pro_plus_vendor" /* PRO_PLUS_VENDOR */]: "Pro+ Stallholder",
|
|
300
|
+
["standard_partner" /* STANDARD_PARTNER */]: "Partner"
|
|
301
|
+
};
|
|
293
302
|
|
|
294
303
|
// src/yupSchema/global.ts
|
|
295
304
|
var nzBankAccountRegex = /^\d{2}-\d{4}-\d{7}-\d{2}$/;
|