@getcommunity/gc-validators 0.0.89 → 0.0.91

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.d.ts CHANGED
@@ -116,6 +116,11 @@ declare const REGEX_NANP_PHONE: RegExp;
116
116
  declare const ERROR_MESSAGE_REGEX_URL_SLUG = "can only contain letters, numbers, and the special characters: - _ .";
117
117
  declare const REGEX_URL_SLUG: RegExp;
118
118
 
119
+ declare const QuerySortBlogPosts: v.OptionalSchema<v.ObjectSchema<{
120
+ readonly key: v.PicklistSchema<["id", "title", "slug", "is_live", "is_featured", "is_public", "published", "createdAt", "updatedAt"], undefined>;
121
+ readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
122
+ }, undefined>, undefined>;
123
+ type QuerySortBlogPosts = v.InferOutput<typeof QuerySortBlogPosts>;
119
124
  declare const QueryStrapiSearchBlogPosts: v.ObjectSchema<{
120
125
  readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
121
126
  readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 20, undefined>]>, undefined>;
@@ -123,20 +128,54 @@ declare const QueryStrapiSearchBlogPosts: v.ObjectSchema<{
123
128
  readonly category: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 100, undefined>]>, undefined>;
124
129
  readonly tags: v.OptionalSchema<v.ArraySchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 100, undefined>]>, undefined>, undefined>;
125
130
  readonly status: v.OptionalSchema<v.PicklistSchema<["draft", "published"], undefined>, undefined>;
131
+ readonly sort: v.OptionalSchema<v.ObjectSchema<{
132
+ readonly key: v.PicklistSchema<["id", "title", "slug", "is_live", "is_featured", "is_public", "published", "createdAt", "updatedAt"], undefined>;
133
+ readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
134
+ }, undefined>, undefined>;
126
135
  }, undefined>;
127
136
  type QueryStrapiSearchBlogPosts = v.InferOutput<typeof QueryStrapiSearchBlogPosts>;
128
137
  declare const QueryStrapiSearchBlogPostsBySlug: v.ObjectSchema<{
129
138
  readonly slug: v.StringSchema<undefined>;
130
139
  readonly status: v.OptionalSchema<v.PicklistSchema<["draft", "published"], undefined>, "published">;
140
+ readonly sort: v.OptionalSchema<v.ObjectSchema<{
141
+ readonly key: v.PicklistSchema<["id", "title", "slug", "is_live", "is_featured", "is_public", "published", "createdAt", "updatedAt"], undefined>;
142
+ readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
143
+ }, undefined>, undefined>;
131
144
  }, undefined>;
132
145
  type QueryStrapiSearchBlogPostsBySlug = v.InferOutput<typeof QueryStrapiSearchBlogPostsBySlug>;
133
146
 
147
+ declare const QuerySortCategories: v.OptionalSchema<v.ObjectSchema<{
148
+ readonly key: v.PicklistSchema<["id", "label", "slug", "createdAt", "updatedAt"], undefined>;
149
+ readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
150
+ }, undefined>, undefined>;
151
+ type QuerySortCategories = v.InferOutput<typeof QuerySortCategories>;
152
+ declare const QueryStrapiSearchCategories: v.ObjectSchema<{
153
+ readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
154
+ readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 20, undefined>]>, undefined>;
155
+ readonly label: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
156
+ readonly slug: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MaxLengthAction<string, 255, undefined>]>, undefined>;
157
+ readonly sort: v.OptionalSchema<v.ObjectSchema<{
158
+ readonly key: v.PicklistSchema<["id", "label", "slug", "createdAt", "updatedAt"], undefined>;
159
+ readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
160
+ }, undefined>, undefined>;
161
+ }, undefined>;
162
+ type QueryStrapiSearchCategories = v.InferOutput<typeof QueryStrapiSearchCategories>;
163
+
164
+ declare const QuerySortClientContentPillars: v.OptionalSchema<v.ObjectSchema<{
165
+ readonly key: v.PicklistSchema<["id", "is_active", "createdAt", "updatedAt"], undefined>;
166
+ readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
167
+ }, undefined>, undefined>;
168
+ type QuerySortClientContentPillars = v.InferOutput<typeof QuerySortClientContentPillars>;
134
169
  declare const QueryStrapiSearchClientContentPillars: v.ObjectSchema<{
135
170
  readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
136
171
  readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 100, undefined>]>, undefined>;
137
172
  readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
138
173
  readonly client_id: v.OptionalSchema<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">]>, undefined>;
139
174
  readonly content_pillar_id: v.OptionalSchema<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">]>, undefined>;
175
+ readonly sort: v.OptionalSchema<v.ObjectSchema<{
176
+ readonly key: v.PicklistSchema<["id", "is_active", "createdAt", "updatedAt"], undefined>;
177
+ readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
178
+ }, undefined>, undefined>;
140
179
  }, undefined>;
141
180
  type QueryStrapiSearchClientContentPillars = v.InferOutput<typeof QueryStrapiSearchClientContentPillars>;
142
181
  declare const SCreateClientContentPillarDocument: v.ObjectSchema<{
@@ -162,12 +201,21 @@ declare const SVerifyClientContentPillarDocument: v.ObjectSchema<{
162
201
  }, undefined>;
163
202
  type SVerifyClientContentPillarDocument = v.InferOutput<typeof SVerifyClientContentPillarDocument>;
164
203
 
204
+ declare const QuerySortClientMediaPlatforms: v.OptionalSchema<v.ObjectSchema<{
205
+ readonly key: v.PicklistSchema<["id", "is_active", "createdAt", "updatedAt"], undefined>;
206
+ readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
207
+ }, undefined>, undefined>;
208
+ type QuerySortClientMediaPlatforms = v.InferOutput<typeof QuerySortClientMediaPlatforms>;
165
209
  declare const QueryStrapiSearchClientMediaPlatforms: v.ObjectSchema<{
166
210
  readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
167
211
  readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 100, undefined>]>, undefined>;
168
212
  readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
169
213
  readonly client_id: v.OptionalSchema<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">]>, undefined>;
170
214
  readonly media_platform_id: v.OptionalSchema<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">]>, undefined>;
215
+ readonly sort: v.OptionalSchema<v.ObjectSchema<{
216
+ readonly key: v.PicklistSchema<["id", "is_active", "createdAt", "updatedAt"], undefined>;
217
+ readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
218
+ }, undefined>, undefined>;
171
219
  }, undefined>;
172
220
  type QueryStrapiSearchClientMediaPlatforms = v.InferOutput<typeof QueryStrapiSearchClientMediaPlatforms>;
173
221
  declare const SCreateClientMediaPlatformDocument: v.ObjectSchema<{
@@ -193,6 +241,11 @@ declare const SVerifyClientMediaPlatformDocument: v.ObjectSchema<{
193
241
  }, undefined>;
194
242
  type SVerifyClientMediaPlatformDocument = v.InferOutput<typeof SVerifyClientMediaPlatformDocument>;
195
243
 
244
+ declare const QuerySortClientProjects: v.OptionalSchema<v.ObjectSchema<{
245
+ readonly key: v.PicklistSchema<["id", "title", "slug", "project_phase", "createdAt", "updatedAt"], undefined>;
246
+ readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
247
+ }, undefined>, undefined>;
248
+ type QuerySortClientProjects = v.InferOutput<typeof QuerySortClientProjects>;
196
249
  declare const QueryStrapiSearchClientProjects: v.ObjectSchema<{
197
250
  readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
198
251
  readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 100, undefined>]>, undefined>;
@@ -201,6 +254,10 @@ declare const QueryStrapiSearchClientProjects: v.ObjectSchema<{
201
254
  readonly project_status: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.OptionalSchema<v.PicklistSchema<readonly ["coming-soon", "now-open", "for-sale", "sold-out", "available"], "one or more of the project status options is invalid">, "coming-soon">, undefined>, v.MinLengthAction<("coming-soon" | "now-open" | "for-sale" | "sold-out" | "available")[], 1, "please select one project status">, v.MaxLengthAction<("coming-soon" | "now-open" | "for-sale" | "sold-out" | "available")[], 1, "please select one project status">]>, undefined>;
202
255
  readonly project_phase: v.OptionalSchema<v.PicklistSchema<readonly ["brand", "p1", "p2", "p3", "p4", "p5", "closed"], "please select a valid project phase">, undefined>;
203
256
  readonly client_id: v.OptionalSchema<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">]>, undefined>;
257
+ readonly sort: v.OptionalSchema<v.ObjectSchema<{
258
+ readonly key: v.PicklistSchema<["id", "title", "slug", "project_phase", "createdAt", "updatedAt"], undefined>;
259
+ readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
260
+ }, undefined>, undefined>;
204
261
  }, undefined>;
205
262
  type QueryStrapiSearchClientProjects = v.InferOutput<typeof QueryStrapiSearchClientProjects>;
206
263
  declare const SCreateClientProjectDocument: v.ObjectSchema<{
@@ -236,6 +293,11 @@ declare const SAssociateClientToClientProjectDocument: v.ObjectSchema<{
236
293
  }, undefined>;
237
294
  type SAssociateClientToClientProjectDocument = v.InferOutput<typeof SAssociateClientToClientProjectDocument>;
238
295
 
296
+ declare const QuerySortClientReports: v.OptionalSchema<v.ObjectSchema<{
297
+ readonly key: v.PicklistSchema<["id", "title", "createdAt", "updatedAt"], undefined>;
298
+ readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
299
+ }, undefined>, undefined>;
300
+ type QuerySortClientReports = v.InferOutput<typeof QuerySortClientReports>;
239
301
  declare const QueryStrapiSearchClientReports: v.ObjectSchema<{
240
302
  readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
241
303
  readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 100, undefined>]>, undefined>;
@@ -243,6 +305,10 @@ declare const QueryStrapiSearchClientReports: v.ObjectSchema<{
243
305
  readonly report_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>;
244
306
  readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
245
307
  readonly client_id: v.OptionalSchema<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">]>, undefined>;
308
+ readonly sort: v.OptionalSchema<v.ObjectSchema<{
309
+ readonly key: v.PicklistSchema<["id", "title", "createdAt", "updatedAt"], undefined>;
310
+ readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
311
+ }, undefined>, undefined>;
246
312
  }, undefined>;
247
313
  type QueryStrapiSearchClientReports = v.InferOutput<typeof QueryStrapiSearchClientReports>;
248
314
  declare const SCreateClientReportDocument: v.ObjectSchema<{
@@ -270,15 +336,29 @@ declare const SUpdateClientReportDocumentRequest: v.ObjectSchema<{
270
336
  }, undefined>;
271
337
  type SUpdateClientReportDocumentRequest = v.InferOutput<typeof SUpdateClientReportDocumentRequest>;
272
338
 
339
+ declare const QuerySortClientStyleguides: v.OptionalSchema<v.ObjectSchema<{
340
+ readonly key: v.PicklistSchema<["id", "title", "createdAt", "updatedAt"], undefined>;
341
+ readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
342
+ }, undefined>, undefined>;
343
+ type QuerySortClientStyleguides = v.InferOutput<typeof QuerySortClientStyleguides>;
273
344
  declare const QueryStrapiSearchClientStyleguide: v.ObjectSchema<{
274
345
  readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
275
346
  readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 100, undefined>]>, undefined>;
276
347
  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>;
277
348
  readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
278
349
  readonly client_id: v.OptionalSchema<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">]>, undefined>;
350
+ readonly sort: v.OptionalSchema<v.ObjectSchema<{
351
+ readonly key: v.PicklistSchema<["id", "title", "createdAt", "updatedAt"], undefined>;
352
+ readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
353
+ }, undefined>, undefined>;
279
354
  }, undefined>;
280
355
  type QueryStrapiSearchClientStyleguide = v.InferOutput<typeof QueryStrapiSearchClientStyleguide>;
281
356
 
357
+ declare const QuerySortClientUsers: v.OptionalSchema<v.ObjectSchema<{
358
+ readonly key: v.PicklistSchema<["id", "createdAt", "updatedAt"], undefined>;
359
+ readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
360
+ }, undefined>, undefined>;
361
+ type QuerySortClientUsers = v.InferOutput<typeof QuerySortClientUsers>;
282
362
  declare const SQueryListClientUserDocuments: v.ObjectSchema<{
283
363
  readonly documentId: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.MinLengthAction<string, 1, undefined>, v.MaxLengthAction<string, 255, undefined>]>;
284
364
  readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
@@ -308,6 +388,11 @@ declare const SVerifyClientUserDocument: v.ObjectSchema<{
308
388
  }, undefined>;
309
389
  type SVerifyClientUserDocument = v.InferOutput<typeof SVerifyClientUserDocument>;
310
390
 
391
+ declare const QuerySortClients: v.OptionalSchema<v.ObjectSchema<{
392
+ readonly key: v.PicklistSchema<["id", "title", "teamwork_id", "teamwork_name", "utm_sheet_id", "allow_create_utm_link", "is_featured", "is_active", "is_organic_social", "is_paid_media", "createdAt", "updatedAt"], undefined>;
393
+ readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
394
+ }, undefined>, undefined>;
395
+ type QuerySortClients = v.InferOutput<typeof QuerySortClients>;
311
396
  declare const QueryStrapiSearchClients: v.ObjectSchema<{
312
397
  readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
313
398
  readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 100, undefined>]>, undefined>;
@@ -321,14 +406,27 @@ declare const QueryStrapiSearchClients: v.ObjectSchema<{
321
406
  readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
322
407
  readonly is_organic_social: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
323
408
  readonly is_paid_media: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
409
+ readonly sort: v.OptionalSchema<v.ObjectSchema<{
410
+ readonly key: v.PicklistSchema<["id", "title", "teamwork_id", "teamwork_name", "utm_sheet_id", "allow_create_utm_link", "is_featured", "is_active", "is_organic_social", "is_paid_media", "createdAt", "updatedAt"], undefined>;
411
+ readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
412
+ }, undefined>, undefined>;
324
413
  }, undefined>;
325
414
  type QueryStrapiSearchClients = v.InferOutput<typeof QueryStrapiSearchClients>;
326
415
 
416
+ declare const QuerySortContentPillars: v.OptionalSchema<v.ObjectSchema<{
417
+ readonly key: v.PicklistSchema<["id", "title", "slug", "createdAt", "updatedAt"], undefined>;
418
+ readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
419
+ }, undefined>, undefined>;
420
+ type QuerySortContentPillars = v.InferOutput<typeof QuerySortContentPillars>;
327
421
  declare const QueryStrapiSearchContentPillars: v.ObjectSchema<{
328
422
  readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
329
423
  readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 10000, undefined>]>, undefined>;
330
424
  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>;
331
425
  readonly slug: 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>;
426
+ readonly sort: v.OptionalSchema<v.ObjectSchema<{
427
+ readonly key: v.PicklistSchema<["id", "title", "slug", "createdAt", "updatedAt"], undefined>;
428
+ readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
429
+ }, undefined>, undefined>;
332
430
  }, undefined>;
333
431
  type QueryStrapiSearchContentPillars = v.InferOutput<typeof QueryStrapiSearchContentPillars>;
334
432
  declare const SCreateContentPillarDocument: v.ObjectSchema<{
@@ -353,9 +451,18 @@ declare const SUpdateContentPillarDocumentRequest: v.ObjectSchema<{
353
451
  }, undefined>;
354
452
  type SUpdateContentPillarDocumentRequest = v.InferOutput<typeof SUpdateContentPillarDocumentRequest>;
355
453
 
454
+ declare const QuerySortEntities: v.OptionalSchema<v.ObjectSchema<{
455
+ readonly key: v.PicklistSchema<["id", "createdAt", "updatedAt"], undefined>;
456
+ readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
457
+ }, undefined>, undefined>;
458
+ type QuerySortEntities = v.InferOutput<typeof QuerySortEntities>;
356
459
  declare const QueryStrapiPaginated: v.ObjectSchema<{
357
460
  readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
358
461
  readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 10000, undefined>]>, undefined>;
462
+ readonly sort: v.OptionalSchema<v.ObjectSchema<{
463
+ readonly key: v.PicklistSchema<["id", "createdAt", "updatedAt"], undefined>;
464
+ readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
465
+ }, undefined>, undefined>;
359
466
  }, undefined>;
360
467
  type QueryStrapiPaginated = v.InferOutput<typeof QueryStrapiPaginated>;
361
468
  declare const QueryStrapiById: v.ObjectSchema<{
@@ -399,12 +506,21 @@ declare const SCreateLead: v.ObjectSchema<{
399
506
  }, undefined>;
400
507
  type SCreateLead = v.InferOutput<typeof SCreateLead>;
401
508
 
509
+ declare const QuerySortMediaPlatforms: v.OptionalSchema<v.ObjectSchema<{
510
+ readonly key: v.PicklistSchema<["id", "title", "slug", "utm_source", "createdAt", "updatedAt"], undefined>;
511
+ readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
512
+ }, undefined>, undefined>;
513
+ type QuerySortMediaPlatforms = v.InferOutput<typeof QuerySortMediaPlatforms>;
402
514
  declare const QueryStrapiSearchMediaPlatforms: v.ObjectSchema<{
403
515
  readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
404
516
  readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 10000, undefined>]>, undefined>;
405
517
  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>;
406
518
  readonly slug: 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>;
407
519
  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>;
520
+ readonly sort: v.OptionalSchema<v.ObjectSchema<{
521
+ readonly key: v.PicklistSchema<["id", "title", "slug", "utm_source", "createdAt", "updatedAt"], undefined>;
522
+ readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
523
+ }, undefined>, undefined>;
408
524
  }, undefined>;
409
525
  type QueryStrapiSearchMediaPlatforms = v.InferOutput<typeof QueryStrapiSearchMediaPlatforms>;
410
526
  declare const SCreateMediaPlatformDocument: v.ObjectSchema<{
@@ -776,9 +892,18 @@ declare const SUpdateTrendsLikes: v.ObjectSchema<{
776
892
  }, undefined>;
777
893
  type SUpdateTrendsLikes = v.InferOutput<typeof SUpdateTrendsLikes>;
778
894
 
895
+ declare const QuerySortUrlRedirects: v.OptionalSchema<v.ObjectSchema<{
896
+ readonly key: v.PicklistSchema<["id", "from", "to", "status_code", "query_params", "is_active", "createdAt", "updatedAt"], undefined>;
897
+ readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
898
+ }, undefined>, undefined>;
899
+ type QuerySortUrlRedirects = v.InferOutput<typeof QuerySortUrlRedirects>;
779
900
  declare const QueryStrapiPaginatedUrlRedirects: v.ObjectSchema<{
780
901
  readonly page: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, 1>, 1>;
781
902
  readonly size: v.SchemaWithFallback<v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 20, undefined>]>, 1000>, 1000>;
903
+ readonly sort: v.OptionalSchema<v.ObjectSchema<{
904
+ readonly key: v.PicklistSchema<["id", "from", "to", "status_code", "query_params", "is_active", "createdAt", "updatedAt"], undefined>;
905
+ readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
906
+ }, undefined>, undefined>;
782
907
  }, undefined>;
783
908
  type QueryStrapiPaginatedUrlRedirects = v.InferOutput<typeof QueryStrapiPaginatedUrlRedirects>;
784
909
  declare const QueryStrapiUrlRedirectsByFrom: v.ObjectSchema<{
@@ -899,9 +1024,18 @@ declare const SAuthConnectProviderConfirmation: v.ObjectSchema<{
899
1024
  }, undefined>;
900
1025
  type SAuthConnectProviderConfirmation = v.InferOutput<typeof SAuthConnectProviderConfirmation>;
901
1026
 
1027
+ declare const QuerySortUsers: v.OptionalSchema<v.ObjectSchema<{
1028
+ readonly key: v.PicklistSchema<["id", "username", "email", "confirmed", "blocked", "createdAt", "updatedAt"], undefined>;
1029
+ readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
1030
+ }, undefined>, undefined>;
1031
+ type QuerySortUsers = v.InferOutput<typeof QuerySortUsers>;
902
1032
  declare const QueryStrapiUsers: v.ObjectSchema<{
903
1033
  readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
904
1034
  readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 10, undefined>]>, undefined>;
1035
+ readonly sort: v.OptionalSchema<v.ObjectSchema<{
1036
+ readonly key: v.PicklistSchema<["id", "username", "email", "confirmed", "blocked", "createdAt", "updatedAt"], undefined>;
1037
+ readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
1038
+ }, undefined>, undefined>;
905
1039
  }, undefined>;
906
1040
  type QueryStrapiUsers = v.InferOutput<typeof QueryStrapiUsers>;
907
1041
  declare const QueryStrapiUsersByIdentifier: v.ObjectSchema<{
@@ -957,6 +1091,11 @@ declare const SUtmLinkBuilderTableForm: v.ObjectSchema<{
957
1091
  }, undefined>;
958
1092
  type SUtmLinkBuilderTableForm = v.InferOutput<typeof SUtmLinkBuilderTableForm>;
959
1093
 
1094
+ declare const QuerySortUtmTrackingLinks: v.OptionalSchema<v.ObjectSchema<{
1095
+ readonly key: v.PicklistSchema<["id", "url_destination", "utm_medium", "utm_source", "utm_campaign", "utm_content", "utm_creative_format", "utm_id", "campaign_phase", "campaign_product", "campaign_targeting", "campaign_key", "creative_format", "creative_format_variants", "url", "is_active", "createdAt", "updatedAt"], undefined>;
1096
+ readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
1097
+ }, undefined>, undefined>;
1098
+ type QuerySortUtmTrackingLinks = v.InferOutput<typeof QuerySortUtmTrackingLinks>;
960
1099
  declare const QueryStrapiSearchUtmTrackingLinks: v.ObjectSchema<{
961
1100
  readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
962
1101
  readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 1000, undefined>]>, undefined>;
@@ -976,6 +1115,10 @@ declare const QueryStrapiSearchUtmTrackingLinks: v.ObjectSchema<{
976
1115
  readonly url: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.StartsWithAction<string, "http", "Please enter a valid URL starting with http or https.">, v.UrlAction<string, "Please enter a valid URL.">]>, undefined>;
977
1116
  readonly is_active: v.OptionalSchema<v.BooleanSchema<undefined>, undefined>;
978
1117
  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>;
1118
+ readonly sort: v.OptionalSchema<v.ObjectSchema<{
1119
+ readonly key: v.PicklistSchema<["id", "url_destination", "utm_medium", "utm_source", "utm_campaign", "utm_content", "utm_creative_format", "utm_id", "campaign_phase", "campaign_product", "campaign_targeting", "campaign_key", "creative_format", "creative_format_variants", "url", "is_active", "createdAt", "updatedAt"], undefined>;
1120
+ readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
1121
+ }, undefined>, undefined>;
979
1122
  }, undefined>;
980
1123
  type QueryStrapiSearchUtmTrackingLinks = v.InferOutput<typeof QueryStrapiSearchUtmTrackingLinks>;
981
1124
  type SCreateUtmTrackingLinkDocumentInput = v.InferInput<typeof SCreateUtmTrackingLinkDocument>;
@@ -1755,7 +1898,7 @@ type ProductHighlightDocument = {
1755
1898
  type ClientDocument = {
1756
1899
  title: string;
1757
1900
  is_featured: boolean;
1758
- logos?: BlockBrandLogos;
1901
+ logos?: BlockBrandLogos | null;
1759
1902
  teamwork_id: string;
1760
1903
  teamwork_name: string;
1761
1904
  utm_sheet_id: string;
@@ -2187,4 +2330,4 @@ declare const IsValidOrUndefinedUrlUtmTerm: v.OptionalSchema<v.SchemaWithPipe<re
2187
2330
  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: - _ .">]>;
2188
2331
  declare const IsValidOrUndefinedUrlUtmId: 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>;
2189
2332
 
2190
- export { type AuthorizedUserDocument, 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, type BrandStyleguideColor, type BrandStyleguideFont, CLIENT_ENTITY_KEYS, CLIENT_ENTITY_PERMISSIONS, CLIENT_ENTITY_SCOPES, type CareersPageDocument, type CategoryDocument, type ClientContentPillarDocument, type ClientDocument, type ClientEntityActions, type ClientEntityKey, type ClientEntityScope, type ClientMediaPlatformDocument, type ClientProjectDocument, type ClientProjectPhase, ClientProjectPhaseOptions, ClientProjectPhaseSelectOptions, type ClientProjectStatus, ClientProjectStatusOptions, type ClientReportDocument, type ClientStyleguideDocument, type ClientUserDocument, type ClientUserDocumentStatus, type ComponentBlockAnnouncementBar, type ComponentBlockBrandLogos, type ComponentBlockButtonGroup, type ComponentBlockContact, type ComponentBlockCtaLink, type ComponentBlockFaq, type ComponentBlockFullscreenContent, type ComponentBlockTextDetails, type ComponentBlockVideo, type ComponentBrandStyleguideColor, type ComponentBrandStyleguideFont, 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, type ContentPillarDocument, ERROR_MESSAGE_REGEX_DOMAIN, ERROR_MESSAGE_REGEX_PHONE, ERROR_MESSAGE_REGEX_URL_SLUG, ERROR_MESSAGE_REGEX_UTM_VALUE, type FormDownload, type FormDownloadKeys, type FormSelect, type FormSelectInputOption, type FormUID, InvalidClientTermMin, InvalidClientTermNumber, InvalidCompanyName, InvalidCompanyNameMaxLength, InvalidCsvFileType, InvalidDestinationUrl, InvalidFirstName, InvalidFirstNameMaxLength, InvalidFullName, InvalidFullNameMaxLength, InvalidInputRobot, InvalidInstrustryName, InvalidInstrustryNameMaxLength, InvalidLastName, InvalidLastNameMaxLength, InvalidListOfUrls, InvalidLongStringOrUndefined, InvalidPreferredName, InvalidPreferredNameMaxLength, InvalidProductInterestMaxLength, InvalidRangeValueOneToFive, InvalidRefPageMaxLength, InvalidResumeFileType, InvalidShortStringMax, InvalidUserMessage, InvalidUserMessageMaxLength, InvalidUserPhone, InvalidUserPhoneType, InvalidUserTitle, InvalidUserTitleMaxLength, InvalidUtmLink, IsValidBlocked, IsValidCaptchaToken, IsValidClientProjectPhase, IsValidClientProjectStatus, IsValidClientTerm, IsValidClientUserScope, IsValidClientUserScopes, IsValidCompanyName, IsValidCompanyNameRequired, IsValidConfirmed, IsValidCost, IsValidCsvFile, IsValidDateToday, IsValidDescription, IsValidDestinationUrl, IsValidFileReferenceId, IsValidFirstName, IsValidFullName, IsValidIndustryName, IsValidIsActive, IsValidIsSecure, IsValidLabel, IsValidLastName, IsValidLongString, IsValidLongStringOrUndefined, IsValidMediaFile, IsValidMediaFileList, IsValidName, IsValidNumberOfEmployees, IsValidOrUndefinedBlocked, IsValidOrUndefinedClientProjectPhase, IsValidOrUndefinedClientProjectStatus, 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, IsValidPreferredName, IsValidProductInterest, IsValidProvider, IsValidRangeValueOneToFive, IsValidRefPage, IsValidReferenceDocumentId, IsValidReferenceId, IsValidResumeFile, IsValidShortString, IsValidShortStringOrUndefined, IsValidSlug, IsValidSlugOrUndefined, 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_CONTENT_PILLAR_PAGINATION_DEFAULT_SIZE, LIMIT_CLIENT_CONTENT_PILLAR_PAGINATION_MAX_SIZE, LIMIT_CLIENT_MEDIA_PLATFORM_PAGINATION_DEFAULT_SIZE, LIMIT_CLIENT_MEDIA_PLATFORM_PAGINATION_MAX_SIZE, LIMIT_CLIENT_PAGINATION_DEFAULT_SIZE, LIMIT_CLIENT_PAGINATION_MAX_SIZE, LIMIT_CLIENT_PROJECT_PAGINATION_DEFAULT_SIZE, LIMIT_CLIENT_PROJECT_PAGINATION_MAX_SIZE, LIMIT_CLIENT_REPORT_PAGINATION_DEFAULT_SIZE, LIMIT_CLIENT_REPORT_PAGINATION_MAX_SIZE, LIMIT_CLIENT_STYLEGUIDE_PAGINATION_DEFAULT_SIZE, LIMIT_CLIENT_STYLEGUIDE_PAGINATION_MAX_SIZE, LIMIT_CLIENT_USER_PAGINATION_DEFAULT_SIZE_LIMIT, LIMIT_CLIENT_USER_PAGINATION_MAX_SIZE_LIMIT, 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_TABLE_PAGINATION_DEFAULT_SIZE, 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, MAX_FILE_SIZE, MAX_FILE_SIZE_LABEL, 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, QueryStrapiSearchClientContentPillars, QueryStrapiSearchClientMediaPlatforms, QueryStrapiSearchClientProjects, QueryStrapiSearchClientReports, QueryStrapiSearchClientStyleguide, QueryStrapiSearchClients, QueryStrapiSearchContentPillars, QueryStrapiSearchMediaPlatforms, QueryStrapiSearchUtmTrackingLinks, QueryStrapiUrlRedirectsByFrom, QueryStrapiUsers, QueryStrapiUsersByIdentifier, REGEX_BRAND_COLOR_SLUG, REGEX_DOMAIN, REGEX_NANP_PHONE, REGEX_URL_SLUG, REGEX_UTM_VALUE, type ResumeDocument, type RichTextBlock, type RichTextBlockChildren, type RoleDocument, SAssociateClientToClientProjectDocument, SAuthConnectProviderConfirmation, SAuthConnectProviderRedirectSearch, SAuthRawAccessToken, SChangePassword, SConnectManyEntityRelation, type SConnectManyEntityRelationIn, SConnectOneEntityRelation, type SConnectOneEntityRelationIn, SCreateClientContentPillarDocument, SCreateClientMediaPlatformDocument, SCreateClientProjectDocument, SCreateClientReportDocument, SCreateClientUserDocument, SCreateContentPillarDocument, SCreateLead, SCreateMediaPlatformDocument, SCreateMultipleStrapiMediaUploadDocument, SCreateNewsletterSignup, SCreateResume, SCreateResumeInfo, SCreateStrapiMediaUploadDocument, SCreateUtmTrackingLinkDocument, type SCreateUtmTrackingLinkDocumentInput, SCreateUtmTrackingLinkParts, SDisconnectManyEntityRelation, type SDisconnectManyEntityRelationIn, SDisconnectOneEntityRelation, type SDisconnectOneEntityRelationIn, SEntityRelation, type SEntityRelationIn, SEntityRelationPosition, SEntityRelationPositionAfter, SEntityRelationPositionBefore, SEntityRelationPositionEnd, type SEntityRelationPositionIn, SEntityRelationPositionStart, SForgotUserPassword, SFormCreateMultipleUtmTrackingLinkDocuments, SLoginUser, SQueryListClientUserDocuments, SReadUserAccountByDocumentId, SReadUserAccountById, SReadUtmTrackingLinkDocumentByUrl, SRegisterUser, SRequestConfirmEmail, SResetUserPassword, SSetManyEntityRelation, type SSetManyEntityRelationIn, SSetOneEntityRelation, type SSetOneEntityRelationIn, SUpdateClientContentPillarDocument, SUpdateClientContentPillarDocumentRequest, SUpdateClientMediaPlatformDocument, SUpdateClientMediaPlatformDocumentRequest, SUpdateClientProjectDocument, SUpdateClientProjectDocumentRequest, SUpdateClientReportDocument, SUpdateClientReportDocumentRequest, SUpdateClientUserDocument, SUpdateClientUserDocumentRequest, SUpdateContentPillarDocument, SUpdateContentPillarDocumentRequest, SUpdateMediaPlatformDocument, SUpdateMediaPlatformDocumentRequest, SUpdateResumeInfo, SUpdateStrapiMediaFileInfo, SUpdateTrendsLikes, SUpdateUserAccount, SUpdateUserAccountFirstName, SUpdateUserAccountLastName, SUpdateUserAccountPreferredName, SUpdateUtmTrackingLinkDocument, SUpdateUtmTrackingLinkDocumentRequest, SUserToken, SUtmLinkBuilderPartCampaignDateOptions, type SUtmLinkBuilderPartCampaignDateValue, SUtmLinkBuilderTableForm, type SUtmLinkBuilderTableFormInput, SVerifyClientContentPillarDocument, SVerifyClientMediaPlatformDocument, SVerifyClientUserDocument, 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 StrapiAttributeErrorDetail, type StrapiAttributeErrorKey, type StrapiAttributeErrorResponse, type StrapiBgColorOptions, type StrapiDirection, type StrapiErrorDetail, type StrapiErrorResponse, type StrapiErrorResult, type StrapiGapSizes, type StrapiIconName, type StrapiIconPosition, type StrapiLinkReferrerPolicy, type StrapiLinkRel, type StrapiLinkTarget, type StrapiLinkType, type StrapiListResponse, type StrapiPagination, type StrapiResponseMeta, type StrapiResponseMetaWithPagination, 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 UtmClassificationKey, type UtmMetaPageDocument, type UtmOption, type UtmSourceKey, type UtmTrackingLinkDocument, ValidGcDesiredContentOptions, ValidGcServiceOptions, ValidGcVideoServiceOptions, ValidJobRoleGroup, ValidNumberOfEmployeeOptions, ValidRatingRange5, type WebSafeFont, type WebSafeFontDisplay, type WebSafeFontMono, type WebSafeFontSans, type WebSafeFontSerif, datePlusDays, dateToday, isStrapiAttributeError, isStrapiStandardError, isValidationFailure, isValidationSuccess, omitUndefined, validateAndClean };
2333
+ export { type AuthorizedUserDocument, 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, type BrandStyleguideColor, type BrandStyleguideFont, CLIENT_ENTITY_KEYS, CLIENT_ENTITY_PERMISSIONS, CLIENT_ENTITY_SCOPES, type CareersPageDocument, type CategoryDocument, type ClientContentPillarDocument, type ClientDocument, type ClientEntityActions, type ClientEntityKey, type ClientEntityScope, type ClientMediaPlatformDocument, type ClientProjectDocument, type ClientProjectPhase, ClientProjectPhaseOptions, ClientProjectPhaseSelectOptions, type ClientProjectStatus, ClientProjectStatusOptions, type ClientReportDocument, type ClientStyleguideDocument, type ClientUserDocument, type ClientUserDocumentStatus, type ComponentBlockAnnouncementBar, type ComponentBlockBrandLogos, type ComponentBlockButtonGroup, type ComponentBlockContact, type ComponentBlockCtaLink, type ComponentBlockFaq, type ComponentBlockFullscreenContent, type ComponentBlockTextDetails, type ComponentBlockVideo, type ComponentBrandStyleguideColor, type ComponentBrandStyleguideFont, 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, type ContentPillarDocument, ERROR_MESSAGE_REGEX_DOMAIN, ERROR_MESSAGE_REGEX_PHONE, ERROR_MESSAGE_REGEX_URL_SLUG, ERROR_MESSAGE_REGEX_UTM_VALUE, type FormDownload, type FormDownloadKeys, type FormSelect, type FormSelectInputOption, type FormUID, InvalidClientTermMin, InvalidClientTermNumber, InvalidCompanyName, InvalidCompanyNameMaxLength, InvalidCsvFileType, InvalidDestinationUrl, InvalidFirstName, InvalidFirstNameMaxLength, InvalidFullName, InvalidFullNameMaxLength, InvalidInputRobot, InvalidInstrustryName, InvalidInstrustryNameMaxLength, InvalidLastName, InvalidLastNameMaxLength, InvalidListOfUrls, InvalidLongStringOrUndefined, InvalidPreferredName, InvalidPreferredNameMaxLength, InvalidProductInterestMaxLength, InvalidRangeValueOneToFive, InvalidRefPageMaxLength, InvalidResumeFileType, InvalidShortStringMax, InvalidUserMessage, InvalidUserMessageMaxLength, InvalidUserPhone, InvalidUserPhoneType, InvalidUserTitle, InvalidUserTitleMaxLength, InvalidUtmLink, IsValidBlocked, IsValidCaptchaToken, IsValidClientProjectPhase, IsValidClientProjectStatus, IsValidClientTerm, IsValidClientUserScope, IsValidClientUserScopes, IsValidCompanyName, IsValidCompanyNameRequired, IsValidConfirmed, IsValidCost, IsValidCsvFile, IsValidDateToday, IsValidDescription, IsValidDestinationUrl, IsValidFileReferenceId, IsValidFirstName, IsValidFullName, IsValidIndustryName, IsValidIsActive, IsValidIsSecure, IsValidLabel, IsValidLastName, IsValidLongString, IsValidLongStringOrUndefined, IsValidMediaFile, IsValidMediaFileList, IsValidName, IsValidNumberOfEmployees, IsValidOrUndefinedBlocked, IsValidOrUndefinedClientProjectPhase, IsValidOrUndefinedClientProjectStatus, 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, IsValidPreferredName, IsValidProductInterest, IsValidProvider, IsValidRangeValueOneToFive, IsValidRefPage, IsValidReferenceDocumentId, IsValidReferenceId, IsValidResumeFile, IsValidShortString, IsValidShortStringOrUndefined, IsValidSlug, IsValidSlugOrUndefined, 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_CONTENT_PILLAR_PAGINATION_DEFAULT_SIZE, LIMIT_CLIENT_CONTENT_PILLAR_PAGINATION_MAX_SIZE, LIMIT_CLIENT_MEDIA_PLATFORM_PAGINATION_DEFAULT_SIZE, LIMIT_CLIENT_MEDIA_PLATFORM_PAGINATION_MAX_SIZE, LIMIT_CLIENT_PAGINATION_DEFAULT_SIZE, LIMIT_CLIENT_PAGINATION_MAX_SIZE, LIMIT_CLIENT_PROJECT_PAGINATION_DEFAULT_SIZE, LIMIT_CLIENT_PROJECT_PAGINATION_MAX_SIZE, LIMIT_CLIENT_REPORT_PAGINATION_DEFAULT_SIZE, LIMIT_CLIENT_REPORT_PAGINATION_MAX_SIZE, LIMIT_CLIENT_STYLEGUIDE_PAGINATION_DEFAULT_SIZE, LIMIT_CLIENT_STYLEGUIDE_PAGINATION_MAX_SIZE, LIMIT_CLIENT_USER_PAGINATION_DEFAULT_SIZE_LIMIT, LIMIT_CLIENT_USER_PAGINATION_MAX_SIZE_LIMIT, 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_TABLE_PAGINATION_DEFAULT_SIZE, 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, MAX_FILE_SIZE, MAX_FILE_SIZE_LABEL, type MediaFormat, type MediaFormats, type MediaPlatformDocument, type MediaUploadDocument, type OpenGraph, type PermissionDocument, type PolicyPageDocument, type ProductDocument, type ProductHighlightDocument, QuerySortBlogPosts, QuerySortCategories, QuerySortClientContentPillars, QuerySortClientMediaPlatforms, QuerySortClientProjects, QuerySortClientReports, QuerySortClientStyleguides, QuerySortClientUsers, QuerySortClients, QuerySortContentPillars, QuerySortEntities, QuerySortMediaPlatforms, QuerySortUrlRedirects, QuerySortUsers, QuerySortUtmTrackingLinks, QueryStrapiByDocumentId, QueryStrapiByEmail, QueryStrapiById, QueryStrapiByName, QueryStrapiByPhone, QueryStrapiBySlug, QueryStrapiPaginated, QueryStrapiPaginatedUrlRedirects, QueryStrapiSearchBlogPosts, QueryStrapiSearchBlogPostsBySlug, QueryStrapiSearchCategories, QueryStrapiSearchClientContentPillars, QueryStrapiSearchClientMediaPlatforms, QueryStrapiSearchClientProjects, QueryStrapiSearchClientReports, QueryStrapiSearchClientStyleguide, QueryStrapiSearchClients, QueryStrapiSearchContentPillars, QueryStrapiSearchMediaPlatforms, QueryStrapiSearchUtmTrackingLinks, QueryStrapiUrlRedirectsByFrom, QueryStrapiUsers, QueryStrapiUsersByIdentifier, REGEX_BRAND_COLOR_SLUG, REGEX_DOMAIN, REGEX_NANP_PHONE, REGEX_URL_SLUG, REGEX_UTM_VALUE, type ResumeDocument, type RichTextBlock, type RichTextBlockChildren, type RoleDocument, SAssociateClientToClientProjectDocument, SAuthConnectProviderConfirmation, SAuthConnectProviderRedirectSearch, SAuthRawAccessToken, SChangePassword, SConnectManyEntityRelation, type SConnectManyEntityRelationIn, SConnectOneEntityRelation, type SConnectOneEntityRelationIn, SCreateClientContentPillarDocument, SCreateClientMediaPlatformDocument, SCreateClientProjectDocument, SCreateClientReportDocument, SCreateClientUserDocument, SCreateContentPillarDocument, SCreateLead, SCreateMediaPlatformDocument, SCreateMultipleStrapiMediaUploadDocument, SCreateNewsletterSignup, SCreateResume, SCreateResumeInfo, SCreateStrapiMediaUploadDocument, SCreateUtmTrackingLinkDocument, type SCreateUtmTrackingLinkDocumentInput, SCreateUtmTrackingLinkParts, SDisconnectManyEntityRelation, type SDisconnectManyEntityRelationIn, SDisconnectOneEntityRelation, type SDisconnectOneEntityRelationIn, SEntityRelation, type SEntityRelationIn, SEntityRelationPosition, SEntityRelationPositionAfter, SEntityRelationPositionBefore, SEntityRelationPositionEnd, type SEntityRelationPositionIn, SEntityRelationPositionStart, SForgotUserPassword, SFormCreateMultipleUtmTrackingLinkDocuments, SLoginUser, SQueryListClientUserDocuments, SReadUserAccountByDocumentId, SReadUserAccountById, SReadUtmTrackingLinkDocumentByUrl, SRegisterUser, SRequestConfirmEmail, SResetUserPassword, SSetManyEntityRelation, type SSetManyEntityRelationIn, SSetOneEntityRelation, type SSetOneEntityRelationIn, SUpdateClientContentPillarDocument, SUpdateClientContentPillarDocumentRequest, SUpdateClientMediaPlatformDocument, SUpdateClientMediaPlatformDocumentRequest, SUpdateClientProjectDocument, SUpdateClientProjectDocumentRequest, SUpdateClientReportDocument, SUpdateClientReportDocumentRequest, SUpdateClientUserDocument, SUpdateClientUserDocumentRequest, SUpdateContentPillarDocument, SUpdateContentPillarDocumentRequest, SUpdateMediaPlatformDocument, SUpdateMediaPlatformDocumentRequest, SUpdateResumeInfo, SUpdateStrapiMediaFileInfo, SUpdateTrendsLikes, SUpdateUserAccount, SUpdateUserAccountFirstName, SUpdateUserAccountLastName, SUpdateUserAccountPreferredName, SUpdateUtmTrackingLinkDocument, SUpdateUtmTrackingLinkDocumentRequest, SUserToken, SUtmLinkBuilderPartCampaignDateOptions, type SUtmLinkBuilderPartCampaignDateValue, SUtmLinkBuilderTableForm, type SUtmLinkBuilderTableFormInput, SVerifyClientContentPillarDocument, SVerifyClientMediaPlatformDocument, SVerifyClientUserDocument, 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 StrapiAttributeErrorDetail, type StrapiAttributeErrorKey, type StrapiAttributeErrorResponse, type StrapiBgColorOptions, type StrapiDirection, type StrapiErrorDetail, type StrapiErrorResponse, type StrapiErrorResult, type StrapiGapSizes, type StrapiIconName, type StrapiIconPosition, type StrapiLinkReferrerPolicy, type StrapiLinkRel, type StrapiLinkTarget, type StrapiLinkType, type StrapiListResponse, type StrapiPagination, type StrapiResponseMeta, type StrapiResponseMetaWithPagination, 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 UtmClassificationKey, type UtmMetaPageDocument, type UtmOption, type UtmSourceKey, type UtmTrackingLinkDocument, ValidGcDesiredContentOptions, ValidGcServiceOptions, ValidGcVideoServiceOptions, ValidJobRoleGroup, ValidNumberOfEmployeeOptions, ValidRatingRange5, type WebSafeFont, type WebSafeFontDisplay, type WebSafeFontMono, type WebSafeFontSans, type WebSafeFontSerif, datePlusDays, dateToday, isStrapiAttributeError, isStrapiStandardError, isValidationFailure, isValidationSuccess, omitUndefined, validateAndClean };