@getcommunity/gc-validators 0.0.111 → 0.0.112
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 +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1986,7 +1986,7 @@ declare const SCreateNewsletterSignup: v.ObjectSchema<{
|
|
|
1986
1986
|
readonly email_consent: v.BooleanSchema<undefined>;
|
|
1987
1987
|
readonly on_page: v.SchemaWithPipe<readonly [v.StringSchema<"It appears you are a robot, please try again.">, v.TrimAction, v.MaxLengthAction<string, 2048, "The string you provided is too long for our database, please abbreviate your string to be 2048 characters or less.">]>;
|
|
1988
1988
|
readonly captcha: v.SchemaWithPipe<readonly [v.StringSchema<"It appears you are a robot, please try again.">, v.TrimAction, v.MaxLengthAction<string, 5000, "The string you provided is too long, please abbreviate your string to be 5000 characters or less.">]>;
|
|
1989
|
-
readonly middle_name: v.
|
|
1989
|
+
readonly middle_name: v.StringSchema<undefined>;
|
|
1990
1990
|
}, undefined>;
|
|
1991
1991
|
type SCreateNewsletterSignup = v.InferOutput<typeof SCreateNewsletterSignup>;
|
|
1992
1992
|
|
|
@@ -2101,7 +2101,7 @@ declare const SharpSpringSignUpToDownload: v.ObjectSchema<{
|
|
|
2101
2101
|
readonly email_consent: v.BooleanSchema<undefined>;
|
|
2102
2102
|
readonly on_page: v.SchemaWithPipe<readonly [v.StringSchema<"It appears you are a robot, please try again.">, v.TrimAction, v.MaxLengthAction<string, 2048, "The string you provided is too long for our database, please abbreviate your string to be 2048 characters or less.">]>;
|
|
2103
2103
|
readonly captcha: v.SchemaWithPipe<readonly [v.StringSchema<"It appears you are a robot, please try again.">, v.TrimAction, v.MaxLengthAction<string, 5000, "The string you provided is too long, please abbreviate your string to be 5000 characters or less.">]>;
|
|
2104
|
-
readonly middle_name: v.
|
|
2104
|
+
readonly middle_name: v.StringSchema<undefined>;
|
|
2105
2105
|
}, undefined>;
|
|
2106
2106
|
type SharpSpringSignUpToDownload = v.InferOutput<typeof SharpSpringSignUpToDownload>;
|
|
2107
2107
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1986,7 +1986,7 @@ declare const SCreateNewsletterSignup: v.ObjectSchema<{
|
|
|
1986
1986
|
readonly email_consent: v.BooleanSchema<undefined>;
|
|
1987
1987
|
readonly on_page: v.SchemaWithPipe<readonly [v.StringSchema<"It appears you are a robot, please try again.">, v.TrimAction, v.MaxLengthAction<string, 2048, "The string you provided is too long for our database, please abbreviate your string to be 2048 characters or less.">]>;
|
|
1988
1988
|
readonly captcha: v.SchemaWithPipe<readonly [v.StringSchema<"It appears you are a robot, please try again.">, v.TrimAction, v.MaxLengthAction<string, 5000, "The string you provided is too long, please abbreviate your string to be 5000 characters or less.">]>;
|
|
1989
|
-
readonly middle_name: v.
|
|
1989
|
+
readonly middle_name: v.StringSchema<undefined>;
|
|
1990
1990
|
}, undefined>;
|
|
1991
1991
|
type SCreateNewsletterSignup = v.InferOutput<typeof SCreateNewsletterSignup>;
|
|
1992
1992
|
|
|
@@ -2101,7 +2101,7 @@ declare const SharpSpringSignUpToDownload: v.ObjectSchema<{
|
|
|
2101
2101
|
readonly email_consent: v.BooleanSchema<undefined>;
|
|
2102
2102
|
readonly on_page: v.SchemaWithPipe<readonly [v.StringSchema<"It appears you are a robot, please try again.">, v.TrimAction, v.MaxLengthAction<string, 2048, "The string you provided is too long for our database, please abbreviate your string to be 2048 characters or less.">]>;
|
|
2103
2103
|
readonly captcha: v.SchemaWithPipe<readonly [v.StringSchema<"It appears you are a robot, please try again.">, v.TrimAction, v.MaxLengthAction<string, 5000, "The string you provided is too long, please abbreviate your string to be 5000 characters or less.">]>;
|
|
2104
|
-
readonly middle_name: v.
|
|
2104
|
+
readonly middle_name: v.StringSchema<undefined>;
|
|
2105
2105
|
}, undefined>;
|
|
2106
2106
|
type SharpSpringSignUpToDownload = v.InferOutput<typeof SharpSpringSignUpToDownload>;
|
|
2107
2107
|
|
package/dist/index.js
CHANGED
|
@@ -1828,7 +1828,7 @@ var SCreateNewsletterSignup = v6.object({
|
|
|
1828
1828
|
on_page: IsValidRefPage,
|
|
1829
1829
|
captcha: IsValidCaptchaToken,
|
|
1830
1830
|
// honeypot field
|
|
1831
|
-
middle_name: v6.
|
|
1831
|
+
middle_name: v6.string()
|
|
1832
1832
|
});
|
|
1833
1833
|
var SCreateResume = v6.object({
|
|
1834
1834
|
first_name: IsValidFirstName,
|
|
@@ -1919,7 +1919,7 @@ var SharpSpringSignUpToDownload = v6.object({
|
|
|
1919
1919
|
on_page: IsValidRefPage,
|
|
1920
1920
|
captcha: IsValidCaptchaToken,
|
|
1921
1921
|
// honeypot field
|
|
1922
|
-
middle_name: v6.
|
|
1922
|
+
middle_name: v6.string()
|
|
1923
1923
|
});
|
|
1924
1924
|
var SEntityRelationPositionBefore = v6.object({
|
|
1925
1925
|
before: IsValidReferenceDocumentId
|