@getcommunity/gc-validators 0.0.126 → 0.0.127
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 +113 -16
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1162 -1068
- package/dist/index.d.ts +1162 -1068
- package/dist/index.js +110 -17
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -94,602 +94,106 @@ 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
|
+
|
|
97
105
|
/**
|
|
98
|
-
*
|
|
99
|
-
*
|
|
100
|
-
* @reference https://github.com/WebDevSimplified/permission-system/blob/main/auth-abac.ts
|
|
106
|
+
* @description Strapi Theme Options
|
|
101
107
|
*/
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
readonly update: false;
|
|
192
|
-
readonly delete: false;
|
|
193
|
-
};
|
|
194
|
-
};
|
|
195
|
-
readonly public: {
|
|
196
|
-
readonly client: {
|
|
197
|
-
readonly access: false;
|
|
198
|
-
readonly billing: false;
|
|
199
|
-
readonly owner: false;
|
|
200
|
-
readonly manager: false;
|
|
201
|
-
readonly admin: false;
|
|
202
|
-
readonly list: false;
|
|
203
|
-
readonly create: false;
|
|
204
|
-
readonly read: false;
|
|
205
|
-
readonly update: false;
|
|
206
|
-
readonly delete: false;
|
|
207
|
-
};
|
|
208
|
-
readonly "client-content-pillar": {
|
|
209
|
-
readonly list: false;
|
|
210
|
-
readonly create: false;
|
|
211
|
-
readonly read: false;
|
|
212
|
-
readonly update: false;
|
|
213
|
-
readonly delete: false;
|
|
214
|
-
};
|
|
215
|
-
readonly "client-media-platform": {
|
|
216
|
-
readonly list: false;
|
|
217
|
-
readonly create: false;
|
|
218
|
-
readonly read: false;
|
|
219
|
-
readonly update: false;
|
|
220
|
-
readonly delete: false;
|
|
221
|
-
};
|
|
222
|
-
readonly "client-project": {
|
|
223
|
-
readonly list: false;
|
|
224
|
-
readonly create: false;
|
|
225
|
-
readonly read: false;
|
|
226
|
-
readonly update: false;
|
|
227
|
-
readonly delete: false;
|
|
228
|
-
readonly assign: false;
|
|
229
|
-
};
|
|
230
|
-
readonly "client-report": {
|
|
231
|
-
readonly list: false;
|
|
232
|
-
readonly create: false;
|
|
233
|
-
readonly read: false;
|
|
234
|
-
readonly update: false;
|
|
235
|
-
readonly delete: false;
|
|
236
|
-
};
|
|
237
|
-
readonly "client-styleguide": {
|
|
238
|
-
readonly list: false;
|
|
239
|
-
readonly create: false;
|
|
240
|
-
readonly read: false;
|
|
241
|
-
readonly update: false;
|
|
242
|
-
readonly delete: false;
|
|
243
|
-
};
|
|
244
|
-
readonly "client-user": {
|
|
245
|
-
readonly list: false;
|
|
246
|
-
readonly create: false;
|
|
247
|
-
readonly read: false;
|
|
248
|
-
readonly update: false;
|
|
249
|
-
readonly delete: false;
|
|
250
|
-
};
|
|
251
|
-
readonly "content-pillar": {
|
|
252
|
-
readonly list: false;
|
|
253
|
-
readonly create: false;
|
|
254
|
-
readonly read: false;
|
|
255
|
-
readonly update: false;
|
|
256
|
-
readonly delete: false;
|
|
257
|
-
};
|
|
258
|
-
readonly "media-platform": {
|
|
259
|
-
readonly list: false;
|
|
260
|
-
readonly create: false;
|
|
261
|
-
readonly read: false;
|
|
262
|
-
readonly update: false;
|
|
263
|
-
readonly delete: false;
|
|
264
|
-
};
|
|
265
|
-
readonly "media-content-type": {
|
|
266
|
-
readonly list: false;
|
|
267
|
-
readonly create: false;
|
|
268
|
-
readonly read: false;
|
|
269
|
-
readonly update: false;
|
|
270
|
-
readonly delete: false;
|
|
271
|
-
};
|
|
272
|
-
readonly "user-account": {
|
|
273
|
-
readonly list: false;
|
|
274
|
-
readonly create: false;
|
|
275
|
-
readonly read: false;
|
|
276
|
-
readonly update: false;
|
|
277
|
-
readonly delete: false;
|
|
278
|
-
};
|
|
279
|
-
readonly "utm-tracking-link": {
|
|
280
|
-
readonly list: false;
|
|
281
|
-
readonly create: false;
|
|
282
|
-
readonly read: false;
|
|
283
|
-
readonly update: false;
|
|
284
|
-
readonly delete: false;
|
|
285
|
-
};
|
|
286
|
-
};
|
|
287
|
-
readonly employee: {
|
|
288
|
-
readonly client: {
|
|
289
|
-
readonly access: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientDocument) => boolean;
|
|
290
|
-
readonly billing: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientDocument) => boolean;
|
|
291
|
-
readonly owner: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientDocument) => boolean;
|
|
292
|
-
readonly manager: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientDocument) => boolean;
|
|
293
|
-
readonly admin: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientDocument) => boolean;
|
|
294
|
-
readonly list: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientDocument) => boolean;
|
|
295
|
-
readonly create: false;
|
|
296
|
-
readonly read: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientDocument) => boolean;
|
|
297
|
-
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientDocument) => boolean;
|
|
298
|
-
readonly delete: false;
|
|
299
|
-
};
|
|
300
|
-
readonly "client-content-pillar": {
|
|
301
|
-
readonly list: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientContentPillarDocument) => boolean;
|
|
302
|
-
readonly create: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus) => boolean;
|
|
303
|
-
readonly read: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientContentPillarDocument) => boolean;
|
|
304
|
-
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientContentPillarDocument) => boolean;
|
|
305
|
-
readonly delete: false;
|
|
306
|
-
};
|
|
307
|
-
readonly "client-media-platform": {
|
|
308
|
-
readonly list: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientMediaPlatformDocument) => boolean;
|
|
309
|
-
readonly create: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus) => boolean;
|
|
310
|
-
readonly read: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientMediaPlatformDocument) => boolean;
|
|
311
|
-
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientMediaPlatformDocument) => boolean;
|
|
312
|
-
readonly delete: false;
|
|
313
|
-
};
|
|
314
|
-
readonly "client-project": {
|
|
315
|
-
readonly list: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientProjectDocument) => boolean;
|
|
316
|
-
readonly create: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus) => boolean;
|
|
317
|
-
readonly read: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientProjectDocument) => boolean;
|
|
318
|
-
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientProjectDocument) => boolean;
|
|
319
|
-
readonly delete: false;
|
|
320
|
-
readonly assign: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientProjectDocument) => boolean;
|
|
321
|
-
};
|
|
322
|
-
readonly "client-report": {
|
|
323
|
-
readonly list: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientReportDocument) => boolean;
|
|
324
|
-
readonly create: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus) => boolean;
|
|
325
|
-
readonly read: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientReportDocument) => boolean;
|
|
326
|
-
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientReportDocument) => boolean;
|
|
327
|
-
readonly delete: false;
|
|
328
|
-
};
|
|
329
|
-
readonly "client-styleguide": {
|
|
330
|
-
readonly list: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientStyleguideDocument) => boolean;
|
|
331
|
-
readonly create: false;
|
|
332
|
-
readonly read: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientStyleguideDocument) => boolean;
|
|
333
|
-
readonly update: false;
|
|
334
|
-
readonly delete: false;
|
|
335
|
-
};
|
|
336
|
-
readonly "client-user": {
|
|
337
|
-
readonly list: true;
|
|
338
|
-
readonly create: false;
|
|
339
|
-
readonly read: true;
|
|
340
|
-
readonly update: false;
|
|
341
|
-
readonly delete: false;
|
|
342
|
-
readonly verify: true;
|
|
343
|
-
};
|
|
344
|
-
readonly "content-pillar": {
|
|
345
|
-
readonly list: true;
|
|
346
|
-
readonly create: false;
|
|
347
|
-
readonly read: true;
|
|
348
|
-
readonly update: false;
|
|
349
|
-
readonly delete: false;
|
|
350
|
-
};
|
|
351
|
-
readonly "media-platform": {
|
|
352
|
-
readonly list: true;
|
|
353
|
-
readonly create: false;
|
|
354
|
-
readonly read: true;
|
|
355
|
-
readonly update: false;
|
|
356
|
-
readonly delete: false;
|
|
357
|
-
};
|
|
358
|
-
readonly "media-content-type": {
|
|
359
|
-
readonly list: true;
|
|
360
|
-
readonly create: false;
|
|
361
|
-
readonly read: true;
|
|
362
|
-
readonly update: false;
|
|
363
|
-
readonly delete: false;
|
|
364
|
-
};
|
|
365
|
-
readonly "user-account": {
|
|
366
|
-
readonly list: true;
|
|
367
|
-
readonly create: false;
|
|
368
|
-
readonly read: true;
|
|
369
|
-
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: UserAccountDocument) => boolean;
|
|
370
|
-
readonly delete: false;
|
|
371
|
-
};
|
|
372
|
-
readonly "utm-tracking-link": {
|
|
373
|
-
readonly list: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: UtmTrackingLinkDocument) => boolean;
|
|
374
|
-
readonly create: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus) => boolean;
|
|
375
|
-
readonly read: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: UtmTrackingLinkDocument) => boolean;
|
|
376
|
-
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: UtmTrackingLinkDocument) => boolean;
|
|
377
|
-
readonly delete: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: UtmTrackingLinkDocument) => boolean;
|
|
378
|
-
};
|
|
379
|
-
};
|
|
380
|
-
readonly manager: {
|
|
381
|
-
readonly client: {
|
|
382
|
-
readonly access: true;
|
|
383
|
-
readonly billing: true;
|
|
384
|
-
readonly owner: true;
|
|
385
|
-
readonly manager: true;
|
|
386
|
-
readonly admin: true;
|
|
387
|
-
readonly list: true;
|
|
388
|
-
readonly create: true;
|
|
389
|
-
readonly read: true;
|
|
390
|
-
readonly update: true;
|
|
391
|
-
readonly delete: false;
|
|
392
|
-
};
|
|
393
|
-
readonly "client-content-pillar": {
|
|
394
|
-
readonly list: true;
|
|
395
|
-
readonly create: true;
|
|
396
|
-
readonly read: true;
|
|
397
|
-
readonly update: true;
|
|
398
|
-
readonly delete: true;
|
|
399
|
-
};
|
|
400
|
-
readonly "client-media-platform": {
|
|
401
|
-
readonly list: true;
|
|
402
|
-
readonly create: true;
|
|
403
|
-
readonly read: true;
|
|
404
|
-
readonly update: true;
|
|
405
|
-
readonly delete: true;
|
|
406
|
-
};
|
|
407
|
-
readonly "client-project": {
|
|
408
|
-
readonly list: true;
|
|
409
|
-
readonly create: true;
|
|
410
|
-
readonly read: true;
|
|
411
|
-
readonly update: true;
|
|
412
|
-
readonly delete: true;
|
|
413
|
-
readonly assign: true;
|
|
414
|
-
};
|
|
415
|
-
readonly "client-report": {
|
|
416
|
-
readonly list: true;
|
|
417
|
-
readonly create: true;
|
|
418
|
-
readonly read: true;
|
|
419
|
-
readonly update: true;
|
|
420
|
-
readonly delete: true;
|
|
421
|
-
};
|
|
422
|
-
readonly "client-styleguide": {
|
|
423
|
-
readonly list: true;
|
|
424
|
-
readonly create: true;
|
|
425
|
-
readonly read: true;
|
|
426
|
-
readonly update: true;
|
|
427
|
-
readonly delete: true;
|
|
428
|
-
};
|
|
429
|
-
readonly "client-user": {
|
|
430
|
-
readonly list: true;
|
|
431
|
-
readonly create: true;
|
|
432
|
-
readonly read: true;
|
|
433
|
-
readonly update: true;
|
|
434
|
-
readonly delete: true;
|
|
435
|
-
readonly verify: true;
|
|
436
|
-
};
|
|
437
|
-
readonly "content-pillar": {
|
|
438
|
-
readonly list: true;
|
|
439
|
-
readonly create: true;
|
|
440
|
-
readonly read: true;
|
|
441
|
-
readonly update: true;
|
|
442
|
-
readonly delete: true;
|
|
443
|
-
};
|
|
444
|
-
readonly "media-platform": {
|
|
445
|
-
readonly list: true;
|
|
446
|
-
readonly create: true;
|
|
447
|
-
readonly read: true;
|
|
448
|
-
readonly update: true;
|
|
449
|
-
readonly delete: true;
|
|
450
|
-
};
|
|
451
|
-
readonly "media-content-type": {
|
|
452
|
-
readonly list: true;
|
|
453
|
-
readonly create: true;
|
|
454
|
-
readonly read: true;
|
|
455
|
-
readonly update: true;
|
|
456
|
-
readonly delete: true;
|
|
457
|
-
};
|
|
458
|
-
readonly "user-account": {
|
|
459
|
-
readonly list: true;
|
|
460
|
-
readonly create: false;
|
|
461
|
-
readonly read: true;
|
|
462
|
-
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: UserAccountDocument) => boolean;
|
|
463
|
-
readonly delete: false;
|
|
464
|
-
};
|
|
465
|
-
readonly "utm-tracking-link": {
|
|
466
|
-
readonly list: true;
|
|
467
|
-
readonly create: true;
|
|
468
|
-
readonly read: true;
|
|
469
|
-
readonly update: true;
|
|
470
|
-
readonly delete: true;
|
|
471
|
-
};
|
|
472
|
-
};
|
|
473
|
-
readonly client: {
|
|
474
|
-
readonly client: {
|
|
475
|
-
readonly access: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientDocument) => boolean;
|
|
476
|
-
readonly billing: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientDocument) => boolean;
|
|
477
|
-
readonly owner: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientDocument) => boolean;
|
|
478
|
-
readonly manager: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientDocument) => boolean;
|
|
479
|
-
readonly admin: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientDocument) => boolean;
|
|
480
|
-
readonly list: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientDocument) => boolean;
|
|
481
|
-
readonly create: false;
|
|
482
|
-
readonly read: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientDocument) => boolean;
|
|
483
|
-
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientDocument) => boolean;
|
|
484
|
-
readonly delete: false;
|
|
485
|
-
};
|
|
486
|
-
readonly "client-content-pillar": {
|
|
487
|
-
readonly list: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientContentPillarDocument) => boolean;
|
|
488
|
-
readonly create: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus) => boolean;
|
|
489
|
-
readonly read: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientContentPillarDocument) => boolean;
|
|
490
|
-
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientContentPillarDocument) => boolean;
|
|
491
|
-
readonly delete: false;
|
|
492
|
-
};
|
|
493
|
-
readonly "client-media-platform": {
|
|
494
|
-
readonly list: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientMediaPlatformDocument) => boolean;
|
|
495
|
-
readonly create: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus) => boolean;
|
|
496
|
-
readonly read: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientMediaPlatformDocument) => boolean;
|
|
497
|
-
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientMediaPlatformDocument) => boolean;
|
|
498
|
-
readonly delete: false;
|
|
499
|
-
};
|
|
500
|
-
readonly "client-project": {
|
|
501
|
-
readonly list: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientProjectDocument) => boolean;
|
|
502
|
-
readonly create: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus) => boolean;
|
|
503
|
-
readonly read: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientProjectDocument) => boolean;
|
|
504
|
-
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientProjectDocument) => boolean;
|
|
505
|
-
readonly delete: false;
|
|
506
|
-
readonly assign: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientProjectDocument) => boolean;
|
|
507
|
-
};
|
|
508
|
-
readonly "client-report": {
|
|
509
|
-
readonly list: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientReportDocument) => boolean;
|
|
510
|
-
readonly create: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus) => boolean;
|
|
511
|
-
readonly read: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientReportDocument) => boolean;
|
|
512
|
-
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientReportDocument) => boolean;
|
|
513
|
-
readonly delete: false;
|
|
514
|
-
};
|
|
515
|
-
readonly "client-styleguide": {
|
|
516
|
-
readonly list: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientStyleguideDocument) => boolean;
|
|
517
|
-
readonly create: false;
|
|
518
|
-
readonly read: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientStyleguideDocument) => boolean;
|
|
519
|
-
readonly update: false;
|
|
520
|
-
readonly delete: false;
|
|
521
|
-
};
|
|
522
|
-
readonly "client-user": {
|
|
523
|
-
readonly list: true;
|
|
524
|
-
readonly create: false;
|
|
525
|
-
readonly read: true;
|
|
526
|
-
readonly update: false;
|
|
527
|
-
readonly delete: false;
|
|
528
|
-
readonly verify: true;
|
|
529
|
-
};
|
|
530
|
-
readonly "content-pillar": {
|
|
531
|
-
readonly list: true;
|
|
532
|
-
readonly create: false;
|
|
533
|
-
readonly read: true;
|
|
534
|
-
readonly update: false;
|
|
535
|
-
readonly delete: false;
|
|
536
|
-
};
|
|
537
|
-
readonly "media-platform": {
|
|
538
|
-
readonly list: true;
|
|
539
|
-
readonly create: false;
|
|
540
|
-
readonly read: true;
|
|
541
|
-
readonly update: false;
|
|
542
|
-
readonly delete: false;
|
|
543
|
-
};
|
|
544
|
-
readonly "media-content-type": {
|
|
545
|
-
readonly list: true;
|
|
546
|
-
readonly create: false;
|
|
547
|
-
readonly read: true;
|
|
548
|
-
readonly update: false;
|
|
549
|
-
readonly delete: false;
|
|
550
|
-
};
|
|
551
|
-
readonly "user-account": {
|
|
552
|
-
readonly list: true;
|
|
553
|
-
readonly create: false;
|
|
554
|
-
readonly read: true;
|
|
555
|
-
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: UserAccountDocument) => boolean;
|
|
556
|
-
readonly delete: false;
|
|
557
|
-
};
|
|
558
|
-
readonly "utm-tracking-link": {
|
|
559
|
-
readonly list: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: UtmTrackingLinkDocument) => boolean;
|
|
560
|
-
readonly create: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus) => boolean;
|
|
561
|
-
readonly read: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: UtmTrackingLinkDocument) => boolean;
|
|
562
|
-
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: UtmTrackingLinkDocument) => boolean;
|
|
563
|
-
readonly delete: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: UtmTrackingLinkDocument) => boolean;
|
|
564
|
-
};
|
|
565
|
-
};
|
|
566
|
-
};
|
|
567
|
-
|
|
568
|
-
/**
|
|
569
|
-
* Example usage of ClientEntityScope type
|
|
570
|
-
* @reference https://youtube.com/shorts/zOseJFD447U?si=xX8DYEHdl9YtN7S4
|
|
571
|
-
*
|
|
572
|
-
* > const validScope: ClientEntityScope = "utm-tracking-link:list"; // ✅
|
|
573
|
-
* > const invalidScope: ClientEntityScope = "blog-post:import"; // ❌ Type error!
|
|
574
|
-
*/
|
|
575
|
-
declare const CLIENT_ENTITY_PERMISSIONS: {
|
|
576
|
-
readonly client: readonly ["admin", "owner", "manager", "billing", "access"];
|
|
577
|
-
readonly "client-project": readonly ["list", "create", "read", "update", "delete", "assign"];
|
|
578
|
-
readonly "client-media-platform": readonly ["list", "create", "read", "update", "delete"];
|
|
579
|
-
readonly "client-content-pillar": readonly ["list", "create", "read", "update", "delete"];
|
|
580
|
-
readonly "client-report": readonly ["list", "create", "read", "update", "delete"];
|
|
581
|
-
readonly "client-styleguide": readonly ["list", "create", "read", "update", "delete"];
|
|
582
|
-
readonly "utm-tracking-link": readonly ["list", "create", "read", "update", "delete"];
|
|
583
|
-
};
|
|
584
|
-
type ClientEntityKey = keyof typeof CLIENT_ENTITY_PERMISSIONS;
|
|
585
|
-
type ClientEntityActions<K extends ClientEntityKey = ClientEntityKey> = (typeof CLIENT_ENTITY_PERMISSIONS)[K][number];
|
|
586
|
-
type EntityActionJoin<K extends string, V extends string> = `${K}:${V}`;
|
|
587
|
-
type ClientEntityScope = {
|
|
588
|
-
[K in ClientEntityKey]: EntityActionJoin<K, (typeof CLIENT_ENTITY_PERMISSIONS)[K][number]>;
|
|
589
|
-
}[ClientEntityKey];
|
|
590
|
-
declare const CLIENT_ENTITY_KEYS: ClientEntityKey[];
|
|
591
|
-
declare const CLIENT_ENTITY_SCOPES: ClientEntityScope[];
|
|
592
|
-
|
|
593
|
-
type BaseDocument = {
|
|
594
|
-
id: number;
|
|
595
|
-
documentId: string;
|
|
596
|
-
publishedAt: string;
|
|
597
|
-
createdAt: string;
|
|
598
|
-
updatedAt: string;
|
|
599
|
-
};
|
|
600
|
-
|
|
601
|
-
/**
|
|
602
|
-
* @description Strapi Theme Options
|
|
603
|
-
*/
|
|
604
|
-
type StrapiThemeOptions = "default" | "secondary" | "destructive" | "outline" | "ghost" | "link";
|
|
605
|
-
type StrapiBgColorOptions = "red" | "pink" | "orange" | "yellow" | "green" | "blue-light" | "blue-dark" | "brown-light" | "brown-dark";
|
|
606
|
-
type StrapiTextColorOptions = "light" | "dark";
|
|
607
|
-
type StrapiDirection = "horizontal" | "vertical";
|
|
608
|
-
type StrapiGapSizes = "none" | "small" | "medium" | "large";
|
|
609
|
-
type StrapiLinkType = "email" | "phone" | "social" | "link" | null;
|
|
610
|
-
type StrapiIconPosition = "before" | "after" | "above" | "below";
|
|
611
|
-
type StrapiIconName = "link" | "email" | "phone" | "facebook" | "instagram" | "linkedin" | "tiktok" | "pinterest" | "twitter" | null;
|
|
612
|
-
/**
|
|
613
|
-
* @description Strapi Link Options
|
|
614
|
-
*/
|
|
615
|
-
type StrapiLinkTarget = "_blank" | "_self" | "_parent" | "_top" | null;
|
|
616
|
-
type StrapiLinkReferrerPolicy = "no-referrer" | "no-referrer-when-downgrade" | "origin" | "origin-when-cross-origin" | "same-origin" | "strict-origin-when-cross-origin" | "unsafe-url";
|
|
617
|
-
type StrapiLinkRel = "alternate" | "author" | "bookmark" | "external" | "help" | "license" | "next" | "nofollow" | "noreferrer" | "noopener" | "prev" | "search" | "tag";
|
|
618
|
-
|
|
619
|
-
type FormSelectInputOption = {
|
|
620
|
-
label: string;
|
|
621
|
-
value: string;
|
|
622
|
-
description?: string | null;
|
|
623
|
-
disabled?: boolean;
|
|
624
|
-
meta?: Record<string, any>;
|
|
625
|
-
};
|
|
626
|
-
|
|
627
|
-
type MediaFormat = {
|
|
628
|
-
ext: string;
|
|
629
|
-
url: string;
|
|
630
|
-
hash: string;
|
|
631
|
-
mime: string;
|
|
632
|
-
name: string;
|
|
633
|
-
path: string | null;
|
|
634
|
-
size: number;
|
|
635
|
-
width: number;
|
|
636
|
-
height: number;
|
|
637
|
-
sizeInBytes: number;
|
|
638
|
-
};
|
|
639
|
-
type MediaFormats = {
|
|
640
|
-
large?: MediaFormat;
|
|
641
|
-
small?: MediaFormat;
|
|
642
|
-
medium?: MediaFormat;
|
|
643
|
-
thumbnail?: MediaFormat;
|
|
644
|
-
};
|
|
645
|
-
type MediaUploadDocument = {
|
|
646
|
-
name: string;
|
|
647
|
-
alternativeText: string | null;
|
|
648
|
-
caption: string | null;
|
|
649
|
-
width: number;
|
|
650
|
-
height: number;
|
|
651
|
-
formats?: MediaFormats | null;
|
|
652
|
-
hash: string;
|
|
653
|
-
ext: string;
|
|
654
|
-
mime: string;
|
|
655
|
-
size: number;
|
|
656
|
-
url: string;
|
|
657
|
-
previewUrl: string | null;
|
|
658
|
-
provider: string;
|
|
659
|
-
provider_metadata: null;
|
|
660
|
-
} & BaseDocument;
|
|
661
|
-
|
|
662
|
-
type StrapiPagination = {
|
|
663
|
-
page: number;
|
|
664
|
-
pageSize: number;
|
|
665
|
-
pageCount: number;
|
|
666
|
-
total: number;
|
|
667
|
-
};
|
|
668
|
-
type StrapiResponseMeta = {
|
|
669
|
-
pagination?: StrapiPagination;
|
|
670
|
-
token?: string;
|
|
671
|
-
};
|
|
672
|
-
type StrapiResponseMetaWithPagination = StrapiResponseMeta & {
|
|
673
|
-
pagination: StrapiPagination;
|
|
674
|
-
};
|
|
675
|
-
type StrapiAttributeErrorKey<T> = {
|
|
676
|
-
message: string;
|
|
677
|
-
name: string;
|
|
678
|
-
path: string[];
|
|
679
|
-
value: T[keyof T];
|
|
680
|
-
};
|
|
681
|
-
type StrapiErrorDetail<T> = {
|
|
682
|
-
status: string | number;
|
|
683
|
-
name: string;
|
|
684
|
-
message: string;
|
|
685
|
-
details: Record<keyof T, string>;
|
|
686
|
-
};
|
|
687
|
-
type StrapiAttributeErrorDetail<T> = {
|
|
688
|
-
status: string | number;
|
|
689
|
-
name: string;
|
|
690
|
-
message: string;
|
|
691
|
-
details: {
|
|
692
|
-
errors: StrapiAttributeErrorKey<T>[];
|
|
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>[];
|
|
693
197
|
};
|
|
694
198
|
};
|
|
695
199
|
type StrapiSingleResponse<T> = {
|
|
@@ -714,300 +218,1057 @@ type StrapiAttributeErrorResponse<T> = {
|
|
|
714
218
|
};
|
|
715
219
|
type StrapiErrorResult<T> = StrapiErrorResponse<T> | StrapiAttributeErrorResponse<T>;
|
|
716
220
|
|
|
717
|
-
type SharedLink = {
|
|
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 = {
|
|
718
403
|
id: number;
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
404
|
+
title: string;
|
|
405
|
+
slug: string;
|
|
406
|
+
hex: string;
|
|
722
407
|
};
|
|
723
|
-
type
|
|
408
|
+
type ComponentBrandStyleguideColor = {
|
|
724
409
|
__component: string;
|
|
725
|
-
} &
|
|
410
|
+
} & BrandStyleguideColor;
|
|
726
411
|
|
|
727
|
-
type
|
|
412
|
+
type BrandStyleguideFont = {
|
|
728
413
|
id: number;
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
full_width: boolean;
|
|
414
|
+
title: string;
|
|
415
|
+
slug: string;
|
|
416
|
+
fallbacks: Array<WebSafeFont>;
|
|
417
|
+
src: MediaUploadDocument;
|
|
418
|
+
font_files: Array<MediaUploadDocument>;
|
|
735
419
|
};
|
|
736
|
-
type
|
|
420
|
+
type ComponentBrandStyleguideFont = {
|
|
737
421
|
__component: string;
|
|
738
|
-
} &
|
|
422
|
+
} & BrandStyleguideFont;
|
|
739
423
|
|
|
740
|
-
type
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
};
|
|
748
|
-
type RichTextBlock = {
|
|
749
|
-
type: string;
|
|
750
|
-
children: RichTextBlockChildren[];
|
|
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;
|
|
751
431
|
};
|
|
752
|
-
type
|
|
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 = {
|
|
753
438
|
id: number;
|
|
754
|
-
|
|
439
|
+
form_id: FormUID;
|
|
440
|
+
form_download?: FormDownload | null;
|
|
755
441
|
};
|
|
756
|
-
type
|
|
442
|
+
type ComponentFormSelect = {
|
|
757
443
|
__component: string;
|
|
758
|
-
} &
|
|
444
|
+
} & FormSelect;
|
|
759
445
|
|
|
760
|
-
type
|
|
446
|
+
type SlideType = "image-contain" | "image-cover" | "image-fill" | "image" | "video" | "html" | "website";
|
|
447
|
+
type SlideContent = {
|
|
761
448
|
id: number;
|
|
762
|
-
|
|
763
|
-
|
|
449
|
+
slide_type: SlideType;
|
|
450
|
+
slide_image: MediaUploadDocument | null;
|
|
451
|
+
website_url: string | null;
|
|
452
|
+
html_content: string | null;
|
|
453
|
+
video?: ComponentBlockVideo;
|
|
764
454
|
};
|
|
765
|
-
type
|
|
455
|
+
type ComponentSlideContent = {
|
|
766
456
|
__component: string;
|
|
767
|
-
} &
|
|
457
|
+
} & SlideContent;
|
|
768
458
|
|
|
769
|
-
type
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
459
|
+
type KeenSliderOrigin = number | "center" | "auto" | undefined;
|
|
460
|
+
type KeenSliderSliderSlides = {
|
|
461
|
+
slides: {
|
|
462
|
+
origin: KeenSliderOrigin;
|
|
463
|
+
perView: number;
|
|
464
|
+
spacing: number | undefined;
|
|
465
|
+
};
|
|
775
466
|
};
|
|
776
|
-
|
|
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 = {
|
|
777
477
|
__component: string;
|
|
778
|
-
} &
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
metaRobots: string | null;
|
|
787
|
-
metaViewport: string | null;
|
|
788
|
-
structuredData: {
|
|
789
|
-
[key: string]: string;
|
|
790
|
-
} | null;
|
|
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;
|
|
791
486
|
};
|
|
792
|
-
type
|
|
487
|
+
type ComponentSlideshowSettings = {
|
|
793
488
|
__component: string;
|
|
794
|
-
} &
|
|
489
|
+
} & SlideshowSettings;
|
|
795
490
|
|
|
796
|
-
type
|
|
491
|
+
type Slideshow = {
|
|
797
492
|
id: number;
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
content: RichTextBlock[];
|
|
493
|
+
settings?: SlideshowSettings;
|
|
494
|
+
slider_settings?: SliderSettings[];
|
|
495
|
+
slides?: SlideContent[];
|
|
802
496
|
};
|
|
803
|
-
type
|
|
497
|
+
type ComponentSlideshow = {
|
|
804
498
|
__component: string;
|
|
805
|
-
} &
|
|
499
|
+
} & Slideshow;
|
|
806
500
|
|
|
807
|
-
type
|
|
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 = {
|
|
808
504
|
id: number;
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
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;
|
|
812
624
|
};
|
|
813
|
-
type
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
type BlockButtonGroup = {
|
|
818
|
-
id: number;
|
|
819
|
-
direction: StrapiDirection;
|
|
820
|
-
gap: StrapiGapSizes;
|
|
821
|
-
buttons: SharedButton[];
|
|
625
|
+
type UserAuthorizationLoginResponse = {
|
|
626
|
+
jwt: string;
|
|
627
|
+
user: AuthorizedUserDocument;
|
|
822
628
|
};
|
|
823
|
-
type
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
type BlockContact = {
|
|
828
|
-
id: number;
|
|
829
|
-
link_type: StrapiLinkType;
|
|
830
|
-
label: string;
|
|
831
|
-
destination: string;
|
|
832
|
-
icon: StrapiIconName;
|
|
833
|
-
show_icon: boolean;
|
|
834
|
-
icon_position: StrapiIconPosition;
|
|
835
|
-
full_width: boolean;
|
|
629
|
+
type UserAuthorizationSuccessResponse = {
|
|
630
|
+
jwt: string;
|
|
631
|
+
user: Pick<UserDocument, "id" | "documentId" | "createdAt" | "updatedAt" | "publishedAt" | "username" | "email" | "provider" | "confirmed" | "blocked" | "clerk_user_id">;
|
|
836
632
|
};
|
|
837
|
-
type ComponentBlockContact = {
|
|
838
|
-
__component: string;
|
|
839
|
-
} & BlockContact;
|
|
840
633
|
|
|
841
|
-
type
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
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[];
|
|
850
643
|
};
|
|
851
|
-
type ComponentBlockCtaLink = {
|
|
852
|
-
__component: string;
|
|
853
|
-
} & BlockCtaLink;
|
|
854
644
|
|
|
855
|
-
type
|
|
856
|
-
id: number;
|
|
645
|
+
type ProductDocument = {
|
|
857
646
|
title: string;
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
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;
|
|
864
655
|
|
|
865
|
-
type
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
video_upload?: MediaUploadDocument | null;
|
|
870
|
-
};
|
|
871
|
-
type ComponentBlockVideo = {
|
|
872
|
-
__component: string;
|
|
873
|
-
} & BlockVideoEmbed;
|
|
656
|
+
type TagDocument = {
|
|
657
|
+
label: string;
|
|
658
|
+
slug: string;
|
|
659
|
+
} & BaseDocument;
|
|
874
660
|
|
|
875
|
-
type
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
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;
|
|
887
675
|
|
|
888
|
-
type
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
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;
|
|
897
698
|
|
|
898
|
-
type
|
|
899
|
-
id: number;
|
|
699
|
+
type MediaPlatformDocument = {
|
|
900
700
|
title: string;
|
|
901
701
|
slug: string;
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
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;
|
|
907
712
|
|
|
908
|
-
type
|
|
909
|
-
id: number;
|
|
713
|
+
type MediaContentTypeDocument = {
|
|
910
714
|
title: string;
|
|
911
715
|
slug: string;
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
type FormDownload = {
|
|
922
|
-
id: number;
|
|
923
|
-
download_type: "link" | "file";
|
|
924
|
-
download_key: FormDownloadKeys;
|
|
925
|
-
download_file?: MediaUploadDocument | null;
|
|
926
|
-
download_link?: string | null;
|
|
927
|
-
};
|
|
928
|
-
type ComponentFormDownload = {
|
|
929
|
-
__component: string;
|
|
930
|
-
} & FormDownload;
|
|
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
|
+
platforms?: MediaPlatformDocument[];
|
|
723
|
+
client_media_platform_content_types?: ClientMediaPlatformContentTypeDocument[];
|
|
724
|
+
} & BaseDocument;
|
|
931
725
|
|
|
932
|
-
type
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
};
|
|
938
|
-
type ComponentFormSelect = {
|
|
939
|
-
__component: string;
|
|
940
|
-
} & FormSelect;
|
|
726
|
+
type ClientMediaPlatformDocument = {
|
|
727
|
+
is_active: boolean;
|
|
728
|
+
client?: ClientDocument;
|
|
729
|
+
media_platform?: MediaPlatformDocument;
|
|
730
|
+
media_content_types?: MediaContentTypeDocument[];
|
|
731
|
+
} & BaseDocument;
|
|
941
732
|
|
|
942
|
-
type
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
video?: ComponentBlockVideo;
|
|
950
|
-
};
|
|
951
|
-
type ComponentSlideContent = {
|
|
952
|
-
__component: string;
|
|
953
|
-
} & SlideContent;
|
|
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;
|
|
954
740
|
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
741
|
+
/**
|
|
742
|
+
* Attribute-based access control (ABAC) permissions
|
|
743
|
+
*
|
|
744
|
+
* @reference https://github.com/WebDevSimplified/permission-system/blob/main/auth-abac.ts
|
|
745
|
+
*/
|
|
746
|
+
declare const ROLE_PERMISSIONS: {
|
|
747
|
+
readonly authenticated: {
|
|
748
|
+
readonly client: {
|
|
749
|
+
readonly access: false;
|
|
750
|
+
readonly billing: false;
|
|
751
|
+
readonly owner: false;
|
|
752
|
+
readonly manager: false;
|
|
753
|
+
readonly admin: false;
|
|
754
|
+
readonly list: false;
|
|
755
|
+
readonly create: false;
|
|
756
|
+
readonly read: false;
|
|
757
|
+
readonly update: false;
|
|
758
|
+
readonly delete: false;
|
|
759
|
+
};
|
|
760
|
+
readonly "client-content-pillar": {
|
|
761
|
+
readonly list: false;
|
|
762
|
+
readonly create: false;
|
|
763
|
+
readonly read: false;
|
|
764
|
+
readonly update: false;
|
|
765
|
+
readonly delete: false;
|
|
766
|
+
};
|
|
767
|
+
readonly "client-media-platform": {
|
|
768
|
+
readonly list: false;
|
|
769
|
+
readonly create: false;
|
|
770
|
+
readonly read: false;
|
|
771
|
+
readonly update: false;
|
|
772
|
+
readonly delete: false;
|
|
773
|
+
};
|
|
774
|
+
readonly "client-media-platform-content-type": {
|
|
775
|
+
readonly list: false;
|
|
776
|
+
readonly create: false;
|
|
777
|
+
readonly read: false;
|
|
778
|
+
readonly update: false;
|
|
779
|
+
readonly delete: false;
|
|
780
|
+
};
|
|
781
|
+
readonly "client-project": {
|
|
782
|
+
readonly list: false;
|
|
783
|
+
readonly create: false;
|
|
784
|
+
readonly read: false;
|
|
785
|
+
readonly update: false;
|
|
786
|
+
readonly delete: false;
|
|
787
|
+
readonly assign: false;
|
|
788
|
+
};
|
|
789
|
+
readonly "client-report": {
|
|
790
|
+
readonly list: false;
|
|
791
|
+
readonly create: false;
|
|
792
|
+
readonly read: false;
|
|
793
|
+
readonly update: false;
|
|
794
|
+
readonly delete: false;
|
|
795
|
+
};
|
|
796
|
+
readonly "client-styleguide": {
|
|
797
|
+
readonly list: false;
|
|
798
|
+
readonly create: false;
|
|
799
|
+
readonly read: false;
|
|
800
|
+
readonly update: false;
|
|
801
|
+
readonly delete: false;
|
|
802
|
+
};
|
|
803
|
+
readonly "client-user": {
|
|
804
|
+
readonly list: false;
|
|
805
|
+
readonly create: false;
|
|
806
|
+
readonly read: false;
|
|
807
|
+
readonly update: false;
|
|
808
|
+
readonly delete: false;
|
|
809
|
+
};
|
|
810
|
+
readonly "content-pillar": {
|
|
811
|
+
readonly list: false;
|
|
812
|
+
readonly create: false;
|
|
813
|
+
readonly read: false;
|
|
814
|
+
readonly update: false;
|
|
815
|
+
readonly delete: false;
|
|
816
|
+
};
|
|
817
|
+
readonly "media-platform": {
|
|
818
|
+
readonly list: false;
|
|
819
|
+
readonly create: false;
|
|
820
|
+
readonly read: false;
|
|
821
|
+
readonly update: false;
|
|
822
|
+
readonly delete: false;
|
|
823
|
+
};
|
|
824
|
+
readonly "media-content-type": {
|
|
825
|
+
readonly list: false;
|
|
826
|
+
readonly create: false;
|
|
827
|
+
readonly read: false;
|
|
828
|
+
readonly update: false;
|
|
829
|
+
readonly delete: false;
|
|
830
|
+
};
|
|
831
|
+
readonly "user-account": {
|
|
832
|
+
readonly list: false;
|
|
833
|
+
readonly create: false;
|
|
834
|
+
readonly read: false;
|
|
835
|
+
readonly update: false;
|
|
836
|
+
readonly delete: false;
|
|
837
|
+
};
|
|
838
|
+
readonly "utm-tracking-link": {
|
|
839
|
+
readonly list: false;
|
|
840
|
+
readonly create: false;
|
|
841
|
+
readonly read: false;
|
|
842
|
+
readonly update: false;
|
|
843
|
+
readonly delete: false;
|
|
844
|
+
};
|
|
845
|
+
};
|
|
846
|
+
readonly public: {
|
|
847
|
+
readonly client: {
|
|
848
|
+
readonly access: false;
|
|
849
|
+
readonly billing: false;
|
|
850
|
+
readonly owner: false;
|
|
851
|
+
readonly manager: false;
|
|
852
|
+
readonly admin: false;
|
|
853
|
+
readonly list: false;
|
|
854
|
+
readonly create: false;
|
|
855
|
+
readonly read: false;
|
|
856
|
+
readonly update: false;
|
|
857
|
+
readonly delete: false;
|
|
858
|
+
};
|
|
859
|
+
readonly "client-content-pillar": {
|
|
860
|
+
readonly list: false;
|
|
861
|
+
readonly create: false;
|
|
862
|
+
readonly read: false;
|
|
863
|
+
readonly update: false;
|
|
864
|
+
readonly delete: false;
|
|
865
|
+
};
|
|
866
|
+
readonly "client-media-platform": {
|
|
867
|
+
readonly list: false;
|
|
868
|
+
readonly create: false;
|
|
869
|
+
readonly read: false;
|
|
870
|
+
readonly update: false;
|
|
871
|
+
readonly delete: false;
|
|
872
|
+
};
|
|
873
|
+
readonly "client-media-platform-content-type": {
|
|
874
|
+
readonly list: false;
|
|
875
|
+
readonly create: false;
|
|
876
|
+
readonly read: false;
|
|
877
|
+
readonly update: false;
|
|
878
|
+
readonly delete: false;
|
|
879
|
+
};
|
|
880
|
+
readonly "client-project": {
|
|
881
|
+
readonly list: false;
|
|
882
|
+
readonly create: false;
|
|
883
|
+
readonly read: false;
|
|
884
|
+
readonly update: false;
|
|
885
|
+
readonly delete: false;
|
|
886
|
+
readonly assign: false;
|
|
887
|
+
};
|
|
888
|
+
readonly "client-report": {
|
|
889
|
+
readonly list: false;
|
|
890
|
+
readonly create: false;
|
|
891
|
+
readonly read: false;
|
|
892
|
+
readonly update: false;
|
|
893
|
+
readonly delete: false;
|
|
894
|
+
};
|
|
895
|
+
readonly "client-styleguide": {
|
|
896
|
+
readonly list: false;
|
|
897
|
+
readonly create: false;
|
|
898
|
+
readonly read: false;
|
|
899
|
+
readonly update: false;
|
|
900
|
+
readonly delete: false;
|
|
901
|
+
};
|
|
902
|
+
readonly "client-user": {
|
|
903
|
+
readonly list: false;
|
|
904
|
+
readonly create: false;
|
|
905
|
+
readonly read: false;
|
|
906
|
+
readonly update: false;
|
|
907
|
+
readonly delete: false;
|
|
908
|
+
};
|
|
909
|
+
readonly "content-pillar": {
|
|
910
|
+
readonly list: false;
|
|
911
|
+
readonly create: false;
|
|
912
|
+
readonly read: false;
|
|
913
|
+
readonly update: false;
|
|
914
|
+
readonly delete: false;
|
|
915
|
+
};
|
|
916
|
+
readonly "media-platform": {
|
|
917
|
+
readonly list: false;
|
|
918
|
+
readonly create: false;
|
|
919
|
+
readonly read: false;
|
|
920
|
+
readonly update: false;
|
|
921
|
+
readonly delete: false;
|
|
922
|
+
};
|
|
923
|
+
readonly "media-content-type": {
|
|
924
|
+
readonly list: false;
|
|
925
|
+
readonly create: false;
|
|
926
|
+
readonly read: false;
|
|
927
|
+
readonly update: false;
|
|
928
|
+
readonly delete: false;
|
|
929
|
+
};
|
|
930
|
+
readonly "user-account": {
|
|
931
|
+
readonly list: false;
|
|
932
|
+
readonly create: false;
|
|
933
|
+
readonly read: false;
|
|
934
|
+
readonly update: false;
|
|
935
|
+
readonly delete: false;
|
|
936
|
+
};
|
|
937
|
+
readonly "utm-tracking-link": {
|
|
938
|
+
readonly list: false;
|
|
939
|
+
readonly create: false;
|
|
940
|
+
readonly read: false;
|
|
941
|
+
readonly update: false;
|
|
942
|
+
readonly delete: false;
|
|
943
|
+
};
|
|
944
|
+
};
|
|
945
|
+
readonly employee: {
|
|
946
|
+
readonly client: {
|
|
947
|
+
readonly access: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientDocument) => boolean;
|
|
948
|
+
readonly billing: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientDocument) => boolean;
|
|
949
|
+
readonly owner: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientDocument) => boolean;
|
|
950
|
+
readonly manager: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientDocument) => boolean;
|
|
951
|
+
readonly admin: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientDocument) => boolean;
|
|
952
|
+
readonly list: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientDocument) => boolean;
|
|
953
|
+
readonly create: false;
|
|
954
|
+
readonly read: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientDocument) => boolean;
|
|
955
|
+
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientDocument) => boolean;
|
|
956
|
+
readonly delete: false;
|
|
957
|
+
};
|
|
958
|
+
readonly "client-content-pillar": {
|
|
959
|
+
readonly list: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientContentPillarDocument) => boolean;
|
|
960
|
+
readonly create: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus) => boolean;
|
|
961
|
+
readonly read: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientContentPillarDocument) => boolean;
|
|
962
|
+
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientContentPillarDocument) => boolean;
|
|
963
|
+
readonly delete: false;
|
|
964
|
+
};
|
|
965
|
+
readonly "client-media-platform": {
|
|
966
|
+
readonly list: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientMediaPlatformDocument) => boolean;
|
|
967
|
+
readonly create: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus) => boolean;
|
|
968
|
+
readonly read: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientMediaPlatformDocument) => boolean;
|
|
969
|
+
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientMediaPlatformDocument) => boolean;
|
|
970
|
+
readonly delete: false;
|
|
971
|
+
};
|
|
972
|
+
readonly "client-media-platform-content-type": {
|
|
973
|
+
readonly list: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientMediaPlatformContentTypeDocument) => boolean;
|
|
974
|
+
readonly create: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus) => boolean;
|
|
975
|
+
readonly read: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientMediaPlatformContentTypeDocument) => boolean;
|
|
976
|
+
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientMediaPlatformContentTypeDocument) => boolean;
|
|
977
|
+
readonly delete: false;
|
|
978
|
+
};
|
|
979
|
+
readonly "client-project": {
|
|
980
|
+
readonly list: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientProjectDocument) => boolean;
|
|
981
|
+
readonly create: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus) => boolean;
|
|
982
|
+
readonly read: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientProjectDocument) => boolean;
|
|
983
|
+
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientProjectDocument) => boolean;
|
|
984
|
+
readonly delete: false;
|
|
985
|
+
readonly assign: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientProjectDocument) => boolean;
|
|
986
|
+
};
|
|
987
|
+
readonly "client-report": {
|
|
988
|
+
readonly list: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientReportDocument) => boolean;
|
|
989
|
+
readonly create: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus) => boolean;
|
|
990
|
+
readonly read: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientReportDocument) => boolean;
|
|
991
|
+
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientReportDocument) => boolean;
|
|
992
|
+
readonly delete: false;
|
|
993
|
+
};
|
|
994
|
+
readonly "client-styleguide": {
|
|
995
|
+
readonly list: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientStyleguideDocument) => boolean;
|
|
996
|
+
readonly create: false;
|
|
997
|
+
readonly read: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientStyleguideDocument) => boolean;
|
|
998
|
+
readonly update: false;
|
|
999
|
+
readonly delete: false;
|
|
1000
|
+
};
|
|
1001
|
+
readonly "client-user": {
|
|
1002
|
+
readonly list: true;
|
|
1003
|
+
readonly create: false;
|
|
1004
|
+
readonly read: true;
|
|
1005
|
+
readonly update: false;
|
|
1006
|
+
readonly delete: false;
|
|
1007
|
+
readonly verify: true;
|
|
1008
|
+
};
|
|
1009
|
+
readonly "content-pillar": {
|
|
1010
|
+
readonly list: true;
|
|
1011
|
+
readonly create: false;
|
|
1012
|
+
readonly read: true;
|
|
1013
|
+
readonly update: false;
|
|
1014
|
+
readonly delete: false;
|
|
1015
|
+
};
|
|
1016
|
+
readonly "media-platform": {
|
|
1017
|
+
readonly list: true;
|
|
1018
|
+
readonly create: false;
|
|
1019
|
+
readonly read: true;
|
|
1020
|
+
readonly update: false;
|
|
1021
|
+
readonly delete: false;
|
|
1022
|
+
};
|
|
1023
|
+
readonly "media-content-type": {
|
|
1024
|
+
readonly list: true;
|
|
1025
|
+
readonly create: false;
|
|
1026
|
+
readonly read: true;
|
|
1027
|
+
readonly update: false;
|
|
1028
|
+
readonly delete: false;
|
|
1029
|
+
};
|
|
1030
|
+
readonly "user-account": {
|
|
1031
|
+
readonly list: true;
|
|
1032
|
+
readonly create: false;
|
|
1033
|
+
readonly read: true;
|
|
1034
|
+
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: UserAccountDocument) => boolean;
|
|
1035
|
+
readonly delete: false;
|
|
1036
|
+
};
|
|
1037
|
+
readonly "utm-tracking-link": {
|
|
1038
|
+
readonly list: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: UtmTrackingLinkDocument) => boolean;
|
|
1039
|
+
readonly create: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus) => boolean;
|
|
1040
|
+
readonly read: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: UtmTrackingLinkDocument) => boolean;
|
|
1041
|
+
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: UtmTrackingLinkDocument) => boolean;
|
|
1042
|
+
readonly delete: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: UtmTrackingLinkDocument) => boolean;
|
|
1043
|
+
};
|
|
1044
|
+
};
|
|
1045
|
+
readonly manager: {
|
|
1046
|
+
readonly client: {
|
|
1047
|
+
readonly access: true;
|
|
1048
|
+
readonly billing: true;
|
|
1049
|
+
readonly owner: true;
|
|
1050
|
+
readonly manager: true;
|
|
1051
|
+
readonly admin: true;
|
|
1052
|
+
readonly list: true;
|
|
1053
|
+
readonly create: true;
|
|
1054
|
+
readonly read: true;
|
|
1055
|
+
readonly update: true;
|
|
1056
|
+
readonly delete: false;
|
|
1057
|
+
};
|
|
1058
|
+
readonly "client-content-pillar": {
|
|
1059
|
+
readonly list: true;
|
|
1060
|
+
readonly create: true;
|
|
1061
|
+
readonly read: true;
|
|
1062
|
+
readonly update: true;
|
|
1063
|
+
readonly delete: true;
|
|
1064
|
+
};
|
|
1065
|
+
readonly "client-media-platform": {
|
|
1066
|
+
readonly list: true;
|
|
1067
|
+
readonly create: true;
|
|
1068
|
+
readonly read: true;
|
|
1069
|
+
readonly update: true;
|
|
1070
|
+
readonly delete: true;
|
|
1071
|
+
};
|
|
1072
|
+
readonly "client-media-platform-content-type": {
|
|
1073
|
+
readonly list: true;
|
|
1074
|
+
readonly create: true;
|
|
1075
|
+
readonly read: true;
|
|
1076
|
+
readonly update: true;
|
|
1077
|
+
readonly delete: true;
|
|
1078
|
+
};
|
|
1079
|
+
readonly "client-project": {
|
|
1080
|
+
readonly list: true;
|
|
1081
|
+
readonly create: true;
|
|
1082
|
+
readonly read: true;
|
|
1083
|
+
readonly update: true;
|
|
1084
|
+
readonly delete: true;
|
|
1085
|
+
readonly assign: true;
|
|
1086
|
+
};
|
|
1087
|
+
readonly "client-report": {
|
|
1088
|
+
readonly list: true;
|
|
1089
|
+
readonly create: true;
|
|
1090
|
+
readonly read: true;
|
|
1091
|
+
readonly update: true;
|
|
1092
|
+
readonly delete: true;
|
|
1093
|
+
};
|
|
1094
|
+
readonly "client-styleguide": {
|
|
1095
|
+
readonly list: true;
|
|
1096
|
+
readonly create: true;
|
|
1097
|
+
readonly read: true;
|
|
1098
|
+
readonly update: true;
|
|
1099
|
+
readonly delete: true;
|
|
1100
|
+
};
|
|
1101
|
+
readonly "client-user": {
|
|
1102
|
+
readonly list: true;
|
|
1103
|
+
readonly create: true;
|
|
1104
|
+
readonly read: true;
|
|
1105
|
+
readonly update: true;
|
|
1106
|
+
readonly delete: true;
|
|
1107
|
+
readonly verify: true;
|
|
1108
|
+
};
|
|
1109
|
+
readonly "content-pillar": {
|
|
1110
|
+
readonly list: true;
|
|
1111
|
+
readonly create: true;
|
|
1112
|
+
readonly read: true;
|
|
1113
|
+
readonly update: true;
|
|
1114
|
+
readonly delete: true;
|
|
1115
|
+
};
|
|
1116
|
+
readonly "media-platform": {
|
|
1117
|
+
readonly list: true;
|
|
1118
|
+
readonly create: true;
|
|
1119
|
+
readonly read: true;
|
|
1120
|
+
readonly update: true;
|
|
1121
|
+
readonly delete: true;
|
|
1122
|
+
};
|
|
1123
|
+
readonly "media-content-type": {
|
|
1124
|
+
readonly list: true;
|
|
1125
|
+
readonly create: true;
|
|
1126
|
+
readonly read: true;
|
|
1127
|
+
readonly update: true;
|
|
1128
|
+
readonly delete: true;
|
|
1129
|
+
};
|
|
1130
|
+
readonly "user-account": {
|
|
1131
|
+
readonly list: true;
|
|
1132
|
+
readonly create: false;
|
|
1133
|
+
readonly read: true;
|
|
1134
|
+
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: UserAccountDocument) => boolean;
|
|
1135
|
+
readonly delete: false;
|
|
1136
|
+
};
|
|
1137
|
+
readonly "utm-tracking-link": {
|
|
1138
|
+
readonly list: true;
|
|
1139
|
+
readonly create: true;
|
|
1140
|
+
readonly read: true;
|
|
1141
|
+
readonly update: true;
|
|
1142
|
+
readonly delete: true;
|
|
1143
|
+
};
|
|
1144
|
+
};
|
|
1145
|
+
readonly client: {
|
|
1146
|
+
readonly client: {
|
|
1147
|
+
readonly access: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientDocument) => boolean;
|
|
1148
|
+
readonly billing: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientDocument) => boolean;
|
|
1149
|
+
readonly owner: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientDocument) => boolean;
|
|
1150
|
+
readonly manager: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientDocument) => boolean;
|
|
1151
|
+
readonly admin: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientDocument) => boolean;
|
|
1152
|
+
readonly list: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientDocument) => boolean;
|
|
1153
|
+
readonly create: false;
|
|
1154
|
+
readonly read: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientDocument) => boolean;
|
|
1155
|
+
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientDocument) => boolean;
|
|
1156
|
+
readonly delete: false;
|
|
1157
|
+
};
|
|
1158
|
+
readonly "client-content-pillar": {
|
|
1159
|
+
readonly list: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientContentPillarDocument) => boolean;
|
|
1160
|
+
readonly create: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus) => boolean;
|
|
1161
|
+
readonly read: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientContentPillarDocument) => boolean;
|
|
1162
|
+
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientContentPillarDocument) => boolean;
|
|
1163
|
+
readonly delete: false;
|
|
1164
|
+
};
|
|
1165
|
+
readonly "client-media-platform": {
|
|
1166
|
+
readonly list: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientMediaPlatformDocument) => boolean;
|
|
1167
|
+
readonly create: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus) => boolean;
|
|
1168
|
+
readonly read: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientMediaPlatformDocument) => boolean;
|
|
1169
|
+
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientMediaPlatformDocument) => boolean;
|
|
1170
|
+
readonly delete: false;
|
|
1171
|
+
};
|
|
1172
|
+
readonly "client-media-platform-content-type": {
|
|
1173
|
+
readonly list: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientMediaPlatformContentTypeDocument) => boolean;
|
|
1174
|
+
readonly create: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus) => boolean;
|
|
1175
|
+
readonly read: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientMediaPlatformContentTypeDocument) => boolean;
|
|
1176
|
+
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientMediaPlatformContentTypeDocument) => boolean;
|
|
1177
|
+
readonly delete: false;
|
|
1178
|
+
};
|
|
1179
|
+
readonly "client-project": {
|
|
1180
|
+
readonly list: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientProjectDocument) => boolean;
|
|
1181
|
+
readonly create: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus) => boolean;
|
|
1182
|
+
readonly read: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientProjectDocument) => boolean;
|
|
1183
|
+
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientProjectDocument) => boolean;
|
|
1184
|
+
readonly delete: false;
|
|
1185
|
+
readonly assign: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientProjectDocument) => boolean;
|
|
1186
|
+
};
|
|
1187
|
+
readonly "client-report": {
|
|
1188
|
+
readonly list: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientReportDocument) => boolean;
|
|
1189
|
+
readonly create: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus) => boolean;
|
|
1190
|
+
readonly read: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientReportDocument) => boolean;
|
|
1191
|
+
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientReportDocument) => boolean;
|
|
1192
|
+
readonly delete: false;
|
|
1193
|
+
};
|
|
1194
|
+
readonly "client-styleguide": {
|
|
1195
|
+
readonly list: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientStyleguideDocument) => boolean;
|
|
1196
|
+
readonly create: false;
|
|
1197
|
+
readonly read: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: ClientStyleguideDocument) => boolean;
|
|
1198
|
+
readonly update: false;
|
|
1199
|
+
readonly delete: false;
|
|
1200
|
+
};
|
|
1201
|
+
readonly "client-user": {
|
|
1202
|
+
readonly list: true;
|
|
1203
|
+
readonly create: false;
|
|
1204
|
+
readonly read: true;
|
|
1205
|
+
readonly update: false;
|
|
1206
|
+
readonly delete: false;
|
|
1207
|
+
readonly verify: true;
|
|
1208
|
+
};
|
|
1209
|
+
readonly "content-pillar": {
|
|
1210
|
+
readonly list: true;
|
|
1211
|
+
readonly create: false;
|
|
1212
|
+
readonly read: true;
|
|
1213
|
+
readonly update: false;
|
|
1214
|
+
readonly delete: false;
|
|
1215
|
+
};
|
|
1216
|
+
readonly "media-platform": {
|
|
1217
|
+
readonly list: true;
|
|
1218
|
+
readonly create: false;
|
|
1219
|
+
readonly read: true;
|
|
1220
|
+
readonly update: false;
|
|
1221
|
+
readonly delete: false;
|
|
1222
|
+
};
|
|
1223
|
+
readonly "media-content-type": {
|
|
1224
|
+
readonly list: true;
|
|
1225
|
+
readonly create: false;
|
|
1226
|
+
readonly read: true;
|
|
1227
|
+
readonly update: false;
|
|
1228
|
+
readonly delete: false;
|
|
1229
|
+
};
|
|
1230
|
+
readonly "user-account": {
|
|
1231
|
+
readonly list: true;
|
|
1232
|
+
readonly create: false;
|
|
1233
|
+
readonly read: true;
|
|
1234
|
+
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: UserAccountDocument) => boolean;
|
|
1235
|
+
readonly delete: false;
|
|
1236
|
+
};
|
|
1237
|
+
readonly "utm-tracking-link": {
|
|
1238
|
+
readonly list: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: UtmTrackingLinkDocument) => boolean;
|
|
1239
|
+
readonly create: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus) => boolean;
|
|
1240
|
+
readonly read: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: UtmTrackingLinkDocument) => boolean;
|
|
1241
|
+
readonly update: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: UtmTrackingLinkDocument) => boolean;
|
|
1242
|
+
readonly delete: (u: AuthorizedUserDocument, p: ClientUserDocumentStatus, d: UtmTrackingLinkDocument) => boolean;
|
|
1243
|
+
};
|
|
961
1244
|
};
|
|
962
1245
|
};
|
|
963
1246
|
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
mode: SlideshowMode;
|
|
981
|
-
initial: number;
|
|
982
|
-
};
|
|
983
|
-
type ComponentSlideshowSettings = {
|
|
984
|
-
__component: string;
|
|
985
|
-
} & SlideshowSettings;
|
|
986
|
-
|
|
987
|
-
type Slideshow = {
|
|
988
|
-
id: number;
|
|
989
|
-
settings?: SlideshowSettings;
|
|
990
|
-
slider_settings?: SliderSettings[];
|
|
991
|
-
slides?: SlideContent[];
|
|
992
|
-
};
|
|
993
|
-
type ComponentSlideshow = {
|
|
994
|
-
__component: string;
|
|
995
|
-
} & Slideshow;
|
|
996
|
-
|
|
997
|
-
type UtmClassificationKey = "organic" | "paid";
|
|
998
|
-
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";
|
|
999
|
-
type UtmOption = {
|
|
1000
|
-
id: number;
|
|
1001
|
-
label: string;
|
|
1002
|
-
value: string;
|
|
1003
|
-
description: string | null;
|
|
1004
|
-
is_active: boolean;
|
|
1005
|
-
active_by_classification: Array<UtmClassificationKey>;
|
|
1006
|
-
active_by_source: Array<UtmSourceKey>;
|
|
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"];
|
|
1007
1263
|
};
|
|
1008
|
-
type
|
|
1009
|
-
|
|
1010
|
-
|
|
1264
|
+
type ClientEntityKey = keyof typeof CLIENT_ENTITY_PERMISSIONS;
|
|
1265
|
+
type ClientEntityActions<K extends ClientEntityKey = ClientEntityKey> = (typeof CLIENT_ENTITY_PERMISSIONS)[K][number];
|
|
1266
|
+
type EntityActionJoin<K extends string, V extends string> = `${K}:${V}`;
|
|
1267
|
+
type ClientEntityScope = {
|
|
1268
|
+
[K in ClientEntityKey]: EntityActionJoin<K, (typeof CLIENT_ENTITY_PERMISSIONS)[K][number]>;
|
|
1269
|
+
}[ClientEntityKey];
|
|
1270
|
+
declare const CLIENT_ENTITY_KEYS: ClientEntityKey[];
|
|
1271
|
+
declare const CLIENT_ENTITY_SCOPES: ClientEntityScope[];
|
|
1011
1272
|
|
|
1012
1273
|
type CategoryDocument = {
|
|
1013
1274
|
label: string;
|
|
@@ -1015,11 +1276,6 @@ type CategoryDocument = {
|
|
|
1015
1276
|
blog_posts?: Partial<BlogPostDocument>[] | null;
|
|
1016
1277
|
} & BaseDocument;
|
|
1017
1278
|
|
|
1018
|
-
type TagDocument = {
|
|
1019
|
-
label: string;
|
|
1020
|
-
slug: string;
|
|
1021
|
-
} & BaseDocument;
|
|
1022
|
-
|
|
1023
1279
|
type TrendDocument = {
|
|
1024
1280
|
title: string;
|
|
1025
1281
|
creators?: TeamMemberDocument[];
|
|
@@ -1065,210 +1321,6 @@ type BlogPostDocument = {
|
|
|
1065
1321
|
blocks?: BlogPostBlock[];
|
|
1066
1322
|
} & BaseDocument;
|
|
1067
1323
|
|
|
1068
|
-
type MediaContentTypeDocument = {
|
|
1069
|
-
platforms?: MediaPlatformDocument[] | null;
|
|
1070
|
-
title: string;
|
|
1071
|
-
slug: string;
|
|
1072
|
-
utm_key: string | null;
|
|
1073
|
-
description: string;
|
|
1074
|
-
information: RichTextBlock[] | null;
|
|
1075
|
-
} & BaseDocument;
|
|
1076
|
-
|
|
1077
|
-
type MediaPlatformDocument = {
|
|
1078
|
-
title: string;
|
|
1079
|
-
slug: string;
|
|
1080
|
-
utm_key: string | null;
|
|
1081
|
-
logos: BlockBrandLogos | null;
|
|
1082
|
-
description: string;
|
|
1083
|
-
information: RichTextBlock[] | null;
|
|
1084
|
-
clients?: ClientMediaPlatformDocument[] | null;
|
|
1085
|
-
content_types?: MediaContentTypeDocument[] | null;
|
|
1086
|
-
} & BaseDocument;
|
|
1087
|
-
|
|
1088
|
-
type ClientMediaPlatformDocument = {
|
|
1089
|
-
client?: ClientDocument;
|
|
1090
|
-
media_platform?: MediaPlatformDocument;
|
|
1091
|
-
is_active: boolean;
|
|
1092
|
-
} & BaseDocument;
|
|
1093
|
-
|
|
1094
|
-
declare const ClientProjectStatusOptions: readonly ["coming-soon", "now-open", "for-sale", "sold-out", "available"];
|
|
1095
|
-
type ClientProjectStatus = (typeof ClientProjectStatusOptions)[number];
|
|
1096
|
-
declare const ClientProjectPhaseSelectOptions: FormSelectInputOption[];
|
|
1097
|
-
declare const ClientProjectPhaseOptions: readonly ["brand", "p1", "p2", "p3", "p4", "p5", "closed"];
|
|
1098
|
-
type ClientProjectPhase = (typeof ClientProjectPhaseOptions)[number];
|
|
1099
|
-
type ClientProjectDocument = {
|
|
1100
|
-
title: string;
|
|
1101
|
-
slug: string;
|
|
1102
|
-
project_status: ClientProjectStatus[];
|
|
1103
|
-
project_phase: ClientProjectPhase;
|
|
1104
|
-
featured_image?: MediaUploadDocument | null;
|
|
1105
|
-
clients?: ClientDocument[];
|
|
1106
|
-
} & BaseDocument;
|
|
1107
|
-
|
|
1108
|
-
type ClientReportDocument = {
|
|
1109
|
-
title: string;
|
|
1110
|
-
report_id: string;
|
|
1111
|
-
is_active: boolean;
|
|
1112
|
-
clients?: ClientDocument[];
|
|
1113
|
-
} & BaseDocument;
|
|
1114
|
-
|
|
1115
|
-
type ClientStyleguideDocument = {
|
|
1116
|
-
client?: ClientDocument;
|
|
1117
|
-
title: string;
|
|
1118
|
-
is_active: boolean;
|
|
1119
|
-
introduction: RichTextBlock[];
|
|
1120
|
-
voice: RichTextBlock[];
|
|
1121
|
-
communication: RichTextBlock[];
|
|
1122
|
-
brand_elements: RichTextBlock[];
|
|
1123
|
-
brand_intention: RichTextBlock[];
|
|
1124
|
-
mood?: MediaUploadDocument[];
|
|
1125
|
-
logos?: MediaUploadDocument[];
|
|
1126
|
-
brand_colors?: ComponentBrandStyleguideColor[];
|
|
1127
|
-
brand_fonts?: ComponentBrandStyleguideFont[];
|
|
1128
|
-
brand_application?: MediaUploadDocument[];
|
|
1129
|
-
} & BaseDocument;
|
|
1130
|
-
|
|
1131
|
-
type PermissionDocument = {
|
|
1132
|
-
action: string;
|
|
1133
|
-
role?: RoleDocument;
|
|
1134
|
-
} & BaseDocument;
|
|
1135
|
-
|
|
1136
|
-
type RoleType = "authenticated" | "public" | "employee" | "manager" | "client";
|
|
1137
|
-
type RoleDocument = {
|
|
1138
|
-
type: RoleType;
|
|
1139
|
-
name: string;
|
|
1140
|
-
description: string | null;
|
|
1141
|
-
permissions?: PermissionDocument[];
|
|
1142
|
-
users?: UserDocument[];
|
|
1143
|
-
} & BaseDocument;
|
|
1144
|
-
|
|
1145
|
-
type UserAccountDocument = {
|
|
1146
|
-
user?: UserDocument;
|
|
1147
|
-
preferred_name: string;
|
|
1148
|
-
first_name: string;
|
|
1149
|
-
last_name: string;
|
|
1150
|
-
} & BaseDocument;
|
|
1151
|
-
|
|
1152
|
-
type UtmTrackingLinkDocument = {
|
|
1153
|
-
creator?: UserDocument;
|
|
1154
|
-
client?: ClientDocument;
|
|
1155
|
-
url_destination: string;
|
|
1156
|
-
utm_medium: string;
|
|
1157
|
-
utm_source: string;
|
|
1158
|
-
utm_campaign: string;
|
|
1159
|
-
utm_content: string | null;
|
|
1160
|
-
utm_creative_format: string | null;
|
|
1161
|
-
utm_id: string | null;
|
|
1162
|
-
campaign_phase: string;
|
|
1163
|
-
campaign_product: string | null;
|
|
1164
|
-
campaign_targeting: string | null;
|
|
1165
|
-
campaign_key: string | null;
|
|
1166
|
-
creative_format: string | null;
|
|
1167
|
-
creative_format_variants: string | null;
|
|
1168
|
-
url: string;
|
|
1169
|
-
is_active: boolean;
|
|
1170
|
-
notes: string | null;
|
|
1171
|
-
} & BaseDocument;
|
|
1172
|
-
|
|
1173
|
-
type UserDocument = {
|
|
1174
|
-
username: string;
|
|
1175
|
-
email: string;
|
|
1176
|
-
provider: string;
|
|
1177
|
-
confirmed: boolean;
|
|
1178
|
-
blocked: boolean;
|
|
1179
|
-
clerk_user_id: string | null;
|
|
1180
|
-
role?: RoleDocument;
|
|
1181
|
-
account?: UserAccountDocument;
|
|
1182
|
-
clients?: ClientUserDocument[];
|
|
1183
|
-
utm_tracking_links?: UtmTrackingLinkDocument[];
|
|
1184
|
-
} & BaseDocument;
|
|
1185
|
-
type AuthorizedUserDocument = Pick<UserDocument, "id" | "documentId" | "createdAt" | "updatedAt" | "publishedAt" | "username" | "email" | "provider" | "confirmed" | "blocked" | "clerk_user_id"> & {
|
|
1186
|
-
account: UserAccountDocument;
|
|
1187
|
-
role: RoleDocument;
|
|
1188
|
-
};
|
|
1189
|
-
type UserAuthorizationLoginResponse = {
|
|
1190
|
-
jwt: string;
|
|
1191
|
-
user: AuthorizedUserDocument;
|
|
1192
|
-
};
|
|
1193
|
-
type UserAuthorizationSuccessResponse = {
|
|
1194
|
-
jwt: string;
|
|
1195
|
-
user: Pick<UserDocument, "id" | "documentId" | "createdAt" | "updatedAt" | "publishedAt" | "username" | "email" | "provider" | "confirmed" | "blocked" | "clerk_user_id">;
|
|
1196
|
-
};
|
|
1197
|
-
|
|
1198
|
-
type ClientUserDocument = {
|
|
1199
|
-
client: Partial<ClientDocument>;
|
|
1200
|
-
user: Partial<UserDocument>;
|
|
1201
|
-
scopes: ClientEntityScope[];
|
|
1202
|
-
} & BaseDocument;
|
|
1203
|
-
type ClientUserDocumentStatus = {
|
|
1204
|
-
verified: boolean;
|
|
1205
|
-
clientUser: ClientUserDocument | null;
|
|
1206
|
-
scopes: ClientEntityScope[];
|
|
1207
|
-
};
|
|
1208
|
-
|
|
1209
|
-
type ProductDocument = {
|
|
1210
|
-
title: string;
|
|
1211
|
-
slug: string;
|
|
1212
|
-
introduction: string;
|
|
1213
|
-
flyer_link: string | null;
|
|
1214
|
-
featured_image: MediaUploadDocument;
|
|
1215
|
-
cta_text: string;
|
|
1216
|
-
cta_form_caption: string;
|
|
1217
|
-
order: number;
|
|
1218
|
-
} & BaseDocument;
|
|
1219
|
-
|
|
1220
|
-
type ProductHighlightDocument = {
|
|
1221
|
-
title: string;
|
|
1222
|
-
title_line_1: string;
|
|
1223
|
-
title_line_2: string;
|
|
1224
|
-
introduction: string;
|
|
1225
|
-
highlight?: BlockFullscreenContent;
|
|
1226
|
-
products: ProductDocument[] | null;
|
|
1227
|
-
clients: ClientDocument[] | null;
|
|
1228
|
-
tags: TagDocument[] | null;
|
|
1229
|
-
featured_image: MediaUploadDocument;
|
|
1230
|
-
background_color: string;
|
|
1231
|
-
order: number;
|
|
1232
|
-
text_invert: boolean;
|
|
1233
|
-
} & BaseDocument;
|
|
1234
|
-
|
|
1235
|
-
type ClientDocument = {
|
|
1236
|
-
title: string;
|
|
1237
|
-
is_featured: boolean;
|
|
1238
|
-
logos?: BlockBrandLogos | null;
|
|
1239
|
-
teamwork_id: string;
|
|
1240
|
-
teamwork_name: string;
|
|
1241
|
-
gainapp_id: string | null;
|
|
1242
|
-
utm_sheet_id: string;
|
|
1243
|
-
allow_create_utm_link: boolean;
|
|
1244
|
-
is_organic_social: boolean;
|
|
1245
|
-
is_paid_media: boolean;
|
|
1246
|
-
is_active: boolean;
|
|
1247
|
-
classification: UtmClassificationKey[];
|
|
1248
|
-
product_highlights?: ProductHighlightDocument[];
|
|
1249
|
-
client_projects?: ClientProjectDocument[];
|
|
1250
|
-
client_reports?: ClientReportDocument[];
|
|
1251
|
-
users?: ClientUserDocument[];
|
|
1252
|
-
utm_tracking_links?: UtmTrackingLinkDocument[];
|
|
1253
|
-
styleguides?: ClientStyleguideDocument[];
|
|
1254
|
-
media_platforms?: ClientMediaPlatformDocument[];
|
|
1255
|
-
content_pillars?: ClientContentPillarDocument[];
|
|
1256
|
-
} & BaseDocument;
|
|
1257
|
-
|
|
1258
|
-
type ContentPillarDocument = {
|
|
1259
|
-
title: string;
|
|
1260
|
-
slug: string;
|
|
1261
|
-
description: string;
|
|
1262
|
-
information: RichTextBlock[] | null;
|
|
1263
|
-
clients?: ClientContentPillarDocument[] | null;
|
|
1264
|
-
} & BaseDocument;
|
|
1265
|
-
|
|
1266
|
-
type ClientContentPillarDocument = {
|
|
1267
|
-
client?: ClientDocument;
|
|
1268
|
-
content_pillar?: ContentPillarDocument;
|
|
1269
|
-
is_active: boolean;
|
|
1270
|
-
} & BaseDocument;
|
|
1271
|
-
|
|
1272
1324
|
type LeadDocument = {
|
|
1273
1325
|
first_name: string;
|
|
1274
1326
|
last_name: string;
|
|
@@ -1409,6 +1461,10 @@ type Permissions = {
|
|
|
1409
1461
|
dataType: ClientMediaPlatformDocument;
|
|
1410
1462
|
action: (typeof CLIENT_ENTITY_PERMISSIONS)["client-media-platform"][number];
|
|
1411
1463
|
};
|
|
1464
|
+
"client-media-platform-content-type": {
|
|
1465
|
+
dataType: ClientMediaPlatformContentTypeDocument;
|
|
1466
|
+
action: (typeof CLIENT_ENTITY_PERMISSIONS)["client-media-platform-content-type"][number];
|
|
1467
|
+
};
|
|
1412
1468
|
"client-project": {
|
|
1413
1469
|
dataType: ClientProjectDocument;
|
|
1414
1470
|
action: (typeof CLIENT_ENTITY_PERMISSIONS)["client-project"][number];
|
|
@@ -1554,7 +1610,7 @@ declare const SUpdateClientContentPillarDocumentRequest: v.ObjectSchema<{
|
|
|
1554
1610
|
type SUpdateClientContentPillarDocumentRequest = v.InferOutput<typeof SUpdateClientContentPillarDocumentRequest>;
|
|
1555
1611
|
|
|
1556
1612
|
declare const QuerySortClientMediaPlatforms: v.OptionalSchema<v.ObjectSchema<{
|
|
1557
|
-
readonly key: v.PicklistSchema<["id", "is_active", "media_platform.title", "media_platform.slug", "createdAt", "updatedAt"], undefined>;
|
|
1613
|
+
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>;
|
|
1558
1614
|
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
1559
1615
|
}, undefined>, undefined>;
|
|
1560
1616
|
type QuerySortClientMediaPlatforms = v.InferOutput<typeof QuerySortClientMediaPlatforms>;
|
|
@@ -1564,8 +1620,9 @@ declare const QueryStrapiSearchClientMediaPlatforms: v.ObjectSchema<{
|
|
|
1564
1620
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"this value must be a boolean">, undefined>;
|
|
1565
1621
|
readonly client_id: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>, undefined>;
|
|
1566
1622
|
readonly media_platform_id: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<"please provide a valid document id">, v.TrimAction, v.MinLengthAction<string, 1, "the document id is too short, it must be at least 1 character">, v.MaxLengthAction<string, 255, "the document id is too long, it must be 255 characters or less">]>, undefined>;
|
|
1623
|
+
readonly media_content_types: v.OptionalSchema<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">]>, undefined>;
|
|
1567
1624
|
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1568
|
-
readonly key: v.PicklistSchema<["id", "is_active", "media_platform.title", "media_platform.slug", "createdAt", "updatedAt"], undefined>;
|
|
1625
|
+
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>;
|
|
1569
1626
|
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
1570
1627
|
}, undefined>, undefined>;
|
|
1571
1628
|
}, undefined>;
|
|
@@ -1573,7 +1630,8 @@ type QueryStrapiSearchClientMediaPlatforms = v.InferOutput<typeof QueryStrapiSea
|
|
|
1573
1630
|
declare const SCreateClientMediaPlatformDocument: v.ObjectSchema<{
|
|
1574
1631
|
readonly client: 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">]>;
|
|
1575
1632
|
readonly 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">]>;
|
|
1576
|
-
readonly
|
|
1633
|
+
readonly media_content_types: 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">]>;
|
|
1634
|
+
readonly is_active: v.BooleanSchema<"this value must be a boolean">;
|
|
1577
1635
|
}, undefined>;
|
|
1578
1636
|
type SCreateClientMediaPlatformDocument = v.InferOutput<typeof SCreateClientMediaPlatformDocument>;
|
|
1579
1637
|
declare const SUpdateClientMediaPlatformDocument: v.ObjectSchema<{
|
|
@@ -1587,6 +1645,11 @@ declare const SUpdateClientMediaPlatformDocumentRequest: v.ObjectSchema<{
|
|
|
1587
1645
|
}, undefined>;
|
|
1588
1646
|
}, undefined>;
|
|
1589
1647
|
type SUpdateClientMediaPlatformDocumentRequest = v.InferOutput<typeof SUpdateClientMediaPlatformDocumentRequest>;
|
|
1648
|
+
declare const SAssociateMediaContentTypesToClientMediaPlatform: v.ObjectSchema<{
|
|
1649
|
+
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">]>;
|
|
1650
|
+
readonly media_content_types: 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">]>;
|
|
1651
|
+
}, undefined>;
|
|
1652
|
+
type SAssociateMediaContentTypesToClientMediaPlatform = v.InferOutput<typeof SAssociateMediaContentTypesToClientMediaPlatform>;
|
|
1590
1653
|
|
|
1591
1654
|
declare const QuerySortClientProjects: v.OptionalSchema<v.ObjectSchema<{
|
|
1592
1655
|
readonly key: v.PicklistSchema<["id", "title", "slug", "project_phase", "createdAt", "updatedAt"], undefined>;
|
|
@@ -1608,7 +1671,7 @@ declare const QueryStrapiSearchClientProjects: v.ObjectSchema<{
|
|
|
1608
1671
|
}, undefined>;
|
|
1609
1672
|
type QueryStrapiSearchClientProjects = v.InferOutput<typeof QueryStrapiSearchClientProjects>;
|
|
1610
1673
|
declare const SCreateClientProjectDocument: v.ObjectSchema<{
|
|
1611
|
-
readonly clients: 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>;
|
|
1674
|
+
readonly clients: 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">]>;
|
|
1612
1675
|
readonly title: 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.">]>;
|
|
1613
1676
|
readonly slug: v.SchemaWithPipe<readonly [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.">]>, v.RegexAction<string, "can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
1614
1677
|
readonly project_status: v.SchemaWithPipe<readonly [v.ArraySchema<v.OptionalSchema<v.PicklistSchema<readonly ["coming-soon", "now-open", "for-sale", "sold-out", "available"], "one or more of the project status options is invalid">, "coming-soon">, undefined>, v.MinLengthAction<("coming-soon" | "now-open" | "for-sale" | "sold-out" | "available")[], 1, "please select one project status">, v.MaxLengthAction<("coming-soon" | "now-open" | "for-sale" | "sold-out" | "available")[], 1, "please select one project status">]>;
|
|
@@ -1616,7 +1679,7 @@ declare const SCreateClientProjectDocument: v.ObjectSchema<{
|
|
|
1616
1679
|
}, undefined>;
|
|
1617
1680
|
type SCreateClientProjectDocument = v.InferOutput<typeof SCreateClientProjectDocument>;
|
|
1618
1681
|
declare const SUpdateClientProjectDocument: v.ObjectSchema<{
|
|
1619
|
-
readonly clients: v.OptionalSchema<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>, undefined>;
|
|
1682
|
+
readonly clients: v.OptionalSchema<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">]>, undefined>;
|
|
1620
1683
|
readonly title: v.OptionalSchema<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.">]>, undefined>;
|
|
1621
1684
|
readonly slug: v.OptionalSchema<v.SchemaWithPipe<readonly [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.">]>, v.RegexAction<string, "can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
1622
1685
|
readonly project_status: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.OptionalSchema<v.PicklistSchema<readonly ["coming-soon", "now-open", "for-sale", "sold-out", "available"], "one or more of the project status options is invalid">, "coming-soon">, undefined>, v.MinLengthAction<("coming-soon" | "now-open" | "for-sale" | "sold-out" | "available")[], 1, "please select one project status">, v.MaxLengthAction<("coming-soon" | "now-open" | "for-sale" | "sold-out" | "available")[], 1, "please select one project status">]>, undefined>;
|
|
@@ -1626,7 +1689,7 @@ type SUpdateClientProjectDocument = v.InferOutput<typeof SUpdateClientProjectDoc
|
|
|
1626
1689
|
declare const SUpdateClientProjectDocumentRequest: v.ObjectSchema<{
|
|
1627
1690
|
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">]>;
|
|
1628
1691
|
readonly data: v.ObjectSchema<{
|
|
1629
|
-
readonly clients: v.OptionalSchema<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>, undefined>;
|
|
1692
|
+
readonly clients: v.OptionalSchema<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">]>, undefined>;
|
|
1630
1693
|
readonly title: v.OptionalSchema<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.">]>, undefined>;
|
|
1631
1694
|
readonly slug: v.OptionalSchema<v.SchemaWithPipe<readonly [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.">]>, v.RegexAction<string, "can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
1632
1695
|
readonly project_status: v.OptionalSchema<v.SchemaWithPipe<readonly [v.ArraySchema<v.OptionalSchema<v.PicklistSchema<readonly ["coming-soon", "now-open", "for-sale", "sold-out", "available"], "one or more of the project status options is invalid">, "coming-soon">, undefined>, v.MinLengthAction<("coming-soon" | "now-open" | "for-sale" | "sold-out" | "available")[], 1, "please select one project status">, v.MaxLengthAction<("coming-soon" | "now-open" | "for-sale" | "sold-out" | "available")[], 1, "please select one project status">]>, undefined>;
|
|
@@ -1636,7 +1699,7 @@ declare const SUpdateClientProjectDocumentRequest: v.ObjectSchema<{
|
|
|
1636
1699
|
type SUpdateClientProjectDocumentRequest = v.InferOutput<typeof SUpdateClientProjectDocumentRequest>;
|
|
1637
1700
|
declare const SAssociateClientToClientProjectDocument: v.ObjectSchema<{
|
|
1638
1701
|
readonly client: 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">]>;
|
|
1639
|
-
readonly
|
|
1702
|
+
readonly client_project: 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">]>;
|
|
1640
1703
|
}, undefined>;
|
|
1641
1704
|
type SAssociateClientToClientProjectDocument = v.InferOutput<typeof SAssociateClientToClientProjectDocument>;
|
|
1642
1705
|
|
|
@@ -1659,14 +1722,14 @@ declare const QueryStrapiSearchClientReports: v.ObjectSchema<{
|
|
|
1659
1722
|
}, undefined>;
|
|
1660
1723
|
type QueryStrapiSearchClientReports = v.InferOutput<typeof QueryStrapiSearchClientReports>;
|
|
1661
1724
|
declare const SCreateClientReportDocument: v.ObjectSchema<{
|
|
1662
|
-
readonly clients: 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>;
|
|
1725
|
+
readonly clients: 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">]>;
|
|
1663
1726
|
readonly title: 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.">]>;
|
|
1664
1727
|
readonly report_id: v.SchemaWithPipe<readonly [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.">]>, v.RegexAction<string, "can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
1665
1728
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, true>;
|
|
1666
1729
|
}, undefined>;
|
|
1667
1730
|
type SCreateClientReportDocument = v.InferOutput<typeof SCreateClientReportDocument>;
|
|
1668
1731
|
declare const SUpdateClientReportDocument: v.ObjectSchema<{
|
|
1669
|
-
readonly clients: v.OptionalSchema<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>, undefined>;
|
|
1732
|
+
readonly clients: v.OptionalSchema<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">]>, undefined>;
|
|
1670
1733
|
readonly title: v.OptionalSchema<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.">]>, undefined>;
|
|
1671
1734
|
readonly report_id: v.OptionalSchema<v.SchemaWithPipe<readonly [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.">]>, v.RegexAction<string, "can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
1672
1735
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
@@ -1675,7 +1738,7 @@ type SUpdateClientReportDocument = v.InferOutput<typeof SUpdateClientReportDocum
|
|
|
1675
1738
|
declare const SUpdateClientReportDocumentRequest: v.ObjectSchema<{
|
|
1676
1739
|
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">]>;
|
|
1677
1740
|
readonly data: v.ObjectSchema<{
|
|
1678
|
-
readonly clients: v.OptionalSchema<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>, undefined>;
|
|
1741
|
+
readonly clients: v.OptionalSchema<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">]>, undefined>;
|
|
1679
1742
|
readonly title: v.OptionalSchema<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.">]>, undefined>;
|
|
1680
1743
|
readonly report_id: v.OptionalSchema<v.SchemaWithPipe<readonly [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.">]>, v.RegexAction<string, "can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
1681
1744
|
readonly is_active: v.OptionalSchema<v.BooleanSchema<"isActive must be a boolean">, undefined>;
|
|
@@ -1970,7 +2033,7 @@ declare const SUpdateLeadRequest: v.ObjectSchema<{
|
|
|
1970
2033
|
type SUpdateLeadRequest = v.InferOutput<typeof SUpdateLeadRequest>;
|
|
1971
2034
|
|
|
1972
2035
|
declare const QuerySortMediaContentType: v.OptionalSchema<v.ObjectSchema<{
|
|
1973
|
-
readonly key: v.PicklistSchema<["id", "title", "slug", "utm_key", "createdAt", "updatedAt"], undefined>;
|
|
2036
|
+
readonly key: v.PicklistSchema<["id", "title", "slug", "utm_key", "is_active", "is_organic_social", "is_paid_media", "createdAt", "updatedAt"], undefined>;
|
|
1974
2037
|
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
1975
2038
|
}, undefined>, undefined>;
|
|
1976
2039
|
type QuerySortMediaContentType = v.InferOutput<typeof QuerySortMediaContentType>;
|
|
@@ -1980,9 +2043,12 @@ declare const QueryStrapiSearchMediaContentTypes: v.ObjectSchema<{
|
|
|
1980
2043
|
readonly title: v.OptionalSchema<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.">]>, undefined>;
|
|
1981
2044
|
readonly slug: v.OptionalSchema<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.">]>, undefined>;
|
|
1982
2045
|
readonly utm_key: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_key is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the utm_key is too long, it must be 255 characters or less">, v.RegexAction<string, "utm_key can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
1983
|
-
readonly
|
|
2046
|
+
readonly is_active: v.OptionalSchema<v.BooleanSchema<"this value must be a boolean">, undefined>;
|
|
2047
|
+
readonly is_organic_social: v.OptionalSchema<v.BooleanSchema<"this value must be a boolean">, undefined>;
|
|
2048
|
+
readonly is_paid_media: v.OptionalSchema<v.BooleanSchema<"this value must be a boolean">, undefined>;
|
|
2049
|
+
readonly media_platforms: v.OptionalSchema<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">]>, undefined>;
|
|
1984
2050
|
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
1985
|
-
readonly key: v.PicklistSchema<["id", "title", "slug", "utm_key", "createdAt", "updatedAt"], undefined>;
|
|
2051
|
+
readonly key: v.PicklistSchema<["id", "title", "slug", "utm_key", "is_active", "is_organic_social", "is_paid_media", "createdAt", "updatedAt"], undefined>;
|
|
1986
2052
|
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
1987
2053
|
}, undefined>, undefined>;
|
|
1988
2054
|
}, undefined>;
|
|
@@ -1991,6 +2057,9 @@ declare const SCreateMediaContentTypeDocument: v.ObjectSchema<{
|
|
|
1991
2057
|
readonly title: 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.">]>;
|
|
1992
2058
|
readonly slug: v.SchemaWithPipe<readonly [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.">]>, v.RegexAction<string, "can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
1993
2059
|
readonly utm_key: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_key is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the utm_key is too long, it must be 255 characters or less">, v.RegexAction<string, "utm_key can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
2060
|
+
readonly is_active: v.BooleanSchema<"this value must be a boolean">;
|
|
2061
|
+
readonly is_organic_social: v.BooleanSchema<"this value must be a boolean">;
|
|
2062
|
+
readonly is_paid_media: v.BooleanSchema<"this value must be a boolean">;
|
|
1994
2063
|
readonly description: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, "The string you provided is too long, please abbreviate your string to be 5000 characters or less.">]>, undefined>;
|
|
1995
2064
|
}, undefined>;
|
|
1996
2065
|
type SCreateMediaContentTypeDocument = v.InferOutput<typeof SCreateMediaContentTypeDocument>;
|
|
@@ -1998,6 +2067,9 @@ declare const SUpdateMediaContentTypeDocument: v.ObjectSchema<{
|
|
|
1998
2067
|
readonly title: v.OptionalSchema<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.">]>, undefined>;
|
|
1999
2068
|
readonly slug: v.OptionalSchema<v.SchemaWithPipe<readonly [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.">]>, v.RegexAction<string, "can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
2000
2069
|
readonly utm_key: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_key is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the utm_key is too long, it must be 255 characters or less">, v.RegexAction<string, "utm_key can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
2070
|
+
readonly is_active: v.OptionalSchema<v.BooleanSchema<"this value must be a boolean">, undefined>;
|
|
2071
|
+
readonly is_organic_social: v.OptionalSchema<v.BooleanSchema<"this value must be a boolean">, undefined>;
|
|
2072
|
+
readonly is_paid_media: v.OptionalSchema<v.BooleanSchema<"this value must be a boolean">, undefined>;
|
|
2001
2073
|
readonly description: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, "The string you provided is too long, please abbreviate your string to be 5000 characters or less.">]>, undefined>;
|
|
2002
2074
|
}, undefined>;
|
|
2003
2075
|
type SUpdateMediaContentTypeDocument = v.InferOutput<typeof SUpdateMediaContentTypeDocument>;
|
|
@@ -2007,18 +2079,26 @@ declare const SUpdateMediaContentTypeDocumentRequest: v.ObjectSchema<{
|
|
|
2007
2079
|
readonly title: v.OptionalSchema<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.">]>, undefined>;
|
|
2008
2080
|
readonly slug: v.OptionalSchema<v.SchemaWithPipe<readonly [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.">]>, v.RegexAction<string, "can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
2009
2081
|
readonly utm_key: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_key is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the utm_key is too long, it must be 255 characters or less">, v.RegexAction<string, "utm_key can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
2082
|
+
readonly is_active: v.OptionalSchema<v.BooleanSchema<"this value must be a boolean">, undefined>;
|
|
2083
|
+
readonly is_organic_social: v.OptionalSchema<v.BooleanSchema<"this value must be a boolean">, undefined>;
|
|
2084
|
+
readonly is_paid_media: v.OptionalSchema<v.BooleanSchema<"this value must be a boolean">, undefined>;
|
|
2010
2085
|
readonly description: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, "The string you provided is too long, please abbreviate your string to be 5000 characters or less.">]>, undefined>;
|
|
2011
2086
|
}, undefined>;
|
|
2012
2087
|
}, undefined>;
|
|
2013
2088
|
type SUpdateMediaContentTypeDocumentRequest = v.InferOutput<typeof SUpdateMediaContentTypeDocumentRequest>;
|
|
2014
2089
|
declare const SAssociateMediaPlatformsToMediaContentType: v.ObjectSchema<{
|
|
2015
|
-
readonly
|
|
2016
|
-
readonly
|
|
2090
|
+
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">]>;
|
|
2091
|
+
readonly media_platforms: 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">]>;
|
|
2017
2092
|
}, undefined>;
|
|
2018
2093
|
type SAssociateMediaPlatformsToMediaContentType = v.InferOutput<typeof SAssociateMediaPlatformsToMediaContentType>;
|
|
2094
|
+
declare const SAssociateClientMediaPlatformContentTypesToMediaContentType: v.ObjectSchema<{
|
|
2095
|
+
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">]>;
|
|
2096
|
+
readonly client_media_platform_content_types: 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">]>;
|
|
2097
|
+
}, undefined>;
|
|
2098
|
+
type SAssociateClientMediaPlatformContentTypesToMediaContentType = v.InferOutput<typeof SAssociateClientMediaPlatformContentTypesToMediaContentType>;
|
|
2019
2099
|
|
|
2020
2100
|
declare const QuerySortMediaPlatforms: v.OptionalSchema<v.ObjectSchema<{
|
|
2021
|
-
readonly key: v.PicklistSchema<["id", "title", "slug", "utm_key", "createdAt", "updatedAt"], undefined>;
|
|
2101
|
+
readonly key: v.PicklistSchema<["id", "title", "slug", "utm_key", "is_active", "is_organic_social", "is_paid_media", "createdAt", "updatedAt"], undefined>;
|
|
2022
2102
|
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
2023
2103
|
}, undefined>, undefined>;
|
|
2024
2104
|
type QuerySortMediaPlatforms = v.InferOutput<typeof QuerySortMediaPlatforms>;
|
|
@@ -2028,9 +2108,12 @@ declare const QueryStrapiSearchMediaPlatforms: v.ObjectSchema<{
|
|
|
2028
2108
|
readonly title: v.OptionalSchema<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.">]>, undefined>;
|
|
2029
2109
|
readonly slug: v.OptionalSchema<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.">]>, undefined>;
|
|
2030
2110
|
readonly utm_key: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_key is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the utm_key is too long, it must be 255 characters or less">, v.RegexAction<string, "utm_key can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
2031
|
-
readonly
|
|
2111
|
+
readonly is_active: v.OptionalSchema<v.BooleanSchema<"this value must be a boolean">, undefined>;
|
|
2112
|
+
readonly is_organic_social: v.OptionalSchema<v.BooleanSchema<"this value must be a boolean">, undefined>;
|
|
2113
|
+
readonly is_paid_media: v.OptionalSchema<v.BooleanSchema<"this value must be a boolean">, undefined>;
|
|
2114
|
+
readonly media_content_types: v.OptionalSchema<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">]>, undefined>;
|
|
2032
2115
|
readonly sort: v.OptionalSchema<v.ObjectSchema<{
|
|
2033
|
-
readonly key: v.PicklistSchema<["id", "title", "slug", "utm_key", "createdAt", "updatedAt"], undefined>;
|
|
2116
|
+
readonly key: v.PicklistSchema<["id", "title", "slug", "utm_key", "is_active", "is_organic_social", "is_paid_media", "createdAt", "updatedAt"], undefined>;
|
|
2034
2117
|
readonly order: v.PicklistSchema<["ASC", "DESC"], undefined>;
|
|
2035
2118
|
}, undefined>, undefined>;
|
|
2036
2119
|
}, undefined>;
|
|
@@ -2039,6 +2122,9 @@ declare const SCreateMediaPlatformDocument: v.ObjectSchema<{
|
|
|
2039
2122
|
readonly title: 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.">]>;
|
|
2040
2123
|
readonly slug: v.SchemaWithPipe<readonly [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.">]>, v.RegexAction<string, "can only contain letters, numbers, and the special characters: - _ .">]>;
|
|
2041
2124
|
readonly utm_key: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_key is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the utm_key is too long, it must be 255 characters or less">, v.RegexAction<string, "utm_key can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
2125
|
+
readonly is_active: v.BooleanSchema<"this value must be a boolean">;
|
|
2126
|
+
readonly is_organic_social: v.BooleanSchema<"this value must be a boolean">;
|
|
2127
|
+
readonly is_paid_media: v.BooleanSchema<"this value must be a boolean">;
|
|
2042
2128
|
readonly description: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, "The string you provided is too long, please abbreviate your string to be 5000 characters or less.">]>, undefined>;
|
|
2043
2129
|
}, undefined>;
|
|
2044
2130
|
type SCreateMediaPlatformDocument = v.InferOutput<typeof SCreateMediaPlatformDocument>;
|
|
@@ -2046,6 +2132,9 @@ declare const SUpdateMediaPlatformDocument: v.ObjectSchema<{
|
|
|
2046
2132
|
readonly title: v.OptionalSchema<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.">]>, undefined>;
|
|
2047
2133
|
readonly slug: v.OptionalSchema<v.SchemaWithPipe<readonly [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.">]>, v.RegexAction<string, "can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
2048
2134
|
readonly utm_key: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_key is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the utm_key is too long, it must be 255 characters or less">, v.RegexAction<string, "utm_key can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
2135
|
+
readonly is_active: v.OptionalSchema<v.BooleanSchema<"this value must be a boolean">, undefined>;
|
|
2136
|
+
readonly is_organic_social: v.OptionalSchema<v.BooleanSchema<"this value must be a boolean">, undefined>;
|
|
2137
|
+
readonly is_paid_media: v.OptionalSchema<v.BooleanSchema<"this value must be a boolean">, undefined>;
|
|
2049
2138
|
readonly description: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, "The string you provided is too long, please abbreviate your string to be 5000 characters or less.">]>, undefined>;
|
|
2050
2139
|
}, undefined>;
|
|
2051
2140
|
type SUpdateMediaPlatformDocument = v.InferOutput<typeof SUpdateMediaPlatformDocument>;
|
|
@@ -2055,13 +2144,16 @@ declare const SUpdateMediaPlatformDocumentRequest: v.ObjectSchema<{
|
|
|
2055
2144
|
readonly title: v.OptionalSchema<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.">]>, undefined>;
|
|
2056
2145
|
readonly slug: v.OptionalSchema<v.SchemaWithPipe<readonly [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.">]>, v.RegexAction<string, "can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
2057
2146
|
readonly utm_key: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MinLengthAction<string, 1, "the utm_key is too short, it must be at least 1 characters">, v.MaxLengthAction<string, 255, "the utm_key is too long, it must be 255 characters or less">, v.RegexAction<string, "utm_key can only contain letters, numbers, and the special characters: - _ .">]>, undefined>;
|
|
2147
|
+
readonly is_active: v.OptionalSchema<v.BooleanSchema<"this value must be a boolean">, undefined>;
|
|
2148
|
+
readonly is_organic_social: v.OptionalSchema<v.BooleanSchema<"this value must be a boolean">, undefined>;
|
|
2149
|
+
readonly is_paid_media: v.OptionalSchema<v.BooleanSchema<"this value must be a boolean">, undefined>;
|
|
2058
2150
|
readonly description: v.OptionalSchema<v.SchemaWithPipe<readonly [v.StringSchema<undefined>, v.TrimAction, v.MaxLengthAction<string, 5000, "The string you provided is too long, please abbreviate your string to be 5000 characters or less.">]>, undefined>;
|
|
2059
2151
|
}, undefined>;
|
|
2060
2152
|
}, undefined>;
|
|
2061
2153
|
type SUpdateMediaPlatformDocumentRequest = v.InferOutput<typeof SUpdateMediaPlatformDocumentRequest>;
|
|
2062
2154
|
declare const SAssociateMediaContentTypesToMediaPlatform: v.ObjectSchema<{
|
|
2063
|
-
readonly
|
|
2064
|
-
readonly
|
|
2155
|
+
readonly 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">]>;
|
|
2156
|
+
readonly media_content_types: 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">]>;
|
|
2065
2157
|
}, undefined>;
|
|
2066
2158
|
type SAssociateMediaContentTypesToMediaPlatform = v.InferOutput<typeof SAssociateMediaContentTypesToMediaPlatform>;
|
|
2067
2159
|
|
|
@@ -3190,6 +3282,8 @@ declare const IsValidOrUndefinedName: v.OptionalSchema<v.SchemaWithPipe<readonly
|
|
|
3190
3282
|
declare const IsValidReferenceId: v.NumberSchema<"please provide a valid id">;
|
|
3191
3283
|
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">]>;
|
|
3192
3284
|
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>;
|
|
3285
|
+
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">]>;
|
|
3286
|
+
declare const IsValidOrUndefinedReferenceDocumentIdList: v.OptionalSchema<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">]>, undefined>;
|
|
3193
3287
|
declare const IsValidDateToday: v.SchemaWithPipe<readonly [v.DateSchema<undefined>, v.MinValueAction<Date, Date, undefined>, v.TransformAction<Date, string>]>;
|
|
3194
3288
|
declare const IsValidPositiveInteger: v.SchemaWithPipe<readonly [v.NumberSchema<"Please enter a number.">, v.IntegerAction<number, "Please enter a whole number.">, v.MinValueAction<number, 1, "Please enter a positive number.">]>;
|
|
3195
3289
|
declare const InvalidShortStringMax = "The string you provided is too long, it must be 255 characters or less.";
|
|
@@ -3253,4 +3347,4 @@ declare const IsValidOrUndefinedUrlUtmTerm: v.OptionalSchema<v.SchemaWithPipe<re
|
|
|
3253
3347
|
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: - _ .">]>;
|
|
3254
3348
|
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>;
|
|
3255
3349
|
|
|
3256
|
-
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, 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, 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, SAssociateClientToClientProjectDocument, 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 };
|
|
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 };
|