@getcommunity/gc-validators 0.0.161 → 0.0.165
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 +247 -82
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +264 -119
- package/dist/index.d.ts +264 -119
- package/dist/index.js +235 -83
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -101,6 +101,20 @@ declare const REGEX_URL_SLUG: RegExp;
|
|
|
101
101
|
*/
|
|
102
102
|
declare const ROLE_PERMISSIONS: {
|
|
103
103
|
readonly authenticated: {
|
|
104
|
+
readonly "user-account": {
|
|
105
|
+
readonly list: false;
|
|
106
|
+
readonly create: false;
|
|
107
|
+
readonly read: false;
|
|
108
|
+
readonly update: false;
|
|
109
|
+
readonly delete: false;
|
|
110
|
+
};
|
|
111
|
+
readonly comment: {
|
|
112
|
+
readonly list: true;
|
|
113
|
+
readonly create: true;
|
|
114
|
+
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: CommentDocument | undefined) => boolean;
|
|
115
|
+
readonly delete: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: CommentDocument | undefined) => boolean;
|
|
116
|
+
readonly report: true;
|
|
117
|
+
};
|
|
104
118
|
readonly client: {
|
|
105
119
|
readonly access: false;
|
|
106
120
|
readonly billing: false;
|
|
@@ -113,6 +127,13 @@ declare const ROLE_PERMISSIONS: {
|
|
|
113
127
|
readonly update: false;
|
|
114
128
|
readonly delete: false;
|
|
115
129
|
};
|
|
130
|
+
readonly "client-user": {
|
|
131
|
+
readonly list: false;
|
|
132
|
+
readonly create: false;
|
|
133
|
+
readonly read: false;
|
|
134
|
+
readonly update: false;
|
|
135
|
+
readonly delete: false;
|
|
136
|
+
};
|
|
116
137
|
readonly "client-content-pillar": {
|
|
117
138
|
readonly list: false;
|
|
118
139
|
readonly create: false;
|
|
@@ -156,13 +177,6 @@ declare const ROLE_PERMISSIONS: {
|
|
|
156
177
|
readonly update: false;
|
|
157
178
|
readonly delete: false;
|
|
158
179
|
};
|
|
159
|
-
readonly "client-user": {
|
|
160
|
-
readonly list: false;
|
|
161
|
-
readonly create: false;
|
|
162
|
-
readonly read: false;
|
|
163
|
-
readonly update: false;
|
|
164
|
-
readonly delete: false;
|
|
165
|
-
};
|
|
166
180
|
readonly "content-pillar": {
|
|
167
181
|
readonly list: false;
|
|
168
182
|
readonly create: false;
|
|
@@ -184,13 +198,6 @@ declare const ROLE_PERMISSIONS: {
|
|
|
184
198
|
readonly update: false;
|
|
185
199
|
readonly delete: false;
|
|
186
200
|
};
|
|
187
|
-
readonly "user-account": {
|
|
188
|
-
readonly list: false;
|
|
189
|
-
readonly create: false;
|
|
190
|
-
readonly read: false;
|
|
191
|
-
readonly update: false;
|
|
192
|
-
readonly delete: false;
|
|
193
|
-
};
|
|
194
201
|
readonly "utm-tracking-link": {
|
|
195
202
|
readonly list: false;
|
|
196
203
|
readonly create: false;
|
|
@@ -214,6 +221,20 @@ declare const ROLE_PERMISSIONS: {
|
|
|
214
221
|
};
|
|
215
222
|
};
|
|
216
223
|
readonly public: {
|
|
224
|
+
readonly "user-account": {
|
|
225
|
+
readonly list: false;
|
|
226
|
+
readonly create: false;
|
|
227
|
+
readonly read: false;
|
|
228
|
+
readonly update: false;
|
|
229
|
+
readonly delete: false;
|
|
230
|
+
};
|
|
231
|
+
readonly comment: {
|
|
232
|
+
readonly list: true;
|
|
233
|
+
readonly create: false;
|
|
234
|
+
readonly update: false;
|
|
235
|
+
readonly delete: false;
|
|
236
|
+
readonly report: false;
|
|
237
|
+
};
|
|
217
238
|
readonly client: {
|
|
218
239
|
readonly access: false;
|
|
219
240
|
readonly billing: false;
|
|
@@ -226,6 +247,13 @@ declare const ROLE_PERMISSIONS: {
|
|
|
226
247
|
readonly update: false;
|
|
227
248
|
readonly delete: false;
|
|
228
249
|
};
|
|
250
|
+
readonly "client-user": {
|
|
251
|
+
readonly list: false;
|
|
252
|
+
readonly create: false;
|
|
253
|
+
readonly read: false;
|
|
254
|
+
readonly update: false;
|
|
255
|
+
readonly delete: false;
|
|
256
|
+
};
|
|
229
257
|
readonly "client-content-pillar": {
|
|
230
258
|
readonly list: false;
|
|
231
259
|
readonly create: false;
|
|
@@ -269,13 +297,6 @@ declare const ROLE_PERMISSIONS: {
|
|
|
269
297
|
readonly update: false;
|
|
270
298
|
readonly delete: false;
|
|
271
299
|
};
|
|
272
|
-
readonly "client-user": {
|
|
273
|
-
readonly list: false;
|
|
274
|
-
readonly create: false;
|
|
275
|
-
readonly read: false;
|
|
276
|
-
readonly update: false;
|
|
277
|
-
readonly delete: false;
|
|
278
|
-
};
|
|
279
300
|
readonly "content-pillar": {
|
|
280
301
|
readonly list: false;
|
|
281
302
|
readonly create: false;
|
|
@@ -297,13 +318,6 @@ declare const ROLE_PERMISSIONS: {
|
|
|
297
318
|
readonly update: false;
|
|
298
319
|
readonly delete: false;
|
|
299
320
|
};
|
|
300
|
-
readonly "user-account": {
|
|
301
|
-
readonly list: false;
|
|
302
|
-
readonly create: false;
|
|
303
|
-
readonly read: false;
|
|
304
|
-
readonly update: false;
|
|
305
|
-
readonly delete: false;
|
|
306
|
-
};
|
|
307
321
|
readonly "utm-tracking-link": {
|
|
308
322
|
readonly list: false;
|
|
309
323
|
readonly create: false;
|
|
@@ -327,6 +341,20 @@ declare const ROLE_PERMISSIONS: {
|
|
|
327
341
|
};
|
|
328
342
|
};
|
|
329
343
|
readonly employee: {
|
|
344
|
+
readonly "user-account": {
|
|
345
|
+
readonly list: true;
|
|
346
|
+
readonly create: false;
|
|
347
|
+
readonly read: true;
|
|
348
|
+
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: UserAccountDocument | undefined) => boolean;
|
|
349
|
+
readonly delete: false;
|
|
350
|
+
};
|
|
351
|
+
readonly comment: {
|
|
352
|
+
readonly list: true;
|
|
353
|
+
readonly create: true;
|
|
354
|
+
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: CommentDocument | undefined) => boolean;
|
|
355
|
+
readonly delete: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: CommentDocument | undefined) => boolean;
|
|
356
|
+
readonly report: true;
|
|
357
|
+
};
|
|
330
358
|
readonly client: {
|
|
331
359
|
readonly access: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientDocument | undefined) => boolean;
|
|
332
360
|
readonly billing: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientDocument | undefined) => boolean;
|
|
@@ -339,6 +367,14 @@ declare const ROLE_PERMISSIONS: {
|
|
|
339
367
|
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientDocument | undefined) => boolean;
|
|
340
368
|
readonly delete: false;
|
|
341
369
|
};
|
|
370
|
+
readonly "client-user": {
|
|
371
|
+
readonly list: true;
|
|
372
|
+
readonly create: false;
|
|
373
|
+
readonly read: true;
|
|
374
|
+
readonly update: false;
|
|
375
|
+
readonly delete: false;
|
|
376
|
+
readonly verify: true;
|
|
377
|
+
};
|
|
342
378
|
readonly "client-content-pillar": {
|
|
343
379
|
readonly list: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientContentPillarDocument | undefined) => boolean;
|
|
344
380
|
readonly create: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus) => boolean;
|
|
@@ -382,14 +418,6 @@ declare const ROLE_PERMISSIONS: {
|
|
|
382
418
|
readonly update: false;
|
|
383
419
|
readonly delete: false;
|
|
384
420
|
};
|
|
385
|
-
readonly "client-user": {
|
|
386
|
-
readonly list: true;
|
|
387
|
-
readonly create: false;
|
|
388
|
-
readonly read: true;
|
|
389
|
-
readonly update: false;
|
|
390
|
-
readonly delete: false;
|
|
391
|
-
readonly verify: true;
|
|
392
|
-
};
|
|
393
421
|
readonly "content-pillar": {
|
|
394
422
|
readonly list: true;
|
|
395
423
|
readonly create: false;
|
|
@@ -411,13 +439,6 @@ declare const ROLE_PERMISSIONS: {
|
|
|
411
439
|
readonly update: false;
|
|
412
440
|
readonly delete: false;
|
|
413
441
|
};
|
|
414
|
-
readonly "user-account": {
|
|
415
|
-
readonly list: true;
|
|
416
|
-
readonly create: false;
|
|
417
|
-
readonly read: true;
|
|
418
|
-
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: UserAccountDocument | undefined) => boolean;
|
|
419
|
-
readonly delete: false;
|
|
420
|
-
};
|
|
421
442
|
readonly "utm-tracking-link": {
|
|
422
443
|
readonly list: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: UtmTrackingLinkDocument | undefined) => boolean;
|
|
423
444
|
readonly create: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus) => boolean;
|
|
@@ -441,6 +462,20 @@ declare const ROLE_PERMISSIONS: {
|
|
|
441
462
|
};
|
|
442
463
|
};
|
|
443
464
|
readonly manager: {
|
|
465
|
+
readonly "user-account": {
|
|
466
|
+
readonly list: true;
|
|
467
|
+
readonly create: false;
|
|
468
|
+
readonly read: true;
|
|
469
|
+
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: UserAccountDocument | undefined) => boolean;
|
|
470
|
+
readonly delete: false;
|
|
471
|
+
};
|
|
472
|
+
readonly comment: {
|
|
473
|
+
readonly list: true;
|
|
474
|
+
readonly create: true;
|
|
475
|
+
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: CommentDocument | undefined) => boolean;
|
|
476
|
+
readonly delete: true;
|
|
477
|
+
readonly report: true;
|
|
478
|
+
};
|
|
444
479
|
readonly client: {
|
|
445
480
|
readonly access: true;
|
|
446
481
|
readonly billing: true;
|
|
@@ -453,6 +488,14 @@ declare const ROLE_PERMISSIONS: {
|
|
|
453
488
|
readonly update: true;
|
|
454
489
|
readonly delete: false;
|
|
455
490
|
};
|
|
491
|
+
readonly "client-user": {
|
|
492
|
+
readonly list: true;
|
|
493
|
+
readonly create: true;
|
|
494
|
+
readonly read: true;
|
|
495
|
+
readonly update: true;
|
|
496
|
+
readonly delete: true;
|
|
497
|
+
readonly verify: true;
|
|
498
|
+
};
|
|
456
499
|
readonly "client-content-pillar": {
|
|
457
500
|
readonly list: true;
|
|
458
501
|
readonly create: true;
|
|
@@ -496,14 +539,6 @@ declare const ROLE_PERMISSIONS: {
|
|
|
496
539
|
readonly update: true;
|
|
497
540
|
readonly delete: true;
|
|
498
541
|
};
|
|
499
|
-
readonly "client-user": {
|
|
500
|
-
readonly list: true;
|
|
501
|
-
readonly create: true;
|
|
502
|
-
readonly read: true;
|
|
503
|
-
readonly update: true;
|
|
504
|
-
readonly delete: true;
|
|
505
|
-
readonly verify: true;
|
|
506
|
-
};
|
|
507
542
|
readonly "content-pillar": {
|
|
508
543
|
readonly list: true;
|
|
509
544
|
readonly create: true;
|
|
@@ -525,13 +560,6 @@ declare const ROLE_PERMISSIONS: {
|
|
|
525
560
|
readonly update: true;
|
|
526
561
|
readonly delete: true;
|
|
527
562
|
};
|
|
528
|
-
readonly "user-account": {
|
|
529
|
-
readonly list: true;
|
|
530
|
-
readonly create: false;
|
|
531
|
-
readonly read: true;
|
|
532
|
-
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: UserAccountDocument | undefined) => boolean;
|
|
533
|
-
readonly delete: false;
|
|
534
|
-
};
|
|
535
563
|
readonly "utm-tracking-link": {
|
|
536
564
|
readonly list: true;
|
|
537
565
|
readonly create: true;
|
|
@@ -555,6 +583,20 @@ declare const ROLE_PERMISSIONS: {
|
|
|
555
583
|
};
|
|
556
584
|
};
|
|
557
585
|
readonly client: {
|
|
586
|
+
readonly "user-account": {
|
|
587
|
+
readonly list: true;
|
|
588
|
+
readonly create: false;
|
|
589
|
+
readonly read: true;
|
|
590
|
+
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: UserAccountDocument | undefined) => boolean;
|
|
591
|
+
readonly delete: false;
|
|
592
|
+
};
|
|
593
|
+
readonly comment: {
|
|
594
|
+
readonly list: true;
|
|
595
|
+
readonly create: true;
|
|
596
|
+
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: CommentDocument | undefined) => boolean;
|
|
597
|
+
readonly delete: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: CommentDocument | undefined) => boolean;
|
|
598
|
+
readonly report: true;
|
|
599
|
+
};
|
|
558
600
|
readonly client: {
|
|
559
601
|
readonly access: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientDocument | undefined) => boolean;
|
|
560
602
|
readonly billing: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientDocument | undefined) => boolean;
|
|
@@ -567,6 +609,14 @@ declare const ROLE_PERMISSIONS: {
|
|
|
567
609
|
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientDocument | undefined) => boolean;
|
|
568
610
|
readonly delete: false;
|
|
569
611
|
};
|
|
612
|
+
readonly "client-user": {
|
|
613
|
+
readonly list: true;
|
|
614
|
+
readonly create: false;
|
|
615
|
+
readonly read: true;
|
|
616
|
+
readonly update: false;
|
|
617
|
+
readonly delete: false;
|
|
618
|
+
readonly verify: true;
|
|
619
|
+
};
|
|
570
620
|
readonly "client-content-pillar": {
|
|
571
621
|
readonly list: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientContentPillarDocument | undefined) => boolean;
|
|
572
622
|
readonly create: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus) => boolean;
|
|
@@ -610,14 +660,6 @@ declare const ROLE_PERMISSIONS: {
|
|
|
610
660
|
readonly update: false;
|
|
611
661
|
readonly delete: false;
|
|
612
662
|
};
|
|
613
|
-
readonly "client-user": {
|
|
614
|
-
readonly list: true;
|
|
615
|
-
readonly create: false;
|
|
616
|
-
readonly read: true;
|
|
617
|
-
readonly update: false;
|
|
618
|
-
readonly delete: false;
|
|
619
|
-
readonly verify: true;
|
|
620
|
-
};
|
|
621
663
|
readonly "content-pillar": {
|
|
622
664
|
readonly list: true;
|
|
623
665
|
readonly create: false;
|
|
@@ -639,13 +681,6 @@ declare const ROLE_PERMISSIONS: {
|
|
|
639
681
|
readonly update: false;
|
|
640
682
|
readonly delete: false;
|
|
641
683
|
};
|
|
642
|
-
readonly "user-account": {
|
|
643
|
-
readonly list: true;
|
|
644
|
-
readonly create: false;
|
|
645
|
-
readonly read: true;
|
|
646
|
-
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: UserAccountDocument | undefined) => boolean;
|
|
647
|
-
readonly delete: false;
|
|
648
|
-
};
|
|
649
684
|
readonly "utm-tracking-link": {
|
|
650
685
|
readonly list: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: UtmTrackingLinkDocument | undefined) => boolean;
|
|
651
686
|
readonly create: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus) => boolean;
|
|
@@ -1473,6 +1508,42 @@ type ClientContentPillarDocument = {
|
|
|
1473
1508
|
is_active: boolean;
|
|
1474
1509
|
} & BaseDocument;
|
|
1475
1510
|
|
|
1511
|
+
declare const ReportCommentReasonOptions: ("BAD_WORDS" | "OTHER" | "DISCRIMINATION" | "IRRELEVANT" | "INAPPROPRIATE" | "SPAM")[];
|
|
1512
|
+
declare const ReportCommentReason: {
|
|
1513
|
+
readonly BAD_WORDS: "BAD_WORDS";
|
|
1514
|
+
readonly OTHER: "OTHER";
|
|
1515
|
+
readonly DISCRIMINATION: "DISCRIMINATION";
|
|
1516
|
+
readonly IRRELEVANT: "IRRELEVANT";
|
|
1517
|
+
readonly INAPPROPRIATE: "INAPPROPRIATE";
|
|
1518
|
+
readonly SPAM: "SPAM";
|
|
1519
|
+
};
|
|
1520
|
+
type ReportCommentReason = keyof typeof ReportCommentReason;
|
|
1521
|
+
type CommentReportDocument = {
|
|
1522
|
+
content: string;
|
|
1523
|
+
reason: ReportCommentReason | null;
|
|
1524
|
+
resolved: boolean | null;
|
|
1525
|
+
related: CommentDocument[] | null;
|
|
1526
|
+
} & BaseDocument;
|
|
1527
|
+
declare const CommentApprovalStatusOptions: ("PENDING" | "APPROVED" | "REJECTED")[];
|
|
1528
|
+
declare const CommentApprovalStatus: {
|
|
1529
|
+
readonly PENDING: "PENDING";
|
|
1530
|
+
readonly APPROVED: "APPROVED";
|
|
1531
|
+
readonly REJECTED: "REJECTED";
|
|
1532
|
+
};
|
|
1533
|
+
type CommentApprovalStatus = keyof typeof CommentApprovalStatus;
|
|
1534
|
+
type CommentDocument = {
|
|
1535
|
+
content: string;
|
|
1536
|
+
blocked: boolean | null;
|
|
1537
|
+
blockedThread: boolean | null;
|
|
1538
|
+
blockReason: string | null;
|
|
1539
|
+
authorUser: UserDocument | null;
|
|
1540
|
+
removed: boolean | null;
|
|
1541
|
+
approvalStatus: CommentApprovalStatus | null;
|
|
1542
|
+
author: Pick<UserDocument, "id" | "documentId" | "username" | "createdAt" | "updatedAt"> | null;
|
|
1543
|
+
related: CommentDocument[] | null;
|
|
1544
|
+
reports: CommentReportDocument[] | null;
|
|
1545
|
+
} & BaseDocument;
|
|
1546
|
+
|
|
1476
1547
|
type LeadDocument = {
|
|
1477
1548
|
first_name: string;
|
|
1478
1549
|
last_name: string;
|
|
@@ -1969,10 +2040,22 @@ type RolesWithPermissions = {
|
|
|
1969
2040
|
}>;
|
|
1970
2041
|
};
|
|
1971
2042
|
type Permissions = {
|
|
2043
|
+
"user-account": {
|
|
2044
|
+
dataType: UserAccountDocument;
|
|
2045
|
+
action: LCRUDActions;
|
|
2046
|
+
};
|
|
2047
|
+
comment: {
|
|
2048
|
+
dataType: CommentDocument;
|
|
2049
|
+
action: "list" | "create" | "update" | "delete" | "report";
|
|
2050
|
+
};
|
|
1972
2051
|
client: {
|
|
1973
2052
|
dataType: ClientDocument;
|
|
1974
2053
|
action: (typeof CLIENT_ENTITY_PERMISSIONS)["client"][number] | LCRUDActions;
|
|
1975
2054
|
};
|
|
2055
|
+
"client-user": {
|
|
2056
|
+
dataType: ClientUserDocument;
|
|
2057
|
+
action: LCRUDActions | "verify";
|
|
2058
|
+
};
|
|
1976
2059
|
"client-content-pillar": {
|
|
1977
2060
|
dataType: ClientContentPillarDocument;
|
|
1978
2061
|
action: (typeof CLIENT_ENTITY_PERMISSIONS)["client-content-pillar"][number];
|
|
@@ -1997,10 +2080,6 @@ type Permissions = {
|
|
|
1997
2080
|
dataType: ClientStyleguideDocument;
|
|
1998
2081
|
action: (typeof CLIENT_ENTITY_PERMISSIONS)["client-styleguide"][number];
|
|
1999
2082
|
};
|
|
2000
|
-
"client-user": {
|
|
2001
|
-
dataType: ClientUserDocument;
|
|
2002
|
-
action: LCRUDActions | "verify";
|
|
2003
|
-
};
|
|
2004
2083
|
"content-pillar": {
|
|
2005
2084
|
dataType: ContentPillarDocument;
|
|
2006
2085
|
action: LCRUDActions;
|
|
@@ -2013,10 +2092,6 @@ type Permissions = {
|
|
|
2013
2092
|
dataType: MediaContentTypeDocument;
|
|
2014
2093
|
action: LCRUDActions;
|
|
2015
2094
|
};
|
|
2016
|
-
"user-account": {
|
|
2017
|
-
dataType: UserAccountDocument;
|
|
2018
|
-
action: LCRUDActions;
|
|
2019
|
-
};
|
|
2020
2095
|
"utm-tracking-link": {
|
|
2021
2096
|
dataType: UtmTrackingLinkDocument;
|
|
2022
2097
|
action: (typeof CLIENT_ENTITY_PERMISSIONS)["utm-tracking-link"][number];
|
|
@@ -2509,6 +2584,108 @@ declare const SUpdateClientDocumentRequest: v.ObjectSchema<{
|
|
|
2509
2584
|
}, undefined>;
|
|
2510
2585
|
type SUpdateClientDocumentRequest = v.InferOutput<typeof SUpdateClientDocumentRequest>;
|
|
2511
2586
|
|
|
2587
|
+
declare const QueryStrapiSortComments: v.OptionalSchema<v.ObjectSchema<{
|
|
2588
|
+
readonly key: v.PicklistSchema<["id", "content", "blocked", "blockedThread", "approvalStatus", "createdAt", "updatedAt"], undefined>;
|
|
2589
|
+
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
2590
|
+
}, undefined>, undefined>;
|
|
2591
|
+
type QueryStrapiSortComments = v.InferOutput<typeof QueryStrapiSortComments>;
|
|
2592
|
+
declare const QueryStrapiFilterComments: v.ObjectSchema<{
|
|
2593
|
+
readonly content: v.OptionalSchema<v.ObjectSchema<{
|
|
2594
|
+
readonly containsi: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long, it must be 255 characters or less.">]>;
|
|
2595
|
+
}, undefined>, undefined>;
|
|
2596
|
+
readonly blocked: v.OptionalSchema<v.ObjectSchema<{
|
|
2597
|
+
readonly eq: v.BooleanSchema<"this value must be a boolean">;
|
|
2598
|
+
}, undefined>, undefined>;
|
|
2599
|
+
readonly blockedThread: v.OptionalSchema<v.ObjectSchema<{
|
|
2600
|
+
readonly eq: v.BooleanSchema<"this value must be a boolean">;
|
|
2601
|
+
}, undefined>, undefined>;
|
|
2602
|
+
readonly removed: v.OptionalSchema<v.ObjectSchema<{
|
|
2603
|
+
readonly eq: v.BooleanSchema<"this value must be a boolean">;
|
|
2604
|
+
}, undefined>, undefined>;
|
|
2605
|
+
readonly approvalStatus: v.OptionalSchema<v.ObjectSchema<{
|
|
2606
|
+
readonly eq: v.PicklistSchema<("PENDING" | "APPROVED" | "REJECTED")[], "You must provide a valid approval status.">;
|
|
2607
|
+
}, undefined>, undefined>;
|
|
2608
|
+
}, undefined>;
|
|
2609
|
+
type QueryStrapiFilterComments = v.InferOutput<typeof QueryStrapiFilterComments>;
|
|
2610
|
+
declare const QueryStrapiComments: v.ObjectSchema<{
|
|
2611
|
+
readonly relation: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "Please provide a valid string.">, v.MaxLengthAction<string, 255, "The string you provided is too long, it must be 255 characters or less.">]>;
|
|
2612
|
+
readonly filters: v.ObjectSchema<{
|
|
2613
|
+
readonly content: v.OptionalSchema<v.ObjectSchema<{
|
|
2614
|
+
readonly containsi: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long, it must be 255 characters or less.">]>;
|
|
2615
|
+
}, undefined>, undefined>;
|
|
2616
|
+
readonly blocked: v.OptionalSchema<v.ObjectSchema<{
|
|
2617
|
+
readonly eq: v.BooleanSchema<"this value must be a boolean">;
|
|
2618
|
+
}, undefined>, undefined>;
|
|
2619
|
+
readonly blockedThread: v.OptionalSchema<v.ObjectSchema<{
|
|
2620
|
+
readonly eq: v.BooleanSchema<"this value must be a boolean">;
|
|
2621
|
+
}, undefined>, undefined>;
|
|
2622
|
+
readonly removed: v.OptionalSchema<v.ObjectSchema<{
|
|
2623
|
+
readonly eq: v.BooleanSchema<"this value must be a boolean">;
|
|
2624
|
+
}, undefined>, undefined>;
|
|
2625
|
+
readonly approvalStatus: v.OptionalSchema<v.ObjectSchema<{
|
|
2626
|
+
readonly eq: v.PicklistSchema<("PENDING" | "APPROVED" | "REJECTED")[], "You must provide a valid approval status.">;
|
|
2627
|
+
}, undefined>, undefined>;
|
|
2628
|
+
}, undefined>;
|
|
2629
|
+
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
2630
|
+
readonly key: v.PicklistSchema<["id", "content", "blocked", "blockedThread", "approvalStatus", "createdAt", "updatedAt"], undefined>;
|
|
2631
|
+
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
2632
|
+
}, undefined>, undefined>;
|
|
2633
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
2634
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 10000, undefined>]>, undefined>;
|
|
2635
|
+
}, undefined>;
|
|
2636
|
+
type QueryStrapiComments = v.InferOutput<typeof QueryStrapiComments>;
|
|
2637
|
+
declare const QueryStrapiCommentsByAuthor: v.ObjectSchema<{
|
|
2638
|
+
readonly authorId: v.NumberSchema<"please provide a valid id">;
|
|
2639
|
+
readonly filters: v.ObjectSchema<{
|
|
2640
|
+
readonly content: v.OptionalSchema<v.ObjectSchema<{
|
|
2641
|
+
readonly containsi: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 255, "The string you provided is too long, it must be 255 characters or less.">]>;
|
|
2642
|
+
}, undefined>, undefined>;
|
|
2643
|
+
readonly blocked: v.OptionalSchema<v.ObjectSchema<{
|
|
2644
|
+
readonly eq: v.BooleanSchema<"this value must be a boolean">;
|
|
2645
|
+
}, undefined>, undefined>;
|
|
2646
|
+
readonly blockedThread: v.OptionalSchema<v.ObjectSchema<{
|
|
2647
|
+
readonly eq: v.BooleanSchema<"this value must be a boolean">;
|
|
2648
|
+
}, undefined>, undefined>;
|
|
2649
|
+
readonly removed: v.OptionalSchema<v.ObjectSchema<{
|
|
2650
|
+
readonly eq: v.BooleanSchema<"this value must be a boolean">;
|
|
2651
|
+
}, undefined>, undefined>;
|
|
2652
|
+
readonly approvalStatus: v.OptionalSchema<v.ObjectSchema<{
|
|
2653
|
+
readonly eq: v.PicklistSchema<("PENDING" | "APPROVED" | "REJECTED")[], "You must provide a valid approval status.">;
|
|
2654
|
+
}, undefined>, undefined>;
|
|
2655
|
+
}, undefined>;
|
|
2656
|
+
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
2657
|
+
readonly key: v.PicklistSchema<["id", "content", "blocked", "blockedThread", "approvalStatus", "createdAt", "updatedAt"], undefined>;
|
|
2658
|
+
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
2659
|
+
}, undefined>, undefined>;
|
|
2660
|
+
readonly page: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>]>, undefined>;
|
|
2661
|
+
readonly size: v.OptionalSchema<v.SchemaWithPipe<readonly [v.NumberSchema<undefined>, v.MinValueAction<number, 1, undefined>, v.MaxValueAction<number, 10000, undefined>]>, undefined>;
|
|
2662
|
+
}, undefined>;
|
|
2663
|
+
type QueryStrapiCommentsByAuthor = v.InferOutput<typeof QueryStrapiCommentsByAuthor>;
|
|
2664
|
+
declare const SCreateCommentDocument: v.ObjectSchema<{
|
|
2665
|
+
readonly relation: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "Please provide a valid string.">, v.MaxLengthAction<string, 255, "The string you provided is too long, it must be 255 characters or less.">]>;
|
|
2666
|
+
readonly content: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "Please provide a valid string.">, v.MaxLengthAction<string, 5000, "The string you provided is too long, please abbreviate your string to be 5000 characters or less.">]>;
|
|
2667
|
+
readonly threadOf: v.OptionalSchema<v.NumberSchema<"please provide a valid id">, undefined>;
|
|
2668
|
+
}, undefined>;
|
|
2669
|
+
type SCreateCommentDocument = v.InferOutput<typeof SCreateCommentDocument>;
|
|
2670
|
+
declare const SUpdateCommentDocument: v.ObjectSchema<{
|
|
2671
|
+
readonly id: v.NumberSchema<"please provide a valid id">;
|
|
2672
|
+
readonly relation: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "Please provide a valid string.">, v.MaxLengthAction<string, 255, "The string you provided is too long, it must be 255 characters or less.">]>;
|
|
2673
|
+
readonly content: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "Please provide a valid string.">, v.MaxLengthAction<string, 5000, "The string you provided is too long, please abbreviate your string to be 5000 characters or less.">]>;
|
|
2674
|
+
}, undefined>;
|
|
2675
|
+
type SUpdateCommentDocument = v.InferOutput<typeof SUpdateCommentDocument>;
|
|
2676
|
+
declare const SDeleteCommentDocument: v.ObjectSchema<{
|
|
2677
|
+
readonly id: v.NumberSchema<"please provide a valid id">;
|
|
2678
|
+
readonly relation: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "Please provide a valid string.">, v.MaxLengthAction<string, 255, "The string you provided is too long, it must be 255 characters or less.">]>;
|
|
2679
|
+
}, undefined>;
|
|
2680
|
+
type SDeleteCommentDocument = v.InferOutput<typeof SDeleteCommentDocument>;
|
|
2681
|
+
declare const SReportCommentDocument: v.ObjectSchema<{
|
|
2682
|
+
readonly commentId: v.NumberSchema<"please provide a valid id">;
|
|
2683
|
+
readonly relation: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "Please provide a valid string.">, v.MaxLengthAction<string, 255, "The string you provided is too long, it must be 255 characters or less.">]>;
|
|
2684
|
+
readonly reason: v.PicklistSchema<("BAD_WORDS" | "OTHER" | "DISCRIMINATION" | "IRRELEVANT" | "INAPPROPRIATE" | "SPAM")[], "You must select a valid reason for reporting this comment.">;
|
|
2685
|
+
readonly content: v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "Please provide a valid string.">, v.MaxLengthAction<string, 5000, "The string you provided is too long, please abbreviate your string to be 5000 characters or less.">]>;
|
|
2686
|
+
}, undefined>;
|
|
2687
|
+
type SReportCommentDocument = v.InferOutput<typeof SReportCommentDocument>;
|
|
2688
|
+
|
|
2512
2689
|
declare const QuerySortContentPillars: v.OptionalSchema<v.ObjectSchema<{
|
|
2513
2690
|
readonly key: v.PicklistSchema<["id", "title", "slug", "createdAt", "updatedAt"], undefined>;
|
|
2514
2691
|
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
@@ -3216,7 +3393,7 @@ declare const SConnectOneEntityRelation: v.ObjectSchema<{
|
|
|
3216
3393
|
type SConnectOneEntityRelation = v.InferOutput<typeof SConnectOneEntityRelation>;
|
|
3217
3394
|
type SDisconnectOneEntityRelationIn = v.InferInput<typeof SDisconnectOneEntityRelation>;
|
|
3218
3395
|
declare const SDisconnectOneEntityRelation: v.ObjectSchema<{
|
|
3219
|
-
readonly disconnect: v.
|
|
3396
|
+
readonly disconnect: v.UnionSchema<[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">]>, v.ObjectSchema<{
|
|
3220
3397
|
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">]>;
|
|
3221
3398
|
readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
|
|
3222
3399
|
readonly before: 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">]>;
|
|
@@ -3229,34 +3406,12 @@ declare const SDisconnectOneEntityRelation: v.ObjectSchema<{
|
|
|
3229
3406
|
}, undefined>], undefined>]>, {
|
|
3230
3407
|
readonly end: true;
|
|
3231
3408
|
}>, undefined>;
|
|
3232
|
-
}, undefined>], undefined
|
|
3233
|
-
documentId: string;
|
|
3234
|
-
position?: {
|
|
3235
|
-
before: string;
|
|
3236
|
-
} | {
|
|
3237
|
-
after: string;
|
|
3238
|
-
} | {
|
|
3239
|
-
start: boolean;
|
|
3240
|
-
} | {
|
|
3241
|
-
end: boolean;
|
|
3242
|
-
} | undefined;
|
|
3243
|
-
})[], 1, "At least one document ID is required to disconnect">, v.MaxLengthAction<(string | {
|
|
3244
|
-
documentId: string;
|
|
3245
|
-
position?: {
|
|
3246
|
-
before: string;
|
|
3247
|
-
} | {
|
|
3248
|
-
after: string;
|
|
3249
|
-
} | {
|
|
3250
|
-
start: boolean;
|
|
3251
|
-
} | {
|
|
3252
|
-
end: boolean;
|
|
3253
|
-
} | undefined;
|
|
3254
|
-
})[], 100, "A maximum of 100 document IDs can be disconnected per request">]>;
|
|
3409
|
+
}, undefined>], undefined>;
|
|
3255
3410
|
}, undefined>;
|
|
3256
3411
|
type SDisconnectOneEntityRelation = v.InferOutput<typeof SDisconnectOneEntityRelation>;
|
|
3257
3412
|
type SSetOneEntityRelationIn = v.InferInput<typeof SSetOneEntityRelation>;
|
|
3258
3413
|
declare const SSetOneEntityRelation: v.ObjectSchema<{
|
|
3259
|
-
readonly set: v.
|
|
3414
|
+
readonly set: v.UnionSchema<[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">]>, v.ObjectSchema<{
|
|
3260
3415
|
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">]>;
|
|
3261
3416
|
readonly position: v.OptionalSchema<v.SchemaWithFallback<v.SchemaWithPipe<readonly [v.UnionSchema<[v.ObjectSchema<{
|
|
3262
3417
|
readonly before: 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">]>;
|
|
@@ -3269,18 +3424,7 @@ declare const SSetOneEntityRelation: v.ObjectSchema<{
|
|
|
3269
3424
|
}, undefined>], undefined>]>, {
|
|
3270
3425
|
readonly end: true;
|
|
3271
3426
|
}>, undefined>;
|
|
3272
|
-
}, undefined>], undefined
|
|
3273
|
-
documentId: string;
|
|
3274
|
-
position?: {
|
|
3275
|
-
before: string;
|
|
3276
|
-
} | {
|
|
3277
|
-
after: string;
|
|
3278
|
-
} | {
|
|
3279
|
-
start: boolean;
|
|
3280
|
-
} | {
|
|
3281
|
-
end: boolean;
|
|
3282
|
-
} | undefined;
|
|
3283
|
-
})[], 1, "At least one document ID is required to set a relation">]>;
|
|
3427
|
+
}, undefined>], undefined>;
|
|
3284
3428
|
}, undefined>;
|
|
3285
3429
|
type SSetOneEntityRelation = v.InferOutput<typeof SSetOneEntityRelation>;
|
|
3286
3430
|
|
|
@@ -4055,6 +4199,7 @@ declare const IsValidName: v.SchemaWithPipe<readonly [v.StringSchema<"please pro
|
|
|
4055
4199
|
declare const IsValidOrUndefinedName: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a name">, v.TrimAction, v.MinLengthAction<string, 2, "the name is too short, it must be at least 2 characters">, v.MaxLengthAction<string, 255, "the name is too long, it must be 255 characters or less">]>, undefined>;
|
|
4056
4200
|
|
|
4057
4201
|
declare const IsValidReferenceId: v.NumberSchema<"please provide a valid id">;
|
|
4202
|
+
declare const IsValidOrUndefinedReferenceId: v.OptionalSchema<v.NumberSchema<"please provide a valid id">, undefined>;
|
|
4058
4203
|
declare const IsValidReferenceDocumentId: v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>;
|
|
4059
4204
|
declare const IsValidOrUndefinedReferenceDocumentId: 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>;
|
|
4060
4205
|
declare const IsValidReferenceDocumentIdList: v.SchemaWithPipe<readonly [v.ArraySchema<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>, v.MinLengthAction<string[], 1, "please provide at least one document id">]>;
|
|
@@ -4134,4 +4279,4 @@ declare const IsValidOrUndefinedUrlUtmTerm: v.OptionalSchema<v.SchemaWithPipe<re
|
|
|
4134
4279
|
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: - _ .">]>;
|
|
4135
4280
|
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>;
|
|
4136
4281
|
|
|
4137
|
-
export { type AuthorizedUserDocument, type BaseDocument, type BlockAnnouncementBar, type BlockBrandLogos, type BlockButtonGroup, type BlockContact, type BlockCtaLink, type BlockFaq, type BlockFullscreenContent, type BlockFullscreenContentType, type BlockGraphicImage, type BlockPullQuote, type BlockSectionTitle, 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 ComponentBlockGraphicImage, type ComponentBlockPullQuote, type ComponentBlockSectionTitle, type ComponentBlockTextDetails, type ComponentBlockVideo, type ComponentBrandStyleguideColor, type ComponentBrandStyleguideFont, type ComponentFormDownload, type ComponentFormSelect, type ComponentMetaSocial, 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 FAQPageDocument, type FormDownload, type FormDownloadKeys, type FormSelect, type FormSelectInputOption, type FormUID, type GCFlyTourDocument, type GCFlyTourSnapDocument, InvalidClientTermMin, InvalidClientTermNumber, InvalidCompanyName, InvalidCompanyNameMaxLength, InvalidCsvFileType, InvalidDestinationUrl, InvalidFirstName, InvalidFirstNameMaxLength, InvalidFullName, InvalidFullNameMaxLength, InvalidInputRobot, InvalidInstrustryName, InvalidInstrustryNameMaxLength, InvalidLastName, InvalidLastNameMaxLength, InvalidListOfUrls, InvalidLongStringMax, InvalidPhoneNumber, InvalidPhoneNumberType, InvalidPreferredName, InvalidPreferredNameMaxLength, InvalidProductInterestMaxLength, InvalidRangeValueOneToFive, InvalidRefPageMaxLength, InvalidResumeFileType, InvalidShortStringMax, InvalidUserMessage, InvalidUserMessageMaxLength, InvalidUserTitle, InvalidUserTitleMaxLength, InvalidUtmLink, IsValidBlocked, IsValidBlogPostStatus, IsValidCaptchaToken, IsValidClientClassification, IsValidClientClassificationOption, IsValidClientClassificationSelectOptions, IsValidClientProjectPhase, IsValidClientProjectStatus, IsValidClientTerm, IsValidClientUserScope, IsValidClientUserScopes, IsValidCompanyName, IsValidCompanyNameRequired, IsValidConfirmed, IsValidCost, IsValidCsvFile, IsValidDescription, IsValidDestinationUrl, IsValidFileReferenceId, IsValidFirstName, IsValidFullName, IsValidIndustryName, IsValidInteger, IsValidIsActive, IsValidIsBoolean, IsValidIsSecure, IsValidLabel, IsValidLastName, IsValidLongString, IsValidLongStringNoMin, IsValidMediaFile, IsValidMediaFileList, IsValidName, IsValidNumber, IsValidNumberOfEmployees, IsValidOrUndefinedBlocked, IsValidOrUndefinedBlogPostStatus, IsValidOrUndefinedBlogPostStatusFallback, IsValidOrUndefinedClientClassification, IsValidOrUndefinedClientProjectPhase, IsValidOrUndefinedClientProjectStatus, IsValidOrUndefinedConfirmed, IsValidOrUndefinedCost, IsValidOrUndefinedDescription, IsValidOrUndefinedDestinationUrl, IsValidOrUndefinedIsActive, IsValidOrUndefinedIsBoolean, IsValidOrUndefinedIsSecure, IsValidOrUndefinedIsoDate, IsValidOrUndefinedIsoDateTime, IsValidOrUndefinedLabel, IsValidOrUndefinedLongString, IsValidOrUndefinedLongStringNoMin, IsValidOrUndefinedMetricInteger, IsValidOrUndefinedMetricNumber, IsValidOrUndefinedName, IsValidOrUndefinedPassword, IsValidOrUndefinedPhoneNumber, IsValidOrUndefinedProvider, IsValidOrUndefinedReferenceDocumentId, IsValidOrUndefinedReferenceDocumentIdList, IsValidOrUndefinedShortString, IsValidOrUndefinedShortStringNoMin, IsValidOrUndefinedSlug, IsValidOrUndefinedSlugNoMin, IsValidOrUndefinedStringList, IsValidOrUndefinedStringListTransformed, IsValidOrUndefinedStringSepListOfUrls, IsValidOrUndefinedUrl, IsValidOrUndefinedUrlDestination, IsValidOrUndefinedUrlDomain, IsValidOrUndefinedUrlFragment, IsValidOrUndefinedUrlPath, IsValidOrUndefinedUrlProtocol, IsValidOrUndefinedUrlQuery, IsValidOrUndefinedUrlUtmCampaign, IsValidOrUndefinedUrlUtmContent, IsValidOrUndefinedUrlUtmCreativeFormat, IsValidOrUndefinedUrlUtmId, IsValidOrUndefinedUrlUtmKey, IsValidOrUndefinedUrlUtmMedium, IsValidOrUndefinedUrlUtmSource, IsValidOrUndefinedUrlUtmTerm, IsValidOrUndefinedUserEmail, IsValidOrUndefinedUsername, IsValidOrUndefinedUtmCampaignKeyName, IsValidOrUndefinedUtmLink, IsValidOrUndefinedValue, IsValidPassword, IsValidPhoneNumberRequired, IsValidPositiveInteger, IsValidPreferredName, IsValidProductInterest, IsValidProvider, IsValidRangeValueOneToFive, IsValidRefPage, IsValidReferenceDocumentId, IsValidReferenceDocumentIdList, IsValidReferenceId, IsValidResumeFile, IsValidShortString, IsValidShortStringNoMin, IsValidSlug, IsValidStringList, IsValidStringListTransformed, IsValidStringSepListOfUrls, IsValidUrl, IsValidUrlDestination, IsValidUrlDomain, IsValidUrlFragment, IsValidUrlList, IsValidUrlPath, IsValidUrlProtocol, IsValidUrlQuery, IsValidUrlUtmCampaign, IsValidUrlUtmContent, IsValidUrlUtmCreativeFormat, IsValidUrlUtmId, IsValidUrlUtmKey, IsValidUrlUtmMedium, IsValidUrlUtmSource, IsValidUrlUtmTerm, IsValidUserConsent, IsValidUserEmail, IsValidUserMessage, IsValidUserMessageRequired, IsValidUserRole, IsValidUserTitle, IsValidUserTitleRequired, IsValidUsername, IsValidUtmCampaignKeyName, IsValidUtmLink, IsValidValue, IsoDateSchema, IsoDateTimeSchema, 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 MetaSocial, type MetaSocialNetwork, 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, QuerySortGCFlyTourSnaps, QuerySortGCFlyTours, QuerySortMediaContentType, QuerySortMediaPlatforms, QuerySortTeamMembers, QuerySortTeamworkProjectHealth, QuerySortUrlRedirects, QuerySortUsers, QuerySortUtmTrackingLinks, QueryStrapiByDocumentId, QueryStrapiByEmail, QueryStrapiById, QueryStrapiByName, QueryStrapiByPhone, QueryStrapiBySlug, QueryStrapiPaginated, QueryStrapiPaginatedUrlRedirects, QueryStrapiSearchBlogPosts, QueryStrapiSearchBlogPostsBySlug, QueryStrapiSearchCategories, QueryStrapiSearchClientContentPillars, QueryStrapiSearchClientMediaPlatformContentTypes, QueryStrapiSearchClientMediaPlatforms, QueryStrapiSearchClientProjects, QueryStrapiSearchClientReports, QueryStrapiSearchClientStyleguide, QueryStrapiSearchClients, QueryStrapiSearchContentPillars, QueryStrapiSearchGCFlyTourSnaps, QueryStrapiSearchGCFlyTours, QueryStrapiSearchMediaContentTypes, QueryStrapiSearchMediaPlatforms, QueryStrapiSearchTeamMembers, QueryStrapiSearchTeamworkProjectHealth, 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, SAssociateClientsToGCFlyTour, SAssociateMediaContentTypesToClientMediaPlatform, SAssociateMediaContentTypesToMediaPlatform, SAssociateMediaPlatformsToMediaContentType, SAuthConnectProviderConfirmation, SAuthConnectProviderRedirectSearch, SAuthRawAccessToken, SChangePassword, SConnectManyEntityRelation, type SConnectManyEntityRelationIn, SConnectOneEntityRelation, type SConnectOneEntityRelationIn, SCreateCategoryDocument, SCreateClientContentPillarDocument, SCreateClientDocument, SCreateClientMediaPlatformContentTypeDocument, SCreateClientMediaPlatformDocument, SCreateClientProjectDocument, SCreateClientReportDocument, SCreateClientStyleguideDocument, SCreateClientUserDocument, SCreateContentPillarDocument, SCreateGCFlyTourDocument, SCreateGCFlyTourSnapDocument, 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, SUpdateGCFlyTourDocument, SUpdateGCFlyTourDocumentRequest, SUpdateGCFlyTourSnapDocument, SUpdateGCFlyTourSnapDocumentRequest, 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 SliderBreakpoint, type SliderOrigin, type SliderSettings, type SliderSpacing, type Slideshow, type SlideshowComponentProps, type SlideshowComponentSlideSettings, 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 TeamworkActivePages, type TeamworkCompany, type TeamworkLockdown, type TeamworkProject, type TeamworkProjectHealthProjectStatus, TeamworkProjectHealthProjectStatusOptions, TeamworkProjectHealthSelectSortOptions, type TeamworkProjectHealthSortKey, type TeamworkProjectResponse, type TeamworkProjectResponseMeta, type TeamworkProjectTaskStat, type TeamworkProjectUpdate, type TeamworkProjectsResponse, type TeamworkRelatedMeta, type TeamworkResponseMeta, type TeamworkResponseMetaPagination, type TeamworkResponseMetaProjectStats, type TeamworkTag, type TeamworkTagResponse, type TeamworkTagResponseMeta, type TeamworkTagsResponse, type TeamworkTask, type TeamworkTaskCard, type TeamworkTaskResponse, type TeamworkTaskResponseMeta, type TeamworkTaskUserPermissions, type TeamworkTasklist, type TeamworkTasklistResponse, type TeamworkTasklistResponseMeta, type TeamworkTasklistsResponse, type TeamworkTasksResponse, type TeamworkUserAccount, 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 };
|
|
4282
|
+
export { type AuthorizedUserDocument, type BaseDocument, type BlockAnnouncementBar, type BlockBrandLogos, type BlockButtonGroup, type BlockContact, type BlockCtaLink, type BlockFaq, type BlockFullscreenContent, type BlockFullscreenContentType, type BlockGraphicImage, type BlockPullQuote, type BlockSectionTitle, 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, CommentApprovalStatus, CommentApprovalStatusOptions, type CommentDocument, type CommentReportDocument, type ComponentBlockAnnouncementBar, type ComponentBlockBrandLogos, type ComponentBlockButtonGroup, type ComponentBlockContact, type ComponentBlockCtaLink, type ComponentBlockFaq, type ComponentBlockFullscreenContent, type ComponentBlockGraphicImage, type ComponentBlockPullQuote, type ComponentBlockSectionTitle, type ComponentBlockTextDetails, type ComponentBlockVideo, type ComponentBrandStyleguideColor, type ComponentBrandStyleguideFont, type ComponentFormDownload, type ComponentFormSelect, type ComponentMetaSocial, 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 FAQPageDocument, type FormDownload, type FormDownloadKeys, type FormSelect, type FormSelectInputOption, type FormUID, type GCFlyTourDocument, type GCFlyTourSnapDocument, InvalidClientTermMin, InvalidClientTermNumber, InvalidCompanyName, InvalidCompanyNameMaxLength, InvalidCsvFileType, InvalidDestinationUrl, InvalidFirstName, InvalidFirstNameMaxLength, InvalidFullName, InvalidFullNameMaxLength, InvalidInputRobot, InvalidInstrustryName, InvalidInstrustryNameMaxLength, InvalidLastName, InvalidLastNameMaxLength, InvalidListOfUrls, InvalidLongStringMax, InvalidPhoneNumber, InvalidPhoneNumberType, InvalidPreferredName, InvalidPreferredNameMaxLength, InvalidProductInterestMaxLength, InvalidRangeValueOneToFive, InvalidRefPageMaxLength, InvalidResumeFileType, InvalidShortStringMax, InvalidUserMessage, InvalidUserMessageMaxLength, InvalidUserTitle, InvalidUserTitleMaxLength, InvalidUtmLink, IsValidBlocked, IsValidBlogPostStatus, IsValidCaptchaToken, IsValidClientClassification, IsValidClientClassificationOption, IsValidClientClassificationSelectOptions, IsValidClientProjectPhase, IsValidClientProjectStatus, IsValidClientTerm, IsValidClientUserScope, IsValidClientUserScopes, IsValidCompanyName, IsValidCompanyNameRequired, IsValidConfirmed, IsValidCost, IsValidCsvFile, IsValidDescription, IsValidDestinationUrl, IsValidFileReferenceId, IsValidFirstName, IsValidFullName, IsValidIndustryName, IsValidInteger, IsValidIsActive, IsValidIsBoolean, IsValidIsSecure, IsValidLabel, IsValidLastName, IsValidLongString, IsValidLongStringNoMin, IsValidMediaFile, IsValidMediaFileList, IsValidName, IsValidNumber, IsValidNumberOfEmployees, IsValidOrUndefinedBlocked, IsValidOrUndefinedBlogPostStatus, IsValidOrUndefinedBlogPostStatusFallback, IsValidOrUndefinedClientClassification, IsValidOrUndefinedClientProjectPhase, IsValidOrUndefinedClientProjectStatus, IsValidOrUndefinedConfirmed, IsValidOrUndefinedCost, IsValidOrUndefinedDescription, IsValidOrUndefinedDestinationUrl, IsValidOrUndefinedIsActive, IsValidOrUndefinedIsBoolean, IsValidOrUndefinedIsSecure, IsValidOrUndefinedIsoDate, IsValidOrUndefinedIsoDateTime, IsValidOrUndefinedLabel, IsValidOrUndefinedLongString, IsValidOrUndefinedLongStringNoMin, IsValidOrUndefinedMetricInteger, IsValidOrUndefinedMetricNumber, IsValidOrUndefinedName, IsValidOrUndefinedPassword, IsValidOrUndefinedPhoneNumber, IsValidOrUndefinedProvider, IsValidOrUndefinedReferenceDocumentId, IsValidOrUndefinedReferenceDocumentIdList, IsValidOrUndefinedReferenceId, IsValidOrUndefinedShortString, IsValidOrUndefinedShortStringNoMin, IsValidOrUndefinedSlug, IsValidOrUndefinedSlugNoMin, IsValidOrUndefinedStringList, IsValidOrUndefinedStringListTransformed, IsValidOrUndefinedStringSepListOfUrls, IsValidOrUndefinedUrl, IsValidOrUndefinedUrlDestination, IsValidOrUndefinedUrlDomain, IsValidOrUndefinedUrlFragment, IsValidOrUndefinedUrlPath, IsValidOrUndefinedUrlProtocol, IsValidOrUndefinedUrlQuery, IsValidOrUndefinedUrlUtmCampaign, IsValidOrUndefinedUrlUtmContent, IsValidOrUndefinedUrlUtmCreativeFormat, IsValidOrUndefinedUrlUtmId, IsValidOrUndefinedUrlUtmKey, IsValidOrUndefinedUrlUtmMedium, IsValidOrUndefinedUrlUtmSource, IsValidOrUndefinedUrlUtmTerm, IsValidOrUndefinedUserEmail, IsValidOrUndefinedUsername, IsValidOrUndefinedUtmCampaignKeyName, IsValidOrUndefinedUtmLink, IsValidOrUndefinedValue, IsValidPassword, IsValidPhoneNumberRequired, IsValidPositiveInteger, IsValidPreferredName, IsValidProductInterest, IsValidProvider, IsValidRangeValueOneToFive, IsValidRefPage, IsValidReferenceDocumentId, IsValidReferenceDocumentIdList, IsValidReferenceId, IsValidResumeFile, IsValidShortString, IsValidShortStringNoMin, IsValidSlug, IsValidStringList, IsValidStringListTransformed, IsValidStringSepListOfUrls, IsValidUrl, IsValidUrlDestination, IsValidUrlDomain, IsValidUrlFragment, IsValidUrlList, IsValidUrlPath, IsValidUrlProtocol, IsValidUrlQuery, IsValidUrlUtmCampaign, IsValidUrlUtmContent, IsValidUrlUtmCreativeFormat, IsValidUrlUtmId, IsValidUrlUtmKey, IsValidUrlUtmMedium, IsValidUrlUtmSource, IsValidUrlUtmTerm, IsValidUserConsent, IsValidUserEmail, IsValidUserMessage, IsValidUserMessageRequired, IsValidUserRole, IsValidUserTitle, IsValidUserTitleRequired, IsValidUsername, IsValidUtmCampaignKeyName, IsValidUtmLink, IsValidValue, IsoDateSchema, IsoDateTimeSchema, 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 MetaSocial, type MetaSocialNetwork, 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, QuerySortGCFlyTourSnaps, QuerySortGCFlyTours, QuerySortMediaContentType, QuerySortMediaPlatforms, QuerySortTeamMembers, QuerySortTeamworkProjectHealth, QuerySortUrlRedirects, QuerySortUsers, QuerySortUtmTrackingLinks, QueryStrapiByDocumentId, QueryStrapiByEmail, QueryStrapiById, QueryStrapiByName, QueryStrapiByPhone, QueryStrapiBySlug, QueryStrapiComments, QueryStrapiCommentsByAuthor, QueryStrapiFilterComments, QueryStrapiPaginated, QueryStrapiPaginatedUrlRedirects, QueryStrapiSearchBlogPosts, QueryStrapiSearchBlogPostsBySlug, QueryStrapiSearchCategories, QueryStrapiSearchClientContentPillars, QueryStrapiSearchClientMediaPlatformContentTypes, QueryStrapiSearchClientMediaPlatforms, QueryStrapiSearchClientProjects, QueryStrapiSearchClientReports, QueryStrapiSearchClientStyleguide, QueryStrapiSearchClients, QueryStrapiSearchContentPillars, QueryStrapiSearchGCFlyTourSnaps, QueryStrapiSearchGCFlyTours, QueryStrapiSearchMediaContentTypes, QueryStrapiSearchMediaPlatforms, QueryStrapiSearchTeamMembers, QueryStrapiSearchTeamworkProjectHealth, QueryStrapiSearchUtmTrackingLinks, QueryStrapiSortComments, QueryStrapiUrlRedirectsByFrom, QueryStrapiUsers, QueryStrapiUsersByIdentifier, REGEX_BRAND_COLOR_SLUG, REGEX_DOMAIN, REGEX_NANP_PHONE, REGEX_URL_SLUG, REGEX_UTM_VALUE, ROLE_PERMISSIONS, ReportCommentReason, ReportCommentReasonOptions, type ResumeDocument, type RichTextBlock, type RichTextBlockChildren, type RoleDocument, type RoleType, type RolesWithPermissions, SAssociateClientMediaPlatformContentTypesToMediaContentType, SAssociateClientToClientProjectDocument, SAssociateClientsToGCFlyTour, SAssociateMediaContentTypesToClientMediaPlatform, SAssociateMediaContentTypesToMediaPlatform, SAssociateMediaPlatformsToMediaContentType, SAuthConnectProviderConfirmation, SAuthConnectProviderRedirectSearch, SAuthRawAccessToken, SChangePassword, SConnectManyEntityRelation, type SConnectManyEntityRelationIn, SConnectOneEntityRelation, type SConnectOneEntityRelationIn, SCreateCategoryDocument, SCreateClientContentPillarDocument, SCreateClientDocument, SCreateClientMediaPlatformContentTypeDocument, SCreateClientMediaPlatformDocument, SCreateClientProjectDocument, SCreateClientReportDocument, SCreateClientStyleguideDocument, SCreateClientUserDocument, SCreateCommentDocument, SCreateContentPillarDocument, SCreateGCFlyTourDocument, SCreateGCFlyTourSnapDocument, SCreateLeadDocument, SCreateMediaContentTypeDocument, SCreateMediaPlatformDocument, SCreateMultipleStrapiMediaUploadDocument, SCreateNewsletterSignup, SCreateNewsletterSignupDocument, SCreateResume, SCreateResumeInfo, SCreateResumeInfoDocument, SCreateStrapiMediaUploadDocument, SCreateUserDocument, SCreateUtmTrackingLinkDocument, SCreateUtmTrackingLinkDocumentRequest, SCreateUtmTrackingLinkParts, SDeleteCommentDocument, SDisconnectManyEntityRelation, type SDisconnectManyEntityRelationIn, SDisconnectOneEntityRelation, type SDisconnectOneEntityRelationIn, SEntityRelation, type SEntityRelationIn, SEntityRelationPosition, SEntityRelationPositionAfter, SEntityRelationPositionBefore, SEntityRelationPositionEnd, type SEntityRelationPositionIn, SEntityRelationPositionStart, SForgotUserPassword, SFormCreateMultipleUtmTrackingLinkDocuments, SLoginUser, SQueryListClientUserDocuments, SReadUserAccountByDocumentId, SReadUserAccountById, SReadUtmTrackingLinkDocumentByUrl, SRegisterUser, SReportCommentDocument, 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, SUpdateCommentDocument, SUpdateContentPillarDocument, SUpdateContentPillarDocumentRequest, SUpdateGCFlyTourDocument, SUpdateGCFlyTourDocumentRequest, SUpdateGCFlyTourSnapDocument, SUpdateGCFlyTourSnapDocumentRequest, 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 SliderBreakpoint, type SliderOrigin, type SliderSettings, type SliderSpacing, type Slideshow, type SlideshowComponentProps, type SlideshowComponentSlideSettings, 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 TeamworkActivePages, type TeamworkCompany, type TeamworkLockdown, type TeamworkProject, type TeamworkProjectHealthProjectStatus, TeamworkProjectHealthProjectStatusOptions, TeamworkProjectHealthSelectSortOptions, type TeamworkProjectHealthSortKey, type TeamworkProjectResponse, type TeamworkProjectResponseMeta, type TeamworkProjectTaskStat, type TeamworkProjectUpdate, type TeamworkProjectsResponse, type TeamworkRelatedMeta, type TeamworkResponseMeta, type TeamworkResponseMetaPagination, type TeamworkResponseMetaProjectStats, type TeamworkTag, type TeamworkTagResponse, type TeamworkTagResponseMeta, type TeamworkTagsResponse, type TeamworkTask, type TeamworkTaskCard, type TeamworkTaskResponse, type TeamworkTaskResponseMeta, type TeamworkTaskUserPermissions, type TeamworkTasklist, type TeamworkTasklistResponse, type TeamworkTasklistResponseMeta, type TeamworkTasklistsResponse, type TeamworkTasksResponse, type TeamworkUserAccount, 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 };
|