@getcommunity/gc-validators 0.0.2

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.
@@ -0,0 +1,508 @@
1
+ import * as v from 'valibot';
2
+
3
+ declare const LIMIT_PAGINATION_DEFAULT_SIZE = 100;
4
+ declare const LIMIT_PAGINATION_MAX_SIZE = 10000;
5
+ declare const LIMIT_BLOG_POST_PAGINATION_DEFAULT_SIZE = 4;
6
+ declare const LIMIT_BLOG_POST_PAGINATION_MAX_SIZE = 20;
7
+ declare const LIMIT_CLIENT_PAGINATION_DEFAULT_SIZE = 16;
8
+ declare const LIMIT_CLIENT_PAGINATION_MAX_SIZE = 100;
9
+ declare const LIMIT_PRODUCT_HIGHLIGHT_PAGINATION_DEFAULT_SIZE = 10;
10
+ declare const LIMIT_PRODUCT_HIGHLIGHT_PAGINATION_MAX_SIZE = 100;
11
+ declare const LIMIT_PRODUCT_PAGINATION_DEFAULT_SIZE = 10;
12
+ declare const LIMIT_PRODUCT_PAGINATION_MAX_SIZE = 100;
13
+ declare const LIMIT_REDIRECT_PAGINATION_DEFAULT_SIZE = 1000;
14
+ declare const LIMIT_REDIRECT_PAGINATION_MAX_SIZE = 10000;
15
+ declare const LIMIT_TEAM_MEMBER_PAGINATION_DEFAULT_SIZE = 10;
16
+ declare const LIMIT_TEAM_MEMBER_PAGINATION_MAX_SIZE = 20;
17
+ declare const LIMIT_TREND_PAGINATION_DEFAULT_SIZE = 7;
18
+ declare const LIMIT_TREND_PAGINATION_MAX_SIZE = 100;
19
+ declare const LIMIT_USER_PAGINATION_DEFAULT_SIZE = 10;
20
+ declare const LIMIT_USER_PAGINATION_MAX_SIZE = 10;
21
+
22
+ /**
23
+ * Example usage of ClientEntityScope type
24
+ * @reference https://youtube.com/shorts/zOseJFD447U?si=xX8DYEHdl9YtN7S4
25
+ *
26
+ * > const validScope: ClientEntityScope = "tracking-link:import"; // ✅
27
+ * > const invalidScope: ClientEntityScope = "website:import"; // ❌ Type error!
28
+ */
29
+ declare const CLIENT_ENTITY_PERMISSIONS: {
30
+ readonly "client-report": readonly ["list", "create", "read", "update", "delete", "export", "import"];
31
+ readonly "utm-tracking-link": readonly ["list", "create", "read", "update", "delete", "export", "import"];
32
+ };
33
+ type ClientEntityKey = keyof typeof CLIENT_ENTITY_PERMISSIONS;
34
+ type ClientEntityActions<K extends ClientEntityKey = ClientEntityKey> = (typeof CLIENT_ENTITY_PERMISSIONS)[K][number];
35
+ type EntityActionJoin<K extends string, V extends string> = `${K}:${V}`;
36
+ type ClientEntityScope = {
37
+ [K in ClientEntityKey]: EntityActionJoin<K, (typeof CLIENT_ENTITY_PERMISSIONS)[K][number]>;
38
+ }[ClientEntityKey];
39
+ declare const CLIENT_ENTITY_KEYS: ClientEntityKey[];
40
+ declare const CLIENT_ENTITY_SCOPES: ClientEntityScope[];
41
+
42
+ declare const LIMIT_MIN_VALUE = 1;
43
+ declare const LIMIT_MIN_NAME = 2;
44
+ declare const LIMIT_MAX_DESCRIPTION = 1024;
45
+ declare const LIMIT_SHORT_STRING_MAX_LENGTH = 255;
46
+ declare const LIMIT_MEDIUM_STRING_MAX_LENGTH = 500;
47
+ declare const LIMIT_LONG_STRING_MAX_LENGTH = 5000;
48
+ declare const LIMIT_MIN_USERNAME = 3;
49
+ declare const LIMIT_MAX_USERNAME = 255;
50
+ declare const LIMIT_MIN_EMAIL = 5;
51
+ declare const LIMIT_MAX_EMAIL = 255;
52
+ declare const LIMIT_MIN_PASSWORD = 8;
53
+ declare const LIMIT_MAX_PASSWORD = 255;
54
+ declare const LIMIT_MAX_PROVIDER = 255;
55
+ declare const LIMIT_MIN_DESTINATION = 10;
56
+ declare const LIMIT_MAX_DESTINATION = 2048;
57
+ declare const LIMIT_MIN_DOMAIN = 10;
58
+ declare const LIMIT_MAX_DOMAIN = 253;
59
+ declare const LIMIT_MIN_PATH = 1;
60
+ declare const LIMIT_MAX_PATH = 2038;
61
+ declare const LIMIT_MIN_QUERY = 1;
62
+ declare const LIMIT_MAX_QUERY = 2038;
63
+ declare const LIMIT_MIN_FRAGMENT = 1;
64
+ declare const LIMIT_MAX_FRAGMENT = 2038;
65
+ declare const LIMIT_MIN_UTM_SOURCE = 1;
66
+ declare const LIMIT_MAX_UTM_SOURCE = 2026;
67
+ declare const LIMIT_MIN_UTM_MEDIUM = 1;
68
+ declare const LIMIT_MAX_UTM_MEDIUM = 2026;
69
+ declare const LIMIT_MIN_UTM_CAMPAIGN = 1;
70
+ declare const LIMIT_MAX_UTM_CAMPAIGN = 2024;
71
+ declare const LIMIT_MIN_UTM_CREATIVE_FORMAT = 1;
72
+ declare const LIMIT_MAX_UTM_CREATIVE_FORMAT = 2017;
73
+ declare const LIMIT_MIN_UTM_CONTENT = 1;
74
+ declare const LIMIT_MAX_UTM_CONTENT = 2025;
75
+ declare const LIMIT_MIN_UTM_TERM = 1;
76
+ declare const LIMIT_MAX_UTM_TERM = 2028;
77
+ declare const LIMIT_MIN_UTM_ID = 1;
78
+ declare const LIMIT_MAX_UTM_ID = 2030;
79
+
80
+ declare const ERROR_MESSAGE_REGEX_DOMAIN = "please provide a valid domain name";
81
+ declare const REGEX_DOMAIN: RegExp;
82
+ declare const ERROR_MESSAGE_REGEX_UTM_VALUE = "can only contain letters, numbers, and the special characters: - _ .";
83
+ declare const REGEX_UTM_VALUE: RegExp;
84
+
85
+ declare const QueryStrapiPaginated: v.ObjectSchema<{
86
+ readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
87
+ readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 10000, undefined>]>, 100>, 100>;
88
+ }, undefined>;
89
+ type QueryStrapiPaginated = v.InferOutput<typeof QueryStrapiPaginated>;
90
+ declare const QueryStrapiById: v.ObjectSchema<{
91
+ readonly id: v.NumberSchema<"please provide a valid id">;
92
+ }, undefined>;
93
+ type QueryStrapiById = v.InferOutput<typeof QueryStrapiById>;
94
+ declare const QueryStrapiByDocumentId: v.ObjectSchema<{
95
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
96
+ }, undefined>;
97
+ type QueryStrapiByDocumentId = v.InferOutput<typeof QueryStrapiByDocumentId>;
98
+ declare const QueryStrapiBySlug: v.ObjectSchema<{
99
+ readonly slug: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long for our database, please abbreviate your string to be 255 characters or less.">]>;
100
+ }, undefined>;
101
+ type QueryStrapiBySlug = v.InferOutput<typeof QueryStrapiBySlug>;
102
+ declare const QueryStrapiByEmail: v.ObjectSchema<{
103
+ readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string, 5, "your email is too short, it must be at least 5 characters">, v.MaxLengthAction<string, 255, "your email is too long, it must be 255 characters or less">, v.EmailAction<string, "please provide a valid email address">]>;
104
+ }, undefined>;
105
+ type QueryStrapiByEmail = v.InferOutput<typeof QueryStrapiByEmail>;
106
+ declare const QueryStrapiByPhone: v.ObjectSchema<{
107
+ readonly phone: v.SchemaWithPipe<readonly [v.StringSchema<"Please enter your phone number.">, v.TrimAction, v.MinLengthAction<string, 7, "Please enter your phone number.">, v.MaxLengthAction<string, 15, "The phone you provided does not appear to be a valid phone number.">]>;
108
+ }, undefined>;
109
+ type QueryStrapiByPhone = v.InferOutput<typeof QueryStrapiByPhone>;
110
+ declare const QueryStrapiByName: v.ObjectSchema<{
111
+ readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long for our database, please abbreviate your string to be 255 characters or less.">]>;
112
+ }, undefined>;
113
+ type QueryStrapiByName = v.InferOutput<typeof QueryStrapiByName>;
114
+
115
+ declare const SCreateLead: v.ObjectSchema<{
116
+ readonly first_name: v.SchemaWithPipe<readonly [v.StringSchema<"Please enter your first name.">, v.TrimAction, v.MinLengthAction<string, 1, "Please enter your first name.">, v.MaxLengthAction<string, 255, "Your first name is too long for our datanase, please abbreviate your first name to be 255 characters or less.">]>;
117
+ readonly last_name: v.SchemaWithPipe<readonly [v.StringSchema<"Please enter your last name.">, v.TrimAction, v.MinLengthAction<string, 1, "Please enter your last name.">, v.MaxLengthAction<string, 255, "Your last name is too long for our datanase, please abbreviate your last name to be 255 characters or less.">]>;
118
+ readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string, 5, "your email is too short, it must be at least 5 characters">, v.MaxLengthAction<string, 255, "your email is too long, it must be 255 characters or less">, v.EmailAction<string, "please provide a valid email address">]>;
119
+ readonly phone: v.SchemaWithPipe<readonly [v.StringSchema<"Please enter your phone number.">, v.TrimAction, v.MinLengthAction<string, 7, "Please enter your phone number.">, v.MaxLengthAction<string, 15, "The phone you provided does not appear to be a valid phone number.">]>;
120
+ readonly company: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"Please enter your company name.">, v.TrimAction, v.MinLengthAction<string, 1, "Please enter your company name.">, v.MaxLengthAction<string, 255, "The company name you provided is too long for our database, please abbreviate your company name to be 255 characters or less.">]>, undefined>;
121
+ readonly title: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"Please enter your job title or reference.">, v.TrimAction, v.MinLengthAction<string, 1, "Please enter your job title or reference.">, v.MaxLengthAction<string, 255, "The job title you provided is too long for our database, please abbreviate your company name to be 255 characters or less.">]>, undefined>;
122
+ readonly message: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"How can we be of service to your team?">, v.TrimAction, v.MaxLengthAction<string, 5000, "The message you provided is too long for our database, please abbreviate your message to be 5000 characters or less.">]>, undefined>;
123
+ readonly product_interest: v.SchemaWithPipe<readonly [v.StringSchema<"It appears you are a robot, please try again.">, v.TrimAction, v.MaxLengthAction<string, 255, "The product interest provided is too long. It must be 255 characters or less.">]>;
124
+ readonly email_consent: v.BooleanSchema<undefined>;
125
+ readonly sms_consent: v.BooleanSchema<undefined>;
126
+ 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.">]>;
127
+ 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 for our database, please abbreviate your string to be 5000 characters or less.">]>;
128
+ }, undefined>;
129
+ type SCreateLead = v.InferOutput<typeof SCreateLead>;
130
+
131
+ declare const SCreateNewsletterSignup: v.ObjectSchema<{
132
+ readonly first_name: v.SchemaWithPipe<readonly [v.StringSchema<"Please enter your first name.">, v.TrimAction, v.MinLengthAction<string, 1, "Please enter your first name.">, v.MaxLengthAction<string, 255, "Your first name is too long for our datanase, please abbreviate your first name to be 255 characters or less.">]>;
133
+ readonly last_name: v.SchemaWithPipe<readonly [v.StringSchema<"Please enter your last name.">, v.TrimAction, v.MinLengthAction<string, 1, "Please enter your last name.">, v.MaxLengthAction<string, 255, "Your last name is too long for our datanase, please abbreviate your last name to be 255 characters or less.">]>;
134
+ readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string, 5, "your email is too short, it must be at least 5 characters">, v.MaxLengthAction<string, 255, "your email is too long, it must be 255 characters or less">, v.EmailAction<string, "please provide a valid email address">]>;
135
+ readonly email_consent: v.BooleanSchema<undefined>;
136
+ 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.">]>;
137
+ 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 for our database, please abbreviate your string to be 5000 characters or less.">]>;
138
+ }, undefined>;
139
+ type SCreateNewsletterSignup = v.InferOutput<typeof SCreateNewsletterSignup>;
140
+
141
+ declare const SCreateResume: v.ObjectSchema<{
142
+ readonly first_name: v.SchemaWithPipe<readonly [v.StringSchema<"Please enter your first name.">, v.TrimAction, v.MinLengthAction<string, 1, "Please enter your first name.">, v.MaxLengthAction<string, 255, "Your first name is too long for our datanase, please abbreviate your first name to be 255 characters or less.">]>;
143
+ readonly last_name: v.SchemaWithPipe<readonly [v.StringSchema<"Please enter your last name.">, v.TrimAction, v.MinLengthAction<string, 1, "Please enter your last name.">, v.MaxLengthAction<string, 255, "Your last name is too long for our datanase, please abbreviate your last name to be 255 characters or less.">]>;
144
+ readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string, 5, "your email is too short, it must be at least 5 characters">, v.MaxLengthAction<string, 255, "your email is too long, it must be 255 characters or less">, v.EmailAction<string, "please provide a valid email address">]>;
145
+ readonly phone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"Please enter your phone number.">, v.TrimAction, v.MinLengthAction<string, 7, "Please enter your phone number.">, v.MaxLengthAction<string, 15, "The phone you provided does not appear to be a valid phone number.">]>, undefined>;
146
+ readonly message: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"How can we be of service to your team?">, v.TrimAction, v.MaxLengthAction<string, 5000, "The message you provided is too long for our database, please abbreviate your message to be 5000 characters or less.">]>, undefined>;
147
+ readonly social_profiles: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, "The string you provided is too long for our database, please abbreviate your string to be 5000 characters or less.">, v.CheckAction<string, "Please enter a list of URLs separated by commas.">]>, undefined>;
148
+ readonly file: v.NullableSchema<v.SchemaWithPipe<readonly [v.FileSchema<"Please upload a PDF or Word document.">, v.MimeTypeAction<File, readonly ["application/pdf"], "Please upload a PDF or Word document.">]>, undefined>;
149
+ readonly email_consent: v.BooleanSchema<undefined>;
150
+ readonly sms_consent: v.BooleanSchema<undefined>;
151
+ 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.">]>;
152
+ 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 for our database, please abbreviate your string to be 5000 characters or less.">]>;
153
+ }, undefined>;
154
+ type SCreateResume = v.InferOutput<typeof SCreateResume>;
155
+ declare const SCreateResumeInfo: v.ObjectSchema<{
156
+ readonly first_name: v.SchemaWithPipe<readonly [v.StringSchema<"Please enter your first name.">, v.TrimAction, v.MinLengthAction<string, 1, "Please enter your first name.">, v.MaxLengthAction<string, 255, "Your first name is too long for our datanase, please abbreviate your first name to be 255 characters or less.">]>;
157
+ readonly last_name: v.SchemaWithPipe<readonly [v.StringSchema<"Please enter your last name.">, v.TrimAction, v.MinLengthAction<string, 1, "Please enter your last name.">, v.MaxLengthAction<string, 255, "Your last name is too long for our datanase, please abbreviate your last name to be 255 characters or less.">]>;
158
+ readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string, 5, "your email is too short, it must be at least 5 characters">, v.MaxLengthAction<string, 255, "your email is too long, it must be 255 characters or less">, v.EmailAction<string, "please provide a valid email address">]>;
159
+ readonly phone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"Please enter your phone number.">, v.TrimAction, v.MinLengthAction<string, 7, "Please enter your phone number.">, v.MaxLengthAction<string, 15, "The phone you provided does not appear to be a valid phone number.">]>, undefined>;
160
+ readonly message: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"How can we be of service to your team?">, v.TrimAction, v.MaxLengthAction<string, 5000, "The message you provided is too long for our database, please abbreviate your message to be 5000 characters or less.">]>, undefined>;
161
+ readonly social_profiles: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, "The string you provided is too long for our database, please abbreviate your string to be 5000 characters or less.">, v.CheckAction<string, "Please enter a list of URLs separated by commas.">]>, undefined>;
162
+ readonly file: v.ObjectSchema<{
163
+ readonly id: v.NumberSchema<undefined>;
164
+ readonly src: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
165
+ }, undefined>;
166
+ readonly email_consent: v.BooleanSchema<undefined>;
167
+ readonly sms_consent: v.BooleanSchema<undefined>;
168
+ 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.">]>;
169
+ 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 for our database, please abbreviate your string to be 5000 characters or less.">]>;
170
+ }, undefined>;
171
+ type SCreateResumeInfo = v.InferOutput<typeof SCreateResumeInfo>;
172
+ declare const SUpdateResumeInfo: v.ObjectSchema<{
173
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long for our database, please abbreviate your string to be 255 characters or less.">]>;
174
+ readonly first_name: v.SchemaWithPipe<readonly [v.StringSchema<"Please enter your first name.">, v.TrimAction, v.MinLengthAction<string, 1, "Please enter your first name.">, v.MaxLengthAction<string, 255, "Your first name is too long for our datanase, please abbreviate your first name to be 255 characters or less.">]>;
175
+ readonly last_name: v.SchemaWithPipe<readonly [v.StringSchema<"Please enter your last name.">, v.TrimAction, v.MinLengthAction<string, 1, "Please enter your last name.">, v.MaxLengthAction<string, 255, "Your last name is too long for our datanase, please abbreviate your last name to be 255 characters or less.">]>;
176
+ readonly email: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string, 5, "your email is too short, it must be at least 5 characters">, v.MaxLengthAction<string, 255, "your email is too long, it must be 255 characters or less">, v.EmailAction<string, "please provide a valid email address">]>;
177
+ readonly phone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"Please enter your phone number.">, v.TrimAction, v.MinLengthAction<string, 7, "Please enter your phone number.">, v.MaxLengthAction<string, 15, "The phone you provided does not appear to be a valid phone number.">]>, undefined>;
178
+ readonly message: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"How can we be of service to your team?">, v.TrimAction, v.MaxLengthAction<string, 5000, "The message you provided is too long for our database, please abbreviate your message to be 5000 characters or less.">]>, undefined>;
179
+ readonly social_profiles: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, "The string you provided is too long for our database, please abbreviate your string to be 5000 characters or less.">, v.CheckAction<string, "Please enter a list of URLs separated by commas.">]>, undefined>;
180
+ readonly file: v.ObjectSchema<{
181
+ readonly id: v.NumberSchema<undefined>;
182
+ readonly src: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
183
+ }, undefined>;
184
+ readonly email_consent: v.BooleanSchema<undefined>;
185
+ readonly sms_consent: v.BooleanSchema<undefined>;
186
+ 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.">]>;
187
+ 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 for our database, please abbreviate your string to be 5000 characters or less.">]>;
188
+ }, undefined>;
189
+ type SUpdateResumeInfo = v.InferOutput<typeof SUpdateResumeInfo>;
190
+
191
+ declare const SUpdateTrendsLikes: v.ObjectSchema<{
192
+ readonly documentId: v.StringSchema<undefined>;
193
+ readonly likes: v.NumberSchema<undefined>;
194
+ }, undefined>;
195
+ type SUpdateTrendsLikes = v.InferOutput<typeof SUpdateTrendsLikes>;
196
+
197
+ declare const QueryStrapiPaginatedUrlRedirects: v.ObjectSchema<{
198
+ readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
199
+ readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 20, undefined>]>, 1000>, 1000>;
200
+ }, undefined>;
201
+ type QueryStrapiPaginatedUrlRedirects = v.InferOutput<typeof QueryStrapiPaginatedUrlRedirects>;
202
+ declare const QueryStrapiUrlRedirectsByFrom: v.ObjectSchema<{
203
+ readonly from: v.StringSchema<undefined>;
204
+ }, undefined>;
205
+ type QueryStrapiUrlRedirectsByFrom = v.InferOutput<typeof QueryStrapiUrlRedirectsByFrom>;
206
+
207
+ declare const SReadUserById: v.ObjectSchema<{
208
+ readonly id: v.NumberSchema<"please provide a valid id">;
209
+ }, undefined>;
210
+ type SReadUserById = v.InferOutput<typeof SReadUserById>;
211
+ declare const SReadUserByDocumentId: v.ObjectSchema<{
212
+ readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
213
+ }, undefined>;
214
+ type SReadUserByDocumentId = v.InferOutput<typeof SReadUserByDocumentId>;
215
+ declare const QueryStrapiUsers: v.ObjectSchema<{
216
+ readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
217
+ readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 3, undefined>, v.MaxValueAction<number, 10, undefined>]>, 10>, 10>;
218
+ }, undefined>;
219
+ type QueryStrapiUsers = v.InferOutput<typeof QueryStrapiUsers>;
220
+ declare const QueryStrapiUsersByIdentifier: v.ObjectSchema<{
221
+ readonly identifier: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 255, undefined>]>;
222
+ readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
223
+ readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 3, undefined>, v.MaxValueAction<number, 10, undefined>]>, 10>, 10>;
224
+ }, undefined>;
225
+ type QueryStrapiUsersByIdentifier = v.InferOutput<typeof QueryStrapiUsersByIdentifier>;
226
+
227
+ type ValidateAndCleanSuccess<T> = {
228
+ data: Partial<T>;
229
+ error: null;
230
+ errors: null;
231
+ };
232
+ type ValidateAndCleanFailure = {
233
+ data: null;
234
+ error: string | null;
235
+ errors: Record<string, string> | null;
236
+ };
237
+ type ValidateAndCleanResult<T> = ValidateAndCleanSuccess<T> | ValidateAndCleanFailure;
238
+ declare function validateAndClean<T>(schema: v.BaseSchema<T, Partial<T>, v.BaseIssue<T>>, input: unknown): ValidateAndCleanResult<T>;
239
+ declare function isValidationSuccess<T>(result: ValidateAndCleanResult<T>): result is ValidateAndCleanSuccess<T>;
240
+ declare function isValidationFailure<T>(result: ValidateAndCleanResult<T>): result is ValidateAndCleanFailure;
241
+ declare function omitUndefined<T extends Record<string, any>>(obj: T): Partial<T>;
242
+
243
+ declare function dateToday(): Date;
244
+ declare function datePlusDays(today: Date, days?: number): Date;
245
+
246
+ declare const IsValidGroupUserScopes: v.SchemaWithPipe<readonly [v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid scope">, v.PicklistSchema<ClientEntityScope[], "invalid client scope provided">]>, "please provide an array of scopes">, v.MaxLengthAction<ClientEntityScope[], number, "you cannot provide more scopes than available">]>;
247
+
248
+ declare const InvalidInputRobot = "It appears you are a robot, please try again.";
249
+ declare const IsValidFileReferenceId: v.ObjectSchema<{
250
+ readonly id: v.NumberSchema<undefined>;
251
+ readonly src: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
252
+ }, undefined>;
253
+ declare const InvalidFullName = "Please enter your name.";
254
+ declare const InvalidFullNameMaxLength = "Your name is too long for our datanase, please abbreviate your name to be 500 characters or less.";
255
+ declare const IsValidFullName: v.SchemaWithPipe<readonly [v.StringSchema<"Please enter your name.">, v.TrimAction, v.MinLengthAction<string, 1, "Please enter your name.">, v.MaxLengthAction<string, 500, "Your name is too long for our datanase, please abbreviate your name to be 500 characters or less.">, v.IncludesAction<string, " ", "Please enter your first and last name.">]>;
256
+ declare const InvalidFirstName = "Please enter your first name.";
257
+ declare const InvalidFirstNameMaxLength = "Your first name is too long for our datanase, please abbreviate your first name to be 255 characters or less.";
258
+ declare const IsValidFirstName: v.SchemaWithPipe<readonly [v.StringSchema<"Please enter your first name.">, v.TrimAction, v.MinLengthAction<string, 1, "Please enter your first name.">, v.MaxLengthAction<string, 255, "Your first name is too long for our datanase, please abbreviate your first name to be 255 characters or less.">]>;
259
+ declare const InvalidLastName = "Please enter your last name.";
260
+ declare const InvalidLastNameMaxLength = "Your last name is too long for our datanase, please abbreviate your last name to be 255 characters or less.";
261
+ declare const IsValidLastName: v.SchemaWithPipe<readonly [v.StringSchema<"Please enter your last name.">, v.TrimAction, v.MinLengthAction<string, 1, "Please enter your last name.">, v.MaxLengthAction<string, 255, "Your last name is too long for our datanase, please abbreviate your last name to be 255 characters or less.">]>;
262
+ declare const IsValidUserConsent: v.BooleanSchema<undefined>;
263
+ declare const InvalidUserPhoneType = "Please enter your phone number.";
264
+ declare const InvalidUserPhone = "The phone you provided does not appear to be a valid phone number.";
265
+ declare const IsValidUserPhoneRequired: v.SchemaWithPipe<readonly [v.StringSchema<"Please enter your phone number.">, v.TrimAction, v.MinLengthAction<string, 7, "Please enter your phone number.">, v.MaxLengthAction<string, 15, "The phone you provided does not appear to be a valid phone number.">]>;
266
+ declare const IsValidUserPhone: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"Please enter your phone number.">, v.TrimAction, v.MinLengthAction<string, 7, "Please enter your phone number.">, v.MaxLengthAction<string, 15, "The phone you provided does not appear to be a valid phone number.">]>, undefined>;
267
+ declare const InvalidCompanyName = "Please enter your company name.";
268
+ declare const InvalidCompanyNameMaxLength = "The company name you provided is too long for our database, please abbreviate your company name to be 255 characters or less.";
269
+ declare const IsValidCompanyNameRequired: v.SchemaWithPipe<readonly [v.StringSchema<"Please enter your company name.">, v.TrimAction, v.MinLengthAction<string, 1, "Please enter your company name.">, v.MaxLengthAction<string, 255, "The company name you provided is too long for our database, please abbreviate your company name to be 255 characters or less.">]>;
270
+ declare const IsValidCompanyName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"Please enter your company name.">, v.TrimAction, v.MinLengthAction<string, 1, "Please enter your company name.">, v.MaxLengthAction<string, 255, "The company name you provided is too long for our database, please abbreviate your company name to be 255 characters or less.">]>, undefined>;
271
+ declare const InvalidUserTitle = "Please enter your job title or reference.";
272
+ declare const InvalidUserTitleMaxLength = "The job title you provided is too long for our database, please abbreviate your company name to be 255 characters or less.";
273
+ declare const IsValidUserTitleRequired: v.SchemaWithPipe<readonly [v.StringSchema<"Please enter your job title or reference.">, v.TrimAction, v.MinLengthAction<string, 1, "Please enter your job title or reference.">, v.MaxLengthAction<string, 255, "The job title you provided is too long for our database, please abbreviate your company name to be 255 characters or less.">]>;
274
+ declare const IsValidUserTitle: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"Please enter your job title or reference.">, v.TrimAction, v.MinLengthAction<string, 1, "Please enter your job title or reference.">, v.MaxLengthAction<string, 255, "The job title you provided is too long for our database, please abbreviate your company name to be 255 characters or less.">]>, undefined>;
275
+ declare const InvalidUserMessage = "How can we be of service to your team?";
276
+ declare const InvalidUserMessageMaxLength = "The message you provided is too long for our database, please abbreviate your message to be 5000 characters or less.";
277
+ declare const IsValidUserMessage: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"How can we be of service to your team?">, v.TrimAction, v.MaxLengthAction<string, 5000, "The message you provided is too long for our database, please abbreviate your message to be 5000 characters or less.">]>, undefined>;
278
+ declare const InvalidRefPageMaxLength = "The string you provided is too long for our database, please abbreviate your string to be 2048 characters or less.";
279
+ declare const IsValidRefPage: 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.">]>;
280
+ declare const InvalidProductInterestMaxLength = "The product interest provided is too long. It must be 255 characters or less.";
281
+ declare const IsValidProductInterest: v.SchemaWithPipe<readonly [v.StringSchema<"It appears you are a robot, please try again.">, v.TrimAction, v.MaxLengthAction<string, 255, "The product interest provided is too long. It must be 255 characters or less.">]>;
282
+ declare const IsValidCaptchaToken: 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 for our database, please abbreviate your string to be 5000 characters or less.">]>;
283
+ declare const InvalidInstrustryName = "Please enter your industry.";
284
+ declare const InvalidInstrustryNameMaxLength = "The industry you provided is too long for our database, please abbreviate your industry to be 255 characters or less.";
285
+ declare const IsValidIndustryName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"Please enter your industry.">, v.TrimAction, v.MaxLengthAction<string, 255, "The industry you provided is too long for our database, please abbreviate your industry to be 255 characters or less.">]>, undefined>;
286
+ declare const InvalidRangeValueOneToFive = "Please select a value between 1 and 5. (1 = Poor, 3 = Neutral, 5 = Excellent)";
287
+ declare const IsValidRangeValueOneToFive: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<["1", "2", "3", "4", "5"], "Please select a value between 1 and 5. (1 = Poor, 3 = Neutral, 5 = Excellent)">]>;
288
+ declare const InvalidClientTermNumber = "Please provide how many months your team has used this product.";
289
+ declare const InvalidClientTermMin = "We're sorry, you must be a client for at least 1 month to provide feedback.";
290
+ declare const IsValidClientTerm: v.SchemaWithPipe<readonly [v.NumberSchema<"Please provide how many months your team has used this product.">, v.MinValueAction<number, 1, "We're sorry, you must be a client for at least 1 month to provide feedback.">]>;
291
+ declare const IsValidUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.UrlAction<string, "Please enter a valid URL.">]>;
292
+ declare const IsValidUrlOrUndefined: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.UrlAction<string, "Please enter a valid URL.">]>, undefined>;
293
+ declare const IsValidUrlList: (input: string) => boolean;
294
+ declare const InvalidListOfUrls = "Please enter a list of URLs separated by commas.";
295
+ declare const IsValidStringSepListOfUrls: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, "The string you provided is too long for our database, please abbreviate your string to be 5000 characters or less.">, v.CheckAction<string, "Please enter a list of URLs separated by commas.">]>;
296
+ declare const IsValidStringSepListOfUrlsOrUndefined: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, "The string you provided is too long for our database, please abbreviate your string to be 5000 characters or less.">, v.CheckAction<string, "Please enter a list of URLs separated by commas.">]>, undefined>;
297
+ declare const InvalidDestinationUrl = "Please remove any query parameters from the URL.";
298
+ declare const IsValidDestinationUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.UrlAction<string, "Please enter a valid URL.">, v.CheckAction<string, "Please remove any query parameters from the URL.">]>;
299
+ declare const InvalidUtmLink = "Please enter a valid URL with UTM parameters.";
300
+ declare const IsValidUtmLink: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.UrlAction<string, "Please enter a valid URL.">, v.CheckAction<string, "Please enter a valid URL with UTM parameters.">]>;
301
+ declare const InvalidUtmCampaignKeyName = "Campaign key name may only contain alphanumeric characters, and underscores.";
302
+ declare const IsValidUtmCampaignKeyName: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.CheckAction<string, "Campaign key name may only contain alphanumeric characters, and underscores.">]>;
303
+ declare const IsValidUtmCampaignKeyNameOrUndefined: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.CheckAction<string, "Campaign key name may only contain alphanumeric characters, and underscores.">]>, undefined>;
304
+ declare const InvalidCsvFileType = "Please upload a CSV file.";
305
+ declare const IsValidCsvFile: v.OptionalSchema<v.SchemaWithPipe<readonly [v.BlobSchema<undefined>, v.MimeTypeAction<Blob, readonly ["text/csv"], "Please upload a CSV file.">]>, undefined>;
306
+ declare const InvalidResumeFileType = "Please upload a PDF or Word document.";
307
+ declare const IsValidResumeFile: v.NullableSchema<v.SchemaWithPipe<readonly [v.FileSchema<"Please upload a PDF or Word document.">, v.MimeTypeAction<File, readonly ["application/pdf"], "Please upload a PDF or Word document.">]>, undefined>;
308
+ declare const ValidNumberOfEmployeeOptions: readonly [{
309
+ readonly label: "0-10";
310
+ readonly value: "0-10";
311
+ }, {
312
+ readonly label: "11-20";
313
+ readonly value: "11-20";
314
+ }, {
315
+ readonly label: "21-50";
316
+ readonly value: "21-50";
317
+ }, {
318
+ readonly label: "51-100";
319
+ readonly value: "51-100";
320
+ }, {
321
+ readonly label: "101-500";
322
+ readonly value: "101-500";
323
+ }, {
324
+ readonly label: "501+";
325
+ readonly value: "501+";
326
+ }];
327
+ declare const IsValidNumberOfEmployees: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<("0-10" | "11-20" | "21-50" | "51-100" | "101-500" | "501+")[], "Please select an option that best describes your team size.">]>;
328
+ declare const ValidJobRoleGroup: readonly [{
329
+ readonly label: "Founder / Owner";
330
+ readonly value: "founder,owner";
331
+ }, {
332
+ readonly label: "C-suite Executive";
333
+ readonly value: "executive";
334
+ }, {
335
+ readonly label: "Vice President";
336
+ readonly value: "vice president";
337
+ }, {
338
+ readonly label: "Director";
339
+ readonly value: "director";
340
+ }, {
341
+ readonly label: "Manager";
342
+ readonly value: "manager";
343
+ }, {
344
+ readonly label: "Solo-prenour";
345
+ readonly value: "solo-prenour";
346
+ }, {
347
+ readonly label: "Student";
348
+ readonly value: "student";
349
+ }];
350
+ declare const IsValidUserRole: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.PicklistSchema<("founder,owner" | "executive" | "vice president" | "director" | "manager" | "solo-prenour" | "student")[], "Please select an option that best describes your role.">]>;
351
+ declare const ValidGcServiceOptions: readonly [{
352
+ readonly label: "Full Marketing Services";
353
+ readonly value: "Full Marketing Services";
354
+ }, {
355
+ readonly label: "Graphic Design / Marketing Design";
356
+ readonly value: "Graphic Design / Marketing Design";
357
+ }, {
358
+ readonly label: "Text Message Marketing";
359
+ readonly value: "Text Message Marketing";
360
+ }, {
361
+ readonly label: "Email Marketing";
362
+ readonly value: "Email Marketing";
363
+ }, {
364
+ readonly label: "Video Production";
365
+ readonly value: "Video Production";
366
+ }, {
367
+ readonly label: "Website Production";
368
+ readonly value: "Website Production";
369
+ }, {
370
+ readonly label: "Marketing Automation Software";
371
+ readonly value: "Marketing Automation Software";
372
+ }, {
373
+ readonly label: "Online Advertising";
374
+ readonly value: "Online Advertising";
375
+ }, {
376
+ readonly label: "Influencer Marketing";
377
+ readonly value: "Influencer Marketing";
378
+ }];
379
+ declare const ValidGcVideoServiceOptions: readonly [{
380
+ readonly label: "Storyboarding";
381
+ readonly value: "Storyboarding";
382
+ }, {
383
+ readonly label: "Voiceovers";
384
+ readonly value: "Voiceovers";
385
+ }, {
386
+ readonly label: "Video Commercials / Interviews";
387
+ readonly value: "Video Commercials / Interviews";
388
+ }, {
389
+ readonly label: "Short Form Video Editing (social posts/stories)";
390
+ readonly value: "Short Form Video Editing (social posts/stories)";
391
+ }, {
392
+ readonly label: "Product Tours";
393
+ readonly value: "Product Tours";
394
+ }, {
395
+ readonly label: "Model Home / Community Tours";
396
+ readonly value: "Model Home / Community Tours";
397
+ }, {
398
+ readonly label: "Matterport Interactive Tours";
399
+ readonly value: "Matterport Interactive Tours";
400
+ }, {
401
+ readonly label: "3D Flyover Videos";
402
+ readonly value: "3D Flyover Videos";
403
+ }];
404
+ declare const ValidGcDesiredContentOptions: readonly [{
405
+ readonly label: "Blog Posts";
406
+ readonly value: "Blog Posts";
407
+ }, {
408
+ readonly label: "Podcasting";
409
+ readonly value: "Podcasting";
410
+ }, {
411
+ readonly label: "Live Streams";
412
+ readonly value: "Live Streams";
413
+ }, {
414
+ readonly label: "Newsletters";
415
+ readonly value: "Newsletters";
416
+ }, {
417
+ readonly label: "Freebies / Toolkits";
418
+ readonly value: "Freebies / Toolkits";
419
+ }, {
420
+ readonly label: "Community Updates";
421
+ readonly value: "Community Updates";
422
+ }];
423
+ declare const ValidRatingRange5: readonly [{
424
+ readonly label: "1";
425
+ readonly value: "1";
426
+ }, {
427
+ readonly label: "2";
428
+ readonly value: "2";
429
+ }, {
430
+ readonly label: "3";
431
+ readonly value: "3";
432
+ }, {
433
+ readonly label: "4";
434
+ readonly value: "4";
435
+ }, {
436
+ readonly label: "5";
437
+ readonly value: "5";
438
+ }];
439
+ declare const IsValidCost: v.SchemaWithPipe<readonly [v.NumberSchema<"please enter a cost value">, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1000000, "your campaign cost exceeds our $1 million dollar limit, please contact us for customized solutions">]>;
440
+ declare const IsValidOrUndefinedCost: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.NumberSchema<"please enter a cost value">, v.MinValueAction<number, 0, undefined>, v.MaxValueAction<number, 1000000, "your campaign cost exceeds our $1 million dollar limit, please contact us for customized solutions">]>, undefined>;
441
+ declare const IsValidLabel: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>;
442
+ declare const IsValidOrUndefinedLabel: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a label">, v.TrimAction, v.MinLengthAction<string, 1, "the label is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the label is too long, it must be 255 characters or less">]>, undefined>;
443
+ declare const IsValidValue: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>;
444
+ declare const IsValidOrUndefinedValue: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a value">, v.TrimAction, v.MinLengthAction<string, 1, "the value is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the value is too long, it must be 255 characters or less">, v.RegexAction<string, "the value can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
445
+ declare const IsValidDescription: v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>;
446
+ declare const IsValidOrUndefinedDescription: v.UndefinedableSchema<v.NullableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"the description must be a string">, v.TrimAction, v.MaxLengthAction<string, 1024, "the description is too long, it must be 1024 characters or less">]>, undefined>, undefined>;
447
+ declare const IsValidIsActive: v.BooleanSchema<"isActive must be a boolean">;
448
+ declare const IsValidOrUndefinedIsActive: v.UndefinedableSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
449
+ declare const IsValidIsSecure: v.BooleanSchema<"isSecure must be a boolean">;
450
+ declare const IsValidOrUndefinedIsSecure: v.UndefinedableSchema<v.BooleanSchema<"isSecure must be a boolean">, undefined>;
451
+ declare const IsValidName: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a name">, v.TrimAction, v.MinLengthAction<string, 2, "the name is too short, it must be at least 2 characters">, v.MaxLengthAction<string, 255, "the name is too long, it must be 255 characters or less">]>;
452
+ declare const IsValidOrUndefinedName: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a name">, v.TrimAction, v.MinLengthAction<string, 2, "the name is too short, it must be at least 2 characters">, v.MaxLengthAction<string, 255, "the name is too long, it must be 255 characters or less">]>, undefined>;
453
+
454
+ declare const IsValidReferenceId: v.NumberSchema<"please provide a valid id">;
455
+ declare const IsValidReferenceDocumentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
456
+ declare const IsValidDateToday: v.SchemaWithPipe<readonly [v.DateSchema<undefined>, v.MinValueAction<Date, Date, undefined>, v.TransformAction<Date, string>]>;
457
+ declare const IsValidPositiveInteger: v.SchemaWithPipe<readonly [v.NumberSchema<"Please enter a number.">, v.IntegerAction<number, "Please enter a whole number.">, v.MinValueAction<number, 1, "Please enter a positive number.">]>;
458
+ declare const InvalidShortStringMax = "The string you provided is too long for our database, please abbreviate your string to be 255 characters or less.";
459
+ declare const IsValidShortString: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long for our database, please abbreviate your string to be 255 characters or less.">]>;
460
+ declare const IsValidShortStringOrUndefined: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long for our database, please abbreviate your string to be 255 characters or less.">]>, undefined>;
461
+ declare const InvalidLongStringOrUndefined = "The string you provided is too long for our database, please abbreviate your string to be 5000 characters or less.";
462
+ declare const IsValidLongString: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, "The string you provided is too long for our database, please abbreviate your string to be 5000 characters or less.">]>;
463
+ declare const IsValidLongStringOrUndefined: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, "The string you provided is too long for our database, please abbreviate your string to be 5000 characters or less.">]>, undefined>;
464
+ declare const IsValidStringList: v.SchemaWithPipe<readonly [v.ArraySchema<v.StringSchema<undefined>, undefined>, v.TransformAction<string[], string>]>;
465
+ declare const IsValidStringListOrUndefined: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.StringSchema<undefined>, undefined>, v.TransformAction<string[], string>]>, undefined>;
466
+
467
+ declare const IsValidUrlDestination: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>;
468
+ declare const IsValidOrUndefinedUrlDestination: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url destination">, v.TrimAction, v.MinLengthAction<string, 10, "the url destination is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 2048, "the url destination is too long, it must be 2048 characters or less">, v.UrlAction<string, "please provide a valid url">]>, undefined>;
469
+ declare const IsValidUrlProtocol: v.PicklistSchema<["http", "https"], "please provide a valid url protocol">;
470
+ declare const IsValidOrUndefinedUrlProtocol: v.UndefinedableSchema<v.PicklistSchema<["http", "https"], "please provide a valid url protocol">, undefined>;
471
+ declare const IsValidUrlDomain: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a domain">, v.TrimAction, v.MinLengthAction<string, 10, "the domain is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 253, "the domain is too long, it must be 253 characters or less">, v.RegexAction<string, "please provide a valid domain name">]>;
472
+ declare const IsValidOrUndefinedUrlDomain: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a domain">, v.TrimAction, v.MinLengthAction<string, 10, "the domain is too short, it must be at least 10 characters">, v.MaxLengthAction<string, 253, "the domain is too long, it must be 253 characters or less">, v.RegexAction<string, "please provide a valid domain name">]>, undefined>;
473
+ declare const IsValidUrlPath: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url path">, v.TrimAction, v.MinLengthAction<string, 1, "the url path is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2038, "the url path is too long, it must be 2038 characters or less">]>;
474
+ declare const IsValidOrUndefinedUrlPath: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url path">, v.TrimAction, v.MinLengthAction<string, 1, "the url path is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2038, "the url path is too long, it must be 2038 characters or less">]>, undefined>;
475
+ declare const IsValidUrlQuery: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url query">, v.TrimAction, v.MinLengthAction<string, 1, "the url query is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2038, "the url query is too long, it must be 2038 characters or less">]>;
476
+ declare const IsValidOrUndefinedUrlQuery: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url query">, v.TrimAction, v.MinLengthAction<string, 1, "the url query is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2038, "the url query is too long, it must be 2038 characters or less">]>, undefined>;
477
+ declare const IsValidUrlFragment: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url hash/fragment">, v.TrimAction, v.MinLengthAction<string, 1, "the url hash/fragment is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2038, "the url hash/fragment is too long, it must be 2038 characters or less">]>;
478
+ declare const IsValidOrUndefinedUrlFragment: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a url hash/fragment">, v.TrimAction, v.MinLengthAction<string, 1, "the url hash/fragment is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2038, "the url hash/fragment is too long, it must be 2038 characters or less">]>, undefined>;
479
+
480
+ declare const IsValidUsername: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a username">, v.TrimAction, v.MinLengthAction<string, 3, "your username is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 255, "your username is too long, it must be 255 characters or less">, v.RegexAction<string, "your username can only contain letters, numbers, and the special characters: - _ .">]>;
481
+ declare const IsValidOrUndefinedUsername: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a username">, v.TrimAction, v.MinLengthAction<string, 3, "your username is too short, it must be at least 3 characters">, v.MaxLengthAction<string, 255, "your username is too long, it must be 255 characters or less">, v.RegexAction<string, "your username can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
482
+ declare const IsValidEmail: v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string, 5, "your email is too short, it must be at least 5 characters">, v.MaxLengthAction<string, 255, "your email is too long, it must be 255 characters or less">, v.EmailAction<string, "please provide a valid email address">]>;
483
+ declare const IsValidOrUndefinedEmail: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide an email">, v.TrimAction, v.MinLengthAction<string, 5, "your email is too short, it must be at least 5 characters">, v.MaxLengthAction<string, 255, "your email is too long, it must be 255 characters or less">, v.EmailAction<string, "please provide a valid email address">]>, undefined>;
484
+ declare const IsValidPassword: v.SchemaWithPipe<readonly [v.StringSchema<"a password is required">, v.TrimAction, v.MinLengthAction<string, 8, "your password is too short, it must be at least 8 characters">, v.MaxLengthAction<string, 255, "your password is too long, it must be 255 characters or less">]>;
485
+ declare const IsValidOrUndefinedPassword: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"a password is required">, v.TrimAction, v.MinLengthAction<string, 8, "your password is too short, it must be at least 8 characters">, v.MaxLengthAction<string, 255, "your password is too long, it must be 255 characters or less">]>, undefined>;
486
+ declare const IsValidProvider: v.SchemaWithPipe<readonly [v.StringSchema<"please enter a provider">, v.TrimAction, v.MaxLengthAction<string, 255, "the provider string is too long, it must be 255 characters or less">]>;
487
+ declare const IsValidOrUndefinedProvider: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please enter a provider">, v.TrimAction, v.MaxLengthAction<string, 255, "the provider string is too long, it must be 255 characters or less">]>, undefined>;
488
+ declare const IsValidConfirmed: v.BooleanSchema<undefined>;
489
+ declare const IsValidOrUndefinedConfirmed: v.UndefinedableSchema<v.BooleanSchema<undefined>, undefined>;
490
+ declare const IsValidBlocked: v.BooleanSchema<undefined>;
491
+ declare const IsValidOrUndefinedBlocked: v.UndefinedableSchema<v.BooleanSchema<undefined>, undefined>;
492
+
493
+ declare const IsValidUrlUtmSource: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_source is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2026, "the utm_source is too long, it must be 2026 characters or less">, v.RegexAction<string, "utm_source can only contain letters, numbers, and the special characters: - _ .">]>;
494
+ declare const IsValidOrUndefinedUrlUtmSource: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_source is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2026, "the utm_source is too long, it must be 2026 characters or less">, v.RegexAction<string, "utm_source can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
495
+ declare const IsValidUrlUtmMedium: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_medium is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2026, "the utm_medium is too long, it must be 2026 characters or less">, v.RegexAction<string, "utm_medium can only contain letters, numbers, and the special characters: - _ .">]>;
496
+ declare const IsValidOrUndefinedUrlUtmMedium: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_medium is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2026, "the utm_medium is too long, it must be 2026 characters or less">, v.RegexAction<string, "utm_medium can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
497
+ declare const IsValidUrlUtmCampaign: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_campaign is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2024, "the utm_campaign is too long, it must be 2024 characters or less">, v.RegexAction<string, "utm_campaign can only contain letters, numbers, and the special characters: - _ .">]>;
498
+ declare const IsValidOrUndefinedUrlUtmCampaign: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_campaign is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2024, "the utm_campaign is too long, it must be 2024 characters or less">, v.RegexAction<string, "utm_campaign can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
499
+ declare const IsValidUrlUtmCreativeFormat: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_creative_format is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2017, "the utm_creative_format is too long, it must be 2017 characters or less">, v.RegexAction<string, "utm_creative_format can only contain letters, numbers, and the special characters: - _ .">]>;
500
+ declare const IsValidOrUndefinedUrlUtmCreativeFormat: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_creative_format is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2017, "the utm_creative_format is too long, it must be 2017 characters or less">, v.RegexAction<string, "utm_creative_format can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
501
+ declare const IsValidUrlUtmContent: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_content is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2025, "the utm_content is too long, it must be 2025 characters or less">, v.RegexAction<string, "utm_content can only contain letters, numbers, and the special characters: - _ .">]>;
502
+ declare const IsValidOrUndefinedUrlUtmContent: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_content is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2025, "the utm_content is too long, it must be 2025 characters or less">, v.RegexAction<string, "utm_content can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
503
+ declare const IsValidUrlUtmTerm: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_term is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2028, "the utm_term is too long, it must be 2028 characters or less">, v.RegexAction<string, "utm_term can only contain letters, numbers, and the special characters: - _ .">]>;
504
+ declare const IsValidOrUndefinedUrlUtmTerm: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_term is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2028, "the utm_term is too long, it must be 2028 characters or less">, v.RegexAction<string, "utm_term can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
505
+ declare const IsValidUrlUtmId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_id is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2030, "the utm_id is too long, it must be 2030 characters or less">, v.RegexAction<string, "utm_id can only contain letters, numbers, and the special characters: - _ .">]>;
506
+ declare const IsValidOrUndefinedUrlUtmId: v.UndefinedableSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_id is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 2030, "the utm_id is too long, it must be 2030 characters or less">, v.RegexAction<string, "utm_id can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
507
+
508
+ export { CLIENT_ENTITY_KEYS, CLIENT_ENTITY_PERMISSIONS, CLIENT_ENTITY_SCOPES, type ClientEntityActions, type ClientEntityKey, type ClientEntityScope, ERROR_MESSAGE_REGEX_DOMAIN, ERROR_MESSAGE_REGEX_UTM_VALUE, InvalidClientTermMin, InvalidClientTermNumber, InvalidCompanyName, InvalidCompanyNameMaxLength, InvalidCsvFileType, InvalidDestinationUrl, InvalidFirstName, InvalidFirstNameMaxLength, InvalidFullName, InvalidFullNameMaxLength, InvalidInputRobot, InvalidInstrustryName, InvalidInstrustryNameMaxLength, InvalidLastName, InvalidLastNameMaxLength, InvalidListOfUrls, InvalidLongStringOrUndefined, InvalidProductInterestMaxLength, InvalidRangeValueOneToFive, InvalidRefPageMaxLength, InvalidResumeFileType, InvalidShortStringMax, InvalidUserMessage, InvalidUserMessageMaxLength, InvalidUserPhone, InvalidUserPhoneType, InvalidUserTitle, InvalidUserTitleMaxLength, InvalidUtmCampaignKeyName, InvalidUtmLink, IsValidBlocked, IsValidCaptchaToken, IsValidClientTerm, IsValidCompanyName, IsValidCompanyNameRequired, IsValidConfirmed, IsValidCost, IsValidCsvFile, IsValidDateToday, IsValidDescription, IsValidDestinationUrl, IsValidEmail, IsValidFileReferenceId, IsValidFirstName, IsValidFullName, IsValidGroupUserScopes, IsValidIndustryName, IsValidIsActive, IsValidIsSecure, IsValidLabel, IsValidLastName, IsValidLongString, IsValidLongStringOrUndefined, IsValidName, IsValidNumberOfEmployees, IsValidOrUndefinedBlocked, IsValidOrUndefinedConfirmed, IsValidOrUndefinedCost, IsValidOrUndefinedDescription, IsValidOrUndefinedEmail, IsValidOrUndefinedIsActive, IsValidOrUndefinedIsSecure, IsValidOrUndefinedLabel, IsValidOrUndefinedName, IsValidOrUndefinedPassword, IsValidOrUndefinedProvider, IsValidOrUndefinedUrlDestination, IsValidOrUndefinedUrlDomain, IsValidOrUndefinedUrlFragment, IsValidOrUndefinedUrlPath, IsValidOrUndefinedUrlProtocol, IsValidOrUndefinedUrlQuery, IsValidOrUndefinedUrlUtmCampaign, IsValidOrUndefinedUrlUtmContent, IsValidOrUndefinedUrlUtmCreativeFormat, IsValidOrUndefinedUrlUtmId, IsValidOrUndefinedUrlUtmMedium, IsValidOrUndefinedUrlUtmSource, IsValidOrUndefinedUrlUtmTerm, IsValidOrUndefinedUsername, IsValidOrUndefinedValue, IsValidPassword, IsValidPositiveInteger, IsValidProductInterest, IsValidProvider, IsValidRangeValueOneToFive, IsValidRefPage, IsValidReferenceDocumentId, IsValidReferenceId, IsValidResumeFile, IsValidShortString, IsValidShortStringOrUndefined, IsValidStringList, IsValidStringListOrUndefined, IsValidStringSepListOfUrls, IsValidStringSepListOfUrlsOrUndefined, IsValidUrl, IsValidUrlDestination, IsValidUrlDomain, IsValidUrlFragment, IsValidUrlList, IsValidUrlOrUndefined, IsValidUrlPath, IsValidUrlProtocol, IsValidUrlQuery, IsValidUrlUtmCampaign, IsValidUrlUtmContent, IsValidUrlUtmCreativeFormat, IsValidUrlUtmId, IsValidUrlUtmMedium, IsValidUrlUtmSource, IsValidUrlUtmTerm, IsValidUserConsent, IsValidUserMessage, IsValidUserPhone, IsValidUserPhoneRequired, IsValidUserRole, IsValidUserTitle, IsValidUserTitleRequired, IsValidUsername, IsValidUtmCampaignKeyName, IsValidUtmCampaignKeyNameOrUndefined, IsValidUtmLink, IsValidValue, LIMIT_BLOG_POST_PAGINATION_DEFAULT_SIZE, LIMIT_BLOG_POST_PAGINATION_MAX_SIZE, LIMIT_CLIENT_PAGINATION_DEFAULT_SIZE, LIMIT_CLIENT_PAGINATION_MAX_SIZE, LIMIT_LONG_STRING_MAX_LENGTH, LIMIT_MAX_DESCRIPTION, LIMIT_MAX_DESTINATION, LIMIT_MAX_DOMAIN, LIMIT_MAX_EMAIL, LIMIT_MAX_FRAGMENT, LIMIT_MAX_PASSWORD, LIMIT_MAX_PATH, LIMIT_MAX_PROVIDER, LIMIT_MAX_QUERY, LIMIT_MAX_USERNAME, LIMIT_MAX_UTM_CAMPAIGN, LIMIT_MAX_UTM_CONTENT, LIMIT_MAX_UTM_CREATIVE_FORMAT, LIMIT_MAX_UTM_ID, LIMIT_MAX_UTM_MEDIUM, LIMIT_MAX_UTM_SOURCE, LIMIT_MAX_UTM_TERM, LIMIT_MEDIUM_STRING_MAX_LENGTH, LIMIT_MIN_DESTINATION, LIMIT_MIN_DOMAIN, LIMIT_MIN_EMAIL, LIMIT_MIN_FRAGMENT, LIMIT_MIN_NAME, LIMIT_MIN_PASSWORD, LIMIT_MIN_PATH, LIMIT_MIN_QUERY, LIMIT_MIN_USERNAME, LIMIT_MIN_UTM_CAMPAIGN, LIMIT_MIN_UTM_CONTENT, LIMIT_MIN_UTM_CREATIVE_FORMAT, LIMIT_MIN_UTM_ID, LIMIT_MIN_UTM_MEDIUM, LIMIT_MIN_UTM_SOURCE, LIMIT_MIN_UTM_TERM, LIMIT_MIN_VALUE, LIMIT_PAGINATION_DEFAULT_SIZE, LIMIT_PAGINATION_MAX_SIZE, LIMIT_PRODUCT_HIGHLIGHT_PAGINATION_DEFAULT_SIZE, LIMIT_PRODUCT_HIGHLIGHT_PAGINATION_MAX_SIZE, LIMIT_PRODUCT_PAGINATION_DEFAULT_SIZE, LIMIT_PRODUCT_PAGINATION_MAX_SIZE, LIMIT_REDIRECT_PAGINATION_DEFAULT_SIZE, LIMIT_REDIRECT_PAGINATION_MAX_SIZE, LIMIT_SHORT_STRING_MAX_LENGTH, LIMIT_TEAM_MEMBER_PAGINATION_DEFAULT_SIZE, LIMIT_TEAM_MEMBER_PAGINATION_MAX_SIZE, LIMIT_TREND_PAGINATION_DEFAULT_SIZE, LIMIT_TREND_PAGINATION_MAX_SIZE, LIMIT_USER_PAGINATION_DEFAULT_SIZE, LIMIT_USER_PAGINATION_MAX_SIZE, QueryStrapiByDocumentId, QueryStrapiByEmail, QueryStrapiById, QueryStrapiByName, QueryStrapiByPhone, QueryStrapiBySlug, QueryStrapiPaginated, QueryStrapiPaginatedUrlRedirects, QueryStrapiUrlRedirectsByFrom, QueryStrapiUsers, QueryStrapiUsersByIdentifier, REGEX_DOMAIN, REGEX_UTM_VALUE, SCreateLead, SCreateNewsletterSignup, SCreateResume, SCreateResumeInfo, SReadUserByDocumentId, SReadUserById, SUpdateResumeInfo, SUpdateTrendsLikes, ValidGcDesiredContentOptions, ValidGcServiceOptions, ValidGcVideoServiceOptions, ValidJobRoleGroup, ValidNumberOfEmployeeOptions, ValidRatingRange5, datePlusDays, dateToday, isValidationFailure, isValidationSuccess, omitUndefined, validateAndClean };