@getcommunity/gc-validators 0.0.113 → 0.0.115
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 +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1816,7 +1816,7 @@ var SCreateNewsletterSignup = v6__namespace.object({
|
|
|
1816
1816
|
last_name: IsValidLastName,
|
|
1817
1817
|
email: IsValidUserEmail,
|
|
1818
1818
|
// hidden fields
|
|
1819
|
-
download_key:
|
|
1819
|
+
download_key: IsValidShortString,
|
|
1820
1820
|
product_interest: IsValidProductInterest,
|
|
1821
1821
|
email_consent: IsValidUserConsent,
|
|
1822
1822
|
sms_consent: IsValidUserConsent,
|
|
@@ -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),
|