@getcommunity/gc-validators 0.0.11 → 0.0.13
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 +123 -63
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +767 -71
- package/dist/index.d.ts +767 -71
- package/dist/index.js +118 -62
- package/dist/index.js.map +1 -1
- package/package.json +5 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,43 @@
|
|
|
1
1
|
import * as v from 'valibot';
|
|
2
2
|
|
|
3
|
+
declare const LIMIT_MIN_VALUE = 1;
|
|
4
|
+
declare const LIMIT_MIN_NAME = 2;
|
|
5
|
+
declare const LIMIT_MAX_DESCRIPTION = 1024;
|
|
6
|
+
declare const LIMIT_SHORT_STRING_MAX_LENGTH = 255;
|
|
7
|
+
declare const LIMIT_MEDIUM_STRING_MAX_LENGTH = 500;
|
|
8
|
+
declare const LIMIT_LONG_STRING_MAX_LENGTH = 5000;
|
|
9
|
+
declare const LIMIT_MIN_USERNAME = 3;
|
|
10
|
+
declare const LIMIT_MAX_USERNAME = 255;
|
|
11
|
+
declare const LIMIT_MIN_EMAIL = 5;
|
|
12
|
+
declare const LIMIT_MAX_EMAIL = 255;
|
|
13
|
+
declare const LIMIT_MIN_PASSWORD = 8;
|
|
14
|
+
declare const LIMIT_MAX_PASSWORD = 255;
|
|
15
|
+
declare const LIMIT_MAX_PROVIDER = 255;
|
|
16
|
+
declare const LIMIT_MIN_DESTINATION = 10;
|
|
17
|
+
declare const LIMIT_MAX_DESTINATION = 2048;
|
|
18
|
+
declare const LIMIT_MIN_DOMAIN = 10;
|
|
19
|
+
declare const LIMIT_MAX_DOMAIN = 253;
|
|
20
|
+
declare const LIMIT_MIN_PATH = 1;
|
|
21
|
+
declare const LIMIT_MAX_PATH = 2038;
|
|
22
|
+
declare const LIMIT_MIN_QUERY = 1;
|
|
23
|
+
declare const LIMIT_MAX_QUERY = 2038;
|
|
24
|
+
declare const LIMIT_MIN_FRAGMENT = 1;
|
|
25
|
+
declare const LIMIT_MAX_FRAGMENT = 2038;
|
|
26
|
+
declare const LIMIT_MIN_UTM_SOURCE = 1;
|
|
27
|
+
declare const LIMIT_MAX_UTM_SOURCE = 2026;
|
|
28
|
+
declare const LIMIT_MIN_UTM_MEDIUM = 1;
|
|
29
|
+
declare const LIMIT_MAX_UTM_MEDIUM = 2026;
|
|
30
|
+
declare const LIMIT_MIN_UTM_CAMPAIGN = 1;
|
|
31
|
+
declare const LIMIT_MAX_UTM_CAMPAIGN = 2024;
|
|
32
|
+
declare const LIMIT_MIN_UTM_CREATIVE_FORMAT = 1;
|
|
33
|
+
declare const LIMIT_MAX_UTM_CREATIVE_FORMAT = 2017;
|
|
34
|
+
declare const LIMIT_MIN_UTM_CONTENT = 1;
|
|
35
|
+
declare const LIMIT_MAX_UTM_CONTENT = 2025;
|
|
36
|
+
declare const LIMIT_MIN_UTM_TERM = 1;
|
|
37
|
+
declare const LIMIT_MAX_UTM_TERM = 2028;
|
|
38
|
+
declare const LIMIT_MIN_UTM_ID = 1;
|
|
39
|
+
declare const LIMIT_MAX_UTM_ID = 2030;
|
|
40
|
+
|
|
3
41
|
declare const LIMIT_PAGINATION_DEFAULT_SIZE = 100;
|
|
4
42
|
declare const LIMIT_PAGINATION_MAX_SIZE = 10000;
|
|
5
43
|
declare const LIMIT_BLOG_POST_PAGINATION_DEFAULT_SIZE = 6;
|
|
@@ -22,6 +60,8 @@ declare const LIMIT_CATEGORIES_DEFAULT_SIZE = 100;
|
|
|
22
60
|
declare const LIMIT_CATEGORIES_MAX_SIZE = 1000;
|
|
23
61
|
declare const LIMIT_TAGS_DEFAULT_SIZE = 100;
|
|
24
62
|
declare const LIMIT_TAGS_MAX_SIZE = 1000;
|
|
63
|
+
declare const LIMIT_UTM_TRACKING_LINK_PAGINATION_DEFAULT_SIZE = 10;
|
|
64
|
+
declare const LIMIT_UTM_TRACKING_LINK_PAGINATION_MAX_SIZE = 1000;
|
|
25
65
|
|
|
26
66
|
/**
|
|
27
67
|
* Example usage of ClientEntityScope type
|
|
@@ -44,44 +84,6 @@ type ClientEntityScope = {
|
|
|
44
84
|
declare const CLIENT_ENTITY_KEYS: ClientEntityKey[];
|
|
45
85
|
declare const CLIENT_ENTITY_SCOPES: ClientEntityScope[];
|
|
46
86
|
|
|
47
|
-
declare const LIMIT_MIN_VALUE = 1;
|
|
48
|
-
declare const LIMIT_MIN_NAME = 2;
|
|
49
|
-
declare const LIMIT_MAX_DESCRIPTION = 1024;
|
|
50
|
-
declare const LIMIT_SHORT_STRING_MAX_LENGTH = 255;
|
|
51
|
-
declare const LIMIT_MEDIUM_STRING_MAX_LENGTH = 500;
|
|
52
|
-
declare const LIMIT_LONG_STRING_MAX_LENGTH = 5000;
|
|
53
|
-
declare const LIMIT_MIN_USERNAME = 3;
|
|
54
|
-
declare const LIMIT_MAX_USERNAME = 255;
|
|
55
|
-
declare const LIMIT_MIN_EMAIL = 5;
|
|
56
|
-
declare const LIMIT_MAX_EMAIL = 255;
|
|
57
|
-
declare const LIMIT_MIN_PASSWORD = 8;
|
|
58
|
-
declare const LIMIT_MAX_PASSWORD = 255;
|
|
59
|
-
declare const LIMIT_MAX_PROVIDER = 255;
|
|
60
|
-
declare const LIMIT_MIN_DESTINATION = 10;
|
|
61
|
-
declare const LIMIT_MAX_DESTINATION = 2048;
|
|
62
|
-
declare const LIMIT_MIN_DOMAIN = 10;
|
|
63
|
-
declare const LIMIT_MAX_DOMAIN = 253;
|
|
64
|
-
declare const LIMIT_MIN_PATH = 1;
|
|
65
|
-
declare const LIMIT_MAX_PATH = 2038;
|
|
66
|
-
declare const LIMIT_MIN_QUERY = 1;
|
|
67
|
-
declare const LIMIT_MAX_QUERY = 2038;
|
|
68
|
-
declare const LIMIT_MIN_FRAGMENT = 1;
|
|
69
|
-
declare const LIMIT_MAX_FRAGMENT = 2038;
|
|
70
|
-
declare const LIMIT_MIN_UTM_SOURCE = 1;
|
|
71
|
-
declare const LIMIT_MAX_UTM_SOURCE = 2026;
|
|
72
|
-
declare const LIMIT_MIN_UTM_MEDIUM = 1;
|
|
73
|
-
declare const LIMIT_MAX_UTM_MEDIUM = 2026;
|
|
74
|
-
declare const LIMIT_MIN_UTM_CAMPAIGN = 1;
|
|
75
|
-
declare const LIMIT_MAX_UTM_CAMPAIGN = 2024;
|
|
76
|
-
declare const LIMIT_MIN_UTM_CREATIVE_FORMAT = 1;
|
|
77
|
-
declare const LIMIT_MAX_UTM_CREATIVE_FORMAT = 2017;
|
|
78
|
-
declare const LIMIT_MIN_UTM_CONTENT = 1;
|
|
79
|
-
declare const LIMIT_MAX_UTM_CONTENT = 2025;
|
|
80
|
-
declare const LIMIT_MIN_UTM_TERM = 1;
|
|
81
|
-
declare const LIMIT_MAX_UTM_TERM = 2028;
|
|
82
|
-
declare const LIMIT_MIN_UTM_ID = 1;
|
|
83
|
-
declare const LIMIT_MAX_UTM_ID = 2030;
|
|
84
|
-
|
|
85
87
|
declare const ERROR_MESSAGE_REGEX_DOMAIN = "please provide a valid domain name";
|
|
86
88
|
declare const REGEX_DOMAIN: RegExp;
|
|
87
89
|
declare const ERROR_MESSAGE_REGEX_UTM_VALUE = "can only contain letters, numbers, and the special characters: - _ .";
|
|
@@ -102,6 +104,22 @@ declare const QueryStrapiSearchBlogPostsBySlug: v.ObjectSchema<{
|
|
|
102
104
|
}, undefined>;
|
|
103
105
|
type QueryStrapiSearchBlogPostsBySlug = v.InferOutput<typeof QueryStrapiSearchBlogPostsBySlug>;
|
|
104
106
|
|
|
107
|
+
declare const QueryStrapiSearchClients: v.ObjectSchema<{
|
|
108
|
+
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
109
|
+
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 100, undefined>]>, 16>, 16>;
|
|
110
|
+
readonly title: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long, please abbreviate your string to be 255 characters or less.">]>, undefined>;
|
|
111
|
+
readonly teamwork_id: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long, please abbreviate your string to be 255 characters or less.">]>, undefined>;
|
|
112
|
+
readonly teamwork_name: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long, please abbreviate your string to be 255 characters or less.">]>, undefined>;
|
|
113
|
+
readonly utm_sheet_id: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long, please abbreviate your string to be 255 characters or less.">]>, undefined>;
|
|
114
|
+
readonly allow_create_utm_link: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
115
|
+
readonly classification: v.OptionalSchema<v.PicklistSchema<["organic", "paid"], undefined>, undefined>;
|
|
116
|
+
readonly is_featured: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
117
|
+
readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
118
|
+
readonly is_organic_social: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
119
|
+
readonly is_paid_media: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
120
|
+
}, undefined>;
|
|
121
|
+
type QueryStrapiSearchClients = v.InferOutput<typeof QueryStrapiSearchClients>;
|
|
122
|
+
|
|
105
123
|
declare const QueryStrapiPaginated: v.ObjectSchema<{
|
|
106
124
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
107
125
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 10000, undefined>]>, 100>, 100>;
|
|
@@ -116,7 +134,7 @@ declare const QueryStrapiByDocumentId: v.ObjectSchema<{
|
|
|
116
134
|
}, undefined>;
|
|
117
135
|
type QueryStrapiByDocumentId = v.InferOutput<typeof QueryStrapiByDocumentId>;
|
|
118
136
|
declare const QueryStrapiBySlug: v.ObjectSchema<{
|
|
119
|
-
readonly slug: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long
|
|
137
|
+
readonly slug: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long, please abbreviate your string to be 255 characters or less.">]>;
|
|
120
138
|
}, undefined>;
|
|
121
139
|
type QueryStrapiBySlug = v.InferOutput<typeof QueryStrapiBySlug>;
|
|
122
140
|
declare const QueryStrapiByEmail: v.ObjectSchema<{
|
|
@@ -128,7 +146,7 @@ declare const QueryStrapiByPhone: v.ObjectSchema<{
|
|
|
128
146
|
}, undefined>;
|
|
129
147
|
type QueryStrapiByPhone = v.InferOutput<typeof QueryStrapiByPhone>;
|
|
130
148
|
declare const QueryStrapiByName: v.ObjectSchema<{
|
|
131
|
-
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long
|
|
149
|
+
readonly name: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long, please abbreviate your string to be 255 characters or less.">]>;
|
|
132
150
|
}, undefined>;
|
|
133
151
|
type QueryStrapiByName = v.InferOutput<typeof QueryStrapiByName>;
|
|
134
152
|
|
|
@@ -144,7 +162,7 @@ declare const SCreateLead: v.ObjectSchema<{
|
|
|
144
162
|
readonly email_consent: v.BooleanSchema<undefined>;
|
|
145
163
|
readonly sms_consent: v.BooleanSchema<undefined>;
|
|
146
164
|
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.">]>;
|
|
147
|
-
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
|
|
165
|
+
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.">]>;
|
|
148
166
|
}, undefined>;
|
|
149
167
|
type SCreateLead = v.InferOutput<typeof SCreateLead>;
|
|
150
168
|
|
|
@@ -154,7 +172,7 @@ declare const SCreateNewsletterSignup: v.ObjectSchema<{
|
|
|
154
172
|
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">]>;
|
|
155
173
|
readonly email_consent: v.BooleanSchema<undefined>;
|
|
156
174
|
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.">]>;
|
|
157
|
-
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
|
|
175
|
+
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.">]>;
|
|
158
176
|
}, undefined>;
|
|
159
177
|
type SCreateNewsletterSignup = v.InferOutput<typeof SCreateNewsletterSignup>;
|
|
160
178
|
|
|
@@ -164,12 +182,12 @@ declare const SCreateResume: v.ObjectSchema<{
|
|
|
164
182
|
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">]>;
|
|
165
183
|
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>;
|
|
166
184
|
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>;
|
|
167
|
-
readonly social_profiles: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, "The string you provided is too long
|
|
185
|
+
readonly social_profiles: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, "The string you provided is too long, please abbreviate your string to be 5000 characters or less.">, v.CheckAction<string, "Please enter a list of URLs separated by commas.">]>, undefined>;
|
|
168
186
|
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>;
|
|
169
187
|
readonly email_consent: v.BooleanSchema<undefined>;
|
|
170
188
|
readonly sms_consent: v.BooleanSchema<undefined>;
|
|
171
189
|
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.">]>;
|
|
172
|
-
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
|
|
190
|
+
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.">]>;
|
|
173
191
|
}, undefined>;
|
|
174
192
|
type SCreateResume = v.InferOutput<typeof SCreateResume>;
|
|
175
193
|
declare const SCreateResumeInfo: v.ObjectSchema<{
|
|
@@ -178,7 +196,7 @@ declare const SCreateResumeInfo: v.ObjectSchema<{
|
|
|
178
196
|
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">]>;
|
|
179
197
|
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>;
|
|
180
198
|
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>;
|
|
181
|
-
readonly social_profiles: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, "The string you provided is too long
|
|
199
|
+
readonly social_profiles: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, "The string you provided is too long, please abbreviate your string to be 5000 characters or less.">, v.CheckAction<string, "Please enter a list of URLs separated by commas.">]>, undefined>;
|
|
182
200
|
readonly file: v.ObjectSchema<{
|
|
183
201
|
readonly id: v.NumberSchema<undefined>;
|
|
184
202
|
readonly src: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -186,17 +204,17 @@ declare const SCreateResumeInfo: v.ObjectSchema<{
|
|
|
186
204
|
readonly email_consent: v.BooleanSchema<undefined>;
|
|
187
205
|
readonly sms_consent: v.BooleanSchema<undefined>;
|
|
188
206
|
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.">]>;
|
|
189
|
-
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
|
|
207
|
+
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.">]>;
|
|
190
208
|
}, undefined>;
|
|
191
209
|
type SCreateResumeInfo = v.InferOutput<typeof SCreateResumeInfo>;
|
|
192
210
|
declare const SUpdateResumeInfo: v.ObjectSchema<{
|
|
193
|
-
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long
|
|
211
|
+
readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long, please abbreviate your string to be 255 characters or less.">]>;
|
|
194
212
|
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.">]>;
|
|
195
213
|
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.">]>;
|
|
196
214
|
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">]>;
|
|
197
215
|
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>;
|
|
198
216
|
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>;
|
|
199
|
-
readonly social_profiles: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, "The string you provided is too long
|
|
217
|
+
readonly social_profiles: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, "The string you provided is too long, please abbreviate your string to be 5000 characters or less.">, v.CheckAction<string, "Please enter a list of URLs separated by commas.">]>, undefined>;
|
|
200
218
|
readonly file: v.ObjectSchema<{
|
|
201
219
|
readonly id: v.NumberSchema<undefined>;
|
|
202
220
|
readonly src: v.OptionalSchema<v.StringSchema<undefined>, undefined>;
|
|
@@ -204,7 +222,7 @@ declare const SUpdateResumeInfo: v.ObjectSchema<{
|
|
|
204
222
|
readonly email_consent: v.BooleanSchema<undefined>;
|
|
205
223
|
readonly sms_consent: v.BooleanSchema<undefined>;
|
|
206
224
|
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.">]>;
|
|
207
|
-
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
|
|
225
|
+
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.">]>;
|
|
208
226
|
}, undefined>;
|
|
209
227
|
type SUpdateResumeInfo = v.InferOutput<typeof SUpdateResumeInfo>;
|
|
210
228
|
|
|
@@ -212,10 +230,10 @@ declare const SharpSpringSignUpToDownload: v.ObjectSchema<{
|
|
|
212
230
|
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.">]>;
|
|
213
231
|
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.">]>;
|
|
214
232
|
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">]>;
|
|
215
|
-
readonly download_key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long
|
|
233
|
+
readonly download_key: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long, please abbreviate your string to be 255 characters or less.">]>;
|
|
216
234
|
readonly email_consent: v.BooleanSchema<undefined>;
|
|
217
235
|
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.">]>;
|
|
218
|
-
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
|
|
236
|
+
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.">]>;
|
|
219
237
|
}, undefined>;
|
|
220
238
|
type SharpSpringSignUpToDownload = v.InferOutput<typeof SharpSpringSignUpToDownload>;
|
|
221
239
|
|
|
@@ -317,14 +335,6 @@ declare const SAuthConnectProviderConfirmation: v.ObjectSchema<{
|
|
|
317
335
|
}, undefined>;
|
|
318
336
|
type SAuthConnectProviderConfirmation = v.InferOutput<typeof SAuthConnectProviderConfirmation>;
|
|
319
337
|
|
|
320
|
-
declare const SReadUserById: v.ObjectSchema<{
|
|
321
|
-
readonly id: v.NumberSchema<"please provide a valid id">;
|
|
322
|
-
}, undefined>;
|
|
323
|
-
type SReadUserById = v.InferOutput<typeof SReadUserById>;
|
|
324
|
-
declare const SReadUserByDocumentId: v.ObjectSchema<{
|
|
325
|
-
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">]>;
|
|
326
|
-
}, undefined>;
|
|
327
|
-
type SReadUserByDocumentId = v.InferOutput<typeof SReadUserByDocumentId>;
|
|
328
338
|
declare const QueryStrapiUsers: v.ObjectSchema<{
|
|
329
339
|
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
330
340
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 3, undefined>, v.MaxValueAction<number, 10, undefined>]>, 10>, 10>;
|
|
@@ -336,6 +346,692 @@ declare const QueryStrapiUsersByIdentifier: v.ObjectSchema<{
|
|
|
336
346
|
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 3, undefined>, v.MaxValueAction<number, 10, undefined>]>, 10>, 10>;
|
|
337
347
|
}, undefined>;
|
|
338
348
|
type QueryStrapiUsersByIdentifier = v.InferOutput<typeof QueryStrapiUsersByIdentifier>;
|
|
349
|
+
declare const SReadUserById: v.ObjectSchema<{
|
|
350
|
+
readonly id: v.NumberSchema<"please provide a valid id">;
|
|
351
|
+
}, undefined>;
|
|
352
|
+
type SReadUserById = v.InferOutput<typeof SReadUserById>;
|
|
353
|
+
declare const SReadUserByDocumentId: v.ObjectSchema<{
|
|
354
|
+
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">]>;
|
|
355
|
+
}, undefined>;
|
|
356
|
+
type SReadUserByDocumentId = v.InferOutput<typeof SReadUserByDocumentId>;
|
|
357
|
+
|
|
358
|
+
declare const QueryStrapiSearchUtmTrackingLinks: v.ObjectSchema<{
|
|
359
|
+
readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
|
|
360
|
+
readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 1000, undefined>]>, 10>, 10>;
|
|
361
|
+
readonly url_destination: v.OptionalSchema<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.">]>, undefined>;
|
|
362
|
+
readonly utm_medium: v.OptionalSchema<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>;
|
|
363
|
+
readonly utm_source: v.OptionalSchema<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>;
|
|
364
|
+
readonly utm_campaign: v.OptionalSchema<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>;
|
|
365
|
+
readonly utm_content: v.OptionalSchema<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>;
|
|
366
|
+
readonly utm_creative_format: v.OptionalSchema<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>;
|
|
367
|
+
readonly utm_id: v.OptionalSchema<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>;
|
|
368
|
+
readonly campaign_phase: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long, please abbreviate your string to be 255 characters or less.">]>, undefined>;
|
|
369
|
+
readonly campaign_product: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long, please abbreviate your string to be 255 characters or less.">]>, undefined>;
|
|
370
|
+
readonly campaign_targeting: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long, please abbreviate your string to be 255 characters or less.">]>, undefined>;
|
|
371
|
+
readonly campaign_key: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long, please abbreviate your string to be 255 characters or less.">]>, undefined>;
|
|
372
|
+
readonly creative_format: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long, please abbreviate your string to be 255 characters or less.">]>, undefined>;
|
|
373
|
+
readonly creative_format_variants: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long, please abbreviate your string to be 255 characters or less.">]>, undefined>, undefined>;
|
|
374
|
+
readonly url: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.UrlAction<string, "Please enter a valid URL.">]>, undefined>;
|
|
375
|
+
readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
|
|
376
|
+
readonly notes: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long, please abbreviate your string to be 255 characters or less.">]>, undefined>;
|
|
377
|
+
}, undefined>;
|
|
378
|
+
type QueryStrapiSearchUtmTrackingLinks = v.InferOutput<typeof QueryStrapiSearchUtmTrackingLinks>;
|
|
379
|
+
|
|
380
|
+
type BaseDocument = {
|
|
381
|
+
id: number;
|
|
382
|
+
documentId: string;
|
|
383
|
+
publishedAt: string;
|
|
384
|
+
createdAt: string;
|
|
385
|
+
updatedAt: string;
|
|
386
|
+
};
|
|
387
|
+
|
|
388
|
+
/**
|
|
389
|
+
* @description Strapi Theme Options
|
|
390
|
+
*/
|
|
391
|
+
type StrapiThemeOptions = "default" | "secondary" | "destructive" | "outline" | "ghost" | "link";
|
|
392
|
+
type StrapiBgColorOptions = "red" | "pink" | "orange" | "yellow" | "green" | "blue-light" | "blue-dark" | "brown-light" | "brown-dark";
|
|
393
|
+
type StrapiTextColorOptions = "light" | "dark";
|
|
394
|
+
type StrapiDirection = "horizontal" | "vertical";
|
|
395
|
+
type StrapiGapSizes = "none" | "small" | "medium" | "large";
|
|
396
|
+
type StrapiLinkType = "email" | "phone" | "social" | "link" | null;
|
|
397
|
+
type StrapiIconPosition = "before" | "after" | "above" | "below";
|
|
398
|
+
type StrapiIconName = "link" | "email" | "phone" | "facebook" | "instagram" | "linkedin" | "tiktok" | "pinterest" | "twitter" | null;
|
|
399
|
+
/**
|
|
400
|
+
* @description Strapi Link Options
|
|
401
|
+
*/
|
|
402
|
+
type StrapiLinkTarget = "_blank" | "_self" | "_parent" | "_top" | null;
|
|
403
|
+
type StrapiLinkReferrerPolicy = "no-referrer" | "no-referrer-when-downgrade" | "origin" | "origin-when-cross-origin" | "same-origin" | "strict-origin-when-cross-origin" | "unsafe-url";
|
|
404
|
+
type StrapiLinkRel = "alternate" | "author" | "bookmark" | "external" | "help" | "license" | "next" | "nofollow" | "noreferrer" | "noopener" | "prev" | "search" | "tag";
|
|
405
|
+
|
|
406
|
+
type MediaFormat = {
|
|
407
|
+
ext: string;
|
|
408
|
+
url: string;
|
|
409
|
+
hash: string;
|
|
410
|
+
mime: string;
|
|
411
|
+
name: string;
|
|
412
|
+
path: string | null;
|
|
413
|
+
size: number;
|
|
414
|
+
width: number;
|
|
415
|
+
height: number;
|
|
416
|
+
sizeInBytes: number;
|
|
417
|
+
};
|
|
418
|
+
type MediaFormats = {
|
|
419
|
+
large?: MediaFormat;
|
|
420
|
+
small?: MediaFormat;
|
|
421
|
+
medium?: MediaFormat;
|
|
422
|
+
thumbnail?: MediaFormat;
|
|
423
|
+
};
|
|
424
|
+
type MediaUploadDocument = {
|
|
425
|
+
name: string;
|
|
426
|
+
alternativeText: string | null;
|
|
427
|
+
caption: string | null;
|
|
428
|
+
width: number;
|
|
429
|
+
height: number;
|
|
430
|
+
formats?: MediaFormats | null;
|
|
431
|
+
hash: string;
|
|
432
|
+
ext: string;
|
|
433
|
+
mime: string;
|
|
434
|
+
size: number;
|
|
435
|
+
url: string;
|
|
436
|
+
previewUrl: string | null;
|
|
437
|
+
provider: string;
|
|
438
|
+
provider_metadata: null;
|
|
439
|
+
} & BaseDocument;
|
|
440
|
+
|
|
441
|
+
type StrapiPagination = {
|
|
442
|
+
page: number;
|
|
443
|
+
pageSize: number;
|
|
444
|
+
pageCount: number;
|
|
445
|
+
total: number;
|
|
446
|
+
};
|
|
447
|
+
type StrapiResponseMeta = {
|
|
448
|
+
pagination?: StrapiPagination;
|
|
449
|
+
token?: string;
|
|
450
|
+
};
|
|
451
|
+
type StrapiErrorDetail = {
|
|
452
|
+
status: string | number;
|
|
453
|
+
name: string;
|
|
454
|
+
message: string;
|
|
455
|
+
details: Record<string, string>;
|
|
456
|
+
};
|
|
457
|
+
type StrapiSingleResponse<T> = {
|
|
458
|
+
data: T;
|
|
459
|
+
error?: undefined;
|
|
460
|
+
meta?: StrapiResponseMeta;
|
|
461
|
+
};
|
|
462
|
+
type StrapiListResponse<T> = {
|
|
463
|
+
data: T[];
|
|
464
|
+
error?: undefined;
|
|
465
|
+
meta?: StrapiResponseMeta;
|
|
466
|
+
};
|
|
467
|
+
type StrapiErrorResponse = {
|
|
468
|
+
data: null;
|
|
469
|
+
error: StrapiErrorDetail;
|
|
470
|
+
meta?: undefined;
|
|
471
|
+
};
|
|
472
|
+
|
|
473
|
+
type SharedLink = {
|
|
474
|
+
id: number;
|
|
475
|
+
href: string;
|
|
476
|
+
label: string;
|
|
477
|
+
target: StrapiLinkTarget;
|
|
478
|
+
};
|
|
479
|
+
type ComponentSharedLink = {
|
|
480
|
+
__component: string;
|
|
481
|
+
} & SharedLink;
|
|
482
|
+
|
|
483
|
+
type SharedButton = {
|
|
484
|
+
id: number;
|
|
485
|
+
theme: StrapiThemeOptions;
|
|
486
|
+
link: SharedLink;
|
|
487
|
+
show_icon: boolean;
|
|
488
|
+
icon: StrapiIconName;
|
|
489
|
+
icon_position: StrapiIconPosition;
|
|
490
|
+
full_width: boolean;
|
|
491
|
+
};
|
|
492
|
+
type ComponentSharedButton = {
|
|
493
|
+
__component: string;
|
|
494
|
+
} & SharedButton;
|
|
495
|
+
|
|
496
|
+
type RichTextBlockChildren = {
|
|
497
|
+
type: string;
|
|
498
|
+
url?: string;
|
|
499
|
+
text?: string;
|
|
500
|
+
bold?: boolean;
|
|
501
|
+
italic?: boolean;
|
|
502
|
+
underline?: boolean;
|
|
503
|
+
};
|
|
504
|
+
type RichTextBlock = {
|
|
505
|
+
type: string;
|
|
506
|
+
children: RichTextBlockChildren[];
|
|
507
|
+
};
|
|
508
|
+
type SharedRichTextBlock = {
|
|
509
|
+
id: number;
|
|
510
|
+
content?: RichTextBlock[] | null;
|
|
511
|
+
};
|
|
512
|
+
type ComponentSharedRichTextBlock = {
|
|
513
|
+
__component: string;
|
|
514
|
+
} & SharedRichTextBlock;
|
|
515
|
+
|
|
516
|
+
type SharedQuestionAnswer = {
|
|
517
|
+
id: number;
|
|
518
|
+
question: string;
|
|
519
|
+
answer: RichTextBlock[];
|
|
520
|
+
};
|
|
521
|
+
type ComponentSharedQuestionAnswer = {
|
|
522
|
+
__component: string;
|
|
523
|
+
} & SharedQuestionAnswer;
|
|
524
|
+
|
|
525
|
+
type OpenGraph = {
|
|
526
|
+
ogTitle: string;
|
|
527
|
+
ogDescription: string;
|
|
528
|
+
ogType: string | null;
|
|
529
|
+
ogUrl: string | null;
|
|
530
|
+
ogImage?: MediaUploadDocument | null;
|
|
531
|
+
};
|
|
532
|
+
type ComponentOpenGraph = {
|
|
533
|
+
__component: string;
|
|
534
|
+
} & OpenGraph;
|
|
535
|
+
type SeoMeta = {
|
|
536
|
+
metaTitle: string;
|
|
537
|
+
metaDescription: string;
|
|
538
|
+
metaImage?: MediaUploadDocument | null;
|
|
539
|
+
openGraph?: OpenGraph | null;
|
|
540
|
+
keywords: string | null;
|
|
541
|
+
canonicalURL: string | null;
|
|
542
|
+
metaRobots: string | null;
|
|
543
|
+
metaViewport: string | null;
|
|
544
|
+
structuredData: {
|
|
545
|
+
[key: string]: string;
|
|
546
|
+
} | null;
|
|
547
|
+
};
|
|
548
|
+
type ComponentSeoMeta = {
|
|
549
|
+
__component: string;
|
|
550
|
+
} & SeoMeta;
|
|
551
|
+
|
|
552
|
+
type BlockAnnouncementBar = {
|
|
553
|
+
id: number;
|
|
554
|
+
bg_color: StrapiBgColorOptions;
|
|
555
|
+
text_color: StrapiTextColorOptions;
|
|
556
|
+
href: string | null;
|
|
557
|
+
content: RichTextBlock[];
|
|
558
|
+
};
|
|
559
|
+
type ComponentBlockAnnouncementBar = {
|
|
560
|
+
__component: string;
|
|
561
|
+
} & BlockAnnouncementBar;
|
|
562
|
+
|
|
563
|
+
type BlockBrandLogos = {
|
|
564
|
+
id: number;
|
|
565
|
+
light: MediaUploadDocument;
|
|
566
|
+
dark: MediaUploadDocument;
|
|
567
|
+
color: MediaUploadDocument;
|
|
568
|
+
};
|
|
569
|
+
type ComponentBlockBrandLogos = {
|
|
570
|
+
__component: string;
|
|
571
|
+
} & BlockBrandLogos;
|
|
572
|
+
|
|
573
|
+
type BlockButtonGroup = {
|
|
574
|
+
id: number;
|
|
575
|
+
direction: StrapiDirection;
|
|
576
|
+
gap: StrapiGapSizes;
|
|
577
|
+
buttons: SharedButton[];
|
|
578
|
+
};
|
|
579
|
+
type ComponentBlockButtonGroup = {
|
|
580
|
+
__component: string;
|
|
581
|
+
} & BlockButtonGroup;
|
|
582
|
+
|
|
583
|
+
type BlockContact = {
|
|
584
|
+
id: number;
|
|
585
|
+
link_type: StrapiLinkType;
|
|
586
|
+
label: string;
|
|
587
|
+
destination: string;
|
|
588
|
+
icon: StrapiIconName;
|
|
589
|
+
show_icon: boolean;
|
|
590
|
+
icon_position: StrapiIconPosition;
|
|
591
|
+
full_width: boolean;
|
|
592
|
+
};
|
|
593
|
+
type ComponentBlockContact = {
|
|
594
|
+
__component: string;
|
|
595
|
+
} & BlockContact;
|
|
596
|
+
|
|
597
|
+
type BlockCtaLink = {
|
|
598
|
+
id: number;
|
|
599
|
+
cta_label: string;
|
|
600
|
+
cta_href: string | null;
|
|
601
|
+
cta_download: string | null;
|
|
602
|
+
cta_title: string | null;
|
|
603
|
+
cta_referrerpolicy: StrapiLinkReferrerPolicy | null;
|
|
604
|
+
cta_rel: StrapiLinkRel | null;
|
|
605
|
+
cta_target: StrapiLinkTarget | null;
|
|
606
|
+
};
|
|
607
|
+
type ComponentBlockCtaLink = {
|
|
608
|
+
__component: string;
|
|
609
|
+
} & BlockCtaLink;
|
|
610
|
+
|
|
611
|
+
type BlockFaq = {
|
|
612
|
+
id: number;
|
|
613
|
+
title: string;
|
|
614
|
+
theme: StrapiThemeOptions;
|
|
615
|
+
faq: SharedQuestionAnswer[];
|
|
616
|
+
};
|
|
617
|
+
type ComponentBlockFaq = {
|
|
618
|
+
__component: string;
|
|
619
|
+
} & BlockFaq;
|
|
620
|
+
|
|
621
|
+
type BlockVideoEmbed = {
|
|
622
|
+
id: number;
|
|
623
|
+
video_source: "youtube" | "upload";
|
|
624
|
+
video_id: string | null;
|
|
625
|
+
video_upload?: MediaUploadDocument | null;
|
|
626
|
+
};
|
|
627
|
+
type ComponentBlockVideo = {
|
|
628
|
+
__component: string;
|
|
629
|
+
} & BlockVideoEmbed;
|
|
630
|
+
|
|
631
|
+
type BlockFullscreenContentType = "zoomable-image" | "video" | "html" | "website";
|
|
632
|
+
type BlockFullscreenContent = {
|
|
633
|
+
id: number;
|
|
634
|
+
fullscreen_type: BlockFullscreenContentType;
|
|
635
|
+
fullscreen_img?: MediaUploadDocument | null;
|
|
636
|
+
website_url: string | null;
|
|
637
|
+
html_content: string | null;
|
|
638
|
+
video?: BlockVideoEmbed | null;
|
|
639
|
+
};
|
|
640
|
+
type ComponentBlockFullscreenContent = {
|
|
641
|
+
__component: string;
|
|
642
|
+
} & BlockFullscreenContent;
|
|
643
|
+
|
|
644
|
+
type BlockTextDetails = {
|
|
645
|
+
id: number;
|
|
646
|
+
subtitle: string;
|
|
647
|
+
description: string;
|
|
648
|
+
cta_link?: BlockCtaLink | null;
|
|
649
|
+
};
|
|
650
|
+
type ComponentBlockTextDetails = {
|
|
651
|
+
__component: string;
|
|
652
|
+
} & BlockTextDetails;
|
|
653
|
+
|
|
654
|
+
type FormDownloadKeys = "SS 2025 Get Community Trends Report" | "SS 2024 Get Community Trends Report" | "SS 2024 Fall Media Trends Report" | "SS 2024 Spring Media Trends Report" | "SS 2023 Trends Report" | "SS 2023 Fall Media Trends Report" | "SS 2023 Summer Media Trends Report" | "SS 2023 Spring Media Trends Report" | "SS 2023 Winter Media Trends Report" | "SS 2023 PCBC Presentation PDF" | "SS 2022 Get Community Trends Report" | "SS 2022 Fall Media Trends Report" | "SS 2022 Winter Media Trends Report" | "SS 2022 Build Good FOMO with Get Community" | "SS 2022 LinkedIn Checklist" | "SS 2021 Get Community Trends Report" | "SS 2020 Going Virtual Guide PDF" | "SS 2020 Marketable Home Quotes";
|
|
655
|
+
type FormDownload = {
|
|
656
|
+
id: number;
|
|
657
|
+
download_type: "link" | "file";
|
|
658
|
+
download_key: FormDownloadKeys;
|
|
659
|
+
download_file?: MediaUploadDocument | null;
|
|
660
|
+
download_link?: string | null;
|
|
661
|
+
};
|
|
662
|
+
type ComponentFormDownload = {
|
|
663
|
+
__component: string;
|
|
664
|
+
} & FormDownload;
|
|
665
|
+
|
|
666
|
+
type FormUID = "ss-newsletter" | "ss-sign-up-to-download" | "strapi-leads" | "strapi-resumes";
|
|
667
|
+
type FormSelect = {
|
|
668
|
+
id: number;
|
|
669
|
+
form_id: FormUID;
|
|
670
|
+
form_download?: FormDownload | null;
|
|
671
|
+
};
|
|
672
|
+
type ComponentFormSelect = {
|
|
673
|
+
__component: string;
|
|
674
|
+
} & FormSelect;
|
|
675
|
+
|
|
676
|
+
type SlideType = "image-contain" | "image-cover" | "image-fill" | "image" | "video" | "html" | "website";
|
|
677
|
+
type SlideContent = {
|
|
678
|
+
id: number;
|
|
679
|
+
slide_type: SlideType;
|
|
680
|
+
slide_image: MediaUploadDocument | null;
|
|
681
|
+
website_url: string | null;
|
|
682
|
+
html_content: string | null;
|
|
683
|
+
video?: ComponentBlockVideo;
|
|
684
|
+
};
|
|
685
|
+
type ComponentSlideContent = {
|
|
686
|
+
__component: string;
|
|
687
|
+
} & SlideContent;
|
|
688
|
+
|
|
689
|
+
type KeenSliderOrigin = number | "center" | "auto" | undefined;
|
|
690
|
+
type KeenSliderSliderSlides = {
|
|
691
|
+
slides: {
|
|
692
|
+
origin: KeenSliderOrigin;
|
|
693
|
+
perView: number;
|
|
694
|
+
spacing: number | undefined;
|
|
695
|
+
};
|
|
696
|
+
};
|
|
697
|
+
|
|
698
|
+
type SliderSpacing = "none" | "small" | "medium" | "large";
|
|
699
|
+
type SliderSettings = {
|
|
700
|
+
id: number;
|
|
701
|
+
breakpoint: number;
|
|
702
|
+
slides_per_view: number;
|
|
703
|
+
slides_spacing: SliderSpacing;
|
|
704
|
+
slides_origin: string | null;
|
|
705
|
+
};
|
|
706
|
+
type ComponentSliderSettings = {
|
|
707
|
+
__component: string;
|
|
708
|
+
} & SliderSettings;
|
|
709
|
+
|
|
710
|
+
type SlideshowMode = "snap" | "free" | "free-snap";
|
|
711
|
+
type SlideshowSettings = {
|
|
712
|
+
id: number;
|
|
713
|
+
loop: boolean;
|
|
714
|
+
mode: SlideshowMode;
|
|
715
|
+
initial: number;
|
|
716
|
+
};
|
|
717
|
+
type ComponentSlideshowSettings = {
|
|
718
|
+
__component: string;
|
|
719
|
+
} & SlideshowSettings;
|
|
720
|
+
|
|
721
|
+
type Slideshow = {
|
|
722
|
+
id: number;
|
|
723
|
+
settings?: SlideshowSettings;
|
|
724
|
+
slider_settings?: SliderSettings[];
|
|
725
|
+
slides?: SlideContent[];
|
|
726
|
+
};
|
|
727
|
+
type ComponentSlideshow = {
|
|
728
|
+
__component: string;
|
|
729
|
+
} & Slideshow;
|
|
730
|
+
|
|
731
|
+
type UtmClassificationKey = "organic" | "paid";
|
|
732
|
+
type UtmSourceKey = "all" | "meta" | "meta_facebook" | "meta_instagram" | "tiktok" | "twitter" | "linkedin" | "pinterest" | "youtube" | "sms" | "email" | "google" | "realtor" | "zillow" | "bdx_nhs" | "yelp" | "qr_code" | "gcflytour" | "referral";
|
|
733
|
+
type UtmOption = {
|
|
734
|
+
id: number;
|
|
735
|
+
label: string;
|
|
736
|
+
value: string;
|
|
737
|
+
description: string | null;
|
|
738
|
+
is_active: boolean;
|
|
739
|
+
active_by_classification: Array<UtmClassificationKey>;
|
|
740
|
+
active_by_source: Array<UtmSourceKey>;
|
|
741
|
+
};
|
|
742
|
+
type ComponentUtmOption = {
|
|
743
|
+
__component: string;
|
|
744
|
+
} & UtmOption;
|
|
745
|
+
|
|
746
|
+
type CategoryDocument = {
|
|
747
|
+
label: string;
|
|
748
|
+
slug: string;
|
|
749
|
+
blog_posts?: Partial<BlogPostDocument>[] | null;
|
|
750
|
+
} & BaseDocument;
|
|
751
|
+
|
|
752
|
+
type TagDocument = {
|
|
753
|
+
label: string;
|
|
754
|
+
slug: string;
|
|
755
|
+
} & BaseDocument;
|
|
756
|
+
|
|
757
|
+
type TrendDocument = {
|
|
758
|
+
title: string;
|
|
759
|
+
creators?: TeamMemberDocument[];
|
|
760
|
+
video_embed?: BlockVideoEmbed | null;
|
|
761
|
+
caption: string | null;
|
|
762
|
+
featured_image: MediaUploadDocument;
|
|
763
|
+
likes: number;
|
|
764
|
+
} & BaseDocument;
|
|
765
|
+
|
|
766
|
+
type TeamMemberDocument = {
|
|
767
|
+
name: string;
|
|
768
|
+
order: number;
|
|
769
|
+
job_title: string;
|
|
770
|
+
tier: string;
|
|
771
|
+
is_employed: boolean;
|
|
772
|
+
trends?: TrendDocument[];
|
|
773
|
+
contact_links?: BlockContact;
|
|
774
|
+
biography: RichTextBlock[];
|
|
775
|
+
featured_image: MediaUploadDocument;
|
|
776
|
+
featured_video: MediaUploadDocument;
|
|
777
|
+
blog_posts?: BlogPostDocument[];
|
|
778
|
+
} & BaseDocument;
|
|
779
|
+
|
|
780
|
+
type BlogPostBlock = ComponentSharedRichTextBlock | ComponentBlockVideo | ComponentBlockFaq | ComponentBlockContact | ComponentBlockButtonGroup | ComponentFormSelect | ComponentBlockFullscreenContent | ComponentSlideshow;
|
|
781
|
+
type BlogPostDocument = {
|
|
782
|
+
title: string;
|
|
783
|
+
slug: string;
|
|
784
|
+
excerpt: string;
|
|
785
|
+
published: string;
|
|
786
|
+
is_live: boolean;
|
|
787
|
+
is_featured: boolean;
|
|
788
|
+
is_public: boolean;
|
|
789
|
+
featured_image: MediaUploadDocument | null;
|
|
790
|
+
category?: CategoryDocument | null;
|
|
791
|
+
tags?: TagDocument[] | null;
|
|
792
|
+
authors?: TeamMemberDocument[] | null;
|
|
793
|
+
related_posts?: BlogPostDocument[] | null;
|
|
794
|
+
seo?: SeoMeta | null;
|
|
795
|
+
blocks?: BlogPostBlock[];
|
|
796
|
+
} & BaseDocument;
|
|
797
|
+
|
|
798
|
+
type ClientReportDocument = {
|
|
799
|
+
client?: ClientDocument;
|
|
800
|
+
name: string;
|
|
801
|
+
report_id: string;
|
|
802
|
+
is_active: boolean;
|
|
803
|
+
} & BaseDocument;
|
|
804
|
+
|
|
805
|
+
type PermissionDocument = {
|
|
806
|
+
action: string;
|
|
807
|
+
role?: RoleDocument;
|
|
808
|
+
} & BaseDocument;
|
|
809
|
+
|
|
810
|
+
type RoleDocument = {
|
|
811
|
+
type: string;
|
|
812
|
+
name: string;
|
|
813
|
+
description: string | null;
|
|
814
|
+
permissions?: PermissionDocument[];
|
|
815
|
+
users?: UserDocument[];
|
|
816
|
+
} & BaseDocument;
|
|
817
|
+
|
|
818
|
+
type UserAccountDocument = {
|
|
819
|
+
user?: UserDocument;
|
|
820
|
+
preferred_name: string;
|
|
821
|
+
first_name: string;
|
|
822
|
+
last_name: string;
|
|
823
|
+
} & BaseDocument;
|
|
824
|
+
|
|
825
|
+
type UtmTrackingLinkDocument = {
|
|
826
|
+
creator?: UserDocument;
|
|
827
|
+
client?: ClientDocument;
|
|
828
|
+
url_destination: string;
|
|
829
|
+
utm_medium: string;
|
|
830
|
+
utm_source: string;
|
|
831
|
+
utm_campaign: string;
|
|
832
|
+
utm_content: string | null;
|
|
833
|
+
utm_creative_format: string | null;
|
|
834
|
+
utm_id: string | null;
|
|
835
|
+
campaign_phase: string;
|
|
836
|
+
campaign_product: string | null;
|
|
837
|
+
campaign_targeting: string | null;
|
|
838
|
+
campaign_key: string | null;
|
|
839
|
+
creative_format: string | null;
|
|
840
|
+
creative_format_variants: string | null;
|
|
841
|
+
url: string;
|
|
842
|
+
is_active: boolean;
|
|
843
|
+
notes: string | null;
|
|
844
|
+
} & BaseDocument;
|
|
845
|
+
|
|
846
|
+
type UserDocument = {
|
|
847
|
+
username: string;
|
|
848
|
+
email: string;
|
|
849
|
+
provider: string;
|
|
850
|
+
confirmed: boolean;
|
|
851
|
+
blocked: boolean;
|
|
852
|
+
clerk_user_id: string | null;
|
|
853
|
+
role?: RoleDocument;
|
|
854
|
+
account?: UserAccountDocument;
|
|
855
|
+
clients?: ClientUserDocument[];
|
|
856
|
+
utm_tracking_links?: UtmTrackingLinkDocument[];
|
|
857
|
+
} & BaseDocument;
|
|
858
|
+
type UserWithAccountDocument = Pick<UserDocument, "id" | "documentId" | "createdAt" | "updatedAt" | "publishedAt" | "username" | "email" | "provider" | "confirmed" | "blocked" | "clerk_user_id"> & {
|
|
859
|
+
account: UserAccountDocument;
|
|
860
|
+
};
|
|
861
|
+
type UserAuthorizationLoginResponse = {
|
|
862
|
+
jwt: string;
|
|
863
|
+
user: UserWithAccountDocument;
|
|
864
|
+
};
|
|
865
|
+
type UserAuthorizationSuccessResponse = {
|
|
866
|
+
jwt: string;
|
|
867
|
+
user: Pick<UserDocument, "id" | "documentId" | "createdAt" | "updatedAt" | "publishedAt" | "username" | "email" | "provider" | "confirmed" | "blocked" | "clerk_user_id">;
|
|
868
|
+
};
|
|
869
|
+
|
|
870
|
+
type ClientUserDocument = {
|
|
871
|
+
client?: ClientDocument;
|
|
872
|
+
user?: UserDocument;
|
|
873
|
+
scopes: Array<string> | string;
|
|
874
|
+
} & BaseDocument;
|
|
875
|
+
|
|
876
|
+
type MediaPlatformDocument = {
|
|
877
|
+
title: string;
|
|
878
|
+
slug: string;
|
|
879
|
+
clients?: ClientDocument[] | null;
|
|
880
|
+
logos: BlockBrandLogos | null;
|
|
881
|
+
description: string;
|
|
882
|
+
} & BaseDocument;
|
|
883
|
+
|
|
884
|
+
type ProductDocument = {
|
|
885
|
+
title: string;
|
|
886
|
+
introduction: string;
|
|
887
|
+
flyer_link: string | null;
|
|
888
|
+
featured_image: MediaUploadDocument;
|
|
889
|
+
cta_text: string;
|
|
890
|
+
cta_form_caption: string;
|
|
891
|
+
order: number;
|
|
892
|
+
} & BaseDocument;
|
|
893
|
+
|
|
894
|
+
type ProductHighlightDocument = {
|
|
895
|
+
title: string;
|
|
896
|
+
title_line_1: string;
|
|
897
|
+
title_line_2: string;
|
|
898
|
+
introduction: string;
|
|
899
|
+
highlight?: BlockFullscreenContent;
|
|
900
|
+
products: ProductDocument[] | null;
|
|
901
|
+
clients: ClientDocument[] | null;
|
|
902
|
+
tags: TagDocument[] | null;
|
|
903
|
+
featured_image: MediaUploadDocument;
|
|
904
|
+
background_color: string;
|
|
905
|
+
order: number;
|
|
906
|
+
text_invert: boolean;
|
|
907
|
+
} & BaseDocument;
|
|
908
|
+
|
|
909
|
+
type ClientDocument = {
|
|
910
|
+
title: string;
|
|
911
|
+
is_featured: boolean;
|
|
912
|
+
logos?: BlockBrandLogos;
|
|
913
|
+
teamwork_id: string;
|
|
914
|
+
teamwork_name: string;
|
|
915
|
+
utm_sheet_id: string;
|
|
916
|
+
allow_create_utm_link: boolean;
|
|
917
|
+
is_organic_social: boolean;
|
|
918
|
+
is_paid_media: boolean;
|
|
919
|
+
is_active: boolean;
|
|
920
|
+
classification: UtmClassificationKey;
|
|
921
|
+
product_highlights?: ProductHighlightDocument[];
|
|
922
|
+
media_platforms?: MediaPlatformDocument[];
|
|
923
|
+
client_projects?: ClientProjectDocument[];
|
|
924
|
+
client_reports?: ClientReportDocument[];
|
|
925
|
+
users?: ClientUserDocument[];
|
|
926
|
+
utm_tracking_links?: UtmTrackingLinkDocument[];
|
|
927
|
+
} & BaseDocument;
|
|
928
|
+
|
|
929
|
+
type ClientProjectStatus = "coming-soon" | "now-open" | "for-sale" | "sold-out" | "available";
|
|
930
|
+
type ClientProjectDocument = {
|
|
931
|
+
title: string;
|
|
932
|
+
slug: string;
|
|
933
|
+
project_status: ClientProjectStatus[];
|
|
934
|
+
clients?: ClientDocument[];
|
|
935
|
+
featured_image?: MediaUploadDocument | null;
|
|
936
|
+
} & BaseDocument;
|
|
937
|
+
|
|
938
|
+
type LeadDocument = {
|
|
939
|
+
first_name: string;
|
|
940
|
+
last_name: string;
|
|
941
|
+
email: string;
|
|
942
|
+
phone: string;
|
|
943
|
+
company: string | null;
|
|
944
|
+
title: string | null;
|
|
945
|
+
message: string | null;
|
|
946
|
+
email_consent: boolean;
|
|
947
|
+
sms_consent: boolean;
|
|
948
|
+
on_page: string;
|
|
949
|
+
product_interest: string | null;
|
|
950
|
+
captcha: string;
|
|
951
|
+
} & BaseDocument;
|
|
952
|
+
|
|
953
|
+
type ResumeDocument = {
|
|
954
|
+
file: MediaUploadDocument | null;
|
|
955
|
+
first_name: string;
|
|
956
|
+
last_name: string;
|
|
957
|
+
email: string;
|
|
958
|
+
phone: string | null;
|
|
959
|
+
message: string | null;
|
|
960
|
+
social_profiles: string | null;
|
|
961
|
+
email_consent: boolean;
|
|
962
|
+
sms_consent: boolean;
|
|
963
|
+
on_page: string;
|
|
964
|
+
captcha: string;
|
|
965
|
+
} & BaseDocument;
|
|
966
|
+
|
|
967
|
+
type UrlRedirectStatusCode = "found_302" | "moved_permanently_301" | "temporary_redirect_307" | "gone_410" | "unavailable_for_legal_reasons_451";
|
|
968
|
+
type UrlRedirectQueryParams = "ignore_and_pass_to_target" | "ignore_all_parameters" | "exact_match_in_any_order";
|
|
969
|
+
type UrlRedirectDocument = {
|
|
970
|
+
from: string;
|
|
971
|
+
to: string;
|
|
972
|
+
status_code: UrlRedirectStatusCode;
|
|
973
|
+
query_params: UrlRedirectQueryParams;
|
|
974
|
+
is_active: boolean;
|
|
975
|
+
} & BaseDocument;
|
|
976
|
+
|
|
977
|
+
type BlogPageDocument = {
|
|
978
|
+
seo: SeoMeta;
|
|
979
|
+
title: string;
|
|
980
|
+
subtitle: string | null;
|
|
981
|
+
introduction: RichTextBlock[] | null;
|
|
982
|
+
} & BaseDocument;
|
|
983
|
+
|
|
984
|
+
type CareersPageDocument = {
|
|
985
|
+
seo: SeoMeta;
|
|
986
|
+
title: string;
|
|
987
|
+
subtitle: string | null;
|
|
988
|
+
introduction: RichTextBlock[] | null;
|
|
989
|
+
} & BaseDocument;
|
|
990
|
+
|
|
991
|
+
type LandingPageDocument = {
|
|
992
|
+
seo: SeoMeta;
|
|
993
|
+
header_background: MediaUploadDocument[];
|
|
994
|
+
announcements: BlockAnnouncementBar[];
|
|
995
|
+
trends_title: string;
|
|
996
|
+
trends_description: string;
|
|
997
|
+
trends_cta_label: string;
|
|
998
|
+
products_title: string;
|
|
999
|
+
products_feature_fallback: MediaUploadDocument;
|
|
1000
|
+
clients_title: string;
|
|
1001
|
+
contact_title: string;
|
|
1002
|
+
contact_image: MediaUploadDocument;
|
|
1003
|
+
contact_description: string;
|
|
1004
|
+
} & BaseDocument;
|
|
1005
|
+
|
|
1006
|
+
/**
|
|
1007
|
+
* SMS & Privacy Policy
|
|
1008
|
+
* - api::privacy-policy.privacy-policy
|
|
1009
|
+
* - api::sms-policy.sms-policy
|
|
1010
|
+
*/
|
|
1011
|
+
type PolicyPageDocument = {
|
|
1012
|
+
seo: SeoMeta;
|
|
1013
|
+
featured_image: MediaUploadDocument;
|
|
1014
|
+
title: string;
|
|
1015
|
+
slug: string;
|
|
1016
|
+
content: RichTextBlock[];
|
|
1017
|
+
} & BaseDocument;
|
|
1018
|
+
|
|
1019
|
+
type TeamPageDocument = {
|
|
1020
|
+
seo: SeoMeta;
|
|
1021
|
+
title: string;
|
|
1022
|
+
subtitle: string | null;
|
|
1023
|
+
introduction: RichTextBlock[] | null;
|
|
1024
|
+
} & BaseDocument;
|
|
1025
|
+
|
|
1026
|
+
type UtmMetaPageDocument = {
|
|
1027
|
+
source_options: ComponentUtmOption[];
|
|
1028
|
+
medium_options: ComponentUtmOption[];
|
|
1029
|
+
campaign_phase_options: ComponentUtmOption[];
|
|
1030
|
+
campaign_targeting_options: ComponentUtmOption[];
|
|
1031
|
+
content_pillar_options: ComponentUtmOption[];
|
|
1032
|
+
creative_format_options: ComponentUtmOption[];
|
|
1033
|
+
creative_variant_options: ComponentUtmOption[];
|
|
1034
|
+
} & BaseDocument;
|
|
339
1035
|
|
|
340
1036
|
type ValidateAndCleanSuccess<T> = {
|
|
341
1037
|
data: Partial<T>;
|
|
@@ -392,7 +1088,7 @@ declare const InvalidRefPageMaxLength = "The string you provided is too long for
|
|
|
392
1088
|
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.">]>;
|
|
393
1089
|
declare const InvalidProductInterestMaxLength = "The product interest provided is too long. It must be 255 characters or less.";
|
|
394
1090
|
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.">]>;
|
|
395
|
-
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
|
|
1091
|
+
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, please abbreviate your string to be 5000 characters or less.">]>;
|
|
396
1092
|
declare const InvalidInstrustryName = "Please enter your industry.";
|
|
397
1093
|
declare const InvalidInstrustryNameMaxLength = "The industry you provided is too long for our database, please abbreviate your industry to be 255 characters or less.";
|
|
398
1094
|
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>;
|
|
@@ -405,8 +1101,8 @@ declare const IsValidUrl: v.SchemaWithPipe<readonly [v.StringSchema<undefined>,
|
|
|
405
1101
|
declare const IsValidUrlOrUndefined: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.UrlAction<string, "Please enter a valid URL.">]>, undefined>;
|
|
406
1102
|
declare const IsValidUrlList: (input: string) => boolean;
|
|
407
1103
|
declare const InvalidListOfUrls = "Please enter a list of URLs separated by commas.";
|
|
408
|
-
declare const IsValidStringSepListOfUrls: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, "The string you provided is too long
|
|
409
|
-
declare const IsValidStringSepListOfUrlsOrUndefined: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, "The string you provided is too long
|
|
1104
|
+
declare const IsValidStringSepListOfUrls: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, "The string you provided is too long, please abbreviate your string to be 5000 characters or less.">, v.CheckAction<string, "Please enter a list of URLs separated by commas.">]>;
|
|
1105
|
+
declare const IsValidStringSepListOfUrlsOrUndefined: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, "The string you provided is too long, please abbreviate your string to be 5000 characters or less.">, v.CheckAction<string, "Please enter a list of URLs separated by commas.">]>, undefined>;
|
|
410
1106
|
declare const InvalidDestinationUrl = "Please remove any query parameters from the URL.";
|
|
411
1107
|
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.">]>;
|
|
412
1108
|
declare const InvalidUtmLink = "Please enter a valid URL with UTM parameters.";
|
|
@@ -568,12 +1264,12 @@ declare const IsValidReferenceId: v.NumberSchema<"please provide a valid id">;
|
|
|
568
1264
|
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">]>;
|
|
569
1265
|
declare const IsValidDateToday: v.SchemaWithPipe<readonly [v.DateSchema<undefined>, v.MinValueAction<Date, Date, undefined>, v.TransformAction<Date, string>]>;
|
|
570
1266
|
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.">]>;
|
|
571
|
-
declare const InvalidShortStringMax = "The string you provided is too long
|
|
572
|
-
declare const IsValidShortString: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long
|
|
573
|
-
declare const IsValidShortStringOrUndefined: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long
|
|
574
|
-
declare const InvalidLongStringOrUndefined = "The string you provided is too long
|
|
575
|
-
declare const IsValidLongString: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, "The string you provided is too long
|
|
576
|
-
declare const IsValidLongStringOrUndefined: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, "The string you provided is too long
|
|
1267
|
+
declare const InvalidShortStringMax = "The string you provided is too long, please abbreviate your string to be 255 characters or less.";
|
|
1268
|
+
declare const IsValidShortString: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long, please abbreviate your string to be 255 characters or less.">]>;
|
|
1269
|
+
declare const IsValidShortStringOrUndefined: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long, please abbreviate your string to be 255 characters or less.">]>, undefined>;
|
|
1270
|
+
declare const InvalidLongStringOrUndefined = "The string you provided is too long, please abbreviate your string to be 5000 characters or less.";
|
|
1271
|
+
declare const IsValidLongString: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, "The string you provided is too long, please abbreviate your string to be 5000 characters or less.">]>;
|
|
1272
|
+
declare const IsValidLongStringOrUndefined: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, "The string you provided is too long, please abbreviate your string to be 5000 characters or less.">]>, undefined>;
|
|
577
1273
|
declare const IsValidStringList: v.SchemaWithPipe<readonly [v.ArraySchema<v.StringSchema<undefined>, undefined>, v.TransformAction<string[], string>]>;
|
|
578
1274
|
declare const IsValidStringListOrUndefined: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.StringSchema<undefined>, undefined>, v.TransformAction<string[], string>]>, undefined>;
|
|
579
1275
|
|
|
@@ -592,8 +1288,8 @@ declare const IsValidOrUndefinedUrlFragment: v.UndefinedableSchema<v.SchemaWithP
|
|
|
592
1288
|
|
|
593
1289
|
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: - _ .">]>;
|
|
594
1290
|
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>;
|
|
595
|
-
declare const
|
|
596
|
-
declare const
|
|
1291
|
+
declare const IsValidUserEmail: 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">]>;
|
|
1292
|
+
declare const IsValidOrUndefinedUserEmail: 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>;
|
|
597
1293
|
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">]>;
|
|
598
1294
|
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>;
|
|
599
1295
|
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">]>;
|
|
@@ -618,4 +1314,4 @@ declare const IsValidOrUndefinedUrlUtmTerm: v.UndefinedableSchema<v.SchemaWithPi
|
|
|
618
1314
|
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: - _ .">]>;
|
|
619
1315
|
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>;
|
|
620
1316
|
|
|
621
|
-
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,
|
|
1317
|
+
export { type BaseDocument, type BlockAnnouncementBar, type BlockBrandLogos, type BlockButtonGroup, type BlockContact, type BlockCtaLink, type BlockFaq, type BlockFullscreenContent, type BlockFullscreenContentType, type BlockTextDetails, type BlockVideoEmbed, type BlogPageDocument, type BlogPostBlock, type BlogPostDocument, CLIENT_ENTITY_KEYS, CLIENT_ENTITY_PERMISSIONS, CLIENT_ENTITY_SCOPES, type CareersPageDocument, type CategoryDocument, type ClientDocument, type ClientEntityActions, type ClientEntityKey, type ClientEntityScope, type ClientProjectDocument, type ClientProjectStatus, type ClientReportDocument, type ClientUserDocument, type ComponentBlockAnnouncementBar, type ComponentBlockBrandLogos, type ComponentBlockButtonGroup, type ComponentBlockContact, type ComponentBlockCtaLink, type ComponentBlockFaq, type ComponentBlockFullscreenContent, type ComponentBlockTextDetails, type ComponentBlockVideo, type ComponentFormDownload, type ComponentFormSelect, type ComponentOpenGraph, type ComponentSeoMeta, type ComponentSharedButton, type ComponentSharedLink, type ComponentSharedQuestionAnswer, type ComponentSharedRichTextBlock, type ComponentSlideContent, type ComponentSliderSettings, type ComponentSlideshow, type ComponentSlideshowSettings, type ComponentUtmOption, ERROR_MESSAGE_REGEX_DOMAIN, ERROR_MESSAGE_REGEX_UTM_VALUE, type FormDownload, type FormDownloadKeys, type FormSelect, type FormUID, 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, IsValidFileReferenceId, IsValidFirstName, IsValidFullName, IsValidGroupUserScopes, IsValidIndustryName, IsValidIsActive, IsValidIsSecure, IsValidLabel, IsValidLastName, IsValidLongString, IsValidLongStringOrUndefined, IsValidName, IsValidNumberOfEmployees, IsValidOrUndefinedBlocked, IsValidOrUndefinedConfirmed, IsValidOrUndefinedCost, IsValidOrUndefinedDescription, IsValidOrUndefinedIsActive, IsValidOrUndefinedIsSecure, IsValidOrUndefinedLabel, IsValidOrUndefinedName, IsValidOrUndefinedPassword, IsValidOrUndefinedProvider, IsValidOrUndefinedUrlDestination, IsValidOrUndefinedUrlDomain, IsValidOrUndefinedUrlFragment, IsValidOrUndefinedUrlPath, IsValidOrUndefinedUrlProtocol, IsValidOrUndefinedUrlQuery, IsValidOrUndefinedUrlUtmCampaign, IsValidOrUndefinedUrlUtmContent, IsValidOrUndefinedUrlUtmCreativeFormat, IsValidOrUndefinedUrlUtmId, IsValidOrUndefinedUrlUtmMedium, IsValidOrUndefinedUrlUtmSource, IsValidOrUndefinedUrlUtmTerm, IsValidOrUndefinedUserEmail, 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, IsValidUserEmail, IsValidUserMessage, IsValidUserPhone, IsValidUserPhoneRequired, IsValidUserRole, IsValidUserTitle, IsValidUserTitleRequired, IsValidUsername, IsValidUtmCampaignKeyName, IsValidUtmCampaignKeyNameOrUndefined, IsValidUtmLink, IsValidValue, type KeenSliderOrigin, type KeenSliderSliderSlides, LIMIT_BLOG_POST_PAGINATION_DEFAULT_SIZE, LIMIT_BLOG_POST_PAGINATION_MAX_SIZE, LIMIT_CATEGORIES_DEFAULT_SIZE, LIMIT_CATEGORIES_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_TAGS_DEFAULT_SIZE, LIMIT_TAGS_MAX_SIZE, 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, LIMIT_UTM_TRACKING_LINK_PAGINATION_DEFAULT_SIZE, LIMIT_UTM_TRACKING_LINK_PAGINATION_MAX_SIZE, type LandingPageDocument, type LeadDocument, type MediaFormat, type MediaFormats, type MediaPlatformDocument, type MediaUploadDocument, type OpenGraph, type PermissionDocument, type PolicyPageDocument, type ProductDocument, type ProductHighlightDocument, QueryStrapiByDocumentId, QueryStrapiByEmail, QueryStrapiById, QueryStrapiByName, QueryStrapiByPhone, QueryStrapiBySlug, QueryStrapiPaginated, QueryStrapiPaginatedUrlRedirects, QueryStrapiSearchBlogPosts, QueryStrapiSearchBlogPostsBySlug, QueryStrapiSearchClients, QueryStrapiSearchUtmTrackingLinks, QueryStrapiUrlRedirectsByFrom, QueryStrapiUsers, QueryStrapiUsersByIdentifier, REGEX_DOMAIN, REGEX_UTM_VALUE, type ResumeDocument, type RichTextBlock, type RichTextBlockChildren, type RoleDocument, SAuthConnectProviderConfirmation, SAuthConnectProviderRedirectSearch, SAuthRawAccessToken, SChangePassword, SCreateLead, SCreateNewsletterSignup, SCreateResume, SCreateResumeInfo, SForgotUserPassword, SLoginUser, SReadUserByDocumentId, SReadUserById, SRegisterUser, SRequestConfirmEmail, SResetUserPassword, SUpdateResumeInfo, SUpdateTrendsLikes, SUserToken, type SeoMeta, type SharedButton, type SharedLink, type SharedQuestionAnswer, type SharedRichTextBlock, SharpSpringSignUpToDownload, type SlideContent, type SlideType, type SliderSettings, type SliderSpacing, type Slideshow, type SlideshowMode, type SlideshowSettings, type StrapiBgColorOptions, type StrapiDirection, type StrapiErrorDetail, type StrapiErrorResponse, type StrapiGapSizes, type StrapiIconName, type StrapiIconPosition, type StrapiLinkReferrerPolicy, type StrapiLinkRel, type StrapiLinkTarget, type StrapiLinkType, type StrapiListResponse, type StrapiPagination, type StrapiResponseMeta, type StrapiSingleResponse, type StrapiTextColorOptions, type StrapiThemeOptions, type TagDocument, type TeamMemberDocument, type TeamPageDocument, type TrendDocument, type UrlRedirectDocument, type UrlRedirectQueryParams, type UrlRedirectStatusCode, type UserAccountDocument, type UserAuthorizationLoginResponse, type UserAuthorizationSuccessResponse, type UserDocument, type UserWithAccountDocument, type UtmClassificationKey, type UtmMetaPageDocument, type UtmOption, type UtmSourceKey, type UtmTrackingLinkDocument, ValidGcDesiredContentOptions, ValidGcServiceOptions, ValidGcVideoServiceOptions, ValidJobRoleGroup, ValidNumberOfEmployeeOptions, ValidRatingRange5, datePlusDays, dateToday, isValidationFailure, isValidationSuccess, omitUndefined, validateAndClean };
|