@getcommunity/gc-validators 0.0.113 → 0.0.114
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 +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1830,7 +1830,7 @@ var SCreateNewsletterSignupDocument = v6__namespace.object({
|
|
|
1830
1830
|
last_name: IsValidLastName,
|
|
1831
1831
|
email: IsValidUserEmail,
|
|
1832
1832
|
// hidden fields
|
|
1833
|
-
download_key:
|
|
1833
|
+
download_key: IsValidShortString,
|
|
1834
1834
|
product_interest: IsValidProductInterest,
|
|
1835
1835
|
email_consent: IsValidUserConsent,
|
|
1836
1836
|
sms_consent: IsValidUserConsent,
|
|
@@ -1842,7 +1842,7 @@ var SUpdateNewsletterSignupDocument = v6__namespace.object({
|
|
|
1842
1842
|
last_name: v6__namespace.optional(IsValidLastName),
|
|
1843
1843
|
email: v6__namespace.optional(IsValidUserEmail),
|
|
1844
1844
|
// hidden fields
|
|
1845
|
-
download_key: v6__namespace.optional(
|
|
1845
|
+
download_key: v6__namespace.optional(IsValidShortString),
|
|
1846
1846
|
product_interest: v6__namespace.optional(IsValidProductInterest),
|
|
1847
1847
|
email_consent: v6__namespace.optional(IsValidUserConsent),
|
|
1848
1848
|
sms_consent: v6__namespace.optional(IsValidUserConsent),
|