@joeygrable94/utm-src-pub-validators 0.0.101 → 0.0.103
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 +468 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +12759 -4620
- package/dist/index.d.ts +12759 -4620
- package/dist/index.js +464 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -205,6 +205,442 @@ var IsValidName = v12.pipe(
|
|
|
205
205
|
);
|
|
206
206
|
var IsValidOrUndefinedName = v12.optional(IsValidName);
|
|
207
207
|
|
|
208
|
+
// src/permissions/permission.abac.ts
|
|
209
|
+
var ROLE_PERMISSIONS = {
|
|
210
|
+
authenticated: {
|
|
211
|
+
"user-account": {
|
|
212
|
+
list: false,
|
|
213
|
+
create: false,
|
|
214
|
+
read: false,
|
|
215
|
+
update: false,
|
|
216
|
+
delete: false
|
|
217
|
+
},
|
|
218
|
+
group: {
|
|
219
|
+
access: false,
|
|
220
|
+
billing: false,
|
|
221
|
+
manager: false,
|
|
222
|
+
admin: false,
|
|
223
|
+
list: false,
|
|
224
|
+
create: false,
|
|
225
|
+
read: false,
|
|
226
|
+
update: false,
|
|
227
|
+
delete: false
|
|
228
|
+
},
|
|
229
|
+
"group-user": {
|
|
230
|
+
list: false,
|
|
231
|
+
create: false,
|
|
232
|
+
read: false,
|
|
233
|
+
update: false,
|
|
234
|
+
delete: false
|
|
235
|
+
},
|
|
236
|
+
website: {
|
|
237
|
+
list: false,
|
|
238
|
+
create: false,
|
|
239
|
+
read: false,
|
|
240
|
+
update: false,
|
|
241
|
+
delete: false,
|
|
242
|
+
import: false,
|
|
243
|
+
export: false
|
|
244
|
+
},
|
|
245
|
+
"tracking-link": {
|
|
246
|
+
list: false,
|
|
247
|
+
create: false,
|
|
248
|
+
read: false,
|
|
249
|
+
update: false,
|
|
250
|
+
delete: false,
|
|
251
|
+
import: false,
|
|
252
|
+
export: false
|
|
253
|
+
},
|
|
254
|
+
source: {
|
|
255
|
+
list: false,
|
|
256
|
+
create: false,
|
|
257
|
+
read: false,
|
|
258
|
+
update: false,
|
|
259
|
+
delete: false,
|
|
260
|
+
import: false,
|
|
261
|
+
export: false
|
|
262
|
+
},
|
|
263
|
+
medium: {
|
|
264
|
+
list: false,
|
|
265
|
+
create: false,
|
|
266
|
+
read: false,
|
|
267
|
+
update: false,
|
|
268
|
+
delete: false,
|
|
269
|
+
import: false,
|
|
270
|
+
export: false
|
|
271
|
+
},
|
|
272
|
+
"campaign-id": {
|
|
273
|
+
list: false,
|
|
274
|
+
create: false,
|
|
275
|
+
read: false,
|
|
276
|
+
update: false,
|
|
277
|
+
delete: false,
|
|
278
|
+
import: false,
|
|
279
|
+
export: false
|
|
280
|
+
},
|
|
281
|
+
"campaign-phase": {
|
|
282
|
+
list: false,
|
|
283
|
+
create: false,
|
|
284
|
+
read: false,
|
|
285
|
+
update: false,
|
|
286
|
+
delete: false,
|
|
287
|
+
import: false,
|
|
288
|
+
export: false
|
|
289
|
+
},
|
|
290
|
+
"campaign-product": {
|
|
291
|
+
list: false,
|
|
292
|
+
create: false,
|
|
293
|
+
read: false,
|
|
294
|
+
update: false,
|
|
295
|
+
delete: false,
|
|
296
|
+
import: false,
|
|
297
|
+
export: false
|
|
298
|
+
},
|
|
299
|
+
"campaign-target": {
|
|
300
|
+
list: false,
|
|
301
|
+
create: false,
|
|
302
|
+
read: false,
|
|
303
|
+
update: false,
|
|
304
|
+
delete: false,
|
|
305
|
+
import: false,
|
|
306
|
+
export: false
|
|
307
|
+
},
|
|
308
|
+
"campaign-key": {
|
|
309
|
+
list: false,
|
|
310
|
+
create: false,
|
|
311
|
+
read: false,
|
|
312
|
+
update: false,
|
|
313
|
+
delete: false,
|
|
314
|
+
import: false,
|
|
315
|
+
export: false
|
|
316
|
+
},
|
|
317
|
+
content: {
|
|
318
|
+
list: false,
|
|
319
|
+
create: false,
|
|
320
|
+
read: false,
|
|
321
|
+
update: false,
|
|
322
|
+
delete: false,
|
|
323
|
+
import: false,
|
|
324
|
+
export: false
|
|
325
|
+
},
|
|
326
|
+
"creative-format": {
|
|
327
|
+
list: false,
|
|
328
|
+
create: false,
|
|
329
|
+
read: false,
|
|
330
|
+
update: false,
|
|
331
|
+
delete: false,
|
|
332
|
+
import: false,
|
|
333
|
+
export: false
|
|
334
|
+
},
|
|
335
|
+
"creative-format-variant": {
|
|
336
|
+
list: false,
|
|
337
|
+
create: false,
|
|
338
|
+
read: false,
|
|
339
|
+
update: false,
|
|
340
|
+
delete: false,
|
|
341
|
+
import: false,
|
|
342
|
+
export: false
|
|
343
|
+
},
|
|
344
|
+
term: {
|
|
345
|
+
list: false,
|
|
346
|
+
create: false,
|
|
347
|
+
read: false,
|
|
348
|
+
update: false,
|
|
349
|
+
delete: false,
|
|
350
|
+
import: false,
|
|
351
|
+
export: false
|
|
352
|
+
}
|
|
353
|
+
},
|
|
354
|
+
public: {
|
|
355
|
+
"user-account": {
|
|
356
|
+
list: false,
|
|
357
|
+
create: false,
|
|
358
|
+
read: false,
|
|
359
|
+
update: false,
|
|
360
|
+
delete: false
|
|
361
|
+
},
|
|
362
|
+
group: {
|
|
363
|
+
access: false,
|
|
364
|
+
billing: false,
|
|
365
|
+
manager: false,
|
|
366
|
+
admin: false,
|
|
367
|
+
list: false,
|
|
368
|
+
create: false,
|
|
369
|
+
read: false,
|
|
370
|
+
update: false,
|
|
371
|
+
delete: false
|
|
372
|
+
},
|
|
373
|
+
"group-user": {
|
|
374
|
+
list: false,
|
|
375
|
+
create: false,
|
|
376
|
+
read: false,
|
|
377
|
+
update: false,
|
|
378
|
+
delete: false
|
|
379
|
+
},
|
|
380
|
+
website: {
|
|
381
|
+
list: false,
|
|
382
|
+
create: false,
|
|
383
|
+
read: false,
|
|
384
|
+
update: false,
|
|
385
|
+
delete: false,
|
|
386
|
+
import: false,
|
|
387
|
+
export: false
|
|
388
|
+
},
|
|
389
|
+
"tracking-link": {
|
|
390
|
+
list: false,
|
|
391
|
+
create: false,
|
|
392
|
+
read: false,
|
|
393
|
+
update: false,
|
|
394
|
+
delete: false,
|
|
395
|
+
import: false,
|
|
396
|
+
export: false
|
|
397
|
+
},
|
|
398
|
+
source: {
|
|
399
|
+
list: false,
|
|
400
|
+
create: false,
|
|
401
|
+
read: false,
|
|
402
|
+
update: false,
|
|
403
|
+
delete: false,
|
|
404
|
+
import: false,
|
|
405
|
+
export: false
|
|
406
|
+
},
|
|
407
|
+
medium: {
|
|
408
|
+
list: false,
|
|
409
|
+
create: false,
|
|
410
|
+
read: false,
|
|
411
|
+
update: false,
|
|
412
|
+
delete: false,
|
|
413
|
+
import: false,
|
|
414
|
+
export: false
|
|
415
|
+
},
|
|
416
|
+
"campaign-id": {
|
|
417
|
+
list: false,
|
|
418
|
+
create: false,
|
|
419
|
+
read: false,
|
|
420
|
+
update: false,
|
|
421
|
+
delete: false,
|
|
422
|
+
import: false,
|
|
423
|
+
export: false
|
|
424
|
+
},
|
|
425
|
+
"campaign-phase": {
|
|
426
|
+
list: false,
|
|
427
|
+
create: false,
|
|
428
|
+
read: false,
|
|
429
|
+
update: false,
|
|
430
|
+
delete: false,
|
|
431
|
+
import: false,
|
|
432
|
+
export: false
|
|
433
|
+
},
|
|
434
|
+
"campaign-product": {
|
|
435
|
+
list: false,
|
|
436
|
+
create: false,
|
|
437
|
+
read: false,
|
|
438
|
+
update: false,
|
|
439
|
+
delete: false,
|
|
440
|
+
import: false,
|
|
441
|
+
export: false
|
|
442
|
+
},
|
|
443
|
+
"campaign-target": {
|
|
444
|
+
list: false,
|
|
445
|
+
create: false,
|
|
446
|
+
read: false,
|
|
447
|
+
update: false,
|
|
448
|
+
delete: false,
|
|
449
|
+
import: false,
|
|
450
|
+
export: false
|
|
451
|
+
},
|
|
452
|
+
"campaign-key": {
|
|
453
|
+
list: false,
|
|
454
|
+
create: false,
|
|
455
|
+
read: false,
|
|
456
|
+
update: false,
|
|
457
|
+
delete: false,
|
|
458
|
+
import: false,
|
|
459
|
+
export: false
|
|
460
|
+
},
|
|
461
|
+
content: {
|
|
462
|
+
list: false,
|
|
463
|
+
create: false,
|
|
464
|
+
read: false,
|
|
465
|
+
update: false,
|
|
466
|
+
delete: false,
|
|
467
|
+
import: false,
|
|
468
|
+
export: false
|
|
469
|
+
},
|
|
470
|
+
"creative-format": {
|
|
471
|
+
list: false,
|
|
472
|
+
create: false,
|
|
473
|
+
read: false,
|
|
474
|
+
update: false,
|
|
475
|
+
delete: false,
|
|
476
|
+
import: false,
|
|
477
|
+
export: false
|
|
478
|
+
},
|
|
479
|
+
"creative-format-variant": {
|
|
480
|
+
list: false,
|
|
481
|
+
create: false,
|
|
482
|
+
read: false,
|
|
483
|
+
update: false,
|
|
484
|
+
delete: false,
|
|
485
|
+
import: false,
|
|
486
|
+
export: false
|
|
487
|
+
},
|
|
488
|
+
term: {
|
|
489
|
+
list: false,
|
|
490
|
+
create: false,
|
|
491
|
+
read: false,
|
|
492
|
+
update: false,
|
|
493
|
+
delete: false,
|
|
494
|
+
import: false,
|
|
495
|
+
export: false
|
|
496
|
+
}
|
|
497
|
+
},
|
|
498
|
+
member: {
|
|
499
|
+
"user-account": {
|
|
500
|
+
list: true,
|
|
501
|
+
create: false,
|
|
502
|
+
read: true,
|
|
503
|
+
update: (u, p, d) => u.account.documentId === d.documentId,
|
|
504
|
+
delete: (u, p, d) => u.account.documentId === d.documentId
|
|
505
|
+
},
|
|
506
|
+
group: {
|
|
507
|
+
access: (u, p, d) => p.scopes.includes("group:access"),
|
|
508
|
+
billing: (u, p, d) => p.scopes.includes("group:billing"),
|
|
509
|
+
manager: (u, p, d) => p.scopes.includes("group:manager"),
|
|
510
|
+
admin: (u, p, d) => p.scopes.includes("group:admin"),
|
|
511
|
+
list: true,
|
|
512
|
+
create: true,
|
|
513
|
+
read: true,
|
|
514
|
+
update: true,
|
|
515
|
+
delete: true
|
|
516
|
+
},
|
|
517
|
+
"group-user": {
|
|
518
|
+
list: false,
|
|
519
|
+
create: false,
|
|
520
|
+
read: false,
|
|
521
|
+
update: false,
|
|
522
|
+
delete: false
|
|
523
|
+
},
|
|
524
|
+
website: {
|
|
525
|
+
list: (u, p, d) => p.scopes.includes("website:list"),
|
|
526
|
+
create: (u, p, d) => p.scopes.includes("website:create"),
|
|
527
|
+
read: (u, p, d) => p.scopes.includes("website:read"),
|
|
528
|
+
update: (u, p, d) => p.scopes.includes("website:update"),
|
|
529
|
+
delete: (u, p, d) => p.scopes.includes("website:delete"),
|
|
530
|
+
import: (u, p, d) => p.scopes.includes("website:import"),
|
|
531
|
+
export: (u, p, d) => p.scopes.includes("website:export")
|
|
532
|
+
},
|
|
533
|
+
"tracking-link": {
|
|
534
|
+
list: (u, p, d) => p.scopes.includes("tracking-link:list"),
|
|
535
|
+
create: (u, p, d) => p.scopes.includes("tracking-link:create"),
|
|
536
|
+
read: (u, p, d) => p.scopes.includes("tracking-link:read"),
|
|
537
|
+
update: (u, p, d) => p.scopes.includes("tracking-link:update"),
|
|
538
|
+
delete: (u, p, d) => p.scopes.includes("tracking-link:delete"),
|
|
539
|
+
import: (u, p, d) => p.scopes.includes("tracking-link:import"),
|
|
540
|
+
export: (u, p, d) => p.scopes.includes("tracking-link:export")
|
|
541
|
+
},
|
|
542
|
+
source: {
|
|
543
|
+
list: (u, p, d) => p.scopes.includes("source:list"),
|
|
544
|
+
create: (u, p, d) => p.scopes.includes("source:create"),
|
|
545
|
+
read: (u, p, d) => p.scopes.includes("source:read"),
|
|
546
|
+
update: (u, p, d) => p.scopes.includes("source:update"),
|
|
547
|
+
delete: (u, p, d) => p.scopes.includes("source:delete"),
|
|
548
|
+
import: (u, p, d) => p.scopes.includes("source:import"),
|
|
549
|
+
export: (u, p, d) => p.scopes.includes("source:export")
|
|
550
|
+
},
|
|
551
|
+
medium: {
|
|
552
|
+
list: (u, p, d) => p.scopes.includes("medium:list"),
|
|
553
|
+
create: (u, p, d) => p.scopes.includes("medium:create"),
|
|
554
|
+
read: (u, p, d) => p.scopes.includes("medium:read"),
|
|
555
|
+
update: (u, p, d) => p.scopes.includes("medium:update"),
|
|
556
|
+
delete: (u, p, d) => p.scopes.includes("medium:delete"),
|
|
557
|
+
import: (u, p, d) => p.scopes.includes("medium:import"),
|
|
558
|
+
export: (u, p, d) => p.scopes.includes("medium:export")
|
|
559
|
+
},
|
|
560
|
+
"campaign-id": {
|
|
561
|
+
list: (u, p, d) => p.scopes.includes("campaign-id:list"),
|
|
562
|
+
create: (u, p, d) => p.scopes.includes("campaign-id:create"),
|
|
563
|
+
read: (u, p, d) => p.scopes.includes("campaign-id:read"),
|
|
564
|
+
update: (u, p, d) => p.scopes.includes("campaign-id:update"),
|
|
565
|
+
delete: (u, p, d) => p.scopes.includes("campaign-id:delete"),
|
|
566
|
+
import: (u, p, d) => p.scopes.includes("campaign-id:import"),
|
|
567
|
+
export: (u, p, d) => p.scopes.includes("campaign-id:export")
|
|
568
|
+
},
|
|
569
|
+
"campaign-phase": {
|
|
570
|
+
list: (u, p, d) => p.scopes.includes("campaign-phase:list"),
|
|
571
|
+
create: (u, p, d) => p.scopes.includes("campaign-phase:create"),
|
|
572
|
+
read: (u, p, d) => p.scopes.includes("campaign-phase:read"),
|
|
573
|
+
update: (u, p, d) => p.scopes.includes("campaign-phase:update"),
|
|
574
|
+
delete: (u, p, d) => p.scopes.includes("campaign-phase:delete"),
|
|
575
|
+
import: (u, p, d) => p.scopes.includes("campaign-phase:import"),
|
|
576
|
+
export: (u, p, d) => p.scopes.includes("campaign-phase:export")
|
|
577
|
+
},
|
|
578
|
+
"campaign-product": {
|
|
579
|
+
list: (u, p, d) => p.scopes.includes("campaign-product:list"),
|
|
580
|
+
create: (u, p, d) => p.scopes.includes("campaign-product:create"),
|
|
581
|
+
read: (u, p, d) => p.scopes.includes("campaign-product:read"),
|
|
582
|
+
update: (u, p, d) => p.scopes.includes("campaign-product:update"),
|
|
583
|
+
delete: (u, p, d) => p.scopes.includes("campaign-product:delete"),
|
|
584
|
+
import: (u, p, d) => p.scopes.includes("campaign-product:import"),
|
|
585
|
+
export: (u, p, d) => p.scopes.includes("campaign-product:export")
|
|
586
|
+
},
|
|
587
|
+
"campaign-target": {
|
|
588
|
+
list: (u, p, d) => p.scopes.includes("campaign-target:list"),
|
|
589
|
+
create: (u, p, d) => p.scopes.includes("campaign-target:create"),
|
|
590
|
+
read: (u, p, d) => p.scopes.includes("campaign-target:read"),
|
|
591
|
+
update: (u, p, d) => p.scopes.includes("campaign-target:update"),
|
|
592
|
+
delete: (u, p, d) => p.scopes.includes("campaign-target:delete"),
|
|
593
|
+
import: (u, p, d) => p.scopes.includes("campaign-target:import"),
|
|
594
|
+
export: (u, p, d) => p.scopes.includes("campaign-target:export")
|
|
595
|
+
},
|
|
596
|
+
"campaign-key": {
|
|
597
|
+
list: (u, p, d) => p.scopes.includes("campaign-key:list"),
|
|
598
|
+
create: (u, p, d) => p.scopes.includes("campaign-key:create"),
|
|
599
|
+
read: (u, p, d) => p.scopes.includes("campaign-key:read"),
|
|
600
|
+
update: (u, p, d) => p.scopes.includes("campaign-key:update"),
|
|
601
|
+
delete: (u, p, d) => p.scopes.includes("campaign-key:delete"),
|
|
602
|
+
import: (u, p, d) => p.scopes.includes("campaign-key:import"),
|
|
603
|
+
export: (u, p, d) => p.scopes.includes("campaign-key:export")
|
|
604
|
+
},
|
|
605
|
+
content: {
|
|
606
|
+
list: (u, p, d) => p.scopes.includes("content:list"),
|
|
607
|
+
create: (u, p, d) => p.scopes.includes("content:create"),
|
|
608
|
+
read: (u, p, d) => p.scopes.includes("content:read"),
|
|
609
|
+
update: (u, p, d) => p.scopes.includes("content:update"),
|
|
610
|
+
delete: (u, p, d) => p.scopes.includes("content:delete"),
|
|
611
|
+
import: (u, p, d) => p.scopes.includes("content:import"),
|
|
612
|
+
export: (u, p, d) => p.scopes.includes("content:export")
|
|
613
|
+
},
|
|
614
|
+
"creative-format": {
|
|
615
|
+
list: (u, p, d) => p.scopes.includes("creative-format:list"),
|
|
616
|
+
create: (u, p, d) => p.scopes.includes("creative-format:create"),
|
|
617
|
+
read: (u, p, d) => p.scopes.includes("creative-format:read"),
|
|
618
|
+
update: (u, p, d) => p.scopes.includes("creative-format:update"),
|
|
619
|
+
delete: (u, p, d) => p.scopes.includes("creative-format:delete"),
|
|
620
|
+
import: (u, p, d) => p.scopes.includes("creative-format:import"),
|
|
621
|
+
export: (u, p, d) => p.scopes.includes("creative-format:export")
|
|
622
|
+
},
|
|
623
|
+
"creative-format-variant": {
|
|
624
|
+
list: (u, p, d) => p.scopes.includes("creative-format-variant:list"),
|
|
625
|
+
create: (u, p, d) => p.scopes.includes("creative-format-variant:create"),
|
|
626
|
+
read: (u, p, d) => p.scopes.includes("creative-format-variant:read"),
|
|
627
|
+
update: (u, p, d) => p.scopes.includes("creative-format-variant:update"),
|
|
628
|
+
delete: (u, p, d) => p.scopes.includes("creative-format-variant:delete"),
|
|
629
|
+
import: (u, p, d) => p.scopes.includes("creative-format-variant:import"),
|
|
630
|
+
export: (u, p, d) => p.scopes.includes("creative-format-variant:export")
|
|
631
|
+
},
|
|
632
|
+
term: {
|
|
633
|
+
list: (u, p, d) => p.scopes.includes("term:list"),
|
|
634
|
+
create: (u, p, d) => p.scopes.includes("term:create"),
|
|
635
|
+
read: (u, p, d) => p.scopes.includes("term:read"),
|
|
636
|
+
update: (u, p, d) => p.scopes.includes("term:update"),
|
|
637
|
+
delete: (u, p, d) => p.scopes.includes("term:delete"),
|
|
638
|
+
import: (u, p, d) => p.scopes.includes("term:import"),
|
|
639
|
+
export: (u, p, d) => p.scopes.includes("term:export")
|
|
640
|
+
}
|
|
641
|
+
}
|
|
642
|
+
};
|
|
643
|
+
|
|
208
644
|
// src/permissions/permission.constants.ts
|
|
209
645
|
var GROUP_ENTITY_PERMISSIONS = {
|
|
210
646
|
group: ["admin", "manager", "billing", "access"],
|
|
@@ -238,12 +674,24 @@ var GROUP_ENTITY_PERMISSIONS = {
|
|
|
238
674
|
],
|
|
239
675
|
term: ["list", "create", "read", "update", "delete", "export", "import"]
|
|
240
676
|
};
|
|
677
|
+
var GROUP_ENTITY_KEYS = Object.keys(
|
|
678
|
+
GROUP_ENTITY_PERMISSIONS
|
|
679
|
+
);
|
|
241
680
|
var GROUP_ENTITY_SCOPES = Object.entries(
|
|
242
681
|
GROUP_ENTITY_PERMISSIONS
|
|
243
682
|
).flatMap(
|
|
244
683
|
([entity, actions]) => actions.map((action) => `${entity}:${action}`)
|
|
245
684
|
);
|
|
246
685
|
|
|
686
|
+
// src/permissions/permission.utilities.ts
|
|
687
|
+
function hasPermission(user, permissions, resource, action, data) {
|
|
688
|
+
var _a;
|
|
689
|
+
const permission = (_a = ROLE_PERMISSIONS[user.role.type][resource]) == null ? void 0 : _a[action];
|
|
690
|
+
if (permission == null) return false;
|
|
691
|
+
if (typeof permission === "boolean") return permission;
|
|
692
|
+
return data != null && permission(user, permissions, data);
|
|
693
|
+
}
|
|
694
|
+
|
|
247
695
|
// src/validators/validators-group-users.ts
|
|
248
696
|
var IsValidGroupUserScopes = v12.pipe(
|
|
249
697
|
v12.array(
|
|
@@ -891,6 +1339,7 @@ var SQueryListTrackingLinkDocuments = v12.object({
|
|
|
891
1339
|
});
|
|
892
1340
|
var SCreateTrackingLinkDocument = v12.object({
|
|
893
1341
|
group: IsValidReferenceDocumentId,
|
|
1342
|
+
creator: IsValidReferenceDocumentId,
|
|
894
1343
|
is_active: IsValidIsActive,
|
|
895
1344
|
value: IsValidUrlDestination,
|
|
896
1345
|
destination: IsValidUrlDestination,
|
|
@@ -1004,6 +1453,7 @@ var SQueryListUserAccountDocuments = v12.object({
|
|
|
1004
1453
|
trial_period_end_before: IsValidOrUndefinedTrialPeriodEnd
|
|
1005
1454
|
});
|
|
1006
1455
|
var SCreateUserAccountDocument = v12.object({
|
|
1456
|
+
user: IsValidReferenceDocumentId,
|
|
1007
1457
|
customer_id: IsValidOrUndefinedCustomerId,
|
|
1008
1458
|
subscription_id: IsValidOrUndefinedSubscriptionId,
|
|
1009
1459
|
subscription_status: IsValidSubscriptionStatus,
|
|
@@ -1041,6 +1491,7 @@ var SQueryListUserLimitationDocuments = v12.object({
|
|
|
1041
1491
|
)
|
|
1042
1492
|
});
|
|
1043
1493
|
var SCreateUserLimitationsDocument = v12.object({
|
|
1494
|
+
user: IsValidReferenceDocumentId,
|
|
1044
1495
|
limit_groups: IsValidUserLimitationNumberFallback,
|
|
1045
1496
|
limit_group_users: IsValidUserLimitationNumberFallback,
|
|
1046
1497
|
limit_websites: IsValidUserLimitationNumberFallback,
|
|
@@ -1204,6 +1655,7 @@ var SQueryListCampaignIdDocuments = v12.object({
|
|
|
1204
1655
|
});
|
|
1205
1656
|
var SCreateCampaignIdDocument = v12.object({
|
|
1206
1657
|
group: IsValidReferenceDocumentId,
|
|
1658
|
+
creator: IsValidReferenceDocumentId,
|
|
1207
1659
|
cost: IsValidCost,
|
|
1208
1660
|
label: IsValidLabel,
|
|
1209
1661
|
value: IsValidValue,
|
|
@@ -1285,6 +1737,7 @@ var SQueryListCampaignKeyDocuments = v12.object({
|
|
|
1285
1737
|
});
|
|
1286
1738
|
var SCreateCampaignKeyDocument = v12.object({
|
|
1287
1739
|
group: IsValidReferenceDocumentId,
|
|
1740
|
+
creator: IsValidReferenceDocumentId,
|
|
1288
1741
|
label: IsValidLabel,
|
|
1289
1742
|
value: IsValidValue,
|
|
1290
1743
|
description: IsValidDescription,
|
|
@@ -1364,6 +1817,7 @@ var SQueryListCampaignPhaseDocuments = v12.object({
|
|
|
1364
1817
|
});
|
|
1365
1818
|
var SCreateCampaignPhaseDocument = v12.object({
|
|
1366
1819
|
group: IsValidReferenceDocumentId,
|
|
1820
|
+
creator: IsValidReferenceDocumentId,
|
|
1367
1821
|
label: IsValidLabel,
|
|
1368
1822
|
value: IsValidValue,
|
|
1369
1823
|
description: IsValidDescription,
|
|
@@ -1443,6 +1897,7 @@ var SQueryListCampaignProductDocuments = v12.object({
|
|
|
1443
1897
|
});
|
|
1444
1898
|
var SCreateCampaignProductDocument = v12.object({
|
|
1445
1899
|
group: IsValidReferenceDocumentId,
|
|
1900
|
+
creator: IsValidReferenceDocumentId,
|
|
1446
1901
|
label: IsValidLabel,
|
|
1447
1902
|
value: IsValidValue,
|
|
1448
1903
|
description: IsValidDescription,
|
|
@@ -1522,6 +1977,7 @@ var SQueryListCampaignTargetDocuments = v12.object({
|
|
|
1522
1977
|
});
|
|
1523
1978
|
var SCreateCampaignTargetDocument = v12.object({
|
|
1524
1979
|
group: IsValidReferenceDocumentId,
|
|
1980
|
+
creator: IsValidReferenceDocumentId,
|
|
1525
1981
|
label: IsValidLabel,
|
|
1526
1982
|
value: IsValidValue,
|
|
1527
1983
|
description: IsValidDescription,
|
|
@@ -1601,6 +2057,7 @@ var SQueryListContentDocuments = v12.object({
|
|
|
1601
2057
|
});
|
|
1602
2058
|
var SCreateContentDocument = v12.object({
|
|
1603
2059
|
group: IsValidReferenceDocumentId,
|
|
2060
|
+
creator: IsValidReferenceDocumentId,
|
|
1604
2061
|
label: IsValidLabel,
|
|
1605
2062
|
value: IsValidValue,
|
|
1606
2063
|
description: IsValidDescription,
|
|
@@ -1680,6 +2137,7 @@ var SQueryListCreativeFormatVariantDocuments = v12.object({
|
|
|
1680
2137
|
});
|
|
1681
2138
|
var SCreateCreativeFormatVariantDocument = v12.object({
|
|
1682
2139
|
group: IsValidReferenceDocumentId,
|
|
2140
|
+
creator: IsValidReferenceDocumentId,
|
|
1683
2141
|
label: IsValidLabel,
|
|
1684
2142
|
value: IsValidValue,
|
|
1685
2143
|
description: IsValidDescription,
|
|
@@ -1759,6 +2217,7 @@ var SQueryListCreativeFormatDocuments = v12.object({
|
|
|
1759
2217
|
});
|
|
1760
2218
|
var SCreateCreativeFormatDocument = v12.object({
|
|
1761
2219
|
group: IsValidReferenceDocumentId,
|
|
2220
|
+
creator: IsValidReferenceDocumentId,
|
|
1762
2221
|
label: IsValidLabel,
|
|
1763
2222
|
value: IsValidValue,
|
|
1764
2223
|
description: IsValidDescription,
|
|
@@ -1838,6 +2297,7 @@ var SQueryListMediumDocuments = v12.object({
|
|
|
1838
2297
|
});
|
|
1839
2298
|
var SCreateMediumDocument = v12.object({
|
|
1840
2299
|
group: IsValidReferenceDocumentId,
|
|
2300
|
+
creator: IsValidReferenceDocumentId,
|
|
1841
2301
|
label: IsValidLabel,
|
|
1842
2302
|
value: IsValidValue,
|
|
1843
2303
|
description: IsValidDescription,
|
|
@@ -1917,6 +2377,7 @@ var SQueryListSourceDocuments = v12.object({
|
|
|
1917
2377
|
});
|
|
1918
2378
|
var SCreateSourceDocument = v12.object({
|
|
1919
2379
|
group: IsValidReferenceDocumentId,
|
|
2380
|
+
creator: IsValidReferenceDocumentId,
|
|
1920
2381
|
label: IsValidLabel,
|
|
1921
2382
|
value: IsValidValue,
|
|
1922
2383
|
description: IsValidDescription,
|
|
@@ -1996,6 +2457,7 @@ var SQueryListTermDocuments = v12.object({
|
|
|
1996
2457
|
});
|
|
1997
2458
|
var SCreateTermDocument = v12.object({
|
|
1998
2459
|
group: IsValidReferenceDocumentId,
|
|
2460
|
+
creator: IsValidReferenceDocumentId,
|
|
1999
2461
|
label: IsValidLabel,
|
|
2000
2462
|
value: IsValidValue,
|
|
2001
2463
|
description: IsValidDescription,
|
|
@@ -2075,6 +2537,7 @@ var SQueryListWebsiteDocuments = v12.object({
|
|
|
2075
2537
|
});
|
|
2076
2538
|
var SCreateWebsiteDocument = v12.object({
|
|
2077
2539
|
group: IsValidReferenceDocumentId,
|
|
2540
|
+
creator: IsValidReferenceDocumentId,
|
|
2078
2541
|
domain: IsValidUrlDomain,
|
|
2079
2542
|
description: IsValidOrUndefinedDescription,
|
|
2080
2543
|
is_secure: IsValidIsSecure,
|
|
@@ -3393,6 +3856,6 @@ function omitUndefined(obj) {
|
|
|
3393
3856
|
return result;
|
|
3394
3857
|
}
|
|
3395
3858
|
|
|
3396
|
-
export { CAMPAIGN_ID_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_ID_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_KEY_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_KEY_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_PHASE_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_PHASE_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_PRODUCT_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_PRODUCT_PAGINATION_MAX_SIZE_LIMIT, CONTENT_PAGINATION_DEFAULT_SIZE_LIMIT, CONTENT_PAGINATION_MAX_SIZE_LIMIT, CREATIVE_FORMAT_PAGINATION_DEFAULT_SIZE_LIMIT, CREATIVE_FORMAT_PAGINATION_MAX_SIZE_LIMIT, CREATIVE_FORMAT_VARIANT_PAGINATION_DEFAULT_SIZE_LIMIT, CREATIVE_FORMAT_VARIANT_PAGINATION_MAX_SIZE_LIMIT, DEFAULT_CAMPAIGN_PHASES, DEFAULT_CONTENTS, DEFAULT_CREATIVE_FORMATS, DEFAULT_CREATIVE_FORMAT_VARIANTS, DEFAULT_MEDIUMS, DEFAULT_SOURCES, ERROR_MESSAGE_REGEX_DOMAIN, ERROR_MESSAGE_REGEX_VALUE, GROUP_PAGINATION_DEFAULT_SIZE_LIMIT, GROUP_PAGINATION_MAX_SIZE_LIMIT, GROUP_USER_PAGINATION_DEFAULT_SIZE_LIMIT, GROUP_USER_PAGINATION_MAX_SIZE_LIMIT, GroupApplyValueAsOptions, GroupApplyValueToOptions, IsValidApplyValueAs, IsValidApplyValueTo, IsValidBlocked, IsValidConfirmed, IsValidCost, IsValidCurrentPeriodEnd, IsValidCurrentPeriodStart, IsValidCustomerId, IsValidDescription, IsValidEmail, IsValidGroupUserScopes, IsValidGroupValue, IsValidIsActive, IsValidIsBoolean, IsValidIsSecure, IsValidLabel, IsValidMinPage, IsValidName, IsValidOrUndefinedApplyValueAs, IsValidOrUndefinedApplyValueTo, IsValidOrUndefinedBlocked, IsValidOrUndefinedConfirmed, IsValidOrUndefinedCost, IsValidOrUndefinedCurrentPeriodEnd, IsValidOrUndefinedCurrentPeriodStart, IsValidOrUndefinedCustomerId, IsValidOrUndefinedDescription, IsValidOrUndefinedEmail, IsValidOrUndefinedGroupValue, IsValidOrUndefinedIsActive, IsValidOrUndefinedIsBoolean, IsValidOrUndefinedIsSecure, IsValidOrUndefinedLabel, IsValidOrUndefinedName, IsValidOrUndefinedPassword, IsValidOrUndefinedPriceId, IsValidOrUndefinedProductId, IsValidOrUndefinedProvider, IsValidOrUndefinedSubscriptionId, IsValidOrUndefinedSubscriptionStatus, IsValidOrUndefinedTrialPeriodEnd, IsValidOrUndefinedUnitAmount, IsValidOrUndefinedUnitTermInMonths, IsValidOrUndefinedUrlDestination, IsValidOrUndefinedUrlDomain, IsValidOrUndefinedUrlFragment, IsValidOrUndefinedUrlPath, IsValidOrUndefinedUrlProtocol, IsValidOrUndefinedUrlQuery, IsValidOrUndefinedUrlUtmCampaign, IsValidOrUndefinedUrlUtmContent, IsValidOrUndefinedUrlUtmCreativeFormat, IsValidOrUndefinedUrlUtmId, IsValidOrUndefinedUrlUtmMedium, IsValidOrUndefinedUrlUtmPart, IsValidOrUndefinedUrlUtmSource, IsValidOrUndefinedUrlUtmTerm, IsValidOrUndefinedUserLimitationNumber, IsValidOrUndefinedUsername, IsValidOrUndefinedValue, IsValidPassword, IsValidPriceId, IsValidProductId, IsValidProvider, IsValidReferenceDocumentId, IsValidReferenceId, IsValidSubscriptionId, IsValidSubscriptionStatus, IsValidTrialPeriodEnd, IsValidUnitAmount, IsValidUnitTermInMonths, IsValidUrlDestination, IsValidUrlDomain, IsValidUrlFragment, IsValidUrlPath, IsValidUrlProtocol, IsValidUrlQuery, IsValidUrlUtmCampaign, IsValidUrlUtmContent, IsValidUrlUtmCreativeFormat, IsValidUrlUtmId, IsValidUrlUtmMedium, IsValidUrlUtmPart, IsValidUrlUtmSource, IsValidUrlUtmTerm, IsValidUserLimitationNumber, IsValidUserLimitationNumberFallback, IsValidUsername, IsValidValue, LIMIT_MAX_DESCRIPTION, LIMIT_MAX_DESTINATION, LIMIT_MAX_DOMAIN, LIMIT_MAX_EMAIL, LIMIT_MAX_FRAGMENT, LIMIT_MAX_GROUP_VALUE, LIMIT_MAX_LABEL, LIMIT_MAX_NAME, LIMIT_MAX_PASSWORD, LIMIT_MAX_PATH, LIMIT_MAX_PRICE_ID, LIMIT_MAX_PRODUCT_ID, LIMIT_MAX_PROVIDER, LIMIT_MAX_QUERY, LIMIT_MAX_STRIPE_ID, LIMIT_MAX_UNIT_TERM_IN_MONTHS, LIMIT_MAX_USERNAME, LIMIT_MAX_UTM_CAMPAIGN, LIMIT_MAX_UTM_CONTENT, LIMIT_MAX_UTM_CREATIVE_FORMAT, LIMIT_MAX_UTM_ID, LIMIT_MAX_UTM_MEDIUM, LIMIT_MAX_UTM_PART, LIMIT_MAX_UTM_SOURCE, LIMIT_MAX_UTM_TERM, LIMIT_MAX_VALUE, LIMIT_MIN_DESTINATION, LIMIT_MIN_DOMAIN, LIMIT_MIN_EMAIL, LIMIT_MIN_FRAGMENT, LIMIT_MIN_GROUP_VALUE, LIMIT_MIN_LABEL, LIMIT_MIN_NAME, LIMIT_MIN_PASSWORD, LIMIT_MIN_PATH, LIMIT_MIN_PRICE_ID, LIMIT_MIN_PRODUCT_ID, LIMIT_MIN_QUERY, LIMIT_MIN_UNIT_AMOUNT, LIMIT_MIN_UNIT_TERM_IN_MONTHS, LIMIT_MIN_USERNAME, LIMIT_MIN_UTM_CAMPAIGN, LIMIT_MIN_UTM_CONTENT, LIMIT_MIN_UTM_CREATIVE_FORMAT, LIMIT_MIN_UTM_ID, LIMIT_MIN_UTM_MEDIUM, LIMIT_MIN_UTM_PART, LIMIT_MIN_UTM_SOURCE, LIMIT_MIN_UTM_TERM, LIMIT_MIN_VALUE, MEDIUM_PAGINATION_DEFAULT_SIZE_LIMIT, MEDIUM_PAGINATION_MAX_SIZE_LIMIT, REGEX_DOMAIN, REGEX_VALUE, SBaseCampaignIdDocument, SBaseCampaignKeyDocument, SBaseCampaignPhaseDocument, SBaseCampaignProductDocument, SBaseCampaignTargetDocument, SBaseContentDocument, SBaseCreativeFormatDocument, SBaseCreativeFormatVariantDocument, SBaseDocument, SBaseDocumentCreatedBy, SBaseGroupDocument, SBaseGroupUserDocument, SBaseMediumDocument, SBaseRoleDocument, SBaseSourceDocument, SBaseTermDocument, SBaseTrackingLinkDocument, SBaseUserAccountDocument, SBaseUserDocument, SBaseUserLimitationsDocument, SBaseWebsiteDocument, SCampaignIdDocument, SCampaignIdDocumentWithRelations, SCampaignIdRelationsDocument, SCampaignKeyDocument, SCampaignKeyDocumentWithRelations, SCampaignKeyRelationsDocument, SCampaignPhaseDocument, SCampaignPhaseDocumentWithRelations, SCampaignPhaseRelationsDocument, SCampaignProductDocument, SCampaignProductDocumentWithRelations, SCampaignProductRelationsDocument, SCampaignTargetDocument, SCampaignTargetDocumentWithRelations, SCampaignTargetRelationsDocument, SChangePassword, SContentDocument, SContentDocumentWithRelations, SContentRelationsDocument, SCreateCampaignIdDocument, SCreateCampaignKeyDocument, SCreateCampaignPhaseDocument, SCreateCampaignProductDocument, SCreateCampaignTargetDocument, SCreateContentDocument, SCreateCreativeFormatDocument, SCreateCreativeFormatVariantDocument, SCreateGroupDocument, SCreateGroupUserAssignMultipleUsers, SCreateGroupUserDocument, SCreateMediumDocument, SCreateMultipleCampaignIdDocuments, SCreateMultipleCampaignKeyDocuments, SCreateMultipleCampaignPhaseDocuments, SCreateMultipleCampaignProductDocuments, SCreateMultipleCampaignTargetDocuments, SCreateMultipleContentDocuments, SCreateMultipleCreativeFormatDocuments, SCreateMultipleCreativeFormatVariantDocuments, SCreateMultipleMediumDocuments, SCreateMultipleSourceDocuments, SCreateMultipleTermDocuments, SCreateMultipleTrackingLinkDocuments, SCreateMultipleWebsiteDocuments, SCreatePreviewMultipleTrackingLinkDocuments, SCreatePreviewTrackingLinkDocument, SCreateSourceDocument, SCreateTermDocument, SCreateTrackingLinkDocument, SCreateUserAccountDocument, SCreateUserDocument, SCreateUserLimitationsDocument, SCreateWebsiteDocument, SCreativeFormatDocument, SCreativeFormatDocumentWithRelations, SCreativeFormatRelationsDocument, SCreativeFormatVariantDocument, SCreativeFormatVariantDocumentWithRelations, SCreativeFormatVariantRelationsDocument, SDeleteCampaignIdDocument, SDeleteCampaignKeyDocument, SDeleteCampaignPhaseDocument, SDeleteCampaignProductDocument, SDeleteCampaignTargetDocument, SDeleteContentDocument, SDeleteCreativeFormatDocument, SDeleteCreativeFormatVariantDocument, SDeleteGroupDocument, SDeleteGroupUserDocument, SDeleteMediumDocument, SDeleteSourceDocument, SDeleteTermDocument, SDeleteTrackingLinkDocument, SDeleteWebsiteDocument, SForgotPasswordUserDocument, SGroupDocument, SGroupDocumentWithRelations, SGroupRelationAuthorizedUsers, SGroupRelationCampaignIds, SGroupRelationCampaignKeys, SGroupRelationCampaignPhases, SGroupRelationCampaignProducts, SGroupRelationContents, SGroupRelationCreativeFormatVariants, SGroupRelationCreativeFormats, SGroupRelationMediums, SGroupRelationSources, SGroupRelationTerms, SGroupRelationTrackingLinks, SGroupRelationWebsites, SGroupRelationsDocument, SGroupUserDocument, SGroupUserDocumentReqRelations, SGroupUserDocumentStatus, SGroupUserDocumentWithRelations, SGroupUserRelationsDocument, SGroupUserRelationsReqDocument, SLoginUserDocument, SMediumDocument, SMediumDocumentWithRelations, SMediumRelationsDocument, SOURCE_PAGINATION_DEFAULT_SIZE_LIMIT, SOURCE_PAGINATION_MAX_SIZE_LIMIT, SQueryListCampaignIdDocuments, SQueryListCampaignKeyDocuments, SQueryListCampaignPhaseDocuments, SQueryListCampaignProductDocuments, SQueryListCampaignTargetDocuments, SQueryListContentDocuments, SQueryListCreativeFormatDocuments, SQueryListCreativeFormatVariantDocuments, SQueryListGroupDocuments, SQueryListGroupUserDocuments, SQueryListMediumDocuments, SQueryListSourceDocuments, SQueryListTermDocuments, SQueryListTrackingLinkDocuments, SQueryListUserAccountDocuments, SQueryListUserDocuments, SQueryListUserDocumentsByIdentifier, SQueryListUserLimitationDocuments, SQueryListWebsiteDocuments, SQuerySortCampaignIdDocuments, SQuerySortCampaignKeyDocuments, SQuerySortCampaignPhaseDocuments, SQuerySortCampaignProductDocuments, SQuerySortCampaignTargetDocuments, SQuerySortContentDocuments, SQuerySortCreativeFormatDocuments, SQuerySortCreativeFormatVariantDocuments, SQuerySortGroupDocuments, SQuerySortMediumDocuments, SQuerySortSourceDocuments, SQuerySortTermDocuments, SQuerySortTrackingLinkDocuments, SQuerySortUserDocuments, SQuerySortWebsiteDocuments, SReadCampaignIdDocumentByDocumentId, SReadCampaignIdDocumentById, SReadCampaignKeyDocumentByDocumentId, SReadCampaignKeyDocumentById, SReadCampaignPhaseDocumentByDocumentId, SReadCampaignPhaseDocumentById, SReadCampaignProductDocumentByDocumentId, SReadCampaignProductDocumentById, SReadCampaignTargetDocumentByDocumentId, SReadCampaignTargetDocumentById, SReadContentDocumentByDocumentId, SReadContentDocumentById, SReadCreativeFormatDocumentByDocumentId, SReadCreativeFormatDocumentById, SReadCreativeFormatVariantDocumentByDocumentId, SReadCreativeFormatVariantDocumentById, SReadGroupDocumentByDocumentId, SReadGroupDocumentById, SReadGroupUserDocumentByDocumentId, SReadGroupUserDocumentById, SReadMediumDocumentByDocumentId, SReadMediumDocumentById, SReadSourceDocumentByDocumentId, SReadSourceDocumentById, SReadTermDocumentByDocumentId, SReadTermDocumentById, SReadTrackingLinkDocumentByDocumentId, SReadTrackingLinkDocumentById, SReadUserAccountDocumentByDocumentId, SReadUserAccountDocumentById, SReadUserDocumentByDocumentId, SReadUserDocumentById, SReadUserDocumentToken, SReadUserLimitationsDocumentByDocumentId, SReadUserLimitationsDocumentById, SReadWebsiteDocumentByDocumentId, SReadWebsiteDocumentById, SRegisterUserDocument, SRequestConfirmEmail, SResetPasswordUserDocument, SRoleDocument, SRoleDocumentWithRelations, SRoleRelationsDocument, SSourceDocument, SSourceDocumentWithRelations, SSourceRelationsDocument, SStripeCheckoutCreateSession, SStripeCheckoutLineItem, STRAPI_PAGINATION_DEFAULT_SIZE_LIMIT, STRAPI_PAGINATION_MAX_SIZE_LIMIT, STRAPI_PAGINATION_MIN_SIZE_LIMIT, STermDocument, STermDocumentWithRelations, STermRelationsDocument, STrackingLinkDocument, STrackingLinkDocumentWithRelations, STrackingLinkRelationsDocument, SUpdateAsCreatorCampaignIdDocument, SUpdateAsCreatorCampaignIdDocumentRequest, SUpdateAsCreatorCampaignKeyDocument, SUpdateAsCreatorCampaignKeyDocumentRequest, SUpdateAsCreatorCampaignPhaseDocument, SUpdateAsCreatorCampaignPhaseDocumentRequest, SUpdateAsCreatorCampaignProductDocument, SUpdateAsCreatorCampaignProductDocumentRequest, SUpdateAsCreatorCampaignTargetDocument, SUpdateAsCreatorCampaignTargetDocumentRequest, SUpdateAsCreatorContentDocument, SUpdateAsCreatorContentDocumentRequest, SUpdateAsCreatorCreativeFormatDocument, SUpdateAsCreatorCreativeFormatDocumentRequest, SUpdateAsCreatorCreativeFormatVariantDocument, SUpdateAsCreatorCreativeFormatVariantDocumentRequest, SUpdateAsCreatorGroupDocument, SUpdateAsCreatorGroupDocumentRequest, SUpdateAsCreatorMediumDocument, SUpdateAsCreatorMediumDocumentRequest, SUpdateAsCreatorSourceDocument, SUpdateAsCreatorSourceDocumentRequest, SUpdateAsCreatorTermDocument, SUpdateAsCreatorTermDocumentRequest, SUpdateAsCreatorTrackingLinkDocument, SUpdateAsCreatorTrackingLinkDocumentRequest, SUpdateAsCreatorWebsiteDocument, SUpdateAsCreatorWebsiteDocumentRequest, SUpdateAsInvitedCampaignIdDocument, SUpdateAsInvitedCampaignIdDocumentRequest, SUpdateAsInvitedCampaignKeyDocument, SUpdateAsInvitedCampaignKeyDocumentRequest, SUpdateAsInvitedCampaignPhaseDocument, SUpdateAsInvitedCampaignPhaseDocumentRequest, SUpdateAsInvitedCampaignProductDocument, SUpdateAsInvitedCampaignProductDocumentRequest, SUpdateAsInvitedCampaignTargetDocument, SUpdateAsInvitedCampaignTargetDocumentRequest, SUpdateAsInvitedContentDocument, SUpdateAsInvitedContentDocumentRequest, SUpdateAsInvitedCreativeFormatDocument, SUpdateAsInvitedCreativeFormatDocumentRequest, SUpdateAsInvitedCreativeFormatVariantDocument, SUpdateAsInvitedCreativeFormatVariantDocumentRequest, SUpdateAsInvitedGroupDocument, SUpdateAsInvitedGroupDocumentRequest, SUpdateAsInvitedMediumDocument, SUpdateAsInvitedMediumDocumentRequest, SUpdateAsInvitedSourceDocument, SUpdateAsInvitedSourceDocumentRequest, SUpdateAsInvitedTermDocument, SUpdateAsInvitedTermDocumentRequest, SUpdateAsInvitedTrackingLinkDocument, SUpdateAsInvitedTrackingLinkDocumentRequest, SUpdateAsInvitedWebsiteDocument, SUpdateAsInvitedWebsiteDocumentRequest, SUpdateCampaignIdDocumentRequest, SUpdateCampaignKeyDocumentRequest, SUpdateCampaignPhaseDocumentRequest, SUpdateCampaignProductDocumentRequest, SUpdateCampaignTargetDocumentRequest, SUpdateContentDocumentRequest, SUpdateCreativeFormatDocumentRequest, SUpdateCreativeFormatVariantDocumentRequest, SUpdateGroupDocumentRequest, SUpdateGroupUserDocument, SUpdateGroupUserDocumentRequest, SUpdateMediumDocumentRequest, SUpdateSourceDocumentRequest, SUpdateTermDocumentRequest, SUpdateTrackingLinkDocumentRequest, SUpdateUserAccountDocument, SUpdateUserDocument, SUpdateUserLimitationsDocument, SUpdateWebsiteDocumentRequest, SUserAccountDocument, SUserAccountDocumentReqRelations, SUserAccountDocumentWithRelations, SUserAccountRelationsDocument, SUserAccountRelationsReqDocument, SUserAuthorizationSuccessResponse, SUserDocument, SUserDocumentWithAccountAndRoleRelations, SUserDocumentWithAccountRelations, SUserDocumentWithRelations, SUserLimitationsDocument, SUserLimitationsDocumentWithRelations, SUserLimitationsRelationsDocument, SUserRelationAccount, SUserRelationAuthorizedGroups, SUserRelationCampaignIds, SUserRelationCampaignKeys, SUserRelationCampaignPhases, SUserRelationCampaignProducts, SUserRelationContents, SUserRelationCreatedWebsites, SUserRelationCreativeFormatVariants, SUserRelationCreativeFormats, SUserRelationLimits, SUserRelationMediums, SUserRelationReqAccount, SUserRelationReqLimits, SUserRelationReqRole, SUserRelationRole, SUserRelationSources, SUserRelationTerms, SUserRelationTrackingLinks, SUserRelationsDocument, SUtmLinkBuilderPartCampaignDateFormat, SUtmLinkBuilderPartCampaignDateFormatOptions, SUtmLinkBuilderPartCampaignDateObject, SUtmLinkBuilderPartCampaignDateValue, SUtmLinkBuilderPartCampaignDateValueDay, SUtmLinkBuilderPartCampaignDateValueMonth, SUtmLinkBuilderPartCampaignDateValueQuarter, SUtmLinkBuilderPartCampaignDateValueYear, SUtmLinkBuilderPartCampaignId, SUtmLinkBuilderPartCampaignKey, SUtmLinkBuilderPartCampaignObject, SUtmLinkBuilderPartCampaignPhase, SUtmLinkBuilderPartCampaignProduct, SUtmLinkBuilderPartCampaignTargeting, SUtmLinkBuilderPartCampaigns, SUtmLinkBuilderPartContents, SUtmLinkBuilderPartCreativeFormatObject, SUtmLinkBuilderPartCreativeFormatValue, SUtmLinkBuilderPartCreativeFormatVariantValue, SUtmLinkBuilderPartCreativeFormats, SUtmLinkBuilderPartMediums, SUtmLinkBuilderPartSources, SUtmLinkBuilderPartTerms, SUtmLinkBuilderPartUrlDestinations, SUtmLinkBuilderPartUrlObject, SUtmLinkBuilderTableForm, SVerifyGroupUserDocument, SWebsiteDocument, SWebsiteDocumentWithRelations, SWebsiteRelationsDocument, SubscriptionStatusValues, TERM_PAGINATION_DEFAULT_SIZE_LIMIT, TERM_PAGINATION_MAX_SIZE_LIMIT, TRACKING_LINK_PAGINATION_DEFAULT_SIZE_LIMIT, TRACKING_LINK_PAGINATION_MAX_SIZE_LIMIT, USER_ACCOUNT_PAGINATION_DEFAULT_SIZE_LIMIT, USER_ACCOUNT_PAGINATION_MAX_SIZE_LIMIT, USER_LIMITATION_PAGINATION_DEFAULT_SIZE_LIMIT, USER_LIMITATION_PAGINATION_MAX_SIZE_LIMIT, USER_PAGINATION_DEFAULT_SIZE_LIMIT, USER_PAGINATION_MAX_SIZE_LIMIT, UrlProtocolOptions, WEBSITE_PAGINATION_DEFAULT_SIZE_LIMIT, WEBSITE_PAGINATION_MAX_SIZE_LIMIT, datePlusDays, dateToday, isStrapiAttributeError, isStrapiStandardError, isValidationFailure, isValidationSuccess, omitUndefined, validateAndClean };
|
|
3859
|
+
export { CAMPAIGN_ID_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_ID_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_KEY_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_KEY_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_PHASE_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_PHASE_PAGINATION_MAX_SIZE_LIMIT, CAMPAIGN_PRODUCT_PAGINATION_DEFAULT_SIZE_LIMIT, CAMPAIGN_PRODUCT_PAGINATION_MAX_SIZE_LIMIT, CONTENT_PAGINATION_DEFAULT_SIZE_LIMIT, CONTENT_PAGINATION_MAX_SIZE_LIMIT, CREATIVE_FORMAT_PAGINATION_DEFAULT_SIZE_LIMIT, CREATIVE_FORMAT_PAGINATION_MAX_SIZE_LIMIT, CREATIVE_FORMAT_VARIANT_PAGINATION_DEFAULT_SIZE_LIMIT, CREATIVE_FORMAT_VARIANT_PAGINATION_MAX_SIZE_LIMIT, DEFAULT_CAMPAIGN_PHASES, DEFAULT_CONTENTS, DEFAULT_CREATIVE_FORMATS, DEFAULT_CREATIVE_FORMAT_VARIANTS, DEFAULT_MEDIUMS, DEFAULT_SOURCES, ERROR_MESSAGE_REGEX_DOMAIN, ERROR_MESSAGE_REGEX_VALUE, GROUP_ENTITY_KEYS, GROUP_ENTITY_PERMISSIONS, GROUP_ENTITY_SCOPES, GROUP_PAGINATION_DEFAULT_SIZE_LIMIT, GROUP_PAGINATION_MAX_SIZE_LIMIT, GROUP_USER_PAGINATION_DEFAULT_SIZE_LIMIT, GROUP_USER_PAGINATION_MAX_SIZE_LIMIT, GroupApplyValueAsOptions, GroupApplyValueToOptions, IsValidApplyValueAs, IsValidApplyValueTo, IsValidBlocked, IsValidConfirmed, IsValidCost, IsValidCurrentPeriodEnd, IsValidCurrentPeriodStart, IsValidCustomerId, IsValidDescription, IsValidEmail, IsValidGroupUserScopes, IsValidGroupValue, IsValidIsActive, IsValidIsBoolean, IsValidIsSecure, IsValidLabel, IsValidMinPage, IsValidName, IsValidOrUndefinedApplyValueAs, IsValidOrUndefinedApplyValueTo, IsValidOrUndefinedBlocked, IsValidOrUndefinedConfirmed, IsValidOrUndefinedCost, IsValidOrUndefinedCurrentPeriodEnd, IsValidOrUndefinedCurrentPeriodStart, IsValidOrUndefinedCustomerId, IsValidOrUndefinedDescription, IsValidOrUndefinedEmail, IsValidOrUndefinedGroupValue, IsValidOrUndefinedIsActive, IsValidOrUndefinedIsBoolean, IsValidOrUndefinedIsSecure, IsValidOrUndefinedLabel, IsValidOrUndefinedName, IsValidOrUndefinedPassword, IsValidOrUndefinedPriceId, IsValidOrUndefinedProductId, IsValidOrUndefinedProvider, IsValidOrUndefinedSubscriptionId, IsValidOrUndefinedSubscriptionStatus, IsValidOrUndefinedTrialPeriodEnd, IsValidOrUndefinedUnitAmount, IsValidOrUndefinedUnitTermInMonths, IsValidOrUndefinedUrlDestination, IsValidOrUndefinedUrlDomain, IsValidOrUndefinedUrlFragment, IsValidOrUndefinedUrlPath, IsValidOrUndefinedUrlProtocol, IsValidOrUndefinedUrlQuery, IsValidOrUndefinedUrlUtmCampaign, IsValidOrUndefinedUrlUtmContent, IsValidOrUndefinedUrlUtmCreativeFormat, IsValidOrUndefinedUrlUtmId, IsValidOrUndefinedUrlUtmMedium, IsValidOrUndefinedUrlUtmPart, IsValidOrUndefinedUrlUtmSource, IsValidOrUndefinedUrlUtmTerm, IsValidOrUndefinedUserLimitationNumber, IsValidOrUndefinedUsername, IsValidOrUndefinedValue, IsValidPassword, IsValidPriceId, IsValidProductId, IsValidProvider, IsValidReferenceDocumentId, IsValidReferenceId, IsValidSubscriptionId, IsValidSubscriptionStatus, IsValidTrialPeriodEnd, IsValidUnitAmount, IsValidUnitTermInMonths, IsValidUrlDestination, IsValidUrlDomain, IsValidUrlFragment, IsValidUrlPath, IsValidUrlProtocol, IsValidUrlQuery, IsValidUrlUtmCampaign, IsValidUrlUtmContent, IsValidUrlUtmCreativeFormat, IsValidUrlUtmId, IsValidUrlUtmMedium, IsValidUrlUtmPart, IsValidUrlUtmSource, IsValidUrlUtmTerm, IsValidUserLimitationNumber, IsValidUserLimitationNumberFallback, IsValidUsername, IsValidValue, LIMIT_MAX_DESCRIPTION, LIMIT_MAX_DESTINATION, LIMIT_MAX_DOMAIN, LIMIT_MAX_EMAIL, LIMIT_MAX_FRAGMENT, LIMIT_MAX_GROUP_VALUE, LIMIT_MAX_LABEL, LIMIT_MAX_NAME, LIMIT_MAX_PASSWORD, LIMIT_MAX_PATH, LIMIT_MAX_PRICE_ID, LIMIT_MAX_PRODUCT_ID, LIMIT_MAX_PROVIDER, LIMIT_MAX_QUERY, LIMIT_MAX_STRIPE_ID, LIMIT_MAX_UNIT_TERM_IN_MONTHS, LIMIT_MAX_USERNAME, LIMIT_MAX_UTM_CAMPAIGN, LIMIT_MAX_UTM_CONTENT, LIMIT_MAX_UTM_CREATIVE_FORMAT, LIMIT_MAX_UTM_ID, LIMIT_MAX_UTM_MEDIUM, LIMIT_MAX_UTM_PART, LIMIT_MAX_UTM_SOURCE, LIMIT_MAX_UTM_TERM, LIMIT_MAX_VALUE, LIMIT_MIN_DESTINATION, LIMIT_MIN_DOMAIN, LIMIT_MIN_EMAIL, LIMIT_MIN_FRAGMENT, LIMIT_MIN_GROUP_VALUE, LIMIT_MIN_LABEL, LIMIT_MIN_NAME, LIMIT_MIN_PASSWORD, LIMIT_MIN_PATH, LIMIT_MIN_PRICE_ID, LIMIT_MIN_PRODUCT_ID, LIMIT_MIN_QUERY, LIMIT_MIN_UNIT_AMOUNT, LIMIT_MIN_UNIT_TERM_IN_MONTHS, LIMIT_MIN_USERNAME, LIMIT_MIN_UTM_CAMPAIGN, LIMIT_MIN_UTM_CONTENT, LIMIT_MIN_UTM_CREATIVE_FORMAT, LIMIT_MIN_UTM_ID, LIMIT_MIN_UTM_MEDIUM, LIMIT_MIN_UTM_PART, LIMIT_MIN_UTM_SOURCE, LIMIT_MIN_UTM_TERM, LIMIT_MIN_VALUE, MEDIUM_PAGINATION_DEFAULT_SIZE_LIMIT, MEDIUM_PAGINATION_MAX_SIZE_LIMIT, REGEX_DOMAIN, REGEX_VALUE, ROLE_PERMISSIONS, SBaseCampaignIdDocument, SBaseCampaignKeyDocument, SBaseCampaignPhaseDocument, SBaseCampaignProductDocument, SBaseCampaignTargetDocument, SBaseContentDocument, SBaseCreativeFormatDocument, SBaseCreativeFormatVariantDocument, SBaseDocument, SBaseDocumentCreatedBy, SBaseGroupDocument, SBaseGroupUserDocument, SBaseMediumDocument, SBaseRoleDocument, SBaseSourceDocument, SBaseTermDocument, SBaseTrackingLinkDocument, SBaseUserAccountDocument, SBaseUserDocument, SBaseUserLimitationsDocument, SBaseWebsiteDocument, SCampaignIdDocument, SCampaignIdDocumentWithRelations, SCampaignIdRelationsDocument, SCampaignKeyDocument, SCampaignKeyDocumentWithRelations, SCampaignKeyRelationsDocument, SCampaignPhaseDocument, SCampaignPhaseDocumentWithRelations, SCampaignPhaseRelationsDocument, SCampaignProductDocument, SCampaignProductDocumentWithRelations, SCampaignProductRelationsDocument, SCampaignTargetDocument, SCampaignTargetDocumentWithRelations, SCampaignTargetRelationsDocument, SChangePassword, SContentDocument, SContentDocumentWithRelations, SContentRelationsDocument, SCreateCampaignIdDocument, SCreateCampaignKeyDocument, SCreateCampaignPhaseDocument, SCreateCampaignProductDocument, SCreateCampaignTargetDocument, SCreateContentDocument, SCreateCreativeFormatDocument, SCreateCreativeFormatVariantDocument, SCreateGroupDocument, SCreateGroupUserAssignMultipleUsers, SCreateGroupUserDocument, SCreateMediumDocument, SCreateMultipleCampaignIdDocuments, SCreateMultipleCampaignKeyDocuments, SCreateMultipleCampaignPhaseDocuments, SCreateMultipleCampaignProductDocuments, SCreateMultipleCampaignTargetDocuments, SCreateMultipleContentDocuments, SCreateMultipleCreativeFormatDocuments, SCreateMultipleCreativeFormatVariantDocuments, SCreateMultipleMediumDocuments, SCreateMultipleSourceDocuments, SCreateMultipleTermDocuments, SCreateMultipleTrackingLinkDocuments, SCreateMultipleWebsiteDocuments, SCreatePreviewMultipleTrackingLinkDocuments, SCreatePreviewTrackingLinkDocument, SCreateSourceDocument, SCreateTermDocument, SCreateTrackingLinkDocument, SCreateUserAccountDocument, SCreateUserDocument, SCreateUserLimitationsDocument, SCreateWebsiteDocument, SCreativeFormatDocument, SCreativeFormatDocumentWithRelations, SCreativeFormatRelationsDocument, SCreativeFormatVariantDocument, SCreativeFormatVariantDocumentWithRelations, SCreativeFormatVariantRelationsDocument, SDeleteCampaignIdDocument, SDeleteCampaignKeyDocument, SDeleteCampaignPhaseDocument, SDeleteCampaignProductDocument, SDeleteCampaignTargetDocument, SDeleteContentDocument, SDeleteCreativeFormatDocument, SDeleteCreativeFormatVariantDocument, SDeleteGroupDocument, SDeleteGroupUserDocument, SDeleteMediumDocument, SDeleteSourceDocument, SDeleteTermDocument, SDeleteTrackingLinkDocument, SDeleteWebsiteDocument, SForgotPasswordUserDocument, SGroupDocument, SGroupDocumentWithRelations, SGroupRelationAuthorizedUsers, SGroupRelationCampaignIds, SGroupRelationCampaignKeys, SGroupRelationCampaignPhases, SGroupRelationCampaignProducts, SGroupRelationContents, SGroupRelationCreativeFormatVariants, SGroupRelationCreativeFormats, SGroupRelationMediums, SGroupRelationSources, SGroupRelationTerms, SGroupRelationTrackingLinks, SGroupRelationWebsites, SGroupRelationsDocument, SGroupUserDocument, SGroupUserDocumentReqRelations, SGroupUserDocumentStatus, SGroupUserDocumentWithRelations, SGroupUserRelationsDocument, SGroupUserRelationsReqDocument, SLoginUserDocument, SMediumDocument, SMediumDocumentWithRelations, SMediumRelationsDocument, SOURCE_PAGINATION_DEFAULT_SIZE_LIMIT, SOURCE_PAGINATION_MAX_SIZE_LIMIT, SQueryListCampaignIdDocuments, SQueryListCampaignKeyDocuments, SQueryListCampaignPhaseDocuments, SQueryListCampaignProductDocuments, SQueryListCampaignTargetDocuments, SQueryListContentDocuments, SQueryListCreativeFormatDocuments, SQueryListCreativeFormatVariantDocuments, SQueryListGroupDocuments, SQueryListGroupUserDocuments, SQueryListMediumDocuments, SQueryListSourceDocuments, SQueryListTermDocuments, SQueryListTrackingLinkDocuments, SQueryListUserAccountDocuments, SQueryListUserDocuments, SQueryListUserDocumentsByIdentifier, SQueryListUserLimitationDocuments, SQueryListWebsiteDocuments, SQuerySortCampaignIdDocuments, SQuerySortCampaignKeyDocuments, SQuerySortCampaignPhaseDocuments, SQuerySortCampaignProductDocuments, SQuerySortCampaignTargetDocuments, SQuerySortContentDocuments, SQuerySortCreativeFormatDocuments, SQuerySortCreativeFormatVariantDocuments, SQuerySortGroupDocuments, SQuerySortMediumDocuments, SQuerySortSourceDocuments, SQuerySortTermDocuments, SQuerySortTrackingLinkDocuments, SQuerySortUserDocuments, SQuerySortWebsiteDocuments, SReadCampaignIdDocumentByDocumentId, SReadCampaignIdDocumentById, SReadCampaignKeyDocumentByDocumentId, SReadCampaignKeyDocumentById, SReadCampaignPhaseDocumentByDocumentId, SReadCampaignPhaseDocumentById, SReadCampaignProductDocumentByDocumentId, SReadCampaignProductDocumentById, SReadCampaignTargetDocumentByDocumentId, SReadCampaignTargetDocumentById, SReadContentDocumentByDocumentId, SReadContentDocumentById, SReadCreativeFormatDocumentByDocumentId, SReadCreativeFormatDocumentById, SReadCreativeFormatVariantDocumentByDocumentId, SReadCreativeFormatVariantDocumentById, SReadGroupDocumentByDocumentId, SReadGroupDocumentById, SReadGroupUserDocumentByDocumentId, SReadGroupUserDocumentById, SReadMediumDocumentByDocumentId, SReadMediumDocumentById, SReadSourceDocumentByDocumentId, SReadSourceDocumentById, SReadTermDocumentByDocumentId, SReadTermDocumentById, SReadTrackingLinkDocumentByDocumentId, SReadTrackingLinkDocumentById, SReadUserAccountDocumentByDocumentId, SReadUserAccountDocumentById, SReadUserDocumentByDocumentId, SReadUserDocumentById, SReadUserDocumentToken, SReadUserLimitationsDocumentByDocumentId, SReadUserLimitationsDocumentById, SReadWebsiteDocumentByDocumentId, SReadWebsiteDocumentById, SRegisterUserDocument, SRequestConfirmEmail, SResetPasswordUserDocument, SRoleDocument, SRoleDocumentWithRelations, SRoleRelationsDocument, SSourceDocument, SSourceDocumentWithRelations, SSourceRelationsDocument, SStripeCheckoutCreateSession, SStripeCheckoutLineItem, STRAPI_PAGINATION_DEFAULT_SIZE_LIMIT, STRAPI_PAGINATION_MAX_SIZE_LIMIT, STRAPI_PAGINATION_MIN_SIZE_LIMIT, STermDocument, STermDocumentWithRelations, STermRelationsDocument, STrackingLinkDocument, STrackingLinkDocumentWithRelations, STrackingLinkRelationsDocument, SUpdateAsCreatorCampaignIdDocument, SUpdateAsCreatorCampaignIdDocumentRequest, SUpdateAsCreatorCampaignKeyDocument, SUpdateAsCreatorCampaignKeyDocumentRequest, SUpdateAsCreatorCampaignPhaseDocument, SUpdateAsCreatorCampaignPhaseDocumentRequest, SUpdateAsCreatorCampaignProductDocument, SUpdateAsCreatorCampaignProductDocumentRequest, SUpdateAsCreatorCampaignTargetDocument, SUpdateAsCreatorCampaignTargetDocumentRequest, SUpdateAsCreatorContentDocument, SUpdateAsCreatorContentDocumentRequest, SUpdateAsCreatorCreativeFormatDocument, SUpdateAsCreatorCreativeFormatDocumentRequest, SUpdateAsCreatorCreativeFormatVariantDocument, SUpdateAsCreatorCreativeFormatVariantDocumentRequest, SUpdateAsCreatorGroupDocument, SUpdateAsCreatorGroupDocumentRequest, SUpdateAsCreatorMediumDocument, SUpdateAsCreatorMediumDocumentRequest, SUpdateAsCreatorSourceDocument, SUpdateAsCreatorSourceDocumentRequest, SUpdateAsCreatorTermDocument, SUpdateAsCreatorTermDocumentRequest, SUpdateAsCreatorTrackingLinkDocument, SUpdateAsCreatorTrackingLinkDocumentRequest, SUpdateAsCreatorWebsiteDocument, SUpdateAsCreatorWebsiteDocumentRequest, SUpdateAsInvitedCampaignIdDocument, SUpdateAsInvitedCampaignIdDocumentRequest, SUpdateAsInvitedCampaignKeyDocument, SUpdateAsInvitedCampaignKeyDocumentRequest, SUpdateAsInvitedCampaignPhaseDocument, SUpdateAsInvitedCampaignPhaseDocumentRequest, SUpdateAsInvitedCampaignProductDocument, SUpdateAsInvitedCampaignProductDocumentRequest, SUpdateAsInvitedCampaignTargetDocument, SUpdateAsInvitedCampaignTargetDocumentRequest, SUpdateAsInvitedContentDocument, SUpdateAsInvitedContentDocumentRequest, SUpdateAsInvitedCreativeFormatDocument, SUpdateAsInvitedCreativeFormatDocumentRequest, SUpdateAsInvitedCreativeFormatVariantDocument, SUpdateAsInvitedCreativeFormatVariantDocumentRequest, SUpdateAsInvitedGroupDocument, SUpdateAsInvitedGroupDocumentRequest, SUpdateAsInvitedMediumDocument, SUpdateAsInvitedMediumDocumentRequest, SUpdateAsInvitedSourceDocument, SUpdateAsInvitedSourceDocumentRequest, SUpdateAsInvitedTermDocument, SUpdateAsInvitedTermDocumentRequest, SUpdateAsInvitedTrackingLinkDocument, SUpdateAsInvitedTrackingLinkDocumentRequest, SUpdateAsInvitedWebsiteDocument, SUpdateAsInvitedWebsiteDocumentRequest, SUpdateCampaignIdDocumentRequest, SUpdateCampaignKeyDocumentRequest, SUpdateCampaignPhaseDocumentRequest, SUpdateCampaignProductDocumentRequest, SUpdateCampaignTargetDocumentRequest, SUpdateContentDocumentRequest, SUpdateCreativeFormatDocumentRequest, SUpdateCreativeFormatVariantDocumentRequest, SUpdateGroupDocumentRequest, SUpdateGroupUserDocument, SUpdateGroupUserDocumentRequest, SUpdateMediumDocumentRequest, SUpdateSourceDocumentRequest, SUpdateTermDocumentRequest, SUpdateTrackingLinkDocumentRequest, SUpdateUserAccountDocument, SUpdateUserDocument, SUpdateUserLimitationsDocument, SUpdateWebsiteDocumentRequest, SUserAccountDocument, SUserAccountDocumentReqRelations, SUserAccountDocumentWithRelations, SUserAccountRelationsDocument, SUserAccountRelationsReqDocument, SUserAuthorizationSuccessResponse, SUserDocument, SUserDocumentWithAccountAndRoleRelations, SUserDocumentWithAccountRelations, SUserDocumentWithRelations, SUserLimitationsDocument, SUserLimitationsDocumentWithRelations, SUserLimitationsRelationsDocument, SUserRelationAccount, SUserRelationAuthorizedGroups, SUserRelationCampaignIds, SUserRelationCampaignKeys, SUserRelationCampaignPhases, SUserRelationCampaignProducts, SUserRelationContents, SUserRelationCreatedWebsites, SUserRelationCreativeFormatVariants, SUserRelationCreativeFormats, SUserRelationLimits, SUserRelationMediums, SUserRelationReqAccount, SUserRelationReqLimits, SUserRelationReqRole, SUserRelationRole, SUserRelationSources, SUserRelationTerms, SUserRelationTrackingLinks, SUserRelationsDocument, SUtmLinkBuilderPartCampaignDateFormat, SUtmLinkBuilderPartCampaignDateFormatOptions, SUtmLinkBuilderPartCampaignDateObject, SUtmLinkBuilderPartCampaignDateValue, SUtmLinkBuilderPartCampaignDateValueDay, SUtmLinkBuilderPartCampaignDateValueMonth, SUtmLinkBuilderPartCampaignDateValueQuarter, SUtmLinkBuilderPartCampaignDateValueYear, SUtmLinkBuilderPartCampaignId, SUtmLinkBuilderPartCampaignKey, SUtmLinkBuilderPartCampaignObject, SUtmLinkBuilderPartCampaignPhase, SUtmLinkBuilderPartCampaignProduct, SUtmLinkBuilderPartCampaignTargeting, SUtmLinkBuilderPartCampaigns, SUtmLinkBuilderPartContents, SUtmLinkBuilderPartCreativeFormatObject, SUtmLinkBuilderPartCreativeFormatValue, SUtmLinkBuilderPartCreativeFormatVariantValue, SUtmLinkBuilderPartCreativeFormats, SUtmLinkBuilderPartMediums, SUtmLinkBuilderPartSources, SUtmLinkBuilderPartTerms, SUtmLinkBuilderPartUrlDestinations, SUtmLinkBuilderPartUrlObject, SUtmLinkBuilderTableForm, SVerifyGroupUserDocument, SWebsiteDocument, SWebsiteDocumentWithRelations, SWebsiteRelationsDocument, SubscriptionStatusValues, TERM_PAGINATION_DEFAULT_SIZE_LIMIT, TERM_PAGINATION_MAX_SIZE_LIMIT, TRACKING_LINK_PAGINATION_DEFAULT_SIZE_LIMIT, TRACKING_LINK_PAGINATION_MAX_SIZE_LIMIT, USER_ACCOUNT_PAGINATION_DEFAULT_SIZE_LIMIT, USER_ACCOUNT_PAGINATION_MAX_SIZE_LIMIT, USER_LIMITATION_PAGINATION_DEFAULT_SIZE_LIMIT, USER_LIMITATION_PAGINATION_MAX_SIZE_LIMIT, USER_PAGINATION_DEFAULT_SIZE_LIMIT, USER_PAGINATION_MAX_SIZE_LIMIT, UrlProtocolOptions, WEBSITE_PAGINATION_DEFAULT_SIZE_LIMIT, WEBSITE_PAGINATION_MAX_SIZE_LIMIT, datePlusDays, dateToday, hasPermission, isStrapiAttributeError, isStrapiStandardError, isValidationFailure, isValidationSuccess, omitUndefined, validateAndClean };
|
|
3397
3860
|
//# sourceMappingURL=index.js.map
|
|
3398
3861
|
//# sourceMappingURL=index.js.map
|