@joeygrable94/utm-src-pub-validators 0.0.52 → 0.0.53

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.js CHANGED
@@ -588,6 +588,14 @@ var SCreateGroupUserDocument = v29.object({
588
588
  user: IsValidReferenceDocumentId,
589
589
  scopes: IsValidGroupUserScopes
590
590
  });
591
+ var SCreateGroupUserAssignMultipleUsers = v29.object({
592
+ group: IsValidReferenceDocumentId,
593
+ user: v29.pipe(
594
+ v29.array(IsValidReferenceDocumentId),
595
+ v29.minLength(1, "Please assign at least one user to this group")
596
+ ),
597
+ scopes: IsValidGroupUserScopes
598
+ });
591
599
  var SCreateGroupUserDocumentRequest = v29.object({
592
600
  documentId: IsValidReferenceDocumentId,
593
601
  data: SCreateGroupUserDocument
@@ -1324,6 +1332,10 @@ var SCreateTrackingLinkDocument = v29.object({
1324
1332
  utm_term: IsValidUrlUtmTerm,
1325
1333
  utm_id: IsValidUrlUtmId
1326
1334
  });
1335
+ var SCreateMultipleTrackingLinkDocuments = v29.pipe(
1336
+ v29.array(SCreateTrackingLinkDocument),
1337
+ v29.minLength(1, "Please create at least one tracking link")
1338
+ );
1327
1339
  var SCreateTrackingLinkDocumentRequest = v29.object({
1328
1340
  documentId: IsValidReferenceDocumentId,
1329
1341
  data: SCreateTrackingLinkDocument
@@ -1537,6 +1549,10 @@ var SCreateCampaignIdDocument = v29.object({
1537
1549
  description: IsValidDescription,
1538
1550
  is_active: IsValidIsActive
1539
1551
  });
1552
+ var SCreateMultipleCampaignIdDocuments = v29.pipe(
1553
+ v29.array(SCreateCampaignIdDocument),
1554
+ v29.minLength(1, "At least one campaign ID is required")
1555
+ );
1540
1556
  var SCreateCampaignIdDocumentRequest = v29.object({
1541
1557
  documentId: IsValidReferenceDocumentId,
1542
1558
  data: SCreateCampaignIdDocument
@@ -1595,6 +1611,10 @@ var SCreateCampaignKeyDocument = v29.object({
1595
1611
  description: IsValidDescription,
1596
1612
  is_active: IsValidIsActive
1597
1613
  });
1614
+ var SCreateMultipleCampaignKeyDocuments = v29.pipe(
1615
+ v29.array(SCreateCampaignKeyDocument),
1616
+ v29.minLength(1, "At least one campaign key is required")
1617
+ );
1598
1618
  var SCreateCampaignKeyDocumentRequest = v29.object({
1599
1619
  documentId: IsValidReferenceDocumentId,
1600
1620
  data: SCreateCampaignKeyDocument
@@ -1652,6 +1672,10 @@ var SCreateCampaignPhaseDocument = v29.object({
1652
1672
  description: IsValidDescription,
1653
1673
  is_active: IsValidIsActive
1654
1674
  });
1675
+ var SCreateMultipleCampaignPhaseDocuments = v29.pipe(
1676
+ v29.array(SCreateCampaignPhaseDocument),
1677
+ v29.minLength(1, "At least one campaign phase is required")
1678
+ );
1655
1679
  var SCreateCampaignPhaseDocumentRequest = v29.object({
1656
1680
  documentId: IsValidReferenceDocumentId,
1657
1681
  data: SCreateCampaignPhaseDocument
@@ -1709,6 +1733,10 @@ var SCreateCampaignProductDocument = v29.object({
1709
1733
  description: IsValidDescription,
1710
1734
  is_active: IsValidIsActive
1711
1735
  });
1736
+ var SCreateMultipleCampaignProductDocuments = v29.pipe(
1737
+ v29.array(SCreateCampaignProductDocument),
1738
+ v29.minLength(1, "At least one campaign product is required")
1739
+ );
1712
1740
  var SCreateCampaignProductDocumentRequest = v29.object({
1713
1741
  documentId: IsValidReferenceDocumentId,
1714
1742
  data: SCreateCampaignProductDocument
@@ -1766,6 +1794,10 @@ var SCreateContentDocument = v29.object({
1766
1794
  description: IsValidDescription,
1767
1795
  is_active: IsValidIsActive
1768
1796
  });
1797
+ var SCreateMultipleContentDocuments = v29.pipe(
1798
+ v29.array(SCreateContentDocument),
1799
+ v29.minLength(1, "At least one term is required")
1800
+ );
1769
1801
  var SCreateContentDocumentRequest = v29.object({
1770
1802
  documentId: IsValidReferenceDocumentId,
1771
1803
  data: SCreateContentDocument
@@ -1823,6 +1855,10 @@ var SCreateCreativeFormatVariantDocument = v29.object({
1823
1855
  description: IsValidDescription,
1824
1856
  is_active: IsValidIsActive
1825
1857
  });
1858
+ var SCreateMultipleCreativeFormatVariantDocuments = v29.pipe(
1859
+ v29.array(SCreateCreativeFormatVariantDocument),
1860
+ v29.minLength(1, "At least one term is required")
1861
+ );
1826
1862
  var SCreateCreativeFormatVariantDocumentRequest = v29.object({
1827
1863
  documentId: IsValidReferenceDocumentId,
1828
1864
  data: SCreateCreativeFormatVariantDocument
@@ -1880,6 +1916,10 @@ var SCreateCreativeFormatDocument = v29.object({
1880
1916
  description: IsValidDescription,
1881
1917
  is_active: IsValidIsActive
1882
1918
  });
1919
+ var SCreateMultipleCreativeFormatDocuments = v29.pipe(
1920
+ v29.array(SCreateCreativeFormatDocument),
1921
+ v29.minLength(1, "At least one creative format is required")
1922
+ );
1883
1923
  var SCreateCreativeFormatDocumentRequest = v29.object({
1884
1924
  documentId: IsValidReferenceDocumentId,
1885
1925
  data: SCreateCreativeFormatDocument
@@ -1937,6 +1977,10 @@ var SCreateMediumDocument = v29.object({
1937
1977
  description: IsValidDescription,
1938
1978
  is_active: IsValidIsActive
1939
1979
  });
1980
+ var SCreateMultipleMediumDocuments = v29.pipe(
1981
+ v29.array(SCreateMediumDocument),
1982
+ v29.minLength(1, "At least one medium is required")
1983
+ );
1940
1984
  var SCreateMediumDocumentRequest = v29.object({
1941
1985
  documentId: IsValidReferenceDocumentId,
1942
1986
  data: SCreateMediumDocument
@@ -1994,6 +2038,10 @@ var SCreateSourceDocument = v29.object({
1994
2038
  description: IsValidDescription,
1995
2039
  is_active: IsValidIsActive
1996
2040
  });
2041
+ var SCreateMultipleSourceDocuments = v29.pipe(
2042
+ v29.array(SCreateSourceDocument),
2043
+ v29.minLength(1, "At least one source is required")
2044
+ );
1997
2045
  var SCreateSourceDocumentRequest = v29.object({
1998
2046
  documentId: IsValidReferenceDocumentId,
1999
2047
  data: SCreateSourceDocument
@@ -2051,6 +2099,10 @@ var SCreateTermDocument = v29.object({
2051
2099
  description: IsValidDescription,
2052
2100
  is_active: IsValidIsActive
2053
2101
  });
2102
+ var SCreateMultipleTermDocuments = v29.pipe(
2103
+ v29.array(SCreateTermDocument),
2104
+ v29.minLength(1, "At least one term is required")
2105
+ );
2054
2106
  var SCreateTermDocumentRequest = v29.object({
2055
2107
  documentId: IsValidReferenceDocumentId,
2056
2108
  data: SCreateTermDocument
@@ -2108,6 +2160,10 @@ var SCreateWebsiteDocument = v29.object({
2108
2160
  is_secure: IsValidIsSecure,
2109
2161
  is_active: IsValidIsActive
2110
2162
  });
2163
+ var SCreateMultipleWebsiteDocuments = v29.pipe(
2164
+ v29.array(SCreateWebsiteDocument),
2165
+ v29.minLength(1, "At least one website is required")
2166
+ );
2111
2167
  var SCreateWebsiteDocumentRequest = v29.object({
2112
2168
  documentId: IsValidReferenceDocumentId,
2113
2169
  data: SCreateWebsiteDocument
@@ -2346,6 +2402,602 @@ var SWebsiteDocumentWithRelations = v29.object({
2346
2402
  ...SWebsiteRelationsDocument.entries
2347
2403
  });
2348
2404
 
2405
+ // src/templates/utm-parameter.defaults.ts
2406
+ var default_sources = {
2407
+ meta: {
2408
+ label: "Meta (FB/IG)",
2409
+ value: "meta",
2410
+ description: "Content published to all Meta platforms: Facebook, Instagram",
2411
+ is_active: true
2412
+ },
2413
+ facebook: {
2414
+ label: "Facebook",
2415
+ value: "meta_facebook",
2416
+ description: "Content published exclusively on Facebook",
2417
+ is_active: true
2418
+ },
2419
+ instagram: {
2420
+ label: "Instagram",
2421
+ value: "meta_instagram",
2422
+ description: "Content published exclusively on Instagram",
2423
+ is_active: true
2424
+ },
2425
+ tiktok: {
2426
+ label: "TikTok",
2427
+ value: "tiktok",
2428
+ description: "Content published exclusively on TikTok",
2429
+ is_active: true
2430
+ },
2431
+ twitter: {
2432
+ label: "X/Twitter",
2433
+ value: "twitter",
2434
+ description: "Content for X.com formerly known as Twitter",
2435
+ is_active: true
2436
+ },
2437
+ xcom: {
2438
+ label: "X.com",
2439
+ value: "x_twitter",
2440
+ description: "Content published exclusively on X.com",
2441
+ is_active: true
2442
+ },
2443
+ linkedin: {
2444
+ label: "LinkedIn",
2445
+ value: "linkedin",
2446
+ description: "Content published exclusively on LinkedIn",
2447
+ is_active: true
2448
+ },
2449
+ pinterest: {
2450
+ label: "Pinterest",
2451
+ value: "pinterest",
2452
+ description: "Content published exclusively on Pinterest",
2453
+ is_active: true
2454
+ },
2455
+ youtube: {
2456
+ label: "YouTube",
2457
+ value: "youtube",
2458
+ description: "Content published exclusively on YouTube",
2459
+ is_active: true
2460
+ },
2461
+ sms: {
2462
+ label: "Text Message (SMS)",
2463
+ value: "sms",
2464
+ description: "Content published exclusively via Text Message (SMS)",
2465
+ is_active: true
2466
+ },
2467
+ email: {
2468
+ label: "Email",
2469
+ value: "email",
2470
+ description: "Content published exclusively via Email",
2471
+ is_active: true
2472
+ },
2473
+ google: {
2474
+ label: "Google Ads",
2475
+ value: "google",
2476
+ description: "Content published exclusively via Google Ads",
2477
+ is_active: true
2478
+ },
2479
+ realtorcom: {
2480
+ label: "Realtor.com",
2481
+ value: "rdc",
2482
+ description: "Content published exclusively on Realtor.com (RDC)",
2483
+ is_active: true
2484
+ },
2485
+ zillow: {
2486
+ label: "Zillow",
2487
+ value: "zillow",
2488
+ description: "Content published exclusively on Zillow",
2489
+ is_active: true
2490
+ },
2491
+ bdx_nhs: {
2492
+ label: "New Home Source (Zonda)",
2493
+ value: "bdx_nhs",
2494
+ description: "Content published exclusively on New Home Source",
2495
+ is_active: true
2496
+ },
2497
+ yelp: {
2498
+ label: "Yelp",
2499
+ value: "yelp",
2500
+ description: "Content published exclusively on Yelp",
2501
+ is_active: true
2502
+ },
2503
+ qr_code: {
2504
+ label: "QR Code",
2505
+ value: "qr_code",
2506
+ description: "Content published exclusively via a QR Code",
2507
+ is_active: true
2508
+ },
2509
+ stackadapt: {
2510
+ label: "StackAdapt",
2511
+ value: "stackadapt",
2512
+ description: "Content published exclusively via StackAdapt",
2513
+ is_active: true
2514
+ },
2515
+ newswire: {
2516
+ label: "Newswire",
2517
+ value: "newswire",
2518
+ description: "Content published exclusively via Newswire",
2519
+ is_active: true
2520
+ },
2521
+ mobile_app: {
2522
+ label: "Mobile App",
2523
+ value: "mobile_app",
2524
+ description: "Content published exclusively via a Mobile App",
2525
+ is_active: true
2526
+ },
2527
+ referral: {
2528
+ label: "Referral",
2529
+ value: "referral",
2530
+ description: "Content published exclusively via a Referral source",
2531
+ is_active: true
2532
+ }
2533
+ };
2534
+ var default_mediums = {
2535
+ social: {
2536
+ label: "Organic Social",
2537
+ value: "social",
2538
+ description: "Organic social posts across all platforms",
2539
+ is_active: true
2540
+ },
2541
+ paid_social: {
2542
+ label: "Paid Social",
2543
+ value: "paid_social",
2544
+ description: "Any paid media on social platforms",
2545
+ is_active: true
2546
+ },
2547
+ paid_search: {
2548
+ label: "Paid Search",
2549
+ value: "paid_search",
2550
+ description: "Reserved for text-based ads on search platforms (google, bing, etc)",
2551
+ is_active: true
2552
+ },
2553
+ paid_display: {
2554
+ label: "Paid Display",
2555
+ value: "paid_display",
2556
+ description: "Any image-based ads through a paid media buying platform (excluding social)",
2557
+ is_active: true
2558
+ },
2559
+ paid_video: {
2560
+ label: "Paid Video",
2561
+ value: "paid_video",
2562
+ description: "Any video-based ads through a paid media buying platform (excluding social)",
2563
+ is_active: true
2564
+ },
2565
+ paid_listing: {
2566
+ label: "Paid Listing",
2567
+ value: "paid_listing",
2568
+ description: "Paid product listing on a ad/partner/affiliated website",
2569
+ is_active: true
2570
+ },
2571
+ paid: {
2572
+ label: "Paid",
2573
+ value: "paid",
2574
+ description: "Reserved for any other paid promotions that do not fit into the other categories",
2575
+ is_active: true
2576
+ },
2577
+ blast: {
2578
+ label: "Blast",
2579
+ value: "blast",
2580
+ description: "Used when sending a piece of content through an OWNED media source (such as email or text) to an entire group of people all at once",
2581
+ is_active: true
2582
+ },
2583
+ paid_blast: {
2584
+ label: "Paid Blast",
2585
+ value: "paid_blast",
2586
+ description: "Used when sending a piece of content through a PAID media source (such as paid email lists or third-party text referral) to an entire group of people all at once",
2587
+ is_active: true
2588
+ },
2589
+ flow: {
2590
+ label: "Flow",
2591
+ value: "flow",
2592
+ description: "Used when sending a piece of content through an OWNED media source (such as email or text) to a single user as a part of a multi-touch drip campaign",
2593
+ is_active: true
2594
+ },
2595
+ signage: {
2596
+ label: "Signage",
2597
+ value: "signage",
2598
+ description: "Used when a user scans a QR code off of a sign, can add others here if we use QR codes on other content.",
2599
+ is_active: true
2600
+ },
2601
+ content: {
2602
+ label: "Content",
2603
+ value: "content",
2604
+ description: "Used for generic content mediums other than the mediums listed",
2605
+ is_active: true
2606
+ },
2607
+ paid_ctv: {
2608
+ label: "Connected TV",
2609
+ value: "paid_ctv",
2610
+ description: "Used for paid ads on TV, Streaming Providers or other Connected TV sources",
2611
+ is_active: true
2612
+ },
2613
+ popup: {
2614
+ label: "Popup",
2615
+ value: "popup",
2616
+ description: "Used only for popup content embedded on a website (owned or third party)",
2617
+ is_active: true
2618
+ },
2619
+ press_release: {
2620
+ label: "Press Release",
2621
+ value: "press_release",
2622
+ description: "Used for content related to a press release",
2623
+ is_active: true
2624
+ }
2625
+ };
2626
+ var default_campaign_phases = {
2627
+ brand: {
2628
+ label: "Brand",
2629
+ value: "brand",
2630
+ description: "Company branded content",
2631
+ is_active: true
2632
+ },
2633
+ p1: {
2634
+ label: "Phase 1",
2635
+ value: "p1",
2636
+ description: "Interest list building",
2637
+ is_active: true
2638
+ },
2639
+ p2: {
2640
+ label: "Phase 2",
2641
+ value: "p2",
2642
+ description: "Pre-qual/pre-sale",
2643
+ is_active: true
2644
+ },
2645
+ p3: {
2646
+ label: "Phase 3",
2647
+ value: "p3",
2648
+ description: "Grand opening/now available",
2649
+ is_active: true
2650
+ },
2651
+ p4: {
2652
+ label: "Phase 4",
2653
+ value: "p4",
2654
+ description: "For sale/maintenance period",
2655
+ is_active: true
2656
+ },
2657
+ p5: {
2658
+ label: "Phase 5",
2659
+ value: "p5",
2660
+ description: "Final sale",
2661
+ is_active: true
2662
+ }
2663
+ };
2664
+ var default_contents = {
2665
+ testimonial: {
2666
+ label: "Testimonial",
2667
+ value: "testimonial",
2668
+ description: "Buyer telling story about their purchase experience",
2669
+ is_active: true
2670
+ },
2671
+ agent: {
2672
+ label: "Agent",
2673
+ value: "agent",
2674
+ description: "Salespeople on camera marketing their neighborhood",
2675
+ is_active: true
2676
+ },
2677
+ education: {
2678
+ label: "Education",
2679
+ value: "education",
2680
+ description: "Content that is to educate buyers on any variety of home buying process",
2681
+ is_active: true
2682
+ },
2683
+ charity: {
2684
+ label: "Charity",
2685
+ value: "charity",
2686
+ description: "Content related to any charitable efforts on behalf of builder",
2687
+ is_active: true
2688
+ },
2689
+ recruitment: {
2690
+ label: "Recruitment",
2691
+ value: "recruitment",
2692
+ description: "Content showcasing staff and culture to recruit future employees",
2693
+ is_active: true
2694
+ },
2695
+ lifestyle: {
2696
+ label: "Lifestyle",
2697
+ value: "lifestyle",
2698
+ description: "Content about the surrounding area and what it\u2019s like to live in a place",
2699
+ is_active: true
2700
+ },
2701
+ milestone: {
2702
+ label: "Milestone",
2703
+ value: "milestone",
2704
+ description: "Benchmarks in the building process and life of a community",
2705
+ is_active: true
2706
+ },
2707
+ trends: {
2708
+ label: "Trends",
2709
+ value: "trends",
2710
+ description: "Content that is trending on social media",
2711
+ is_active: true
2712
+ },
2713
+ brand: {
2714
+ label: "Brand",
2715
+ value: "brand",
2716
+ description: "Content focused on client culture and mission and who they are",
2717
+ is_active: true
2718
+ },
2719
+ events: {
2720
+ label: "Events",
2721
+ value: "events",
2722
+ description: "Content about events like grand openings, phase releases, tours, parties, etc",
2723
+ is_active: true
2724
+ },
2725
+ personalization: {
2726
+ label: "Personalization",
2727
+ value: "personalization",
2728
+ description: "For personalized content",
2729
+ is_active: true
2730
+ },
2731
+ tour_guide: {
2732
+ label: "Tour Guide",
2733
+ value: "tour_guide",
2734
+ description: "Used for content that promotes touring a physical space",
2735
+ is_active: true
2736
+ },
2737
+ product: {
2738
+ label: "Product",
2739
+ value: "product",
2740
+ description: "Any content specifically about a product or sale item",
2741
+ is_active: true
2742
+ },
2743
+ recipes: {
2744
+ label: "Recipes",
2745
+ value: "recipes",
2746
+ description: "Content featuring recipes and cooking tips",
2747
+ is_active: true
2748
+ },
2749
+ holiday: {
2750
+ label: "Holiday",
2751
+ value: "holiday",
2752
+ description: "Content about national holidays",
2753
+ is_active: true
2754
+ },
2755
+ culture: {
2756
+ label: "Culture",
2757
+ value: "culture",
2758
+ description: "Content about our team, things we do, how we work together, our values",
2759
+ is_active: true
2760
+ },
2761
+ our_work: {
2762
+ label: "Our Work",
2763
+ value: "our_work",
2764
+ description: "Content about the work we do for our clients or ourselves, our thought process",
2765
+ is_active: true
2766
+ },
2767
+ other: {
2768
+ label: "Other",
2769
+ value: "other",
2770
+ description: "For other content not defined in by a specific content pillar",
2771
+ is_active: true
2772
+ }
2773
+ };
2774
+ var default_creative_formats = {
2775
+ post: {
2776
+ label: "Post",
2777
+ value: "post",
2778
+ description: "organic content post",
2779
+ is_active: true
2780
+ },
2781
+ content: {
2782
+ label: "Content",
2783
+ value: "content",
2784
+ description: "organic content or other content (not social post)",
2785
+ is_active: true
2786
+ },
2787
+ reel: {
2788
+ label: "Reel",
2789
+ value: "reel",
2790
+ description: "organic content for video reels",
2791
+ is_active: true
2792
+ },
2793
+ reel_ad: {
2794
+ label: "Reel Ad",
2795
+ value: "reel_ad",
2796
+ description: "paid media for video reel ads",
2797
+ is_active: true
2798
+ },
2799
+ story_content: {
2800
+ label: "Story",
2801
+ value: "story_content",
2802
+ description: "Ephemeral story content",
2803
+ is_active: true
2804
+ },
2805
+ story_ad: {
2806
+ label: "Story Ad",
2807
+ value: "story_ad",
2808
+ description: "Paid ephemeral story content",
2809
+ is_active: true
2810
+ },
2811
+ listing: {
2812
+ label: "Listing",
2813
+ value: "listing",
2814
+ description: "ad listing that blends into organic listings",
2815
+ is_active: true
2816
+ },
2817
+ native: {
2818
+ label: "Native Ad",
2819
+ value: "native",
2820
+ description: "Content that blends in with the native content on an affiliate website",
2821
+ is_active: true
2822
+ },
2823
+ traffic: {
2824
+ label: "Traffic",
2825
+ value: "traffic_ad",
2826
+ description: "For Ads designed to drive traffic to a specific destination",
2827
+ is_active: true
2828
+ },
2829
+ darkpost: {
2830
+ label: "Dark Post",
2831
+ value: "darkpost",
2832
+ description: "For Meta DarkPosts",
2833
+ is_active: true
2834
+ },
2835
+ boost: {
2836
+ label: "Boost",
2837
+ value: "boost",
2838
+ description: "For boosted content on social",
2839
+ is_active: true
2840
+ },
2841
+ collection: {
2842
+ label: "Collection Ad",
2843
+ value: "collection",
2844
+ description: "For Meta Collection Ads",
2845
+ is_active: true
2846
+ },
2847
+ conversion: {
2848
+ label: "Conversion Ad",
2849
+ value: "conversion",
2850
+ description: "For Meta Conversion Ads",
2851
+ is_active: true
2852
+ },
2853
+ lead_ad: {
2854
+ label: "Lead Ad",
2855
+ value: "lead_ad",
2856
+ description: "For Meta Lead Ads",
2857
+ is_active: true
2858
+ },
2859
+ internal: {
2860
+ label: "Internal",
2861
+ value: "internal",
2862
+ description: "Emails sent via an Internal CRM",
2863
+ is_active: true
2864
+ },
2865
+ retargeting: {
2866
+ label: "Retargeting",
2867
+ value: "retargeting",
2868
+ description: "Ad retargeted to a different audience than the original content",
2869
+ is_active: true
2870
+ },
2871
+ profile: {
2872
+ label: "Profile",
2873
+ value: "profile",
2874
+ description: "For links that are used on platform profile pages or SmartBio like profile referral sources",
2875
+ is_active: true
2876
+ },
2877
+ sitelink: {
2878
+ label: "Site Link",
2879
+ value: "sitelink",
2880
+ description: "For the additional links provided in a Google Search Ad.",
2881
+ is_active: true
2882
+ },
2883
+ sponsored_ad: {
2884
+ label: "Sponsored Ad",
2885
+ value: "sponsored_ad",
2886
+ description: "For LinkedIn Sponsored Ad posts.",
2887
+ is_active: true
2888
+ }
2889
+ };
2890
+ var default_creative_format_variants = {
2891
+ short_form: {
2892
+ label: "Short Form Video",
2893
+ value: "short_form",
2894
+ description: "Short form video content",
2895
+ is_active: true
2896
+ },
2897
+ long_form: {
2898
+ label: "Long Form Video",
2899
+ value: "long_form",
2900
+ description: "Long form video content",
2901
+ is_active: true
2902
+ },
2903
+ image: {
2904
+ label: "Image",
2905
+ value: "image",
2906
+ description: "Content that rely on photography to convey a message",
2907
+ is_active: true
2908
+ },
2909
+ gif: {
2910
+ label: "GIF",
2911
+ value: "gif",
2912
+ description: "Content using an animated GIF",
2913
+ is_active: true
2914
+ },
2915
+ text: {
2916
+ label: "Text",
2917
+ value: "text",
2918
+ description: "Content that rely on typography/text to convey a message",
2919
+ is_active: true
2920
+ },
2921
+ carousel: {
2922
+ label: "Carousel",
2923
+ value: "carousel",
2924
+ description: "Content in a carousel or slideshow format",
2925
+ is_active: true
2926
+ },
2927
+ people: {
2928
+ label: "People",
2929
+ value: "people",
2930
+ description: "Content that uses humans/actors to convey a message",
2931
+ is_active: true
2932
+ },
2933
+ faceless: {
2934
+ label: "Faceless (No People)",
2935
+ value: "faceless",
2936
+ description: "Content with no people/human faces depicted",
2937
+ is_active: true
2938
+ },
2939
+ popup: {
2940
+ label: "Pop Up",
2941
+ value: "popup",
2942
+ description: "Website pop up content",
2943
+ is_active: true
2944
+ },
2945
+ banner: {
2946
+ label: "Banner",
2947
+ value: "banner",
2948
+ description: "Banner content on a website",
2949
+ is_active: true
2950
+ },
2951
+ broker: {
2952
+ label: "Broker",
2953
+ value: "broker",
2954
+ description: "Content created for brokers",
2955
+ is_active: true
2956
+ },
2957
+ consumer: {
2958
+ label: "Consumer",
2959
+ value: "consumer",
2960
+ description: "Content created for consumers",
2961
+ is_active: true
2962
+ },
2963
+ redrop: {
2964
+ label: "Redrop",
2965
+ value: "redrop",
2966
+ description: "Content that is re-dropped to the same audience",
2967
+ is_active: true
2968
+ },
2969
+ variant_a: {
2970
+ label: "Variant A",
2971
+ value: "variant_a",
2972
+ description: "Used for a/b testing and/or ad variant names.",
2973
+ is_active: true
2974
+ },
2975
+ variant_b: {
2976
+ label: "Variant B",
2977
+ value: "variant_b",
2978
+ description: "Used for a/b testing and/or ad variant names.",
2979
+ is_active: true
2980
+ },
2981
+ variant_c: {
2982
+ label: "Variant C",
2983
+ value: "variant_c",
2984
+ description: "Used for a/b testing and/or ad variant names.",
2985
+ is_active: true
2986
+ },
2987
+ variant_d: {
2988
+ label: "Variant D",
2989
+ value: "variant_d",
2990
+ description: "Used for a/b testing and/or ad variant names.",
2991
+ is_active: true
2992
+ },
2993
+ client_creative: {
2994
+ label: "Client Creative",
2995
+ value: "client_creative",
2996
+ description: "Creative content was provided by the client to use\u2014not GC designed content.",
2997
+ is_active: true
2998
+ }
2999
+ };
3000
+
2349
3001
  // src/utilities/datetime.ts
2350
3002
  function dateToday() {
2351
3003
  const date2 = /* @__PURE__ */ new Date();
@@ -2397,6 +3049,6 @@ function omitUndefined(obj) {
2397
3049
  return result;
2398
3050
  }
2399
3051
 
2400
- 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, 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, IsValidIsActive, IsValidIsSecure, IsValidLabel, IsValidMinPage, IsValidName, IsValidOrUndefinedApplyValueAs, IsValidOrUndefinedApplyValueTo, IsValidOrUndefinedBlocked, IsValidOrUndefinedConfirmed, IsValidOrUndefinedCost, IsValidOrUndefinedCurrentPeriodEnd, IsValidOrUndefinedCurrentPeriodStart, IsValidOrUndefinedCustomerId, IsValidOrUndefinedDescription, IsValidOrUndefinedEmail, IsValidOrUndefinedIsActive, IsValidOrUndefinedIsSecure, IsValidOrUndefinedLabel, IsValidOrUndefinedName, IsValidOrUndefinedPassword, IsValidOrUndefinedPriceId, IsValidOrUndefinedProductId, IsValidOrUndefinedProvider, IsValidOrUndefinedSubscriptionId, IsValidOrUndefinedSubscriptionStatus, IsValidOrUndefinedTrialPeriodEnd, IsValidOrUndefinedUnitAmount, IsValidOrUndefinedUnitTermInMonths, IsValidOrUndefinedUrlDestination, IsValidOrUndefinedUrlDomain, IsValidOrUndefinedUrlFragment, IsValidOrUndefinedUrlPath, IsValidOrUndefinedUrlProtocol, IsValidOrUndefinedUrlQuery, IsValidOrUndefinedUrlUtmCampaign, IsValidOrUndefinedUrlUtmContent, IsValidOrUndefinedUrlUtmCreativeFormat, IsValidOrUndefinedUrlUtmId, IsValidOrUndefinedUrlUtmMedium, IsValidOrUndefinedUrlUtmSource, IsValidOrUndefinedUrlUtmTerm, IsValidOrUndefinedUsername, IsValidOrUndefinedValue, IsValidPassword, IsValidPriceId, IsValidProductId, IsValidProvider, IsValidReferenceDocumentId, IsValidReferenceId, IsValidSubscriptionId, IsValidSubscriptionStatus, IsValidTrialPeriodEnd, IsValidUnitAmount, IsValidUnitTermInMonths, IsValidUrlDestination, IsValidUrlDomain, IsValidUrlFragment, IsValidUrlPath, IsValidUrlProtocol, IsValidUrlQuery, IsValidUrlUtmCampaign, IsValidUrlUtmContent, IsValidUrlUtmCreativeFormat, IsValidUrlUtmId, IsValidUrlUtmMedium, IsValidUrlUtmSource, IsValidUrlUtmTerm, IsValidUsername, IsValidValue, LIMIT_MAX_DESCRIPTION, LIMIT_MAX_DESTINATION, LIMIT_MAX_DOMAIN, LIMIT_MAX_EMAIL, LIMIT_MAX_FRAGMENT, 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_SOURCE, LIMIT_MAX_UTM_TERM, LIMIT_MAX_VALUE, LIMIT_MIN_DESTINATION, LIMIT_MIN_DOMAIN, LIMIT_MIN_EMAIL, LIMIT_MIN_FRAGMENT, 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_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, SBaseContentDocument, SBaseCreativeFormatDocument, SBaseCreativeFormatVariantDocument, SBaseDocumentCreatedBy, SBaseGroupDocument, SBaseGroupUserDocument, SBaseMediumDocument, SBaseRoleDocument, SBaseSourceDocument, SBaseTermDocument, SBaseTrackingLinkDocument, SBaseUserAccountDocument, SBaseUserDocument, SBaseUserLimitationsDocument, SBaseWebsiteDocument, SCampaignIdDocument, SCampaignIdDocumentWithRelations, SCampaignIdRelationsDocument, SCampaignKeyDocument, SCampaignKeyDocumentWithRelations, SCampaignKeyRelationsDocument, SCampaignPhaseDocument, SCampaignPhaseDocumentWithRelations, SCampaignPhaseRelationsDocument, SCampaignProductDocument, SCampaignProductDocumentWithRelations, SCampaignProductRelationsDocument, SChangePassword, SContentDocument, SContentDocumentWithRelations, SContentRelationsDocument, SCreateCampaignIdDocument, SCreateCampaignIdDocumentRequest, SCreateCampaignKeyDocument, SCreateCampaignKeyDocumentRequest, SCreateCampaignPhaseDocument, SCreateCampaignPhaseDocumentRequest, SCreateCampaignProductDocument, SCreateCampaignProductDocumentRequest, SCreateContentDocument, SCreateContentDocumentRequest, SCreateCreativeFormatDocument, SCreateCreativeFormatDocumentRequest, SCreateCreativeFormatVariantDocument, SCreateCreativeFormatVariantDocumentRequest, SCreateGroupDocument, SCreateGroupUserDocument, SCreateGroupUserDocumentRequest, SCreateMediumDocument, SCreateMediumDocumentRequest, SCreateSourceDocument, SCreateSourceDocumentRequest, SCreateTermDocument, SCreateTermDocumentRequest, SCreateTrackingLinkDocument, SCreateTrackingLinkDocumentRequest, SCreateUserAccountDocument, SCreateUserLimitationsDocument, SCreateWebsiteDocument, SCreateWebsiteDocumentRequest, SCreativeFormatDocument, SCreativeFormatDocumentWithRelations, SCreativeFormatRelationsDocument, SCreativeFormatVariantDocument, SCreativeFormatVariantDocumentWithRelations, SCreativeFormatVariantRelationsDocument, SDeleteCampaignIdDocument, SDeleteCampaignKeyDocument, SDeleteCampaignPhaseDocument, SDeleteCampaignProductDocument, 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, SGroupUserDocumentWithRelations, SGroupUserRelationsDocument, SGroupUserRelationsReqDocument, SLoginUserDocument, SMediumDocument, SMediumDocumentWithRelations, SMediumRelationsDocument, SOURCE_PAGINATION_DEFAULT_SIZE_LIMIT, SOURCE_PAGINATION_MAX_SIZE_LIMIT, SQueryListCampaignIdDocuments, SQueryListCampaignKeyDocuments, SQueryListCampaignPhaseDocuments, SQueryListCampaignProductDocuments, SQueryListContentDocuments, SQueryListCreativeFormatDocuments, SQueryListCreativeFormatVariantDocuments, SQueryListGroupDocuments, SQueryListGroupUserDocuments, SQueryListMediumDocuments, SQueryListSourceDocuments, SQueryListTermDocuments, SQueryListTrackingLinkDocuments, SQueryListUserAccountDocuments, SQueryListUserDocuments, SQueryListUserDocumentsByIdentifier, SQueryListUserLimitationDocuments, SQueryListWebsiteDocuments, SReadCampaignIdDocumentByDocumentId, SReadCampaignIdDocumentById, SReadCampaignKeyDocumentByDocumentId, SReadCampaignKeyDocumentById, SReadCampaignPhaseDocumentByDocumentId, SReadCampaignPhaseDocumentById, SReadCampaignProductDocumentByDocumentId, SReadCampaignProductDocumentById, 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, 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, SUpdateAsInvitedContentDocument, SUpdateAsInvitedContentDocumentRequest, SUpdateAsInvitedCreativeFormatDocument, SUpdateAsInvitedCreativeFormatDocumentRequest, SUpdateAsInvitedCreativeFormatVariantDocument, SUpdateAsInvitedCreativeFormatVariantDocumentRequest, SUpdateAsInvitedGroupDocument, SUpdateAsInvitedGroupDocumentRequest, SUpdateAsInvitedMediumDocument, SUpdateAsInvitedMediumDocumentRequest, SUpdateAsInvitedSourceDocument, SUpdateAsInvitedSourceDocumentRequest, SUpdateAsInvitedTermDocument, SUpdateAsInvitedTermDocumentRequest, SUpdateAsInvitedTrackingLinkDocument, SUpdateAsInvitedTrackingLinkDocumentRequest, SUpdateAsInvitedWebsiteDocument, SUpdateAsInvitedWebsiteDocumentRequest, SUpdateCampaignIdDocumentRequest, SUpdateCampaignKeyDocumentRequest, SUpdateCampaignPhaseDocumentRequest, SUpdateCampaignProductDocumentRequest, SUpdateContentDocumentRequest, SUpdateCreativeFormatDocumentRequest, SUpdateCreativeFormatVariantDocumentRequest, SUpdateGroupDocumentRequest, SUpdateGroupUserDocument, SUpdateGroupUserDocumentRequest, SUpdateMediumDocumentRequest, SUpdateSourceDocumentRequest, SUpdateTermDocumentRequest, SUpdateTrackingLinkDocumentRequest, SUpdateUserAccountDocument, 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, SUtmLinkBuilderPartCampaignDateOptions, SUtmLinkBuilderTableForm, 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, isValidationFailure, isValidationSuccess, omitUndefined, validateAndClean };
3052
+ 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, 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, IsValidIsActive, IsValidIsSecure, IsValidLabel, IsValidMinPage, IsValidName, IsValidOrUndefinedApplyValueAs, IsValidOrUndefinedApplyValueTo, IsValidOrUndefinedBlocked, IsValidOrUndefinedConfirmed, IsValidOrUndefinedCost, IsValidOrUndefinedCurrentPeriodEnd, IsValidOrUndefinedCurrentPeriodStart, IsValidOrUndefinedCustomerId, IsValidOrUndefinedDescription, IsValidOrUndefinedEmail, IsValidOrUndefinedIsActive, IsValidOrUndefinedIsSecure, IsValidOrUndefinedLabel, IsValidOrUndefinedName, IsValidOrUndefinedPassword, IsValidOrUndefinedPriceId, IsValidOrUndefinedProductId, IsValidOrUndefinedProvider, IsValidOrUndefinedSubscriptionId, IsValidOrUndefinedSubscriptionStatus, IsValidOrUndefinedTrialPeriodEnd, IsValidOrUndefinedUnitAmount, IsValidOrUndefinedUnitTermInMonths, IsValidOrUndefinedUrlDestination, IsValidOrUndefinedUrlDomain, IsValidOrUndefinedUrlFragment, IsValidOrUndefinedUrlPath, IsValidOrUndefinedUrlProtocol, IsValidOrUndefinedUrlQuery, IsValidOrUndefinedUrlUtmCampaign, IsValidOrUndefinedUrlUtmContent, IsValidOrUndefinedUrlUtmCreativeFormat, IsValidOrUndefinedUrlUtmId, IsValidOrUndefinedUrlUtmMedium, IsValidOrUndefinedUrlUtmSource, IsValidOrUndefinedUrlUtmTerm, IsValidOrUndefinedUsername, IsValidOrUndefinedValue, IsValidPassword, IsValidPriceId, IsValidProductId, IsValidProvider, IsValidReferenceDocumentId, IsValidReferenceId, IsValidSubscriptionId, IsValidSubscriptionStatus, IsValidTrialPeriodEnd, IsValidUnitAmount, IsValidUnitTermInMonths, IsValidUrlDestination, IsValidUrlDomain, IsValidUrlFragment, IsValidUrlPath, IsValidUrlProtocol, IsValidUrlQuery, IsValidUrlUtmCampaign, IsValidUrlUtmContent, IsValidUrlUtmCreativeFormat, IsValidUrlUtmId, IsValidUrlUtmMedium, IsValidUrlUtmSource, IsValidUrlUtmTerm, IsValidUsername, IsValidValue, LIMIT_MAX_DESCRIPTION, LIMIT_MAX_DESTINATION, LIMIT_MAX_DOMAIN, LIMIT_MAX_EMAIL, LIMIT_MAX_FRAGMENT, 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_SOURCE, LIMIT_MAX_UTM_TERM, LIMIT_MAX_VALUE, LIMIT_MIN_DESTINATION, LIMIT_MIN_DOMAIN, LIMIT_MIN_EMAIL, LIMIT_MIN_FRAGMENT, 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_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, SBaseContentDocument, SBaseCreativeFormatDocument, SBaseCreativeFormatVariantDocument, SBaseDocumentCreatedBy, SBaseGroupDocument, SBaseGroupUserDocument, SBaseMediumDocument, SBaseRoleDocument, SBaseSourceDocument, SBaseTermDocument, SBaseTrackingLinkDocument, SBaseUserAccountDocument, SBaseUserDocument, SBaseUserLimitationsDocument, SBaseWebsiteDocument, SCampaignIdDocument, SCampaignIdDocumentWithRelations, SCampaignIdRelationsDocument, SCampaignKeyDocument, SCampaignKeyDocumentWithRelations, SCampaignKeyRelationsDocument, SCampaignPhaseDocument, SCampaignPhaseDocumentWithRelations, SCampaignPhaseRelationsDocument, SCampaignProductDocument, SCampaignProductDocumentWithRelations, SCampaignProductRelationsDocument, SChangePassword, SContentDocument, SContentDocumentWithRelations, SContentRelationsDocument, SCreateCampaignIdDocument, SCreateCampaignIdDocumentRequest, SCreateCampaignKeyDocument, SCreateCampaignKeyDocumentRequest, SCreateCampaignPhaseDocument, SCreateCampaignPhaseDocumentRequest, SCreateCampaignProductDocument, SCreateCampaignProductDocumentRequest, SCreateContentDocument, SCreateContentDocumentRequest, SCreateCreativeFormatDocument, SCreateCreativeFormatDocumentRequest, SCreateCreativeFormatVariantDocument, SCreateCreativeFormatVariantDocumentRequest, SCreateGroupDocument, SCreateGroupUserAssignMultipleUsers, SCreateGroupUserDocument, SCreateGroupUserDocumentRequest, SCreateMediumDocument, SCreateMediumDocumentRequest, SCreateMultipleCampaignIdDocuments, SCreateMultipleCampaignKeyDocuments, SCreateMultipleCampaignPhaseDocuments, SCreateMultipleCampaignProductDocuments, SCreateMultipleContentDocuments, SCreateMultipleCreativeFormatDocuments, SCreateMultipleCreativeFormatVariantDocuments, SCreateMultipleMediumDocuments, SCreateMultipleSourceDocuments, SCreateMultipleTermDocuments, SCreateMultipleTrackingLinkDocuments, SCreateMultipleWebsiteDocuments, SCreateSourceDocument, SCreateSourceDocumentRequest, SCreateTermDocument, SCreateTermDocumentRequest, SCreateTrackingLinkDocument, SCreateTrackingLinkDocumentRequest, SCreateUserAccountDocument, SCreateUserLimitationsDocument, SCreateWebsiteDocument, SCreateWebsiteDocumentRequest, SCreativeFormatDocument, SCreativeFormatDocumentWithRelations, SCreativeFormatRelationsDocument, SCreativeFormatVariantDocument, SCreativeFormatVariantDocumentWithRelations, SCreativeFormatVariantRelationsDocument, SDeleteCampaignIdDocument, SDeleteCampaignKeyDocument, SDeleteCampaignPhaseDocument, SDeleteCampaignProductDocument, 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, SGroupUserDocumentWithRelations, SGroupUserRelationsDocument, SGroupUserRelationsReqDocument, SLoginUserDocument, SMediumDocument, SMediumDocumentWithRelations, SMediumRelationsDocument, SOURCE_PAGINATION_DEFAULT_SIZE_LIMIT, SOURCE_PAGINATION_MAX_SIZE_LIMIT, SQueryListCampaignIdDocuments, SQueryListCampaignKeyDocuments, SQueryListCampaignPhaseDocuments, SQueryListCampaignProductDocuments, SQueryListContentDocuments, SQueryListCreativeFormatDocuments, SQueryListCreativeFormatVariantDocuments, SQueryListGroupDocuments, SQueryListGroupUserDocuments, SQueryListMediumDocuments, SQueryListSourceDocuments, SQueryListTermDocuments, SQueryListTrackingLinkDocuments, SQueryListUserAccountDocuments, SQueryListUserDocuments, SQueryListUserDocumentsByIdentifier, SQueryListUserLimitationDocuments, SQueryListWebsiteDocuments, SReadCampaignIdDocumentByDocumentId, SReadCampaignIdDocumentById, SReadCampaignKeyDocumentByDocumentId, SReadCampaignKeyDocumentById, SReadCampaignPhaseDocumentByDocumentId, SReadCampaignPhaseDocumentById, SReadCampaignProductDocumentByDocumentId, SReadCampaignProductDocumentById, 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, 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, SUpdateAsInvitedContentDocument, SUpdateAsInvitedContentDocumentRequest, SUpdateAsInvitedCreativeFormatDocument, SUpdateAsInvitedCreativeFormatDocumentRequest, SUpdateAsInvitedCreativeFormatVariantDocument, SUpdateAsInvitedCreativeFormatVariantDocumentRequest, SUpdateAsInvitedGroupDocument, SUpdateAsInvitedGroupDocumentRequest, SUpdateAsInvitedMediumDocument, SUpdateAsInvitedMediumDocumentRequest, SUpdateAsInvitedSourceDocument, SUpdateAsInvitedSourceDocumentRequest, SUpdateAsInvitedTermDocument, SUpdateAsInvitedTermDocumentRequest, SUpdateAsInvitedTrackingLinkDocument, SUpdateAsInvitedTrackingLinkDocumentRequest, SUpdateAsInvitedWebsiteDocument, SUpdateAsInvitedWebsiteDocumentRequest, SUpdateCampaignIdDocumentRequest, SUpdateCampaignKeyDocumentRequest, SUpdateCampaignPhaseDocumentRequest, SUpdateCampaignProductDocumentRequest, SUpdateContentDocumentRequest, SUpdateCreativeFormatDocumentRequest, SUpdateCreativeFormatVariantDocumentRequest, SUpdateGroupDocumentRequest, SUpdateGroupUserDocument, SUpdateGroupUserDocumentRequest, SUpdateMediumDocumentRequest, SUpdateSourceDocumentRequest, SUpdateTermDocumentRequest, SUpdateTrackingLinkDocumentRequest, SUpdateUserAccountDocument, 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, SUtmLinkBuilderPartCampaignDateOptions, SUtmLinkBuilderTableForm, 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, default_campaign_phases, default_contents, default_creative_format_variants, default_creative_formats, default_mediums, default_sources, isValidationFailure, isValidationSuccess, omitUndefined, validateAndClean };
2401
3053
  //# sourceMappingURL=index.js.map
2402
3054
  //# sourceMappingURL=index.js.map