@getcommunity/gc-validators 0.0.128 → 0.0.130
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 +54 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +712 -669
- package/dist/index.d.ts +712 -669
- package/dist/index.js +50 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -94,650 +94,6 @@ declare const REGEX_NANP_PHONE: RegExp;
|
|
|
94
94
|
declare const ERROR_MESSAGE_REGEX_URL_SLUG = "can only contain letters, numbers, and the special characters: - _ .";
|
|
95
95
|
declare const REGEX_URL_SLUG: RegExp;
|
|
96
96
|
|
|
97
|
-
type BaseDocument = {
|
|
98
|
-
id: number;
|
|
99
|
-
documentId: string;
|
|
100
|
-
publishedAt: string;
|
|
101
|
-
createdAt: string;
|
|
102
|
-
updatedAt: string;
|
|
103
|
-
};
|
|
104
|
-
|
|
105
|
-
/**
|
|
106
|
-
* @description Strapi Theme Options
|
|
107
|
-
*/
|
|
108
|
-
type StrapiThemeOptions = "default" | "secondary" | "destructive" | "outline" | "ghost" | "link";
|
|
109
|
-
type StrapiBgColorOptions = "red" | "pink" | "orange" | "yellow" | "green" | "blue-light" | "blue-dark" | "brown-light" | "brown-dark";
|
|
110
|
-
type StrapiTextColorOptions = "light" | "dark";
|
|
111
|
-
type StrapiDirection = "horizontal" | "vertical";
|
|
112
|
-
type StrapiGapSizes = "none" | "small" | "medium" | "large";
|
|
113
|
-
type StrapiLinkType = "email" | "phone" | "social" | "link" | null;
|
|
114
|
-
type StrapiIconPosition = "before" | "after" | "above" | "below";
|
|
115
|
-
type StrapiIconName = "link" | "email" | "phone" | "facebook" | "instagram" | "linkedin" | "tiktok" | "pinterest" | "twitter" | null;
|
|
116
|
-
/**
|
|
117
|
-
* @description Strapi Link Options
|
|
118
|
-
*/
|
|
119
|
-
type StrapiLinkTarget = "_blank" | "_self" | "_parent" | "_top" | null;
|
|
120
|
-
type StrapiLinkReferrerPolicy = "no-referrer" | "no-referrer-when-downgrade" | "origin" | "origin-when-cross-origin" | "same-origin" | "strict-origin-when-cross-origin" | "unsafe-url";
|
|
121
|
-
type StrapiLinkRel = "alternate" | "author" | "bookmark" | "external" | "help" | "license" | "next" | "nofollow" | "noreferrer" | "noopener" | "prev" | "search" | "tag";
|
|
122
|
-
|
|
123
|
-
type FormSelectInputOption = {
|
|
124
|
-
label: string;
|
|
125
|
-
value: string;
|
|
126
|
-
description?: string | null;
|
|
127
|
-
disabled?: boolean;
|
|
128
|
-
meta?: Record<string, any>;
|
|
129
|
-
};
|
|
130
|
-
|
|
131
|
-
type MediaFormat = {
|
|
132
|
-
ext: string;
|
|
133
|
-
url: string;
|
|
134
|
-
hash: string;
|
|
135
|
-
mime: string;
|
|
136
|
-
name: string;
|
|
137
|
-
path: string | null;
|
|
138
|
-
size: number;
|
|
139
|
-
width: number;
|
|
140
|
-
height: number;
|
|
141
|
-
sizeInBytes: number;
|
|
142
|
-
};
|
|
143
|
-
type MediaFormats = {
|
|
144
|
-
large?: MediaFormat;
|
|
145
|
-
small?: MediaFormat;
|
|
146
|
-
medium?: MediaFormat;
|
|
147
|
-
thumbnail?: MediaFormat;
|
|
148
|
-
};
|
|
149
|
-
type MediaUploadDocument = {
|
|
150
|
-
name: string;
|
|
151
|
-
alternativeText: string | null;
|
|
152
|
-
caption: string | null;
|
|
153
|
-
width: number;
|
|
154
|
-
height: number;
|
|
155
|
-
formats?: MediaFormats | null;
|
|
156
|
-
hash: string;
|
|
157
|
-
ext: string;
|
|
158
|
-
mime: string;
|
|
159
|
-
size: number;
|
|
160
|
-
url: string;
|
|
161
|
-
previewUrl: string | null;
|
|
162
|
-
provider: string;
|
|
163
|
-
provider_metadata: null;
|
|
164
|
-
} & BaseDocument;
|
|
165
|
-
|
|
166
|
-
type StrapiPagination = {
|
|
167
|
-
page: number;
|
|
168
|
-
pageSize: number;
|
|
169
|
-
pageCount: number;
|
|
170
|
-
total: number;
|
|
171
|
-
};
|
|
172
|
-
type StrapiResponseMeta = {
|
|
173
|
-
pagination?: StrapiPagination;
|
|
174
|
-
token?: string;
|
|
175
|
-
};
|
|
176
|
-
type StrapiResponseMetaWithPagination = StrapiResponseMeta & {
|
|
177
|
-
pagination: StrapiPagination;
|
|
178
|
-
};
|
|
179
|
-
type StrapiAttributeErrorKey<T> = {
|
|
180
|
-
message: string;
|
|
181
|
-
name: string;
|
|
182
|
-
path: string[];
|
|
183
|
-
value: T[keyof T];
|
|
184
|
-
};
|
|
185
|
-
type StrapiErrorDetail<T> = {
|
|
186
|
-
status: string | number;
|
|
187
|
-
name: string;
|
|
188
|
-
message: string;
|
|
189
|
-
details: Record<keyof T, string>;
|
|
190
|
-
};
|
|
191
|
-
type StrapiAttributeErrorDetail<T> = {
|
|
192
|
-
status: string | number;
|
|
193
|
-
name: string;
|
|
194
|
-
message: string;
|
|
195
|
-
details: {
|
|
196
|
-
errors: StrapiAttributeErrorKey<T>[];
|
|
197
|
-
};
|
|
198
|
-
};
|
|
199
|
-
type StrapiSingleResponse<T> = {
|
|
200
|
-
data: T;
|
|
201
|
-
error?: undefined;
|
|
202
|
-
meta?: StrapiResponseMeta;
|
|
203
|
-
};
|
|
204
|
-
type StrapiListResponse<T> = {
|
|
205
|
-
data: T[];
|
|
206
|
-
error?: undefined;
|
|
207
|
-
meta?: StrapiResponseMetaWithPagination;
|
|
208
|
-
};
|
|
209
|
-
type StrapiErrorResponse<T> = {
|
|
210
|
-
data: null;
|
|
211
|
-
error: StrapiErrorDetail<T>;
|
|
212
|
-
meta?: undefined;
|
|
213
|
-
};
|
|
214
|
-
type StrapiAttributeErrorResponse<T> = {
|
|
215
|
-
data: null;
|
|
216
|
-
error: StrapiAttributeErrorDetail<T>;
|
|
217
|
-
meta?: undefined;
|
|
218
|
-
};
|
|
219
|
-
type StrapiErrorResult<T> = StrapiErrorResponse<T> | StrapiAttributeErrorResponse<T>;
|
|
220
|
-
|
|
221
|
-
type SharedLink = {
|
|
222
|
-
id: number;
|
|
223
|
-
href: string;
|
|
224
|
-
label: string;
|
|
225
|
-
target: StrapiLinkTarget;
|
|
226
|
-
};
|
|
227
|
-
type ComponentSharedLink = {
|
|
228
|
-
__component: string;
|
|
229
|
-
} & SharedLink;
|
|
230
|
-
|
|
231
|
-
type SharedButton = {
|
|
232
|
-
id: number;
|
|
233
|
-
theme: StrapiThemeOptions;
|
|
234
|
-
link: SharedLink;
|
|
235
|
-
show_icon: boolean;
|
|
236
|
-
icon: StrapiIconName;
|
|
237
|
-
icon_position: StrapiIconPosition;
|
|
238
|
-
full_width: boolean;
|
|
239
|
-
};
|
|
240
|
-
type ComponentSharedButton = {
|
|
241
|
-
__component: string;
|
|
242
|
-
} & SharedButton;
|
|
243
|
-
|
|
244
|
-
type RichTextBlockChildren = {
|
|
245
|
-
type: string;
|
|
246
|
-
url?: string;
|
|
247
|
-
text?: string;
|
|
248
|
-
bold?: boolean;
|
|
249
|
-
italic?: boolean;
|
|
250
|
-
underline?: boolean;
|
|
251
|
-
};
|
|
252
|
-
type RichTextBlock = {
|
|
253
|
-
type: string;
|
|
254
|
-
children: RichTextBlockChildren[];
|
|
255
|
-
};
|
|
256
|
-
type SharedRichTextBlock = {
|
|
257
|
-
id: number;
|
|
258
|
-
content?: RichTextBlock[] | null;
|
|
259
|
-
};
|
|
260
|
-
type ComponentSharedRichTextBlock = {
|
|
261
|
-
__component: string;
|
|
262
|
-
} & SharedRichTextBlock;
|
|
263
|
-
|
|
264
|
-
type SharedQuestionAnswer = {
|
|
265
|
-
id: number;
|
|
266
|
-
question: string;
|
|
267
|
-
answer: RichTextBlock[];
|
|
268
|
-
};
|
|
269
|
-
type ComponentSharedQuestionAnswer = {
|
|
270
|
-
__component: string;
|
|
271
|
-
} & SharedQuestionAnswer;
|
|
272
|
-
|
|
273
|
-
type OpenGraph = {
|
|
274
|
-
ogTitle: string;
|
|
275
|
-
ogDescription: string;
|
|
276
|
-
ogType: string | null;
|
|
277
|
-
ogUrl: string | null;
|
|
278
|
-
ogImage?: MediaUploadDocument | null;
|
|
279
|
-
};
|
|
280
|
-
type ComponentOpenGraph = {
|
|
281
|
-
__component: string;
|
|
282
|
-
} & OpenGraph;
|
|
283
|
-
type SeoMeta = {
|
|
284
|
-
metaTitle: string;
|
|
285
|
-
metaDescription: string;
|
|
286
|
-
metaImage?: MediaUploadDocument | null;
|
|
287
|
-
openGraph?: OpenGraph | null;
|
|
288
|
-
keywords: string | null;
|
|
289
|
-
canonicalURL: string | null;
|
|
290
|
-
metaRobots: string | null;
|
|
291
|
-
metaViewport: string | null;
|
|
292
|
-
structuredData: {
|
|
293
|
-
[key: string]: string;
|
|
294
|
-
} | null;
|
|
295
|
-
};
|
|
296
|
-
type ComponentSeoMeta = {
|
|
297
|
-
__component: string;
|
|
298
|
-
} & SeoMeta;
|
|
299
|
-
|
|
300
|
-
type BlockAnnouncementBar = {
|
|
301
|
-
id: number;
|
|
302
|
-
bg_color: StrapiBgColorOptions;
|
|
303
|
-
text_color: StrapiTextColorOptions;
|
|
304
|
-
href: string | null;
|
|
305
|
-
content: RichTextBlock[];
|
|
306
|
-
};
|
|
307
|
-
type ComponentBlockAnnouncementBar = {
|
|
308
|
-
__component: string;
|
|
309
|
-
} & BlockAnnouncementBar;
|
|
310
|
-
|
|
311
|
-
type BlockBrandLogos = {
|
|
312
|
-
id: number;
|
|
313
|
-
light: MediaUploadDocument;
|
|
314
|
-
dark: MediaUploadDocument;
|
|
315
|
-
color: MediaUploadDocument;
|
|
316
|
-
};
|
|
317
|
-
type ComponentBlockBrandLogos = {
|
|
318
|
-
__component: string;
|
|
319
|
-
} & BlockBrandLogos;
|
|
320
|
-
|
|
321
|
-
type BlockButtonGroup = {
|
|
322
|
-
id: number;
|
|
323
|
-
direction: StrapiDirection;
|
|
324
|
-
gap: StrapiGapSizes;
|
|
325
|
-
buttons: SharedButton[];
|
|
326
|
-
};
|
|
327
|
-
type ComponentBlockButtonGroup = {
|
|
328
|
-
__component: string;
|
|
329
|
-
} & BlockButtonGroup;
|
|
330
|
-
|
|
331
|
-
type BlockContact = {
|
|
332
|
-
id: number;
|
|
333
|
-
link_type: StrapiLinkType;
|
|
334
|
-
label: string;
|
|
335
|
-
destination: string;
|
|
336
|
-
icon: StrapiIconName;
|
|
337
|
-
show_icon: boolean;
|
|
338
|
-
icon_position: StrapiIconPosition;
|
|
339
|
-
full_width: boolean;
|
|
340
|
-
};
|
|
341
|
-
type ComponentBlockContact = {
|
|
342
|
-
__component: string;
|
|
343
|
-
} & BlockContact;
|
|
344
|
-
|
|
345
|
-
type BlockCtaLink = {
|
|
346
|
-
id: number;
|
|
347
|
-
cta_label: string;
|
|
348
|
-
cta_href: string | null;
|
|
349
|
-
cta_download: string | null;
|
|
350
|
-
cta_title: string | null;
|
|
351
|
-
cta_referrerpolicy: StrapiLinkReferrerPolicy | null;
|
|
352
|
-
cta_rel: StrapiLinkRel | null;
|
|
353
|
-
cta_target: StrapiLinkTarget | null;
|
|
354
|
-
};
|
|
355
|
-
type ComponentBlockCtaLink = {
|
|
356
|
-
__component: string;
|
|
357
|
-
} & BlockCtaLink;
|
|
358
|
-
|
|
359
|
-
type BlockFaq = {
|
|
360
|
-
id: number;
|
|
361
|
-
title: string;
|
|
362
|
-
theme: StrapiThemeOptions;
|
|
363
|
-
faq: SharedQuestionAnswer[];
|
|
364
|
-
};
|
|
365
|
-
type ComponentBlockFaq = {
|
|
366
|
-
__component: string;
|
|
367
|
-
} & BlockFaq;
|
|
368
|
-
|
|
369
|
-
type BlockVideoEmbed = {
|
|
370
|
-
id: number;
|
|
371
|
-
video_source: "youtube" | "upload";
|
|
372
|
-
video_id: string | null;
|
|
373
|
-
video_upload?: MediaUploadDocument | null;
|
|
374
|
-
};
|
|
375
|
-
type ComponentBlockVideo = {
|
|
376
|
-
__component: string;
|
|
377
|
-
} & BlockVideoEmbed;
|
|
378
|
-
|
|
379
|
-
type BlockFullscreenContentType = "zoomable-image" | "video" | "html" | "website";
|
|
380
|
-
type BlockFullscreenContent = {
|
|
381
|
-
id: number;
|
|
382
|
-
fullscreen_type: BlockFullscreenContentType;
|
|
383
|
-
fullscreen_img?: MediaUploadDocument | null;
|
|
384
|
-
website_url: string | null;
|
|
385
|
-
html_content: string | null;
|
|
386
|
-
video?: BlockVideoEmbed | null;
|
|
387
|
-
};
|
|
388
|
-
type ComponentBlockFullscreenContent = {
|
|
389
|
-
__component: string;
|
|
390
|
-
} & BlockFullscreenContent;
|
|
391
|
-
|
|
392
|
-
type BlockTextDetails = {
|
|
393
|
-
id: number;
|
|
394
|
-
subtitle: string;
|
|
395
|
-
description: string;
|
|
396
|
-
cta_link?: BlockCtaLink | null;
|
|
397
|
-
};
|
|
398
|
-
type ComponentBlockTextDetails = {
|
|
399
|
-
__component: string;
|
|
400
|
-
} & BlockTextDetails;
|
|
401
|
-
|
|
402
|
-
type BrandStyleguideColor = {
|
|
403
|
-
id: number;
|
|
404
|
-
title: string;
|
|
405
|
-
slug: string;
|
|
406
|
-
hex: string;
|
|
407
|
-
};
|
|
408
|
-
type ComponentBrandStyleguideColor = {
|
|
409
|
-
__component: string;
|
|
410
|
-
} & BrandStyleguideColor;
|
|
411
|
-
|
|
412
|
-
type BrandStyleguideFont = {
|
|
413
|
-
id: number;
|
|
414
|
-
title: string;
|
|
415
|
-
slug: string;
|
|
416
|
-
fallbacks: Array<WebSafeFont>;
|
|
417
|
-
src: MediaUploadDocument;
|
|
418
|
-
font_files: Array<MediaUploadDocument>;
|
|
419
|
-
};
|
|
420
|
-
type ComponentBrandStyleguideFont = {
|
|
421
|
-
__component: string;
|
|
422
|
-
} & BrandStyleguideFont;
|
|
423
|
-
|
|
424
|
-
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";
|
|
425
|
-
type FormDownload = {
|
|
426
|
-
id: number;
|
|
427
|
-
download_type: "link" | "file";
|
|
428
|
-
download_key: FormDownloadKeys;
|
|
429
|
-
download_file?: MediaUploadDocument | null;
|
|
430
|
-
download_link?: string | null;
|
|
431
|
-
};
|
|
432
|
-
type ComponentFormDownload = {
|
|
433
|
-
__component: string;
|
|
434
|
-
} & FormDownload;
|
|
435
|
-
|
|
436
|
-
type FormUID = "ss-newsletter" | "ss-sign-up-to-download" | "strapi-leads" | "strapi-resumes";
|
|
437
|
-
type FormSelect = {
|
|
438
|
-
id: number;
|
|
439
|
-
form_id: FormUID;
|
|
440
|
-
form_download?: FormDownload | null;
|
|
441
|
-
};
|
|
442
|
-
type ComponentFormSelect = {
|
|
443
|
-
__component: string;
|
|
444
|
-
} & FormSelect;
|
|
445
|
-
|
|
446
|
-
type SlideType = "image-contain" | "image-cover" | "image-fill" | "image" | "video" | "html" | "website";
|
|
447
|
-
type SlideContent = {
|
|
448
|
-
id: number;
|
|
449
|
-
slide_type: SlideType;
|
|
450
|
-
slide_image: MediaUploadDocument | null;
|
|
451
|
-
website_url: string | null;
|
|
452
|
-
html_content: string | null;
|
|
453
|
-
video?: ComponentBlockVideo;
|
|
454
|
-
};
|
|
455
|
-
type ComponentSlideContent = {
|
|
456
|
-
__component: string;
|
|
457
|
-
} & SlideContent;
|
|
458
|
-
|
|
459
|
-
type KeenSliderOrigin = number | "center" | "auto" | undefined;
|
|
460
|
-
type KeenSliderSliderSlides = {
|
|
461
|
-
slides: {
|
|
462
|
-
origin: KeenSliderOrigin;
|
|
463
|
-
perView: number;
|
|
464
|
-
spacing: number | undefined;
|
|
465
|
-
};
|
|
466
|
-
};
|
|
467
|
-
|
|
468
|
-
type SliderSpacing = "none" | "small" | "medium" | "large";
|
|
469
|
-
type SliderSettings = {
|
|
470
|
-
id: number;
|
|
471
|
-
breakpoint: number;
|
|
472
|
-
slides_per_view: number;
|
|
473
|
-
slides_spacing: SliderSpacing;
|
|
474
|
-
slides_origin: string | null;
|
|
475
|
-
};
|
|
476
|
-
type ComponentSliderSettings = {
|
|
477
|
-
__component: string;
|
|
478
|
-
} & SliderSettings;
|
|
479
|
-
|
|
480
|
-
type SlideshowMode = "snap" | "free" | "free-snap";
|
|
481
|
-
type SlideshowSettings = {
|
|
482
|
-
id: number;
|
|
483
|
-
loop: boolean;
|
|
484
|
-
mode: SlideshowMode;
|
|
485
|
-
initial: number;
|
|
486
|
-
};
|
|
487
|
-
type ComponentSlideshowSettings = {
|
|
488
|
-
__component: string;
|
|
489
|
-
} & SlideshowSettings;
|
|
490
|
-
|
|
491
|
-
type Slideshow = {
|
|
492
|
-
id: number;
|
|
493
|
-
settings?: SlideshowSettings;
|
|
494
|
-
slider_settings?: SliderSettings[];
|
|
495
|
-
slides?: SlideContent[];
|
|
496
|
-
};
|
|
497
|
-
type ComponentSlideshow = {
|
|
498
|
-
__component: string;
|
|
499
|
-
} & Slideshow;
|
|
500
|
-
|
|
501
|
-
type UtmClassificationKey = "organic" | "paid";
|
|
502
|
-
type UtmSourceKey = "all" | "meta" | "meta_facebook" | "meta_instagram" | "tiktok" | "twitter" | "linkedin" | "pinterest" | "google" | "youtube" | "bing" | "sms" | "email" | "realtor" | "zillow" | "bdx_nhs" | "yelp" | "qr_code" | "stackadapt" | "newswire" | "propellant" | "mobile_app" | "gcflytour" | "referral";
|
|
503
|
-
type UtmOption = {
|
|
504
|
-
id: number;
|
|
505
|
-
label: string;
|
|
506
|
-
value: string;
|
|
507
|
-
description: string | null;
|
|
508
|
-
is_active: boolean;
|
|
509
|
-
active_by_classification: Array<UtmClassificationKey>;
|
|
510
|
-
active_by_source: Array<UtmSourceKey>;
|
|
511
|
-
};
|
|
512
|
-
type ComponentUtmOption = {
|
|
513
|
-
__component: string;
|
|
514
|
-
} & UtmOption;
|
|
515
|
-
|
|
516
|
-
type ContentPillarDocument = {
|
|
517
|
-
title: string;
|
|
518
|
-
slug: string;
|
|
519
|
-
description: string;
|
|
520
|
-
information: RichTextBlock[] | null;
|
|
521
|
-
clients?: ClientContentPillarDocument[] | null;
|
|
522
|
-
} & BaseDocument;
|
|
523
|
-
|
|
524
|
-
type ClientContentPillarDocument = {
|
|
525
|
-
client?: ClientDocument;
|
|
526
|
-
content_pillar?: ContentPillarDocument;
|
|
527
|
-
is_active: boolean;
|
|
528
|
-
} & BaseDocument;
|
|
529
|
-
|
|
530
|
-
declare const ClientProjectStatusOptions: readonly ["coming-soon", "now-open", "for-sale", "sold-out", "available"];
|
|
531
|
-
type ClientProjectStatus = (typeof ClientProjectStatusOptions)[number];
|
|
532
|
-
declare const ClientProjectPhaseSelectOptions: FormSelectInputOption[];
|
|
533
|
-
declare const ClientProjectPhaseOptions: readonly ["brand", "p1", "p2", "p3", "p4", "p5", "closed"];
|
|
534
|
-
type ClientProjectPhase = (typeof ClientProjectPhaseOptions)[number];
|
|
535
|
-
type ClientProjectDocument = {
|
|
536
|
-
title: string;
|
|
537
|
-
slug: string;
|
|
538
|
-
project_status: ClientProjectStatus[];
|
|
539
|
-
project_phase: ClientProjectPhase;
|
|
540
|
-
featured_image?: MediaUploadDocument | null;
|
|
541
|
-
clients?: ClientDocument[];
|
|
542
|
-
} & BaseDocument;
|
|
543
|
-
|
|
544
|
-
type ClientReportDocument = {
|
|
545
|
-
title: string;
|
|
546
|
-
report_id: string;
|
|
547
|
-
is_active: boolean;
|
|
548
|
-
clients?: ClientDocument[];
|
|
549
|
-
} & BaseDocument;
|
|
550
|
-
|
|
551
|
-
type ClientStyleguideDocument = {
|
|
552
|
-
client?: ClientDocument;
|
|
553
|
-
title: string;
|
|
554
|
-
is_active: boolean;
|
|
555
|
-
introduction: RichTextBlock[];
|
|
556
|
-
voice: RichTextBlock[];
|
|
557
|
-
communication: RichTextBlock[];
|
|
558
|
-
brand_elements: RichTextBlock[];
|
|
559
|
-
brand_intention: RichTextBlock[];
|
|
560
|
-
mood?: MediaUploadDocument[];
|
|
561
|
-
logos?: MediaUploadDocument[];
|
|
562
|
-
brand_colors?: ComponentBrandStyleguideColor[];
|
|
563
|
-
brand_fonts?: ComponentBrandStyleguideFont[];
|
|
564
|
-
brand_application?: MediaUploadDocument[];
|
|
565
|
-
} & BaseDocument;
|
|
566
|
-
|
|
567
|
-
type PermissionDocument = {
|
|
568
|
-
action: string;
|
|
569
|
-
role?: RoleDocument;
|
|
570
|
-
} & BaseDocument;
|
|
571
|
-
|
|
572
|
-
type RoleType = "authenticated" | "public" | "employee" | "manager" | "client";
|
|
573
|
-
type RoleDocument = {
|
|
574
|
-
type: RoleType;
|
|
575
|
-
name: string;
|
|
576
|
-
description: string | null;
|
|
577
|
-
permissions?: PermissionDocument[];
|
|
578
|
-
users?: UserDocument[];
|
|
579
|
-
} & BaseDocument;
|
|
580
|
-
|
|
581
|
-
type UserAccountDocument = {
|
|
582
|
-
user?: UserDocument;
|
|
583
|
-
preferred_name: string;
|
|
584
|
-
first_name: string;
|
|
585
|
-
last_name: string;
|
|
586
|
-
} & BaseDocument;
|
|
587
|
-
|
|
588
|
-
type UtmTrackingLinkDocument = {
|
|
589
|
-
creator?: UserDocument;
|
|
590
|
-
client?: ClientDocument;
|
|
591
|
-
url_destination: string;
|
|
592
|
-
utm_medium: string;
|
|
593
|
-
utm_source: string;
|
|
594
|
-
utm_campaign: string;
|
|
595
|
-
utm_content: string | null;
|
|
596
|
-
utm_creative_format: string | null;
|
|
597
|
-
utm_id: string | null;
|
|
598
|
-
campaign_phase: string;
|
|
599
|
-
campaign_product: string | null;
|
|
600
|
-
campaign_targeting: string | null;
|
|
601
|
-
campaign_key: string | null;
|
|
602
|
-
creative_format: string | null;
|
|
603
|
-
creative_format_variants: string | null;
|
|
604
|
-
url: string;
|
|
605
|
-
is_active: boolean;
|
|
606
|
-
notes: string | null;
|
|
607
|
-
} & BaseDocument;
|
|
608
|
-
|
|
609
|
-
type UserDocument = {
|
|
610
|
-
username: string;
|
|
611
|
-
email: string;
|
|
612
|
-
provider: string;
|
|
613
|
-
confirmed: boolean;
|
|
614
|
-
blocked: boolean;
|
|
615
|
-
clerk_user_id: string | null;
|
|
616
|
-
role?: RoleDocument;
|
|
617
|
-
account?: UserAccountDocument;
|
|
618
|
-
clients?: ClientUserDocument[];
|
|
619
|
-
utm_tracking_links?: UtmTrackingLinkDocument[];
|
|
620
|
-
} & BaseDocument;
|
|
621
|
-
type AuthorizedUserDocument = Pick<UserDocument, "id" | "documentId" | "createdAt" | "updatedAt" | "publishedAt" | "username" | "email" | "provider" | "confirmed" | "blocked" | "clerk_user_id"> & {
|
|
622
|
-
account: UserAccountDocument;
|
|
623
|
-
role: RoleDocument;
|
|
624
|
-
};
|
|
625
|
-
type UserAuthorizationLoginResponse = {
|
|
626
|
-
jwt: string;
|
|
627
|
-
user: AuthorizedUserDocument;
|
|
628
|
-
};
|
|
629
|
-
type UserAuthorizationSuccessResponse = {
|
|
630
|
-
jwt: string;
|
|
631
|
-
user: Pick<UserDocument, "id" | "documentId" | "createdAt" | "updatedAt" | "publishedAt" | "username" | "email" | "provider" | "confirmed" | "blocked" | "clerk_user_id">;
|
|
632
|
-
};
|
|
633
|
-
|
|
634
|
-
type ClientUserDocument = {
|
|
635
|
-
client: Partial<ClientDocument>;
|
|
636
|
-
user: Partial<UserDocument>;
|
|
637
|
-
scopes: ClientEntityScope[];
|
|
638
|
-
} & BaseDocument;
|
|
639
|
-
type ClientUserDocumentStatus = {
|
|
640
|
-
verified: boolean;
|
|
641
|
-
clientUser: ClientUserDocument | null;
|
|
642
|
-
scopes: ClientEntityScope[];
|
|
643
|
-
};
|
|
644
|
-
|
|
645
|
-
type ProductDocument = {
|
|
646
|
-
title: string;
|
|
647
|
-
slug: string;
|
|
648
|
-
introduction: string;
|
|
649
|
-
flyer_link: string | null;
|
|
650
|
-
featured_image: MediaUploadDocument;
|
|
651
|
-
cta_text: string;
|
|
652
|
-
cta_form_caption: string;
|
|
653
|
-
order: number;
|
|
654
|
-
} & BaseDocument;
|
|
655
|
-
|
|
656
|
-
type TagDocument = {
|
|
657
|
-
label: string;
|
|
658
|
-
slug: string;
|
|
659
|
-
} & BaseDocument;
|
|
660
|
-
|
|
661
|
-
type ProductHighlightDocument = {
|
|
662
|
-
title: string;
|
|
663
|
-
title_line_1: string;
|
|
664
|
-
title_line_2: string;
|
|
665
|
-
introduction: string;
|
|
666
|
-
highlight?: BlockFullscreenContent;
|
|
667
|
-
products: ProductDocument[] | null;
|
|
668
|
-
clients: ClientDocument[] | null;
|
|
669
|
-
tags: TagDocument[] | null;
|
|
670
|
-
featured_image: MediaUploadDocument;
|
|
671
|
-
background_color: string;
|
|
672
|
-
order: number;
|
|
673
|
-
text_invert: boolean;
|
|
674
|
-
} & BaseDocument;
|
|
675
|
-
|
|
676
|
-
type ClientDocument = {
|
|
677
|
-
title: string;
|
|
678
|
-
is_featured: boolean;
|
|
679
|
-
logos?: BlockBrandLogos | null;
|
|
680
|
-
teamwork_id: string;
|
|
681
|
-
teamwork_name: string;
|
|
682
|
-
gainapp_id: string | null;
|
|
683
|
-
utm_sheet_id: string;
|
|
684
|
-
allow_create_utm_link: boolean;
|
|
685
|
-
is_organic_social: boolean;
|
|
686
|
-
is_paid_media: boolean;
|
|
687
|
-
is_active: boolean;
|
|
688
|
-
classification: UtmClassificationKey[];
|
|
689
|
-
product_highlights?: ProductHighlightDocument[];
|
|
690
|
-
client_projects?: ClientProjectDocument[];
|
|
691
|
-
client_reports?: ClientReportDocument[];
|
|
692
|
-
users?: ClientUserDocument[];
|
|
693
|
-
utm_tracking_links?: UtmTrackingLinkDocument[];
|
|
694
|
-
styleguides?: ClientStyleguideDocument[];
|
|
695
|
-
media_platforms?: ClientMediaPlatformDocument[];
|
|
696
|
-
content_pillars?: ClientContentPillarDocument[];
|
|
697
|
-
} & BaseDocument;
|
|
698
|
-
|
|
699
|
-
type MediaPlatformDocument = {
|
|
700
|
-
title: string;
|
|
701
|
-
slug: string;
|
|
702
|
-
utm_key: string | null;
|
|
703
|
-
is_active: boolean;
|
|
704
|
-
is_organic_social: boolean;
|
|
705
|
-
is_paid_media: boolean;
|
|
706
|
-
logos: BlockBrandLogos | null;
|
|
707
|
-
description: string;
|
|
708
|
-
information: RichTextBlock[] | null;
|
|
709
|
-
clients?: ClientMediaPlatformDocument[];
|
|
710
|
-
media_content_types?: MediaContentTypeDocument[];
|
|
711
|
-
} & BaseDocument;
|
|
712
|
-
|
|
713
|
-
type MediaContentTypeDocument = {
|
|
714
|
-
title: string;
|
|
715
|
-
slug: string;
|
|
716
|
-
utm_key: string | null;
|
|
717
|
-
is_active: boolean;
|
|
718
|
-
is_organic_social: boolean;
|
|
719
|
-
is_paid_media: boolean;
|
|
720
|
-
description: string;
|
|
721
|
-
information: RichTextBlock[] | null;
|
|
722
|
-
media_platforms?: MediaPlatformDocument[];
|
|
723
|
-
client_media_platform_content_types?: ClientMediaPlatformContentTypeDocument[];
|
|
724
|
-
} & BaseDocument;
|
|
725
|
-
|
|
726
|
-
type ClientMediaPlatformDocument = {
|
|
727
|
-
is_active: boolean;
|
|
728
|
-
client?: ClientDocument;
|
|
729
|
-
media_platform?: MediaPlatformDocument;
|
|
730
|
-
media_content_types?: MediaContentTypeDocument[];
|
|
731
|
-
} & BaseDocument;
|
|
732
|
-
|
|
733
|
-
type ClientMediaPlatformContentTypeDocument = {
|
|
734
|
-
is_active: boolean;
|
|
735
|
-
is_organic_social: boolean;
|
|
736
|
-
is_paid_media: boolean;
|
|
737
|
-
client_media_platform?: ClientMediaPlatformDocument;
|
|
738
|
-
media_content_type?: MediaContentTypeDocument;
|
|
739
|
-
} & BaseDocument;
|
|
740
|
-
|
|
741
97
|
/**
|
|
742
98
|
* Attribute-based access control (ABAC) permissions
|
|
743
99
|
*
|
|
@@ -1244,31 +600,450 @@ declare const ROLE_PERMISSIONS: {
|
|
|
1244
600
|
};
|
|
1245
601
|
};
|
|
1246
602
|
|
|
1247
|
-
/**
|
|
1248
|
-
* Example usage of ClientEntityScope type
|
|
1249
|
-
* @reference https://youtube.com/shorts/zOseJFD447U?si=xX8DYEHdl9YtN7S4
|
|
1250
|
-
*
|
|
1251
|
-
* > const validScope: ClientEntityScope = "utm-tracking-link:list"; // ✅
|
|
1252
|
-
* > const invalidScope: ClientEntityScope = "blog-post:import"; // ❌ Type error!
|
|
1253
|
-
*/
|
|
1254
|
-
declare const CLIENT_ENTITY_PERMISSIONS: {
|
|
1255
|
-
readonly client: readonly ["admin", "owner", "manager", "billing", "access"];
|
|
1256
|
-
readonly "client-project": readonly ["list", "create", "read", "update", "delete", "assign"];
|
|
1257
|
-
readonly "client-media-platform": readonly ["list", "create", "read", "update", "delete"];
|
|
1258
|
-
readonly "client-media-platform-content-type": readonly ["list", "create", "read", "update", "delete"];
|
|
1259
|
-
readonly "client-content-pillar": readonly ["list", "create", "read", "update", "delete"];
|
|
1260
|
-
readonly "client-report": readonly ["list", "create", "read", "update", "delete"];
|
|
1261
|
-
readonly "client-styleguide": readonly ["list", "create", "read", "update", "delete"];
|
|
1262
|
-
readonly "utm-tracking-link": readonly ["list", "create", "read", "update", "delete"];
|
|
603
|
+
/**
|
|
604
|
+
* Example usage of ClientEntityScope type
|
|
605
|
+
* @reference https://youtube.com/shorts/zOseJFD447U?si=xX8DYEHdl9YtN7S4
|
|
606
|
+
*
|
|
607
|
+
* > const validScope: ClientEntityScope = "utm-tracking-link:list"; // ✅
|
|
608
|
+
* > const invalidScope: ClientEntityScope = "blog-post:import"; // ❌ Type error!
|
|
609
|
+
*/
|
|
610
|
+
declare const CLIENT_ENTITY_PERMISSIONS: {
|
|
611
|
+
readonly client: readonly ["admin", "owner", "manager", "billing", "access"];
|
|
612
|
+
readonly "client-project": readonly ["list", "create", "read", "update", "delete", "assign"];
|
|
613
|
+
readonly "client-media-platform": readonly ["list", "create", "read", "update", "delete"];
|
|
614
|
+
readonly "client-media-platform-content-type": readonly ["list", "create", "read", "update", "delete"];
|
|
615
|
+
readonly "client-content-pillar": readonly ["list", "create", "read", "update", "delete"];
|
|
616
|
+
readonly "client-report": readonly ["list", "create", "read", "update", "delete"];
|
|
617
|
+
readonly "client-styleguide": readonly ["list", "create", "read", "update", "delete"];
|
|
618
|
+
readonly "utm-tracking-link": readonly ["list", "create", "read", "update", "delete"];
|
|
619
|
+
};
|
|
620
|
+
type ClientEntityKey = keyof typeof CLIENT_ENTITY_PERMISSIONS;
|
|
621
|
+
type ClientEntityActions<K extends ClientEntityKey = ClientEntityKey> = (typeof CLIENT_ENTITY_PERMISSIONS)[K][number];
|
|
622
|
+
type EntityActionJoin<K extends string, V extends string> = `${K}:${V}`;
|
|
623
|
+
type ClientEntityScope = {
|
|
624
|
+
[K in ClientEntityKey]: EntityActionJoin<K, (typeof CLIENT_ENTITY_PERMISSIONS)[K][number]>;
|
|
625
|
+
}[ClientEntityKey];
|
|
626
|
+
declare const CLIENT_ENTITY_KEYS: ClientEntityKey[];
|
|
627
|
+
declare const CLIENT_ENTITY_SCOPES: ClientEntityScope[];
|
|
628
|
+
|
|
629
|
+
type BaseDocument = {
|
|
630
|
+
id: number;
|
|
631
|
+
documentId: string;
|
|
632
|
+
publishedAt: string;
|
|
633
|
+
createdAt: string;
|
|
634
|
+
updatedAt: string;
|
|
635
|
+
};
|
|
636
|
+
|
|
637
|
+
/**
|
|
638
|
+
* @description Strapi Theme Options
|
|
639
|
+
*/
|
|
640
|
+
type StrapiThemeOptions = "default" | "secondary" | "destructive" | "outline" | "ghost" | "link";
|
|
641
|
+
type StrapiBgColorOptions = "red" | "pink" | "orange" | "yellow" | "green" | "blue-light" | "blue-dark" | "brown-light" | "brown-dark";
|
|
642
|
+
type StrapiTextColorOptions = "light" | "dark";
|
|
643
|
+
type StrapiDirection = "horizontal" | "vertical";
|
|
644
|
+
type StrapiGapSizes = "none" | "small" | "medium" | "large";
|
|
645
|
+
type StrapiLinkType = "email" | "phone" | "social" | "link" | null;
|
|
646
|
+
type StrapiIconPosition = "before" | "after" | "above" | "below";
|
|
647
|
+
type StrapiIconName = "link" | "email" | "phone" | "facebook" | "instagram" | "linkedin" | "tiktok" | "pinterest" | "twitter" | null;
|
|
648
|
+
/**
|
|
649
|
+
* @description Strapi Link Options
|
|
650
|
+
*/
|
|
651
|
+
type StrapiLinkTarget = "_blank" | "_self" | "_parent" | "_top" | null;
|
|
652
|
+
type StrapiLinkReferrerPolicy = "no-referrer" | "no-referrer-when-downgrade" | "origin" | "origin-when-cross-origin" | "same-origin" | "strict-origin-when-cross-origin" | "unsafe-url";
|
|
653
|
+
type StrapiLinkRel = "alternate" | "author" | "bookmark" | "external" | "help" | "license" | "next" | "nofollow" | "noreferrer" | "noopener" | "prev" | "search" | "tag";
|
|
654
|
+
|
|
655
|
+
type FormSelectInputOption = {
|
|
656
|
+
label: string;
|
|
657
|
+
value: string;
|
|
658
|
+
description?: string | null;
|
|
659
|
+
disabled?: boolean;
|
|
660
|
+
meta?: Record<string, any>;
|
|
661
|
+
};
|
|
662
|
+
|
|
663
|
+
type MediaFormat = {
|
|
664
|
+
ext: string;
|
|
665
|
+
url: string;
|
|
666
|
+
hash: string;
|
|
667
|
+
mime: string;
|
|
668
|
+
name: string;
|
|
669
|
+
path: string | null;
|
|
670
|
+
size: number;
|
|
671
|
+
width: number;
|
|
672
|
+
height: number;
|
|
673
|
+
sizeInBytes: number;
|
|
674
|
+
};
|
|
675
|
+
type MediaFormats = {
|
|
676
|
+
large?: MediaFormat;
|
|
677
|
+
small?: MediaFormat;
|
|
678
|
+
medium?: MediaFormat;
|
|
679
|
+
thumbnail?: MediaFormat;
|
|
680
|
+
};
|
|
681
|
+
type MediaUploadDocument = {
|
|
682
|
+
name: string;
|
|
683
|
+
alternativeText: string | null;
|
|
684
|
+
caption: string | null;
|
|
685
|
+
width: number;
|
|
686
|
+
height: number;
|
|
687
|
+
formats?: MediaFormats | null;
|
|
688
|
+
hash: string;
|
|
689
|
+
ext: string;
|
|
690
|
+
mime: string;
|
|
691
|
+
size: number;
|
|
692
|
+
url: string;
|
|
693
|
+
previewUrl: string | null;
|
|
694
|
+
provider: string;
|
|
695
|
+
provider_metadata: null;
|
|
696
|
+
} & BaseDocument;
|
|
697
|
+
|
|
698
|
+
type StrapiPagination = {
|
|
699
|
+
page: number;
|
|
700
|
+
pageSize: number;
|
|
701
|
+
pageCount: number;
|
|
702
|
+
total: number;
|
|
703
|
+
};
|
|
704
|
+
type StrapiResponseMeta = {
|
|
705
|
+
pagination?: StrapiPagination;
|
|
706
|
+
token?: string;
|
|
707
|
+
};
|
|
708
|
+
type StrapiResponseMetaWithPagination = StrapiResponseMeta & {
|
|
709
|
+
pagination: StrapiPagination;
|
|
710
|
+
};
|
|
711
|
+
type StrapiAttributeErrorKey<T> = {
|
|
712
|
+
message: string;
|
|
713
|
+
name: string;
|
|
714
|
+
path: string[];
|
|
715
|
+
value: T[keyof T];
|
|
716
|
+
};
|
|
717
|
+
type StrapiErrorDetail<T> = {
|
|
718
|
+
status: string | number;
|
|
719
|
+
name: string;
|
|
720
|
+
message: string;
|
|
721
|
+
details: Record<keyof T, string>;
|
|
722
|
+
};
|
|
723
|
+
type StrapiAttributeErrorDetail<T> = {
|
|
724
|
+
status: string | number;
|
|
725
|
+
name: string;
|
|
726
|
+
message: string;
|
|
727
|
+
details: {
|
|
728
|
+
errors: StrapiAttributeErrorKey<T>[];
|
|
729
|
+
};
|
|
730
|
+
};
|
|
731
|
+
type StrapiSingleResponse<T> = {
|
|
732
|
+
data: T;
|
|
733
|
+
error?: undefined;
|
|
734
|
+
meta?: StrapiResponseMeta;
|
|
735
|
+
};
|
|
736
|
+
type StrapiListResponse<T> = {
|
|
737
|
+
data: T[];
|
|
738
|
+
error?: undefined;
|
|
739
|
+
meta?: StrapiResponseMetaWithPagination;
|
|
740
|
+
};
|
|
741
|
+
type StrapiErrorResponse<T> = {
|
|
742
|
+
data: null;
|
|
743
|
+
error: StrapiErrorDetail<T>;
|
|
744
|
+
meta?: undefined;
|
|
745
|
+
};
|
|
746
|
+
type StrapiAttributeErrorResponse<T> = {
|
|
747
|
+
data: null;
|
|
748
|
+
error: StrapiAttributeErrorDetail<T>;
|
|
749
|
+
meta?: undefined;
|
|
750
|
+
};
|
|
751
|
+
type StrapiErrorResult<T> = StrapiErrorResponse<T> | StrapiAttributeErrorResponse<T>;
|
|
752
|
+
|
|
753
|
+
type SharedLink = {
|
|
754
|
+
id: number;
|
|
755
|
+
href: string;
|
|
756
|
+
label: string;
|
|
757
|
+
target: StrapiLinkTarget;
|
|
758
|
+
};
|
|
759
|
+
type ComponentSharedLink = {
|
|
760
|
+
__component: string;
|
|
761
|
+
} & SharedLink;
|
|
762
|
+
|
|
763
|
+
type SharedButton = {
|
|
764
|
+
id: number;
|
|
765
|
+
theme: StrapiThemeOptions;
|
|
766
|
+
link: SharedLink;
|
|
767
|
+
show_icon: boolean;
|
|
768
|
+
icon: StrapiIconName;
|
|
769
|
+
icon_position: StrapiIconPosition;
|
|
770
|
+
full_width: boolean;
|
|
771
|
+
};
|
|
772
|
+
type ComponentSharedButton = {
|
|
773
|
+
__component: string;
|
|
774
|
+
} & SharedButton;
|
|
775
|
+
|
|
776
|
+
type RichTextBlockChildren = {
|
|
777
|
+
type: string;
|
|
778
|
+
url?: string;
|
|
779
|
+
text?: string;
|
|
780
|
+
bold?: boolean;
|
|
781
|
+
italic?: boolean;
|
|
782
|
+
underline?: boolean;
|
|
783
|
+
};
|
|
784
|
+
type RichTextBlock = {
|
|
785
|
+
type: string;
|
|
786
|
+
children: RichTextBlockChildren[];
|
|
787
|
+
};
|
|
788
|
+
type SharedRichTextBlock = {
|
|
789
|
+
id: number;
|
|
790
|
+
content?: RichTextBlock[] | null;
|
|
791
|
+
};
|
|
792
|
+
type ComponentSharedRichTextBlock = {
|
|
793
|
+
__component: string;
|
|
794
|
+
} & SharedRichTextBlock;
|
|
795
|
+
|
|
796
|
+
type SharedQuestionAnswer = {
|
|
797
|
+
id: number;
|
|
798
|
+
question: string;
|
|
799
|
+
answer: RichTextBlock[];
|
|
800
|
+
};
|
|
801
|
+
type ComponentSharedQuestionAnswer = {
|
|
802
|
+
__component: string;
|
|
803
|
+
} & SharedQuestionAnswer;
|
|
804
|
+
|
|
805
|
+
type OpenGraph = {
|
|
806
|
+
ogTitle: string;
|
|
807
|
+
ogDescription: string;
|
|
808
|
+
ogType: string | null;
|
|
809
|
+
ogUrl: string | null;
|
|
810
|
+
ogImage?: MediaUploadDocument | null;
|
|
811
|
+
};
|
|
812
|
+
type ComponentOpenGraph = {
|
|
813
|
+
__component: string;
|
|
814
|
+
} & OpenGraph;
|
|
815
|
+
type SeoMeta = {
|
|
816
|
+
metaTitle: string;
|
|
817
|
+
metaDescription: string;
|
|
818
|
+
metaImage?: MediaUploadDocument | null;
|
|
819
|
+
openGraph?: OpenGraph | null;
|
|
820
|
+
keywords: string | null;
|
|
821
|
+
canonicalURL: string | null;
|
|
822
|
+
metaRobots: string | null;
|
|
823
|
+
metaViewport: string | null;
|
|
824
|
+
structuredData: {
|
|
825
|
+
[key: string]: string;
|
|
826
|
+
} | null;
|
|
827
|
+
};
|
|
828
|
+
type ComponentSeoMeta = {
|
|
829
|
+
__component: string;
|
|
830
|
+
} & SeoMeta;
|
|
831
|
+
|
|
832
|
+
type BlockAnnouncementBar = {
|
|
833
|
+
id: number;
|
|
834
|
+
bg_color: StrapiBgColorOptions;
|
|
835
|
+
text_color: StrapiTextColorOptions;
|
|
836
|
+
href: string | null;
|
|
837
|
+
content: RichTextBlock[];
|
|
838
|
+
};
|
|
839
|
+
type ComponentBlockAnnouncementBar = {
|
|
840
|
+
__component: string;
|
|
841
|
+
} & BlockAnnouncementBar;
|
|
842
|
+
|
|
843
|
+
type BlockBrandLogos = {
|
|
844
|
+
id: number;
|
|
845
|
+
light: MediaUploadDocument;
|
|
846
|
+
dark: MediaUploadDocument;
|
|
847
|
+
color: MediaUploadDocument;
|
|
848
|
+
};
|
|
849
|
+
type ComponentBlockBrandLogos = {
|
|
850
|
+
__component: string;
|
|
851
|
+
} & BlockBrandLogos;
|
|
852
|
+
|
|
853
|
+
type BlockButtonGroup = {
|
|
854
|
+
id: number;
|
|
855
|
+
direction: StrapiDirection;
|
|
856
|
+
gap: StrapiGapSizes;
|
|
857
|
+
buttons: SharedButton[];
|
|
858
|
+
};
|
|
859
|
+
type ComponentBlockButtonGroup = {
|
|
860
|
+
__component: string;
|
|
861
|
+
} & BlockButtonGroup;
|
|
862
|
+
|
|
863
|
+
type BlockContact = {
|
|
864
|
+
id: number;
|
|
865
|
+
link_type: StrapiLinkType;
|
|
866
|
+
label: string;
|
|
867
|
+
destination: string;
|
|
868
|
+
icon: StrapiIconName;
|
|
869
|
+
show_icon: boolean;
|
|
870
|
+
icon_position: StrapiIconPosition;
|
|
871
|
+
full_width: boolean;
|
|
872
|
+
};
|
|
873
|
+
type ComponentBlockContact = {
|
|
874
|
+
__component: string;
|
|
875
|
+
} & BlockContact;
|
|
876
|
+
|
|
877
|
+
type BlockCtaLink = {
|
|
878
|
+
id: number;
|
|
879
|
+
cta_label: string;
|
|
880
|
+
cta_href: string | null;
|
|
881
|
+
cta_download: string | null;
|
|
882
|
+
cta_title: string | null;
|
|
883
|
+
cta_referrerpolicy: StrapiLinkReferrerPolicy | null;
|
|
884
|
+
cta_rel: StrapiLinkRel | null;
|
|
885
|
+
cta_target: StrapiLinkTarget | null;
|
|
886
|
+
};
|
|
887
|
+
type ComponentBlockCtaLink = {
|
|
888
|
+
__component: string;
|
|
889
|
+
} & BlockCtaLink;
|
|
890
|
+
|
|
891
|
+
type BlockFaq = {
|
|
892
|
+
id: number;
|
|
893
|
+
title: string;
|
|
894
|
+
theme: StrapiThemeOptions;
|
|
895
|
+
faq: SharedQuestionAnswer[];
|
|
896
|
+
};
|
|
897
|
+
type ComponentBlockFaq = {
|
|
898
|
+
__component: string;
|
|
899
|
+
} & BlockFaq;
|
|
900
|
+
|
|
901
|
+
type BlockVideoEmbed = {
|
|
902
|
+
id: number;
|
|
903
|
+
video_source: "youtube" | "upload";
|
|
904
|
+
video_id: string | null;
|
|
905
|
+
video_upload?: MediaUploadDocument | null;
|
|
906
|
+
};
|
|
907
|
+
type ComponentBlockVideo = {
|
|
908
|
+
__component: string;
|
|
909
|
+
} & BlockVideoEmbed;
|
|
910
|
+
|
|
911
|
+
type BlockFullscreenContentType = "zoomable-image" | "video" | "html" | "website";
|
|
912
|
+
type BlockFullscreenContent = {
|
|
913
|
+
id: number;
|
|
914
|
+
fullscreen_type: BlockFullscreenContentType;
|
|
915
|
+
fullscreen_img?: MediaUploadDocument | null;
|
|
916
|
+
website_url: string | null;
|
|
917
|
+
html_content: string | null;
|
|
918
|
+
video?: BlockVideoEmbed | null;
|
|
919
|
+
};
|
|
920
|
+
type ComponentBlockFullscreenContent = {
|
|
921
|
+
__component: string;
|
|
922
|
+
} & BlockFullscreenContent;
|
|
923
|
+
|
|
924
|
+
type BlockTextDetails = {
|
|
925
|
+
id: number;
|
|
926
|
+
subtitle: string;
|
|
927
|
+
description: string;
|
|
928
|
+
cta_link?: BlockCtaLink | null;
|
|
929
|
+
};
|
|
930
|
+
type ComponentBlockTextDetails = {
|
|
931
|
+
__component: string;
|
|
932
|
+
} & BlockTextDetails;
|
|
933
|
+
|
|
934
|
+
type BrandStyleguideColor = {
|
|
935
|
+
id: number;
|
|
936
|
+
title: string;
|
|
937
|
+
slug: string;
|
|
938
|
+
hex: string;
|
|
939
|
+
};
|
|
940
|
+
type ComponentBrandStyleguideColor = {
|
|
941
|
+
__component: string;
|
|
942
|
+
} & BrandStyleguideColor;
|
|
943
|
+
|
|
944
|
+
type BrandStyleguideFont = {
|
|
945
|
+
id: number;
|
|
946
|
+
title: string;
|
|
947
|
+
slug: string;
|
|
948
|
+
fallbacks: Array<WebSafeFont>;
|
|
949
|
+
src: MediaUploadDocument;
|
|
950
|
+
font_files: Array<MediaUploadDocument>;
|
|
951
|
+
};
|
|
952
|
+
type ComponentBrandStyleguideFont = {
|
|
953
|
+
__component: string;
|
|
954
|
+
} & BrandStyleguideFont;
|
|
955
|
+
|
|
956
|
+
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";
|
|
957
|
+
type FormDownload = {
|
|
958
|
+
id: number;
|
|
959
|
+
download_type: "link" | "file";
|
|
960
|
+
download_key: FormDownloadKeys;
|
|
961
|
+
download_file?: MediaUploadDocument | null;
|
|
962
|
+
download_link?: string | null;
|
|
963
|
+
};
|
|
964
|
+
type ComponentFormDownload = {
|
|
965
|
+
__component: string;
|
|
966
|
+
} & FormDownload;
|
|
967
|
+
|
|
968
|
+
type FormUID = "ss-newsletter" | "ss-sign-up-to-download" | "strapi-leads" | "strapi-resumes";
|
|
969
|
+
type FormSelect = {
|
|
970
|
+
id: number;
|
|
971
|
+
form_id: FormUID;
|
|
972
|
+
form_download?: FormDownload | null;
|
|
973
|
+
};
|
|
974
|
+
type ComponentFormSelect = {
|
|
975
|
+
__component: string;
|
|
976
|
+
} & FormSelect;
|
|
977
|
+
|
|
978
|
+
type SlideType = "image-contain" | "image-cover" | "image-fill" | "image" | "video" | "html" | "website";
|
|
979
|
+
type SlideContent = {
|
|
980
|
+
id: number;
|
|
981
|
+
slide_type: SlideType;
|
|
982
|
+
slide_image: MediaUploadDocument | null;
|
|
983
|
+
website_url: string | null;
|
|
984
|
+
html_content: string | null;
|
|
985
|
+
video?: ComponentBlockVideo;
|
|
986
|
+
};
|
|
987
|
+
type ComponentSlideContent = {
|
|
988
|
+
__component: string;
|
|
989
|
+
} & SlideContent;
|
|
990
|
+
|
|
991
|
+
type KeenSliderOrigin = number | "center" | "auto" | undefined;
|
|
992
|
+
type KeenSliderSliderSlides = {
|
|
993
|
+
slides: {
|
|
994
|
+
origin: KeenSliderOrigin;
|
|
995
|
+
perView: number;
|
|
996
|
+
spacing: number | undefined;
|
|
997
|
+
};
|
|
998
|
+
};
|
|
999
|
+
|
|
1000
|
+
type SliderSpacing = "none" | "small" | "medium" | "large";
|
|
1001
|
+
type SliderSettings = {
|
|
1002
|
+
id: number;
|
|
1003
|
+
breakpoint: number;
|
|
1004
|
+
slides_per_view: number;
|
|
1005
|
+
slides_spacing: SliderSpacing;
|
|
1006
|
+
slides_origin: string | null;
|
|
1263
1007
|
};
|
|
1264
|
-
type
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1008
|
+
type ComponentSliderSettings = {
|
|
1009
|
+
__component: string;
|
|
1010
|
+
} & SliderSettings;
|
|
1011
|
+
|
|
1012
|
+
type SlideshowMode = "snap" | "free" | "free-snap";
|
|
1013
|
+
type SlideshowSettings = {
|
|
1014
|
+
id: number;
|
|
1015
|
+
loop: boolean;
|
|
1016
|
+
mode: SlideshowMode;
|
|
1017
|
+
initial: number;
|
|
1018
|
+
};
|
|
1019
|
+
type ComponentSlideshowSettings = {
|
|
1020
|
+
__component: string;
|
|
1021
|
+
} & SlideshowSettings;
|
|
1022
|
+
|
|
1023
|
+
type Slideshow = {
|
|
1024
|
+
id: number;
|
|
1025
|
+
settings?: SlideshowSettings;
|
|
1026
|
+
slider_settings?: SliderSettings[];
|
|
1027
|
+
slides?: SlideContent[];
|
|
1028
|
+
};
|
|
1029
|
+
type ComponentSlideshow = {
|
|
1030
|
+
__component: string;
|
|
1031
|
+
} & Slideshow;
|
|
1032
|
+
|
|
1033
|
+
type UtmClassificationKey = "organic" | "paid";
|
|
1034
|
+
type UtmSourceKey = "all" | "meta" | "meta_facebook" | "meta_instagram" | "tiktok" | "twitter" | "linkedin" | "pinterest" | "google" | "youtube" | "bing" | "sms" | "email" | "realtor" | "zillow" | "bdx_nhs" | "yelp" | "qr_code" | "stackadapt" | "newswire" | "propellant" | "mobile_app" | "gcflytour" | "referral";
|
|
1035
|
+
type UtmOption = {
|
|
1036
|
+
id: number;
|
|
1037
|
+
label: string;
|
|
1038
|
+
value: string;
|
|
1039
|
+
description: string | null;
|
|
1040
|
+
is_active: boolean;
|
|
1041
|
+
active_by_classification: Array<UtmClassificationKey>;
|
|
1042
|
+
active_by_source: Array<UtmSourceKey>;
|
|
1043
|
+
};
|
|
1044
|
+
type ComponentUtmOption = {
|
|
1045
|
+
__component: string;
|
|
1046
|
+
} & UtmOption;
|
|
1272
1047
|
|
|
1273
1048
|
type CategoryDocument = {
|
|
1274
1049
|
label: string;
|
|
@@ -1276,6 +1051,11 @@ type CategoryDocument = {
|
|
|
1276
1051
|
blog_posts?: Partial<BlogPostDocument>[] | null;
|
|
1277
1052
|
} & BaseDocument;
|
|
1278
1053
|
|
|
1054
|
+
type TagDocument = {
|
|
1055
|
+
label: string;
|
|
1056
|
+
slug: string;
|
|
1057
|
+
} & BaseDocument;
|
|
1058
|
+
|
|
1279
1059
|
type TrendDocument = {
|
|
1280
1060
|
title: string;
|
|
1281
1061
|
creators?: TeamMemberDocument[];
|
|
@@ -1321,6 +1101,226 @@ type BlogPostDocument = {
|
|
|
1321
1101
|
blocks?: BlogPostBlock[];
|
|
1322
1102
|
} & BaseDocument;
|
|
1323
1103
|
|
|
1104
|
+
type ClientMediaPlatformContentTypeDocument = {
|
|
1105
|
+
is_active: boolean;
|
|
1106
|
+
is_organic_social: boolean;
|
|
1107
|
+
is_paid_media: boolean;
|
|
1108
|
+
client_media_platform?: ClientMediaPlatformDocument;
|
|
1109
|
+
media_content_type?: MediaContentTypeDocument;
|
|
1110
|
+
} & BaseDocument;
|
|
1111
|
+
|
|
1112
|
+
type MediaPlatformDocument = {
|
|
1113
|
+
title: string;
|
|
1114
|
+
slug: string;
|
|
1115
|
+
utm_key: string | null;
|
|
1116
|
+
is_active: boolean;
|
|
1117
|
+
is_organic_social: boolean;
|
|
1118
|
+
is_paid_media: boolean;
|
|
1119
|
+
logos: BlockBrandLogos | null;
|
|
1120
|
+
description: string;
|
|
1121
|
+
information: RichTextBlock[] | null;
|
|
1122
|
+
clients?: ClientMediaPlatformDocument[];
|
|
1123
|
+
media_content_types?: MediaContentTypeDocument[];
|
|
1124
|
+
} & BaseDocument;
|
|
1125
|
+
|
|
1126
|
+
type MediaContentTypeDocument = {
|
|
1127
|
+
title: string;
|
|
1128
|
+
slug: string;
|
|
1129
|
+
utm_key: string | null;
|
|
1130
|
+
is_active: boolean;
|
|
1131
|
+
is_organic_social: boolean;
|
|
1132
|
+
is_paid_media: boolean;
|
|
1133
|
+
description: string;
|
|
1134
|
+
information: RichTextBlock[] | null;
|
|
1135
|
+
media_platforms?: MediaPlatformDocument[];
|
|
1136
|
+
client_media_platform_content_types?: ClientMediaPlatformContentTypeDocument[];
|
|
1137
|
+
} & BaseDocument;
|
|
1138
|
+
|
|
1139
|
+
type ClientMediaPlatformDocument = {
|
|
1140
|
+
is_active: boolean;
|
|
1141
|
+
client?: ClientDocument;
|
|
1142
|
+
media_platform?: MediaPlatformDocument;
|
|
1143
|
+
media_content_types?: MediaContentTypeDocument[];
|
|
1144
|
+
} & BaseDocument;
|
|
1145
|
+
|
|
1146
|
+
declare const ClientProjectStatusOptions: readonly ["coming-soon", "now-open", "for-sale", "sold-out", "available"];
|
|
1147
|
+
type ClientProjectStatus = (typeof ClientProjectStatusOptions)[number];
|
|
1148
|
+
declare const ClientProjectPhaseSelectOptions: FormSelectInputOption[];
|
|
1149
|
+
declare const ClientProjectPhaseOptions: readonly ["brand", "p1", "p2", "p3", "p4", "p5", "closed"];
|
|
1150
|
+
type ClientProjectPhase = (typeof ClientProjectPhaseOptions)[number];
|
|
1151
|
+
type ClientProjectDocument = {
|
|
1152
|
+
title: string;
|
|
1153
|
+
slug: string;
|
|
1154
|
+
project_status: ClientProjectStatus[];
|
|
1155
|
+
project_phase: ClientProjectPhase;
|
|
1156
|
+
featured_image?: MediaUploadDocument | null;
|
|
1157
|
+
clients?: ClientDocument[];
|
|
1158
|
+
} & BaseDocument;
|
|
1159
|
+
|
|
1160
|
+
type ClientReportDocument = {
|
|
1161
|
+
title: string;
|
|
1162
|
+
report_id: string;
|
|
1163
|
+
is_active: boolean;
|
|
1164
|
+
clients?: ClientDocument[];
|
|
1165
|
+
} & BaseDocument;
|
|
1166
|
+
|
|
1167
|
+
type ClientStyleguideDocument = {
|
|
1168
|
+
client?: ClientDocument;
|
|
1169
|
+
title: string;
|
|
1170
|
+
is_active: boolean;
|
|
1171
|
+
introduction: RichTextBlock[];
|
|
1172
|
+
voice: RichTextBlock[];
|
|
1173
|
+
communication: RichTextBlock[];
|
|
1174
|
+
brand_elements: RichTextBlock[];
|
|
1175
|
+
brand_intention: RichTextBlock[];
|
|
1176
|
+
mood?: MediaUploadDocument[];
|
|
1177
|
+
logos?: MediaUploadDocument[];
|
|
1178
|
+
brand_colors?: ComponentBrandStyleguideColor[];
|
|
1179
|
+
brand_fonts?: ComponentBrandStyleguideFont[];
|
|
1180
|
+
brand_application?: MediaUploadDocument[];
|
|
1181
|
+
} & BaseDocument;
|
|
1182
|
+
|
|
1183
|
+
type PermissionDocument = {
|
|
1184
|
+
action: string;
|
|
1185
|
+
role?: RoleDocument;
|
|
1186
|
+
} & BaseDocument;
|
|
1187
|
+
|
|
1188
|
+
type RoleType = "authenticated" | "public" | "employee" | "manager" | "client";
|
|
1189
|
+
type RoleDocument = {
|
|
1190
|
+
type: RoleType;
|
|
1191
|
+
name: string;
|
|
1192
|
+
description: string | null;
|
|
1193
|
+
permissions?: PermissionDocument[];
|
|
1194
|
+
users?: UserDocument[];
|
|
1195
|
+
} & BaseDocument;
|
|
1196
|
+
|
|
1197
|
+
type UserAccountDocument = {
|
|
1198
|
+
user?: UserDocument;
|
|
1199
|
+
preferred_name: string;
|
|
1200
|
+
first_name: string;
|
|
1201
|
+
last_name: string;
|
|
1202
|
+
} & BaseDocument;
|
|
1203
|
+
|
|
1204
|
+
type UtmTrackingLinkDocument = {
|
|
1205
|
+
creator?: UserDocument;
|
|
1206
|
+
client?: ClientDocument;
|
|
1207
|
+
url_destination: string;
|
|
1208
|
+
utm_medium: string;
|
|
1209
|
+
utm_source: string;
|
|
1210
|
+
utm_campaign: string;
|
|
1211
|
+
utm_content: string | null;
|
|
1212
|
+
utm_creative_format: string | null;
|
|
1213
|
+
utm_id: string | null;
|
|
1214
|
+
campaign_phase: string;
|
|
1215
|
+
campaign_product: string | null;
|
|
1216
|
+
campaign_targeting: string | null;
|
|
1217
|
+
campaign_key: string | null;
|
|
1218
|
+
creative_format: string | null;
|
|
1219
|
+
creative_format_variants: string | null;
|
|
1220
|
+
url: string;
|
|
1221
|
+
is_active: boolean;
|
|
1222
|
+
notes: string | null;
|
|
1223
|
+
} & BaseDocument;
|
|
1224
|
+
|
|
1225
|
+
type UserDocument = {
|
|
1226
|
+
username: string;
|
|
1227
|
+
email: string;
|
|
1228
|
+
provider: string;
|
|
1229
|
+
confirmed: boolean;
|
|
1230
|
+
blocked: boolean;
|
|
1231
|
+
clerk_user_id: string | null;
|
|
1232
|
+
role?: RoleDocument;
|
|
1233
|
+
account?: UserAccountDocument;
|
|
1234
|
+
clients?: ClientUserDocument[];
|
|
1235
|
+
utm_tracking_links?: UtmTrackingLinkDocument[];
|
|
1236
|
+
} & BaseDocument;
|
|
1237
|
+
type AuthorizedUserDocument = Pick<UserDocument, "id" | "documentId" | "createdAt" | "updatedAt" | "publishedAt" | "username" | "email" | "provider" | "confirmed" | "blocked" | "clerk_user_id"> & {
|
|
1238
|
+
account: UserAccountDocument;
|
|
1239
|
+
role: RoleDocument;
|
|
1240
|
+
};
|
|
1241
|
+
type UserAuthorizationLoginResponse = {
|
|
1242
|
+
jwt: string;
|
|
1243
|
+
user: AuthorizedUserDocument;
|
|
1244
|
+
};
|
|
1245
|
+
type UserAuthorizationSuccessResponse = {
|
|
1246
|
+
jwt: string;
|
|
1247
|
+
user: Pick<UserDocument, "id" | "documentId" | "createdAt" | "updatedAt" | "publishedAt" | "username" | "email" | "provider" | "confirmed" | "blocked" | "clerk_user_id">;
|
|
1248
|
+
};
|
|
1249
|
+
|
|
1250
|
+
type ClientUserDocument = {
|
|
1251
|
+
client: Partial<ClientDocument>;
|
|
1252
|
+
user: Partial<UserDocument>;
|
|
1253
|
+
scopes: ClientEntityScope[];
|
|
1254
|
+
} & BaseDocument;
|
|
1255
|
+
type ClientUserDocumentStatus = {
|
|
1256
|
+
verified: boolean;
|
|
1257
|
+
clientUser: ClientUserDocument | null;
|
|
1258
|
+
scopes: ClientEntityScope[];
|
|
1259
|
+
};
|
|
1260
|
+
|
|
1261
|
+
type ProductDocument = {
|
|
1262
|
+
title: string;
|
|
1263
|
+
slug: string;
|
|
1264
|
+
introduction: string;
|
|
1265
|
+
flyer_link: string | null;
|
|
1266
|
+
featured_image: MediaUploadDocument;
|
|
1267
|
+
cta_text: string;
|
|
1268
|
+
cta_form_caption: string;
|
|
1269
|
+
order: number;
|
|
1270
|
+
} & BaseDocument;
|
|
1271
|
+
|
|
1272
|
+
type ProductHighlightDocument = {
|
|
1273
|
+
title: string;
|
|
1274
|
+
title_line_1: string;
|
|
1275
|
+
title_line_2: string;
|
|
1276
|
+
introduction: string;
|
|
1277
|
+
highlight?: BlockFullscreenContent;
|
|
1278
|
+
products: ProductDocument[] | null;
|
|
1279
|
+
clients: ClientDocument[] | null;
|
|
1280
|
+
tags: TagDocument[] | null;
|
|
1281
|
+
featured_image: MediaUploadDocument;
|
|
1282
|
+
background_color: string;
|
|
1283
|
+
order: number;
|
|
1284
|
+
text_invert: boolean;
|
|
1285
|
+
} & BaseDocument;
|
|
1286
|
+
|
|
1287
|
+
type ClientDocument = {
|
|
1288
|
+
title: string;
|
|
1289
|
+
is_featured: boolean;
|
|
1290
|
+
logos?: BlockBrandLogos | null;
|
|
1291
|
+
teamwork_id: string;
|
|
1292
|
+
teamwork_name: string;
|
|
1293
|
+
gainapp_id: string | null;
|
|
1294
|
+
utm_sheet_id: string;
|
|
1295
|
+
allow_create_utm_link: boolean;
|
|
1296
|
+
is_organic_social: boolean;
|
|
1297
|
+
is_paid_media: boolean;
|
|
1298
|
+
is_active: boolean;
|
|
1299
|
+
classification: UtmClassificationKey[];
|
|
1300
|
+
product_highlights?: ProductHighlightDocument[];
|
|
1301
|
+
client_projects?: ClientProjectDocument[];
|
|
1302
|
+
client_reports?: ClientReportDocument[];
|
|
1303
|
+
users?: ClientUserDocument[];
|
|
1304
|
+
utm_tracking_links?: UtmTrackingLinkDocument[];
|
|
1305
|
+
styleguides?: ClientStyleguideDocument[];
|
|
1306
|
+
media_platforms?: ClientMediaPlatformDocument[];
|
|
1307
|
+
content_pillars?: ClientContentPillarDocument[];
|
|
1308
|
+
} & BaseDocument;
|
|
1309
|
+
|
|
1310
|
+
type ContentPillarDocument = {
|
|
1311
|
+
title: string;
|
|
1312
|
+
slug: string;
|
|
1313
|
+
description: string;
|
|
1314
|
+
information: RichTextBlock[] | null;
|
|
1315
|
+
clients?: ClientContentPillarDocument[] | null;
|
|
1316
|
+
} & BaseDocument;
|
|
1317
|
+
|
|
1318
|
+
type ClientContentPillarDocument = {
|
|
1319
|
+
client?: ClientDocument;
|
|
1320
|
+
content_pillar?: ContentPillarDocument;
|
|
1321
|
+
is_active: boolean;
|
|
1322
|
+
} & BaseDocument;
|
|
1323
|
+
|
|
1324
1324
|
type LeadDocument = {
|
|
1325
1325
|
first_name: string;
|
|
1326
1326
|
last_name: string;
|
|
@@ -1609,6 +1609,49 @@ declare const SUpdateClientContentPillarDocumentRequest: v.ObjectSchema<{
|
|
|
1609
1609
|
}, undefined>;
|
|
1610
1610
|
type SUpdateClientContentPillarDocumentRequest = v.InferOutput<typeof SUpdateClientContentPillarDocumentRequest>;
|
|
1611
1611
|
|
|
1612
|
+
declare const QuerySortClientMediaPlatformContentTypes: v.OptionalSchema<v.ObjectSchema<{
|
|
1613
|
+
readonly key: v.PicklistSchema<["id", "is_active", "is_organic_social", "is_paid_media", "client_media_platform.media_platform.title", "client_media_platform.media_platform.slug", "media_content_type.title", "media_content_type.slug", "createdAt", "updatedAt"], undefined>;
|
|
1614
|
+
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
1615
|
+
}, undefined>, undefined>;
|
|
1616
|
+
type QuerySortClientMediaPlatformContentTypes = v.InferOutput<typeof QuerySortClientMediaPlatformContentTypes>;
|
|
1617
|
+
declare const QueryStrapiSearchClientMediaPlatformContentTypes: v.ObjectSchema<{
|
|
1618
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
1619
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 100, undefined>]>, undefined>;
|
|
1620
|
+
readonly is_active: v.OptionalSchema<v.BooleanSchema<"this value must be a boolean">, undefined>;
|
|
1621
|
+
readonly is_organic_social: v.OptionalSchema<v.BooleanSchema<"this value must be a boolean">, undefined>;
|
|
1622
|
+
readonly is_paid_media: v.OptionalSchema<v.BooleanSchema<"this value must be a boolean">, undefined>;
|
|
1623
|
+
readonly client_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>;
|
|
1624
|
+
readonly media_content_type_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>;
|
|
1625
|
+
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1626
|
+
readonly key: v.PicklistSchema<["id", "is_active", "is_organic_social", "is_paid_media", "client_media_platform.media_platform.title", "client_media_platform.media_platform.slug", "media_content_type.title", "media_content_type.slug", "createdAt", "updatedAt"], undefined>;
|
|
1627
|
+
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
1628
|
+
}, undefined>, undefined>;
|
|
1629
|
+
}, undefined>;
|
|
1630
|
+
type QueryStrapiSearchClientMediaPlatformContentTypes = v.InferOutput<typeof QueryStrapiSearchClientMediaPlatformContentTypes>;
|
|
1631
|
+
declare const SCreateClientMediaPlatformContentTypeDocument: v.ObjectSchema<{
|
|
1632
|
+
readonly client_media_platform: 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">]>;
|
|
1633
|
+
readonly media_content_type: 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">]>;
|
|
1634
|
+
readonly is_active: v.BooleanSchema<"this value must be a boolean">;
|
|
1635
|
+
readonly is_organic_social: v.BooleanSchema<"this value must be a boolean">;
|
|
1636
|
+
readonly is_paid_media: v.BooleanSchema<"this value must be a boolean">;
|
|
1637
|
+
}, undefined>;
|
|
1638
|
+
type SCreateClientMediaPlatformContentTypeDocument = v.InferOutput<typeof SCreateClientMediaPlatformContentTypeDocument>;
|
|
1639
|
+
declare const SUpdateClientMediaPlatformContentTypeDocument: v.ObjectSchema<{
|
|
1640
|
+
readonly is_active: v.OptionalSchema<v.BooleanSchema<"this value must be a boolean">, undefined>;
|
|
1641
|
+
readonly is_organic_social: v.OptionalSchema<v.BooleanSchema<"this value must be a boolean">, undefined>;
|
|
1642
|
+
readonly is_paid_media: v.OptionalSchema<v.BooleanSchema<"this value must be a boolean">, undefined>;
|
|
1643
|
+
}, undefined>;
|
|
1644
|
+
type SUpdateClientMediaPlatformContentTypeDocument = v.InferOutput<typeof SUpdateClientMediaPlatformContentTypeDocument>;
|
|
1645
|
+
declare const SUpdateClientMediaPlatformContentTypeDocumentRequest: v.ObjectSchema<{
|
|
1646
|
+
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">]>;
|
|
1647
|
+
readonly data: v.ObjectSchema<{
|
|
1648
|
+
readonly is_active: v.OptionalSchema<v.BooleanSchema<"this value must be a boolean">, undefined>;
|
|
1649
|
+
readonly is_organic_social: v.OptionalSchema<v.BooleanSchema<"this value must be a boolean">, undefined>;
|
|
1650
|
+
readonly is_paid_media: v.OptionalSchema<v.BooleanSchema<"this value must be a boolean">, undefined>;
|
|
1651
|
+
}, undefined>;
|
|
1652
|
+
}, undefined>;
|
|
1653
|
+
type SUpdateClientMediaPlatformContentTypeDocumentRequest = v.InferOutput<typeof SUpdateClientMediaPlatformContentTypeDocumentRequest>;
|
|
1654
|
+
|
|
1612
1655
|
declare const QuerySortClientMediaPlatforms: v.OptionalSchema<v.ObjectSchema<{
|
|
1613
1656
|
readonly key: v.PicklistSchema<["id", "is_active", "is_organic_social", "is_paid_media", "media_platform.title", "media_platform.slug", "media_content_types.title", "media_content_types.slug", "createdAt", "updatedAt"], undefined>;
|
|
1614
1657
|
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
@@ -3347,4 +3390,4 @@ declare const IsValidOrUndefinedUrlUtmTerm: v.OptionalSchema<v.SchemaWithPipe<re
|
|
|
3347
3390
|
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: - _ .">]>;
|
|
3348
3391
|
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>;
|
|
3349
3392
|
|
|
3350
|
-
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, InvalidLongStringMax, InvalidPreferredName, InvalidPreferredNameMaxLength, InvalidProductInterestMaxLength, InvalidRangeValueOneToFive, InvalidRefPageMaxLength, InvalidResumeFileType, InvalidShortStringMax, InvalidUserMessage, InvalidUserMessageMaxLength, InvalidUserPhone, InvalidUserPhoneType, InvalidUserTitle, InvalidUserTitleMaxLength, InvalidUtmLink, IsValidBlocked, IsValidBlogPostStatus, IsValidCaptchaToken, IsValidClientClassification, IsValidClientClassificationOption, IsValidClientClassificationSelectOptions, IsValidClientProjectPhase, IsValidClientProjectStatus, IsValidClientTerm, IsValidClientUserScope, IsValidClientUserScopes, IsValidCompanyName, IsValidCompanyNameRequired, IsValidConfirmed, IsValidCost, IsValidCsvFile, IsValidDateToday, IsValidDescription, IsValidDestinationUrl, IsValidFileReferenceId, IsValidFirstName, IsValidFullName, IsValidIndustryName, IsValidIsActive, IsValidIsBoolean, IsValidIsSecure, IsValidLabel, IsValidLastName, IsValidLongString, IsValidMediaFile, IsValidMediaFileList, IsValidName, IsValidNumberOfEmployees, IsValidOrUndefinedBlocked, IsValidOrUndefinedBlogPostStatus, IsValidOrUndefinedBlogPostStatusFallback, IsValidOrUndefinedClientClassification, IsValidOrUndefinedClientProjectPhase, IsValidOrUndefinedClientProjectStatus, IsValidOrUndefinedConfirmed, IsValidOrUndefinedCost, IsValidOrUndefinedDescription, IsValidOrUndefinedDestinationUrl, IsValidOrUndefinedIsActive, IsValidOrUndefinedIsBoolean, IsValidOrUndefinedIsSecure, IsValidOrUndefinedLabel, IsValidOrUndefinedLongString, IsValidOrUndefinedName, IsValidOrUndefinedPassword, IsValidOrUndefinedProvider, IsValidOrUndefinedReferenceDocumentId, IsValidOrUndefinedReferenceDocumentIdList, IsValidOrUndefinedShortString, IsValidOrUndefinedSlug, IsValidOrUndefinedStringList, IsValidOrUndefinedStringListTransformed, IsValidOrUndefinedStringSepListOfUrls, IsValidOrUndefinedUrl, IsValidOrUndefinedUrlDestination, IsValidOrUndefinedUrlDomain, IsValidOrUndefinedUrlFragment, IsValidOrUndefinedUrlPath, IsValidOrUndefinedUrlProtocol, IsValidOrUndefinedUrlQuery, IsValidOrUndefinedUrlUtmCampaign, IsValidOrUndefinedUrlUtmContent, IsValidOrUndefinedUrlUtmCreativeFormat, IsValidOrUndefinedUrlUtmId, IsValidOrUndefinedUrlUtmKey, IsValidOrUndefinedUrlUtmMedium, IsValidOrUndefinedUrlUtmSource, IsValidOrUndefinedUrlUtmTerm, IsValidOrUndefinedUserEmail, IsValidOrUndefinedUsername, IsValidOrUndefinedUtmCampaignKeyName, IsValidOrUndefinedUtmLink, IsValidOrUndefinedValue, IsValidPassword, IsValidPositiveInteger, IsValidPreferredName, IsValidProductInterest, IsValidProvider, IsValidRangeValueOneToFive, IsValidRefPage, IsValidReferenceDocumentId, IsValidReferenceDocumentIdList, IsValidReferenceId, IsValidResumeFile, IsValidShortString, IsValidSlug, IsValidStringList, IsValidStringListTransformed, IsValidStringSepListOfUrls, IsValidUrl, IsValidUrlDestination, IsValidUrlDomain, IsValidUrlFragment, IsValidUrlList, IsValidUrlPath, IsValidUrlProtocol, IsValidUrlQuery, IsValidUrlUtmCampaign, IsValidUrlUtmContent, IsValidUrlUtmCreativeFormat, IsValidUrlUtmId, IsValidUrlUtmKey, IsValidUrlUtmMedium, IsValidUrlUtmSource, IsValidUrlUtmTerm, IsValidUserConsent, IsValidUserEmail, IsValidUserMessage, IsValidUserMessageRequired, IsValidUserPhone, IsValidUserPhoneRequired, IsValidUserRole, IsValidUserTitle, IsValidUserTitleRequired, IsValidUsername, IsValidUtmCampaignKeyName, IsValidUtmLink, IsValidValue, type KeenSliderOrigin, type KeenSliderSliderSlides, type LCRUDActions, 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_KEY, 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_KEY, 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 MediaContentTypeDocument, type MediaFormat, type MediaFormats, type MediaPlatformDocument, type MediaUploadDocument, type NewsletterSignupDocument, type OpenGraph, type PermissionDocument, type Permissions, type PolicyPageDocument, type ProductDocument, type ProductHighlightDocument, QuerySortBlogPosts, QuerySortCategories, QuerySortClientContentPillars, QuerySortClientMediaPlatforms, QuerySortClientProjects, QuerySortClientReports, QuerySortClientStyleguides, QuerySortClientUsers, QuerySortClients, QuerySortContentPillars, QuerySortEntities, QuerySortMediaContentType, QuerySortMediaPlatforms, QuerySortTeamMembers, QuerySortUrlRedirects, QuerySortUsers, QuerySortUtmTrackingLinks, QueryStrapiByDocumentId, QueryStrapiByEmail, QueryStrapiById, QueryStrapiByName, QueryStrapiByPhone, QueryStrapiBySlug, QueryStrapiPaginated, QueryStrapiPaginatedUrlRedirects, QueryStrapiSearchBlogPosts, QueryStrapiSearchBlogPostsBySlug, QueryStrapiSearchCategories, QueryStrapiSearchClientContentPillars, QueryStrapiSearchClientMediaPlatforms, QueryStrapiSearchClientProjects, QueryStrapiSearchClientReports, QueryStrapiSearchClientStyleguide, QueryStrapiSearchClients, QueryStrapiSearchContentPillars, QueryStrapiSearchMediaContentTypes, QueryStrapiSearchMediaPlatforms, QueryStrapiSearchTeamMembers, QueryStrapiSearchUtmTrackingLinks, QueryStrapiUrlRedirectsByFrom, QueryStrapiUsers, QueryStrapiUsersByIdentifier, REGEX_BRAND_COLOR_SLUG, REGEX_DOMAIN, REGEX_NANP_PHONE, REGEX_URL_SLUG, REGEX_UTM_VALUE, ROLE_PERMISSIONS, type ResumeDocument, type RichTextBlock, type RichTextBlockChildren, type RoleDocument, type RoleType, type RolesWithPermissions, SAssociateClientMediaPlatformContentTypesToMediaContentType, SAssociateClientToClientProjectDocument, SAssociateMediaContentTypesToClientMediaPlatform, SAssociateMediaContentTypesToMediaPlatform, SAssociateMediaPlatformsToMediaContentType, SAuthConnectProviderConfirmation, SAuthConnectProviderRedirectSearch, SAuthRawAccessToken, SChangePassword, SConnectManyEntityRelation, type SConnectManyEntityRelationIn, SConnectOneEntityRelation, type SConnectOneEntityRelationIn, SCreateCategoryDocument, SCreateClientContentPillarDocument, SCreateClientDocument, SCreateClientMediaPlatformDocument, SCreateClientProjectDocument, SCreateClientReportDocument, SCreateClientStyleguideDocument, SCreateClientUserDocument, SCreateContentPillarDocument, SCreateLeadDocument, SCreateMediaContentTypeDocument, SCreateMediaPlatformDocument, SCreateMultipleStrapiMediaUploadDocument, SCreateNewsletterSignup, SCreateNewsletterSignupDocument, SCreateResume, SCreateResumeInfo, SCreateResumeInfoDocument, SCreateStrapiMediaUploadDocument, SCreateUserDocument, SCreateUtmTrackingLinkDocument, SCreateUtmTrackingLinkDocumentRequest, 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, SUpdateCategoryDocument, SUpdateCategoryDocumentRequest, SUpdateClientContentPillarDocument, SUpdateClientContentPillarDocumentRequest, SUpdateClientDocument, SUpdateClientDocumentRequest, SUpdateClientMediaPlatformDocument, SUpdateClientMediaPlatformDocumentRequest, SUpdateClientProjectDocument, SUpdateClientProjectDocumentRequest, SUpdateClientReportDocument, SUpdateClientReportDocumentRequest, SUpdateClientStyleguideDocument, SUpdateClientStyleguideDocumentRequest, SUpdateClientUserDocument, SUpdateClientUserDocumentRequest, SUpdateContentPillarDocument, SUpdateContentPillarDocumentRequest, SUpdateLeadDocument, SUpdateLeadRequest, SUpdateMediaContentTypeDocument, SUpdateMediaContentTypeDocumentRequest, SUpdateMediaPlatformDocument, SUpdateMediaPlatformDocumentRequest, SUpdateNewsletterSignupDocument, SUpdateNewsletterSignupRequest, SUpdateResumeInfo, SUpdateResumeInfoDocument, SUpdateResumeInfoRequest, SUpdateStrapiMediaFileInfo, SUpdateTrendsLikes, SUpdateUserAccount, SUpdateUserAccountFirstName, SUpdateUserAccountLastName, SUpdateUserAccountPreferredName, SUpdateUtmTrackingLinkDocument, SUpdateUtmTrackingLinkDocumentRequest, SUserToken, SUtmLinkBuilderPartCampaignDateOptions, type SUtmLinkBuilderPartCampaignDateValue, SUtmLinkBuilderTableForm, type SUtmLinkBuilderTableFormInput, 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 TeamMemberGroup, type TeamMemberTier, 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, hasPermission, isStrapiAttributeError, isStrapiStandardError, isValidationFailure, isValidationSuccess, omitUndefined, validateAndClean };
|
|
3393
|
+
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 ClientMediaPlatformContentTypeDocument, 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, InvalidLongStringMax, InvalidPreferredName, InvalidPreferredNameMaxLength, InvalidProductInterestMaxLength, InvalidRangeValueOneToFive, InvalidRefPageMaxLength, InvalidResumeFileType, InvalidShortStringMax, InvalidUserMessage, InvalidUserMessageMaxLength, InvalidUserPhone, InvalidUserPhoneType, InvalidUserTitle, InvalidUserTitleMaxLength, InvalidUtmLink, IsValidBlocked, IsValidBlogPostStatus, IsValidCaptchaToken, IsValidClientClassification, IsValidClientClassificationOption, IsValidClientClassificationSelectOptions, IsValidClientProjectPhase, IsValidClientProjectStatus, IsValidClientTerm, IsValidClientUserScope, IsValidClientUserScopes, IsValidCompanyName, IsValidCompanyNameRequired, IsValidConfirmed, IsValidCost, IsValidCsvFile, IsValidDateToday, IsValidDescription, IsValidDestinationUrl, IsValidFileReferenceId, IsValidFirstName, IsValidFullName, IsValidIndustryName, IsValidIsActive, IsValidIsBoolean, IsValidIsSecure, IsValidLabel, IsValidLastName, IsValidLongString, IsValidMediaFile, IsValidMediaFileList, IsValidName, IsValidNumberOfEmployees, IsValidOrUndefinedBlocked, IsValidOrUndefinedBlogPostStatus, IsValidOrUndefinedBlogPostStatusFallback, IsValidOrUndefinedClientClassification, IsValidOrUndefinedClientProjectPhase, IsValidOrUndefinedClientProjectStatus, IsValidOrUndefinedConfirmed, IsValidOrUndefinedCost, IsValidOrUndefinedDescription, IsValidOrUndefinedDestinationUrl, IsValidOrUndefinedIsActive, IsValidOrUndefinedIsBoolean, IsValidOrUndefinedIsSecure, IsValidOrUndefinedLabel, IsValidOrUndefinedLongString, IsValidOrUndefinedName, IsValidOrUndefinedPassword, IsValidOrUndefinedProvider, IsValidOrUndefinedReferenceDocumentId, IsValidOrUndefinedReferenceDocumentIdList, IsValidOrUndefinedShortString, IsValidOrUndefinedSlug, IsValidOrUndefinedStringList, IsValidOrUndefinedStringListTransformed, IsValidOrUndefinedStringSepListOfUrls, IsValidOrUndefinedUrl, IsValidOrUndefinedUrlDestination, IsValidOrUndefinedUrlDomain, IsValidOrUndefinedUrlFragment, IsValidOrUndefinedUrlPath, IsValidOrUndefinedUrlProtocol, IsValidOrUndefinedUrlQuery, IsValidOrUndefinedUrlUtmCampaign, IsValidOrUndefinedUrlUtmContent, IsValidOrUndefinedUrlUtmCreativeFormat, IsValidOrUndefinedUrlUtmId, IsValidOrUndefinedUrlUtmKey, IsValidOrUndefinedUrlUtmMedium, IsValidOrUndefinedUrlUtmSource, IsValidOrUndefinedUrlUtmTerm, IsValidOrUndefinedUserEmail, IsValidOrUndefinedUsername, IsValidOrUndefinedUtmCampaignKeyName, IsValidOrUndefinedUtmLink, IsValidOrUndefinedValue, IsValidPassword, IsValidPositiveInteger, IsValidPreferredName, IsValidProductInterest, IsValidProvider, IsValidRangeValueOneToFive, IsValidRefPage, IsValidReferenceDocumentId, IsValidReferenceDocumentIdList, IsValidReferenceId, IsValidResumeFile, IsValidShortString, IsValidSlug, IsValidStringList, IsValidStringListTransformed, IsValidStringSepListOfUrls, IsValidUrl, IsValidUrlDestination, IsValidUrlDomain, IsValidUrlFragment, IsValidUrlList, IsValidUrlPath, IsValidUrlProtocol, IsValidUrlQuery, IsValidUrlUtmCampaign, IsValidUrlUtmContent, IsValidUrlUtmCreativeFormat, IsValidUrlUtmId, IsValidUrlUtmKey, IsValidUrlUtmMedium, IsValidUrlUtmSource, IsValidUrlUtmTerm, IsValidUserConsent, IsValidUserEmail, IsValidUserMessage, IsValidUserMessageRequired, IsValidUserPhone, IsValidUserPhoneRequired, IsValidUserRole, IsValidUserTitle, IsValidUserTitleRequired, IsValidUsername, IsValidUtmCampaignKeyName, IsValidUtmLink, IsValidValue, type KeenSliderOrigin, type KeenSliderSliderSlides, type LCRUDActions, 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_KEY, 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_KEY, 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 MediaContentTypeDocument, type MediaFormat, type MediaFormats, type MediaPlatformDocument, type MediaUploadDocument, type NewsletterSignupDocument, type OpenGraph, type PermissionDocument, type Permissions, type PolicyPageDocument, type ProductDocument, type ProductHighlightDocument, QuerySortBlogPosts, QuerySortCategories, QuerySortClientContentPillars, QuerySortClientMediaPlatformContentTypes, QuerySortClientMediaPlatforms, QuerySortClientProjects, QuerySortClientReports, QuerySortClientStyleguides, QuerySortClientUsers, QuerySortClients, QuerySortContentPillars, QuerySortEntities, QuerySortMediaContentType, QuerySortMediaPlatforms, QuerySortTeamMembers, QuerySortUrlRedirects, QuerySortUsers, QuerySortUtmTrackingLinks, QueryStrapiByDocumentId, QueryStrapiByEmail, QueryStrapiById, QueryStrapiByName, QueryStrapiByPhone, QueryStrapiBySlug, QueryStrapiPaginated, QueryStrapiPaginatedUrlRedirects, QueryStrapiSearchBlogPosts, QueryStrapiSearchBlogPostsBySlug, QueryStrapiSearchCategories, QueryStrapiSearchClientContentPillars, QueryStrapiSearchClientMediaPlatformContentTypes, QueryStrapiSearchClientMediaPlatforms, QueryStrapiSearchClientProjects, QueryStrapiSearchClientReports, QueryStrapiSearchClientStyleguide, QueryStrapiSearchClients, QueryStrapiSearchContentPillars, QueryStrapiSearchMediaContentTypes, QueryStrapiSearchMediaPlatforms, QueryStrapiSearchTeamMembers, QueryStrapiSearchUtmTrackingLinks, QueryStrapiUrlRedirectsByFrom, QueryStrapiUsers, QueryStrapiUsersByIdentifier, REGEX_BRAND_COLOR_SLUG, REGEX_DOMAIN, REGEX_NANP_PHONE, REGEX_URL_SLUG, REGEX_UTM_VALUE, ROLE_PERMISSIONS, type ResumeDocument, type RichTextBlock, type RichTextBlockChildren, type RoleDocument, type RoleType, type RolesWithPermissions, SAssociateClientMediaPlatformContentTypesToMediaContentType, SAssociateClientToClientProjectDocument, SAssociateMediaContentTypesToClientMediaPlatform, SAssociateMediaContentTypesToMediaPlatform, SAssociateMediaPlatformsToMediaContentType, SAuthConnectProviderConfirmation, SAuthConnectProviderRedirectSearch, SAuthRawAccessToken, SChangePassword, SConnectManyEntityRelation, type SConnectManyEntityRelationIn, SConnectOneEntityRelation, type SConnectOneEntityRelationIn, SCreateCategoryDocument, SCreateClientContentPillarDocument, SCreateClientDocument, SCreateClientMediaPlatformContentTypeDocument, SCreateClientMediaPlatformDocument, SCreateClientProjectDocument, SCreateClientReportDocument, SCreateClientStyleguideDocument, SCreateClientUserDocument, SCreateContentPillarDocument, SCreateLeadDocument, SCreateMediaContentTypeDocument, SCreateMediaPlatformDocument, SCreateMultipleStrapiMediaUploadDocument, SCreateNewsletterSignup, SCreateNewsletterSignupDocument, SCreateResume, SCreateResumeInfo, SCreateResumeInfoDocument, SCreateStrapiMediaUploadDocument, SCreateUserDocument, SCreateUtmTrackingLinkDocument, SCreateUtmTrackingLinkDocumentRequest, 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, SUpdateCategoryDocument, SUpdateCategoryDocumentRequest, SUpdateClientContentPillarDocument, SUpdateClientContentPillarDocumentRequest, SUpdateClientDocument, SUpdateClientDocumentRequest, SUpdateClientMediaPlatformContentTypeDocument, SUpdateClientMediaPlatformContentTypeDocumentRequest, SUpdateClientMediaPlatformDocument, SUpdateClientMediaPlatformDocumentRequest, SUpdateClientProjectDocument, SUpdateClientProjectDocumentRequest, SUpdateClientReportDocument, SUpdateClientReportDocumentRequest, SUpdateClientStyleguideDocument, SUpdateClientStyleguideDocumentRequest, SUpdateClientUserDocument, SUpdateClientUserDocumentRequest, SUpdateContentPillarDocument, SUpdateContentPillarDocumentRequest, SUpdateLeadDocument, SUpdateLeadRequest, SUpdateMediaContentTypeDocument, SUpdateMediaContentTypeDocumentRequest, SUpdateMediaPlatformDocument, SUpdateMediaPlatformDocumentRequest, SUpdateNewsletterSignupDocument, SUpdateNewsletterSignupRequest, SUpdateResumeInfo, SUpdateResumeInfoDocument, SUpdateResumeInfoRequest, SUpdateStrapiMediaFileInfo, SUpdateTrendsLikes, SUpdateUserAccount, SUpdateUserAccountFirstName, SUpdateUserAccountLastName, SUpdateUserAccountPreferredName, SUpdateUtmTrackingLinkDocument, SUpdateUtmTrackingLinkDocumentRequest, SUserToken, SUtmLinkBuilderPartCampaignDateOptions, type SUtmLinkBuilderPartCampaignDateValue, SUtmLinkBuilderTableForm, type SUtmLinkBuilderTableFormInput, 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 TeamMemberGroup, type TeamMemberTier, 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, hasPermission, isStrapiAttributeError, isStrapiStandardError, isValidationFailure, isValidationSuccess, omitUndefined, validateAndClean };
|