@ketch-sdk/ketch-types 1.27.0 → 1.27.2
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.d.ts +432 -132
- package/dist/index.js +44 -21
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -566,7 +566,7 @@ export interface Identity {
|
|
|
566
566
|
/**
|
|
567
567
|
* format is the encoding of the value
|
|
568
568
|
*/
|
|
569
|
-
format
|
|
569
|
+
format?: IdentityFormat;
|
|
570
570
|
/**
|
|
571
571
|
* key is the identifier to find the identity within the value if the format is IDENTITY_FORMAT_STRING then key
|
|
572
572
|
* will be undefined
|
|
@@ -1125,6 +1125,10 @@ export interface ConfigurationV2 {
|
|
|
1125
1125
|
canonicalRightFormTemplates?: CanonicalRightForm[];
|
|
1126
1126
|
customRightFormTemplates?: CustomRightForm[];
|
|
1127
1127
|
formTemplates: FormTemplate[];
|
|
1128
|
+
/**
|
|
1129
|
+
* Subscription config
|
|
1130
|
+
*/
|
|
1131
|
+
subscription?: SubscriptionConfiguration;
|
|
1128
1132
|
/**
|
|
1129
1133
|
* Translations static translations
|
|
1130
1134
|
*/
|
|
@@ -2500,36 +2504,48 @@ export declare enum ButtonVariant {
|
|
|
2500
2504
|
* Experience V2 Theme Config
|
|
2501
2505
|
*/
|
|
2502
2506
|
/** Shared Theme Config Entities */
|
|
2503
|
-
/**
|
|
2507
|
+
/**
|
|
2508
|
+
* Banner/Modal Text Theme Configuration
|
|
2509
|
+
*/
|
|
2504
2510
|
export interface TextThemeConfig {
|
|
2505
2511
|
color?: string;
|
|
2506
2512
|
opacity?: number;
|
|
2507
2513
|
underline?: boolean;
|
|
2508
2514
|
}
|
|
2509
|
-
/**
|
|
2515
|
+
/**
|
|
2516
|
+
* Banner/Modal Color Theme Configuration
|
|
2517
|
+
*/
|
|
2510
2518
|
export interface ColorThemeConfig {
|
|
2511
2519
|
color?: string;
|
|
2512
2520
|
opacity?: number;
|
|
2513
2521
|
}
|
|
2514
|
-
/**
|
|
2522
|
+
/**
|
|
2523
|
+
* Banner/Modal Backdrop Theme Configuration
|
|
2524
|
+
*/
|
|
2515
2525
|
export interface BackdropThemeConfig {
|
|
2516
2526
|
visible?: boolean;
|
|
2517
2527
|
background?: ColorThemeConfig;
|
|
2518
2528
|
disableContentInteractions?: boolean;
|
|
2519
2529
|
}
|
|
2520
|
-
/**
|
|
2530
|
+
/**
|
|
2531
|
+
* Back/Close Button Theme Configuration
|
|
2532
|
+
*/
|
|
2521
2533
|
export interface ReturnButtonThemeConfig {
|
|
2522
2534
|
background?: ColorThemeConfig;
|
|
2523
2535
|
icon?: ColorThemeConfig;
|
|
2524
2536
|
cornerRadius?: number;
|
|
2525
2537
|
}
|
|
2526
|
-
/**
|
|
2538
|
+
/**
|
|
2539
|
+
* Banner/Modal Header Theme Configuration
|
|
2540
|
+
*/
|
|
2527
2541
|
export interface HeaderThemeConfig {
|
|
2528
2542
|
background?: ColorThemeConfig;
|
|
2529
2543
|
title?: TextThemeConfig;
|
|
2530
2544
|
returnButton?: ReturnButtonThemeConfig;
|
|
2531
2545
|
}
|
|
2532
|
-
/**
|
|
2546
|
+
/**
|
|
2547
|
+
* Action Button Theme Configuration
|
|
2548
|
+
*/
|
|
2533
2549
|
export declare enum ItemStyle {
|
|
2534
2550
|
Filled = "filled",
|
|
2535
2551
|
Outlined = "outlined"
|
|
@@ -2537,22 +2553,30 @@ export declare enum ItemStyle {
|
|
|
2537
2553
|
export interface ActionButtonThemeConfig {
|
|
2538
2554
|
style?: ItemStyle;
|
|
2539
2555
|
background?: ColorThemeConfig;
|
|
2556
|
+
outline?: ColorThemeConfig;
|
|
2540
2557
|
text?: TextThemeConfig;
|
|
2541
2558
|
icon?: ColorThemeConfig;
|
|
2542
2559
|
cornerRadius?: number;
|
|
2543
2560
|
}
|
|
2544
|
-
/**
|
|
2545
|
-
|
|
2561
|
+
/**
|
|
2562
|
+
* Banner and Modal Footer Theme Configuration
|
|
2563
|
+
*/
|
|
2564
|
+
export interface BannerModalFooterThemeConfig {
|
|
2546
2565
|
background?: ColorThemeConfig;
|
|
2547
2566
|
actionButton?: ActionButtonThemeConfig;
|
|
2567
|
+
ketchBadgeVisible?: boolean;
|
|
2548
2568
|
}
|
|
2549
|
-
/**
|
|
2569
|
+
/**
|
|
2570
|
+
* Purpose List Header Theme Configuration
|
|
2571
|
+
*/
|
|
2550
2572
|
export interface PurposeListHeaderThemeConfig {
|
|
2551
2573
|
title?: TextThemeConfig;
|
|
2552
2574
|
acceptAllButton?: ActionButtonThemeConfig;
|
|
2553
2575
|
rejectAllButton?: ActionButtonThemeConfig;
|
|
2554
2576
|
}
|
|
2555
|
-
/**
|
|
2577
|
+
/**
|
|
2578
|
+
* List Theme Configuration
|
|
2579
|
+
*/
|
|
2556
2580
|
export declare enum ListLayout {
|
|
2557
2581
|
Expandable = "expandable",
|
|
2558
2582
|
Cards = "cards"
|
|
@@ -2566,6 +2590,9 @@ export interface ListItemsThemeConfig {
|
|
|
2566
2590
|
arrowIcon?: ColorThemeConfig;
|
|
2567
2591
|
purposeCornerRadius?: number;
|
|
2568
2592
|
}
|
|
2593
|
+
/**
|
|
2594
|
+
* Switch Buttons Theme Configuration
|
|
2595
|
+
*/
|
|
2569
2596
|
export interface SwitchButtonThemeConfig {
|
|
2570
2597
|
background?: ColorThemeConfig;
|
|
2571
2598
|
text?: TextThemeConfig;
|
|
@@ -2574,17 +2601,24 @@ export interface SwitchButtonsThemeConfig {
|
|
|
2574
2601
|
on?: SwitchButtonThemeConfig;
|
|
2575
2602
|
off?: SwitchButtonThemeConfig;
|
|
2576
2603
|
}
|
|
2604
|
+
/**
|
|
2605
|
+
* Purpose List Theme Configuration
|
|
2606
|
+
*/
|
|
2577
2607
|
export interface PurposeListThemeConfig {
|
|
2578
|
-
|
|
2608
|
+
purposeListItems?: ListItemsThemeConfig;
|
|
2579
2609
|
switchButtons?: SwitchButtonsThemeConfig;
|
|
2580
2610
|
}
|
|
2581
|
-
/**
|
|
2611
|
+
/**
|
|
2612
|
+
* Page Text Theme Configuration
|
|
2613
|
+
*/
|
|
2582
2614
|
export interface PageTextThemeConfig {
|
|
2583
2615
|
title?: TextThemeConfig;
|
|
2584
2616
|
description?: TextThemeConfig;
|
|
2585
2617
|
link?: TextThemeConfig;
|
|
2586
2618
|
}
|
|
2587
|
-
/**
|
|
2619
|
+
/**
|
|
2620
|
+
* Checkboxes Theme Configuration
|
|
2621
|
+
*/
|
|
2588
2622
|
export interface CheckboxThemeConfig {
|
|
2589
2623
|
background?: ColorThemeConfig;
|
|
2590
2624
|
label?: ColorThemeConfig;
|
|
@@ -2594,11 +2628,16 @@ export interface CheckboxesThemeConfig {
|
|
|
2594
2628
|
unselected?: CheckboxThemeConfig;
|
|
2595
2629
|
error?: CheckboxThemeConfig;
|
|
2596
2630
|
}
|
|
2631
|
+
/**
|
|
2632
|
+
* Image Theme Configuration
|
|
2633
|
+
*/
|
|
2597
2634
|
export interface ImageThemeConfig {
|
|
2598
2635
|
name?: string;
|
|
2599
2636
|
url?: string;
|
|
2600
2637
|
}
|
|
2601
|
-
/**
|
|
2638
|
+
/**
|
|
2639
|
+
* Banner Theme Configuration Enums
|
|
2640
|
+
*/
|
|
2602
2641
|
export declare enum BannerContainerLayout {
|
|
2603
2642
|
Horizontal = "horizontal",
|
|
2604
2643
|
Vertical = "vertical",
|
|
@@ -2616,7 +2655,9 @@ export declare enum BannerContainerPosition {
|
|
|
2616
2655
|
BottomMiddle = "bottomMiddle",
|
|
2617
2656
|
Center = "center"
|
|
2618
2657
|
}
|
|
2619
|
-
/**
|
|
2658
|
+
/**
|
|
2659
|
+
* Banner Container Theme Configuration
|
|
2660
|
+
*/
|
|
2620
2661
|
export interface BannerContainerThemeConfig {
|
|
2621
2662
|
backdrop?: BackdropThemeConfig;
|
|
2622
2663
|
background?: ColorThemeConfig;
|
|
@@ -2626,30 +2667,42 @@ export interface BannerContainerThemeConfig {
|
|
|
2626
2667
|
size?: BannerContainerSize;
|
|
2627
2668
|
font?: string;
|
|
2628
2669
|
}
|
|
2629
|
-
/**
|
|
2670
|
+
/**
|
|
2671
|
+
* Banner Description Theme Configuration
|
|
2672
|
+
*/
|
|
2630
2673
|
export interface BannerDescriptionThemeConfig {
|
|
2631
2674
|
link?: TextThemeConfig;
|
|
2632
2675
|
text?: TextThemeConfig;
|
|
2633
2676
|
}
|
|
2634
|
-
/**
|
|
2677
|
+
/**
|
|
2678
|
+
* Banner Buttons Theme Configuration - Rightmost === primary
|
|
2679
|
+
*/
|
|
2635
2680
|
export interface BannerButtonsThemeConfig {
|
|
2636
2681
|
primary?: ActionButtonThemeConfig;
|
|
2637
2682
|
secondary?: ActionButtonThemeConfig;
|
|
2638
2683
|
tertiary?: ActionButtonThemeConfig;
|
|
2639
2684
|
}
|
|
2640
|
-
/**
|
|
2685
|
+
/**
|
|
2686
|
+
* Banner Theme Configuration
|
|
2687
|
+
*/
|
|
2641
2688
|
export interface BannerThemeConfig {
|
|
2642
2689
|
container?: BannerContainerThemeConfig;
|
|
2643
2690
|
header?: HeaderThemeConfig;
|
|
2644
2691
|
description?: BannerDescriptionThemeConfig;
|
|
2645
2692
|
buttons?: BannerButtonsThemeConfig;
|
|
2693
|
+
footer?: BannerModalFooterThemeConfig;
|
|
2646
2694
|
}
|
|
2647
|
-
/**
|
|
2695
|
+
/**
|
|
2696
|
+
* Modal Theme Theme Configuration Enums
|
|
2697
|
+
*/
|
|
2648
2698
|
export declare enum ModalContainerPosition {
|
|
2649
2699
|
Center = "center",
|
|
2650
2700
|
Left = "left",
|
|
2651
2701
|
Right = "right"
|
|
2652
2702
|
}
|
|
2703
|
+
/**
|
|
2704
|
+
* Modal Container Theme Configuration
|
|
2705
|
+
*/
|
|
2653
2706
|
export interface ModalContainerThemeConfig {
|
|
2654
2707
|
position?: ModalContainerPosition;
|
|
2655
2708
|
font?: string;
|
|
@@ -2657,34 +2710,58 @@ export interface ModalContainerThemeConfig {
|
|
|
2657
2710
|
cornerRadius?: number;
|
|
2658
2711
|
backdrop?: BackdropThemeConfig;
|
|
2659
2712
|
}
|
|
2713
|
+
/**
|
|
2714
|
+
* Modal Description Theme Configuration
|
|
2715
|
+
*/
|
|
2660
2716
|
export interface ModalDescriptionThemeConfig {
|
|
2661
2717
|
title?: TextThemeConfig;
|
|
2662
2718
|
text?: TextThemeConfig;
|
|
2663
2719
|
link?: TextThemeConfig;
|
|
2664
2720
|
}
|
|
2721
|
+
/**
|
|
2722
|
+
* Modal Theme Configuration
|
|
2723
|
+
*/
|
|
2665
2724
|
export interface ModalThemeConfig {
|
|
2666
2725
|
container?: ModalContainerThemeConfig;
|
|
2667
2726
|
header?: HeaderThemeConfig;
|
|
2668
2727
|
description?: ModalDescriptionThemeConfig;
|
|
2669
|
-
|
|
2728
|
+
purposeListHeader?: PurposeListHeaderThemeConfig;
|
|
2670
2729
|
purposeList?: PurposeListThemeConfig;
|
|
2671
|
-
footer?:
|
|
2730
|
+
footer?: BannerModalFooterThemeConfig;
|
|
2672
2731
|
}
|
|
2673
|
-
/**
|
|
2732
|
+
/**
|
|
2733
|
+
* Preference Center Exit Button Theme Configuration
|
|
2734
|
+
*/
|
|
2674
2735
|
export declare enum ExitButtonPosition {
|
|
2675
2736
|
topRight = "topRight",
|
|
2676
2737
|
bottomLeft = "bottomLeft"
|
|
2677
2738
|
}
|
|
2678
|
-
|
|
2739
|
+
/**
|
|
2740
|
+
* Preference Center Footer Theme Configuration
|
|
2741
|
+
*/
|
|
2742
|
+
export interface PreferenceFooterThemeConfig {
|
|
2743
|
+
background?: ColorThemeConfig;
|
|
2744
|
+
actionButton?: ActionButtonThemeConfig;
|
|
2745
|
+
}
|
|
2746
|
+
/**
|
|
2747
|
+
* Preference Center Welcome Tab Container Theme Configuration
|
|
2748
|
+
*/
|
|
2749
|
+
export interface PreferenceContainerThemeConfig {
|
|
2679
2750
|
exitPosition?: ExitButtonPosition;
|
|
2680
2751
|
font?: string;
|
|
2681
2752
|
background?: ColorThemeConfig;
|
|
2682
2753
|
}
|
|
2683
|
-
|
|
2754
|
+
/**
|
|
2755
|
+
* Preference Center Welcome Tab Header Theme Configuration
|
|
2756
|
+
*/
|
|
2757
|
+
export interface PreferenceHeaderThemeConfig {
|
|
2684
2758
|
background?: ColorThemeConfig;
|
|
2685
2759
|
title?: TextThemeConfig;
|
|
2686
2760
|
logo?: ImageThemeConfig;
|
|
2687
2761
|
}
|
|
2762
|
+
/**
|
|
2763
|
+
* Preference Center Navigation Panel Theme Configuration
|
|
2764
|
+
*/
|
|
2688
2765
|
export interface NavigationLayoutItemThemeConfig {
|
|
2689
2766
|
unselectedBackground?: ColorThemeConfig;
|
|
2690
2767
|
unselectedText?: TextThemeConfig;
|
|
@@ -2704,12 +2781,15 @@ export interface NavigationIconsThemeConfig {
|
|
|
2704
2781
|
subscriptions?: ImageThemeConfig;
|
|
2705
2782
|
requests?: ImageThemeConfig;
|
|
2706
2783
|
}
|
|
2707
|
-
export interface
|
|
2784
|
+
export interface PreferenceNavigationThemeConfig {
|
|
2708
2785
|
layout?: NavigationLayoutThemeConfig;
|
|
2709
2786
|
iconsVisible?: boolean;
|
|
2710
2787
|
icons?: NavigationIconsThemeConfig;
|
|
2711
2788
|
}
|
|
2712
|
-
|
|
2789
|
+
/**
|
|
2790
|
+
* Preference Center Welcome Tab Exit Button Theme Configuration
|
|
2791
|
+
*/
|
|
2792
|
+
export interface PreferenceExitButtonThemeConfig {
|
|
2713
2793
|
background?: ColorThemeConfig;
|
|
2714
2794
|
text?: TextThemeConfig;
|
|
2715
2795
|
iconVisible?: boolean;
|
|
@@ -2717,53 +2797,65 @@ export interface WelcomeTabExitButtonThemeConfig {
|
|
|
2717
2797
|
iconColor?: ColorThemeConfig;
|
|
2718
2798
|
icon?: ImageThemeConfig;
|
|
2719
2799
|
}
|
|
2800
|
+
/**
|
|
2801
|
+
* Preference Center Welcome Tab Hero Banner Theme Configuration
|
|
2802
|
+
*/
|
|
2720
2803
|
export interface WelcomeTabHeroBannerThemeConfig {
|
|
2721
2804
|
visible?: boolean;
|
|
2722
2805
|
image?: ImageThemeConfig;
|
|
2723
2806
|
}
|
|
2807
|
+
/**
|
|
2808
|
+
* Preference Center Welcome Tab Welcome Message Theme Configuration
|
|
2809
|
+
*/
|
|
2724
2810
|
export interface WelcomeTabWelcomeMsgThemeConfig {
|
|
2725
2811
|
title?: TextThemeConfig;
|
|
2726
2812
|
subtitle?: TextThemeConfig;
|
|
2727
2813
|
link?: TextThemeConfig;
|
|
2728
2814
|
}
|
|
2815
|
+
/**
|
|
2816
|
+
* Preference Center Welcome Tab Quick Links Theme Configuration
|
|
2817
|
+
*/
|
|
2729
2818
|
export interface WelcomeTabQuickLinksThemeConfig {
|
|
2730
2819
|
title?: TextThemeConfig;
|
|
2731
2820
|
link?: TextThemeConfig;
|
|
2732
2821
|
showArrows?: boolean;
|
|
2733
2822
|
}
|
|
2823
|
+
/**
|
|
2824
|
+
* Preference Center Welcome Tab About Section Theme Configuration
|
|
2825
|
+
*/
|
|
2734
2826
|
export interface WelcomeTabAboutThemeConfig {
|
|
2735
2827
|
title?: TextThemeConfig;
|
|
2736
2828
|
text?: TextThemeConfig;
|
|
2737
2829
|
link?: TextThemeConfig;
|
|
2738
2830
|
}
|
|
2831
|
+
/**
|
|
2832
|
+
* Preference Center Welcome Tab Theme Configuration
|
|
2833
|
+
*/
|
|
2739
2834
|
export interface PreferenceWelcomeTabThemeConfig {
|
|
2740
|
-
container?: WelcomeTabContainerThemeConfig;
|
|
2741
|
-
header?: WelcomeTabHeaderThemeConfig;
|
|
2742
|
-
navigation?: WelcomeTabNavigationThemeConfig;
|
|
2743
|
-
exitButton?: WelcomeTabExitButtonThemeConfig;
|
|
2744
2835
|
heroBanner?: WelcomeTabHeroBannerThemeConfig;
|
|
2745
2836
|
welcomeMsg?: WelcomeTabWelcomeMsgThemeConfig;
|
|
2746
2837
|
quickLinks?: WelcomeTabQuickLinksThemeConfig;
|
|
2747
2838
|
about?: WelcomeTabAboutThemeConfig;
|
|
2748
2839
|
}
|
|
2749
|
-
/**
|
|
2840
|
+
/**
|
|
2841
|
+
* Preference Center Privacy Policy Theme Configuration
|
|
2842
|
+
*/
|
|
2750
2843
|
export interface PreferencePrivacyPolicyTabThemeConfig {
|
|
2751
2844
|
text?: TextThemeConfig;
|
|
2752
2845
|
link?: TextThemeConfig;
|
|
2753
2846
|
}
|
|
2754
|
-
/**
|
|
2755
|
-
|
|
2756
|
-
|
|
2757
|
-
description?: TextThemeConfig;
|
|
2758
|
-
link?: TextThemeConfig;
|
|
2759
|
-
}
|
|
2847
|
+
/**
|
|
2848
|
+
* Preference Center Purposes Tab Theme Configuration
|
|
2849
|
+
*/
|
|
2760
2850
|
export interface PreferencePurposesTabThemeConfig {
|
|
2761
2851
|
header?: PageTextThemeConfig;
|
|
2762
|
-
|
|
2763
|
-
|
|
2764
|
-
footer?:
|
|
2852
|
+
purposeListHeader?: PurposeListHeaderThemeConfig;
|
|
2853
|
+
purposeList?: PurposeListThemeConfig;
|
|
2854
|
+
footer?: PreferenceFooterThemeConfig;
|
|
2765
2855
|
}
|
|
2766
|
-
/**
|
|
2856
|
+
/**
|
|
2857
|
+
* Preference Center Subscriptions Tab Theme Configuration Enums
|
|
2858
|
+
*/
|
|
2767
2859
|
export declare enum SubscriptionListStyle {
|
|
2768
2860
|
Filled = "filled",
|
|
2769
2861
|
Underlined = "underlined"
|
|
@@ -2772,6 +2864,9 @@ export declare enum UnsubscribeFromAllPosition {
|
|
|
2772
2864
|
Top = "top",
|
|
2773
2865
|
Bottom = "bottom"
|
|
2774
2866
|
}
|
|
2867
|
+
/**
|
|
2868
|
+
* Preference Center Subscriptions Tab Unsubscribe All Theme Configuration
|
|
2869
|
+
*/
|
|
2775
2870
|
export interface SubscriptionsTabUnsubscribeAllThemeConfig {
|
|
2776
2871
|
position?: UnsubscribeFromAllPosition;
|
|
2777
2872
|
background?: ColorThemeConfig;
|
|
@@ -2779,6 +2874,9 @@ export interface SubscriptionsTabUnsubscribeAllThemeConfig {
|
|
|
2779
2874
|
cornerRadius?: number;
|
|
2780
2875
|
switchButton?: SwitchButtonsThemeConfig;
|
|
2781
2876
|
}
|
|
2877
|
+
/**
|
|
2878
|
+
* Preference Center Subscriptions Tab List Theme Configuration
|
|
2879
|
+
*/
|
|
2782
2880
|
export interface LayoutThemeConfig {
|
|
2783
2881
|
style?: SubscriptionListStyle;
|
|
2784
2882
|
background?: ColorThemeConfig;
|
|
@@ -2791,17 +2889,24 @@ export interface SubscriptionsTabListThemeConfig {
|
|
|
2791
2889
|
switchButton?: SwitchButtonsThemeConfig;
|
|
2792
2890
|
checkbox?: CheckboxesThemeConfig;
|
|
2793
2891
|
}
|
|
2892
|
+
/**
|
|
2893
|
+
* Preference Center Subscriptions Tab Theme Configuration
|
|
2894
|
+
*/
|
|
2794
2895
|
export interface PreferenceSubscriptionsTabThemeConfig {
|
|
2795
2896
|
header?: PageTextThemeConfig;
|
|
2796
2897
|
unsubscribeAll?: SubscriptionsTabUnsubscribeAllThemeConfig;
|
|
2797
2898
|
list?: SubscriptionsTabListThemeConfig;
|
|
2798
|
-
footer?:
|
|
2899
|
+
footer?: PreferenceFooterThemeConfig;
|
|
2799
2900
|
}
|
|
2800
|
-
/**
|
|
2901
|
+
/**
|
|
2902
|
+
* Preference Center Requests Tab Theme Configuration Enums */
|
|
2801
2903
|
export declare enum FormFieldStyle {
|
|
2802
2904
|
Box = "box",
|
|
2803
2905
|
Underline = "underline"
|
|
2804
2906
|
}
|
|
2907
|
+
/**
|
|
2908
|
+
* Preference Center Requests Tab Home View DSR Link Theme Configuration
|
|
2909
|
+
*/
|
|
2805
2910
|
export interface RequestsTabDsrLinkThemeConfig {
|
|
2806
2911
|
title?: TextThemeConfig;
|
|
2807
2912
|
description?: TextThemeConfig;
|
|
@@ -2809,6 +2914,9 @@ export interface RequestsTabDsrLinkThemeConfig {
|
|
|
2809
2914
|
background?: ColorThemeConfig;
|
|
2810
2915
|
cornerRadius?: number;
|
|
2811
2916
|
}
|
|
2917
|
+
/**
|
|
2918
|
+
* Preference Center Requests Tab Home View Rights List Theme Configuration
|
|
2919
|
+
*/
|
|
2812
2920
|
export interface RightsListItemThemeConfig {
|
|
2813
2921
|
title?: TextThemeConfig;
|
|
2814
2922
|
arrowIcon?: ColorThemeConfig;
|
|
@@ -2824,6 +2932,9 @@ export interface RequestsTabHomeThemeConfig {
|
|
|
2824
2932
|
dsrPortalLink?: RequestsTabDsrLinkThemeConfig;
|
|
2825
2933
|
rightsList?: RequestsTabRightsListThemeConfig;
|
|
2826
2934
|
}
|
|
2935
|
+
/**
|
|
2936
|
+
* Preference Center Requests Tab Right Form View Theme Configuration
|
|
2937
|
+
*/
|
|
2827
2938
|
export interface FormDividersThemeConfig {
|
|
2828
2939
|
title?: TextThemeConfig;
|
|
2829
2940
|
subtitle?: TextThemeConfig;
|
|
@@ -2852,10 +2963,16 @@ export interface RequestsTabRightFormThemeConfig {
|
|
|
2852
2963
|
form?: RightFormThemeConfig;
|
|
2853
2964
|
actionButton?: ActionButtonThemeConfig;
|
|
2854
2965
|
}
|
|
2966
|
+
/**
|
|
2967
|
+
* Preference Center Requests Tab Submmited View Summary Banner Theme Configuration
|
|
2968
|
+
*/
|
|
2855
2969
|
export interface SubmittedRequestSummaryBannerThemeConfig {
|
|
2856
|
-
|
|
2857
|
-
|
|
2970
|
+
visible?: boolean;
|
|
2971
|
+
image?: ImageThemeConfig;
|
|
2858
2972
|
}
|
|
2973
|
+
/**
|
|
2974
|
+
* Preference Center Requests Tab Submmited View Summary Text Theme Configuration
|
|
2975
|
+
*/
|
|
2859
2976
|
export interface SubmittedRequestSummaryTextThemeConfig {
|
|
2860
2977
|
title?: TextThemeConfig;
|
|
2861
2978
|
description?: TextThemeConfig;
|
|
@@ -2875,14 +2992,30 @@ export interface PreferenceRequestsTabThemeConfig {
|
|
|
2875
2992
|
rightForm?: RequestsTabRightFormThemeConfig;
|
|
2876
2993
|
submitted?: RequestsTabSubmittedThemeConfig;
|
|
2877
2994
|
}
|
|
2878
|
-
/**
|
|
2879
|
-
|
|
2995
|
+
/**
|
|
2996
|
+
* Preference Center Tabs Theme Configuration
|
|
2997
|
+
*/
|
|
2998
|
+
export interface PreferenceTabsThemeConfig {
|
|
2880
2999
|
welcome?: PreferenceWelcomeTabThemeConfig;
|
|
2881
3000
|
privacyPolicy?: PreferencePrivacyPolicyTabThemeConfig;
|
|
2882
3001
|
purposes?: PreferencePurposesTabThemeConfig;
|
|
2883
3002
|
subscriptions?: PreferenceSubscriptionsTabThemeConfig;
|
|
2884
3003
|
requests?: PreferenceRequestsTabThemeConfig;
|
|
2885
3004
|
}
|
|
3005
|
+
/**
|
|
3006
|
+
* Preference Center Theme Configuration
|
|
3007
|
+
*/
|
|
3008
|
+
export interface PreferenceThemeConfig {
|
|
3009
|
+
container?: PreferenceContainerThemeConfig;
|
|
3010
|
+
header?: PreferenceHeaderThemeConfig;
|
|
3011
|
+
navigation?: PreferenceNavigationThemeConfig;
|
|
3012
|
+
exitButton?: PreferenceExitButtonThemeConfig;
|
|
3013
|
+
ketchBadgeVisible?: boolean;
|
|
3014
|
+
tabs?: PreferenceTabsThemeConfig;
|
|
3015
|
+
}
|
|
3016
|
+
/**
|
|
3017
|
+
* Theme Configuration
|
|
3018
|
+
*/
|
|
2886
3019
|
export interface ThemeConfig {
|
|
2887
3020
|
banner?: BannerThemeConfig;
|
|
2888
3021
|
modal?: ModalThemeConfig;
|
|
@@ -2891,18 +3024,22 @@ export interface ThemeConfig {
|
|
|
2891
3024
|
/**
|
|
2892
3025
|
* Experience V2 Layout Config
|
|
2893
3026
|
*/
|
|
2894
|
-
/**
|
|
2895
|
-
|
|
3027
|
+
/**
|
|
3028
|
+
* Banner/Modal Header Experience Layout Configuration
|
|
3029
|
+
*/
|
|
2896
3030
|
export interface HeaderExperienceLayoutConfig {
|
|
2897
3031
|
visible?: boolean;
|
|
2898
3032
|
closeButtonVisible?: boolean;
|
|
2899
3033
|
}
|
|
2900
|
-
/**
|
|
2901
|
-
|
|
2902
|
-
|
|
3034
|
+
/**
|
|
3035
|
+
* Banner/Modal Footer Experience Layout Configuration
|
|
3036
|
+
*/
|
|
3037
|
+
export interface BannerModalFooterExperienceLayoutConfig {
|
|
2903
3038
|
gpcBadgeVisible?: boolean;
|
|
2904
3039
|
}
|
|
2905
|
-
/**
|
|
3040
|
+
/**
|
|
3041
|
+
* Switch Buttons Experience Layout Configuration
|
|
3042
|
+
*/
|
|
2906
3043
|
export declare enum SwitchButtonDisplay {
|
|
2907
3044
|
Always = "always",
|
|
2908
3045
|
WhenLegalBasisDiffers = "whenLegalBasisDiffers"
|
|
@@ -2912,17 +3049,18 @@ export interface SwitchButtonsExperienceLayoutConfig {
|
|
|
2912
3049
|
display?: SwitchButtonDisplay;
|
|
2913
3050
|
useDefaultText?: boolean;
|
|
2914
3051
|
}
|
|
2915
|
-
/**
|
|
3052
|
+
/**
|
|
3053
|
+
* Text Block Experience Layout Configuration
|
|
3054
|
+
*/
|
|
2916
3055
|
export interface TextBlockTitleExperienceLayoutConfig {
|
|
2917
3056
|
visible?: boolean;
|
|
2918
3057
|
}
|
|
2919
3058
|
export interface TextBlockExperienceLayoutConfig {
|
|
2920
3059
|
title?: TextBlockTitleExperienceLayoutConfig;
|
|
2921
3060
|
}
|
|
2922
|
-
|
|
2923
|
-
|
|
2924
|
-
|
|
2925
|
-
/** Banner Experience Layout Config */
|
|
3061
|
+
/**
|
|
3062
|
+
* Banner Action Button Experience Layout Configuration
|
|
3063
|
+
*/
|
|
2926
3064
|
export declare enum BannerButtonAction {
|
|
2927
3065
|
SaveCurrentState = "saveCurrentState",
|
|
2928
3066
|
AcceptAll = "acceptAll",
|
|
@@ -2930,40 +3068,54 @@ export declare enum BannerButtonAction {
|
|
|
2930
3068
|
OpenPreferences = "openPreferences",
|
|
2931
3069
|
RejectAll = "rejectAll"
|
|
2932
3070
|
}
|
|
2933
|
-
/** Banner Action Button */
|
|
2934
3071
|
export interface BannerActionButtonExperienceLayoutConfig {
|
|
2935
3072
|
visible?: boolean;
|
|
2936
3073
|
action?: BannerButtonAction;
|
|
2937
3074
|
}
|
|
2938
|
-
/**
|
|
3075
|
+
/**
|
|
3076
|
+
* Banner Buttons Experience Experience Layout Configuration
|
|
3077
|
+
*/
|
|
2939
3078
|
export interface BannerButtonsExperienceLayoutConfig {
|
|
2940
3079
|
primary?: BannerActionButtonExperienceLayoutConfig;
|
|
2941
3080
|
secondary?: BannerActionButtonExperienceLayoutConfig;
|
|
2942
3081
|
tertiary?: BannerActionButtonExperienceLayoutConfig;
|
|
2943
3082
|
close?: boolean;
|
|
2944
3083
|
}
|
|
3084
|
+
/**
|
|
3085
|
+
* Banner Experience Layout Configuration
|
|
3086
|
+
*/
|
|
2945
3087
|
export interface BannerExperienceLayoutConfig {
|
|
2946
3088
|
header?: HeaderExperienceLayoutConfig;
|
|
2947
3089
|
buttons?: BannerButtonsExperienceLayoutConfig;
|
|
2948
|
-
footer?:
|
|
3090
|
+
footer?: BannerModalFooterExperienceLayoutConfig;
|
|
2949
3091
|
}
|
|
2950
|
-
/**
|
|
3092
|
+
/**
|
|
3093
|
+
* Modal List Header Experience Layout Configuration
|
|
3094
|
+
*/
|
|
2951
3095
|
export interface ModalListHeaderExperienceLayoutConfig {
|
|
2952
3096
|
visible?: boolean;
|
|
2953
|
-
|
|
3097
|
+
useDefaultText?: boolean;
|
|
2954
3098
|
}
|
|
3099
|
+
/**
|
|
3100
|
+
* Modal Purpose List Experience Layout Configuration
|
|
3101
|
+
*/
|
|
2955
3102
|
export interface ModalPurposeListExperienceLayoutConfig {
|
|
2956
3103
|
legalBasisVisible?: boolean;
|
|
2957
3104
|
switchButtonLabels?: SwitchButtonsExperienceLayoutConfig;
|
|
2958
3105
|
}
|
|
3106
|
+
/**
|
|
3107
|
+
* Modal Experience Layout Configuration
|
|
3108
|
+
*/
|
|
2959
3109
|
export interface ModalExperienceLayoutConfig {
|
|
2960
3110
|
header?: HeaderExperienceLayoutConfig;
|
|
2961
3111
|
description?: TextBlockExperienceLayoutConfig;
|
|
2962
|
-
|
|
3112
|
+
purposeListHeader?: ModalListHeaderExperienceLayoutConfig;
|
|
2963
3113
|
purposeList?: ModalPurposeListExperienceLayoutConfig;
|
|
2964
|
-
footer?:
|
|
3114
|
+
footer?: BannerModalFooterExperienceLayoutConfig;
|
|
2965
3115
|
}
|
|
2966
|
-
/**
|
|
3116
|
+
/**
|
|
3117
|
+
* Preference Center Welcome Tab Experience Layout Configuration Enums
|
|
3118
|
+
*/
|
|
2967
3119
|
export declare enum QuickLinkAction {
|
|
2968
3120
|
OpenUrl = "openUrl",
|
|
2969
3121
|
OpenPage = "openPage"
|
|
@@ -2977,9 +3129,15 @@ export declare enum PreferenceCenterPage {
|
|
|
2977
3129
|
RequestsForm = "requestsForm",
|
|
2978
3130
|
RequestsSubmitted = "requestsSubmitted"
|
|
2979
3131
|
}
|
|
3132
|
+
/**
|
|
3133
|
+
* Preference Center Welcome Tab Welcome Message Experience Layout Configuration
|
|
3134
|
+
*/
|
|
2980
3135
|
export interface WelcomeTabWelcomeMsgExperienceLayoutConfig {
|
|
2981
3136
|
visible?: boolean;
|
|
2982
3137
|
}
|
|
3138
|
+
/**
|
|
3139
|
+
* Preference Center Welcome Tab Quick Links Layout Configuration
|
|
3140
|
+
*/
|
|
2983
3141
|
export interface QuickLinkExperienceLayoutConfig {
|
|
2984
3142
|
action?: QuickLinkAction;
|
|
2985
3143
|
page?: PreferenceCenterPage;
|
|
@@ -2989,36 +3147,56 @@ export interface WelcomeTabQuickLinksExperienceLayoutConfig {
|
|
|
2989
3147
|
visible?: boolean;
|
|
2990
3148
|
links?: QuickLinkExperienceLayoutConfig[];
|
|
2991
3149
|
}
|
|
3150
|
+
/**
|
|
3151
|
+
* Preference Center Welcome Tab About Section Layout Configuration
|
|
3152
|
+
*/
|
|
2992
3153
|
export interface WelcomeTabAboutExperienceLayoutConfig {
|
|
2993
3154
|
visible?: boolean;
|
|
2994
3155
|
}
|
|
3156
|
+
/**
|
|
3157
|
+
* Preference Center Welcome Tab Experience Layout Configuration
|
|
3158
|
+
*/
|
|
2995
3159
|
export interface PreferenceWelcomeTabExperienceLayoutConfig {
|
|
2996
|
-
footer?: FooterExperienceLayoutConfig;
|
|
2997
3160
|
welcomeMsg?: WelcomeTabWelcomeMsgExperienceLayoutConfig;
|
|
2998
3161
|
quickLinks?: WelcomeTabQuickLinksExperienceLayoutConfig;
|
|
2999
3162
|
about?: WelcomeTabAboutExperienceLayoutConfig;
|
|
3000
3163
|
}
|
|
3001
|
-
/**
|
|
3164
|
+
/**
|
|
3165
|
+
* Preference Center Privacy Policy Tab Experience Layout Configuration
|
|
3166
|
+
*/
|
|
3002
3167
|
export interface PreferencePrivacyPolicyTabExperienceLayoutConfig {
|
|
3003
3168
|
visible?: boolean;
|
|
3004
3169
|
policyDocumentId?: string;
|
|
3005
3170
|
}
|
|
3006
|
-
/**
|
|
3171
|
+
/**
|
|
3172
|
+
* Preference Center Purposes Tab Header Experience Layout Configuration
|
|
3173
|
+
*/
|
|
3174
|
+
export interface PreferenceTabHeaderExperienceLayoutConfig {
|
|
3175
|
+
title?: TextBlockTitleExperienceLayoutConfig;
|
|
3176
|
+
}
|
|
3177
|
+
/**
|
|
3178
|
+
* Preference Center Purposes Tab List Experience Layout Configuration
|
|
3179
|
+
*/
|
|
3007
3180
|
export interface PurposesTabListHeaderExperienceLayoutConfig {
|
|
3008
3181
|
titleVisible?: boolean;
|
|
3009
|
-
|
|
3182
|
+
useDefaultText?: boolean;
|
|
3010
3183
|
}
|
|
3011
3184
|
export interface PurposesTabListExperienceLayoutConfig {
|
|
3012
3185
|
legalBasisVisible?: boolean;
|
|
3013
3186
|
switchButtonLabels?: SwitchButtonsExperienceLayoutConfig;
|
|
3014
3187
|
}
|
|
3188
|
+
/**
|
|
3189
|
+
* Preference Center Purposes Tab Experience Layout Configuration
|
|
3190
|
+
*/
|
|
3015
3191
|
export interface PreferencePurposesTabExperienceLayoutConfig {
|
|
3016
3192
|
header?: PreferenceTabHeaderExperienceLayoutConfig;
|
|
3017
|
-
|
|
3018
|
-
|
|
3193
|
+
purposeListHeader?: PurposesTabListHeaderExperienceLayoutConfig;
|
|
3194
|
+
purposeList?: PurposesTabListExperienceLayoutConfig;
|
|
3019
3195
|
actionButtonUseDefaultText?: boolean;
|
|
3020
3196
|
}
|
|
3021
|
-
/**
|
|
3197
|
+
/**
|
|
3198
|
+
* Preference Center Subscriptions Tab Experience Layout Configuration Enums
|
|
3199
|
+
*/
|
|
3022
3200
|
export declare enum UnsubscribeAllImpact {
|
|
3023
3201
|
Universal = "universal",
|
|
3024
3202
|
SingleExperience = "singleExperience"
|
|
@@ -3028,15 +3206,18 @@ export declare enum SubscriptionItemType {
|
|
|
3028
3206
|
Topic = "topic",
|
|
3029
3207
|
Control = "control"
|
|
3030
3208
|
}
|
|
3209
|
+
/**
|
|
3210
|
+
* Preference Center Subscriptions Tab Unsubscribe All Experience Layout Configuration
|
|
3211
|
+
*/
|
|
3031
3212
|
export interface UnsubscribeAllTitleExperienceLayoutConfig {
|
|
3032
|
-
|
|
3213
|
+
useDefaultText?: boolean;
|
|
3033
3214
|
}
|
|
3034
3215
|
export interface UnsubscribeAllDescriptionExperienceLayoutConfig {
|
|
3035
3216
|
visible?: boolean;
|
|
3036
3217
|
}
|
|
3037
3218
|
export interface UnsubscribeAllImpactExperienceLayoutConfig {
|
|
3038
3219
|
visible?: boolean;
|
|
3039
|
-
|
|
3220
|
+
useDefaultText?: boolean;
|
|
3040
3221
|
}
|
|
3041
3222
|
export interface SubscriptionsTabUnsubscribeAllExperienceLayoutConfig {
|
|
3042
3223
|
visible: boolean;
|
|
@@ -3045,6 +3226,9 @@ export interface SubscriptionsTabUnsubscribeAllExperienceLayoutConfig {
|
|
|
3045
3226
|
switchButton: SwitchButtonsExperienceLayoutConfig;
|
|
3046
3227
|
impact: UnsubscribeAllImpact;
|
|
3047
3228
|
}
|
|
3229
|
+
/**
|
|
3230
|
+
* Preference Center Subscriptions Tab List Experience Layout Configuration
|
|
3231
|
+
*/
|
|
3048
3232
|
export interface SubscriptionListItem {
|
|
3049
3233
|
type?: SubscriptionItemType;
|
|
3050
3234
|
code?: string;
|
|
@@ -3060,43 +3244,61 @@ export interface PreferenceSubscriptionsTabExperienceLayoutConfig {
|
|
|
3060
3244
|
list?: SubscriptionsTabListExperienceLayoutConfig;
|
|
3061
3245
|
actionButtonUseDefaultText?: boolean;
|
|
3062
3246
|
}
|
|
3063
|
-
/**
|
|
3247
|
+
/**
|
|
3248
|
+
* Preference Center Requests Tab Experience Layout Configuration Enums
|
|
3249
|
+
*/
|
|
3250
|
+
export declare enum CanonicalRightCode {
|
|
3251
|
+
Get = "get",
|
|
3252
|
+
Delete = "delete",
|
|
3253
|
+
Restrict = "restrict",
|
|
3254
|
+
Update = "update"
|
|
3255
|
+
}
|
|
3064
3256
|
export declare enum RightsFormMode {
|
|
3065
3257
|
Single = "single",
|
|
3066
3258
|
Custom = "custom"
|
|
3067
3259
|
}
|
|
3068
|
-
|
|
3069
|
-
|
|
3070
|
-
|
|
3071
|
-
RestrictProcessing = "restrictProcessing",
|
|
3072
|
-
UpdateData = "updateData"
|
|
3073
|
-
}
|
|
3260
|
+
/**
|
|
3261
|
+
* Preference Center Requests Tab Home Right Forms Experience Layout Configuration
|
|
3262
|
+
*/
|
|
3074
3263
|
export interface RightsTitleExperienceLayoutConfig {
|
|
3075
|
-
|
|
3264
|
+
useDefaultText?: boolean;
|
|
3076
3265
|
}
|
|
3077
3266
|
export interface RightFormMapping {
|
|
3078
3267
|
rightCode?: string;
|
|
3079
|
-
|
|
3268
|
+
formCode?: string;
|
|
3080
3269
|
}
|
|
3081
|
-
|
|
3082
|
-
|
|
3270
|
+
/**
|
|
3271
|
+
* Default form and custom right to form mapping for a single canonical right.
|
|
3272
|
+
* Used when RightFormsExperienceLayoutConfig.mode === RightsFormMode.Custom.
|
|
3273
|
+
*/
|
|
3274
|
+
export interface RightMappingDetail {
|
|
3275
|
+
canonicalRight?: CanonicalRightCode;
|
|
3083
3276
|
defaultFormId?: string;
|
|
3084
|
-
|
|
3277
|
+
rightFormMappings?: RightFormMapping[];
|
|
3085
3278
|
}
|
|
3086
|
-
|
|
3279
|
+
/**
|
|
3280
|
+
* Form config for both single form and custom mapping mode. The canonical right (request type)
|
|
3281
|
+
* ordering is given by the order of the details array, for both modes.
|
|
3282
|
+
*/
|
|
3283
|
+
export interface RightFormsExperienceLayoutConfig {
|
|
3087
3284
|
mode?: RightsFormMode;
|
|
3088
|
-
|
|
3089
|
-
|
|
3090
|
-
customFormMappings?: CustomRequestMapping[];
|
|
3285
|
+
singleFormCode?: string;
|
|
3286
|
+
details?: RightMappingDetail[];
|
|
3091
3287
|
}
|
|
3092
3288
|
export interface RequestsTabRightsExperienceLayoutConfig {
|
|
3093
3289
|
title?: RightsTitleExperienceLayoutConfig;
|
|
3094
|
-
forms?:
|
|
3290
|
+
forms?: RightFormsExperienceLayoutConfig;
|
|
3095
3291
|
}
|
|
3292
|
+
/**
|
|
3293
|
+
* Preference Center Requests Tab Home Experience Layout Configuration
|
|
3294
|
+
*/
|
|
3096
3295
|
export interface RequestsTabHomeExperienceLayoutConfig {
|
|
3097
3296
|
header?: PreferenceTabHeaderExperienceLayoutConfig;
|
|
3098
3297
|
rights?: RequestsTabRightsExperienceLayoutConfig;
|
|
3099
3298
|
}
|
|
3299
|
+
/**
|
|
3300
|
+
* Preference Center Requests Tab Right Form Experience Layout Configuration
|
|
3301
|
+
*/
|
|
3100
3302
|
export interface RightFormActionButtonExperienceLayoutConfig {
|
|
3101
3303
|
useDefaultText?: boolean;
|
|
3102
3304
|
}
|
|
@@ -3104,154 +3306,216 @@ export interface RequestsTabRightFormExperienceLayoutConfig {
|
|
|
3104
3306
|
enableRecaptcha?: boolean;
|
|
3105
3307
|
actionButton?: RightFormActionButtonExperienceLayoutConfig;
|
|
3106
3308
|
}
|
|
3309
|
+
/**
|
|
3310
|
+
* Preference Center Requests Tab Submitted Action Button Experience Layout Configuration
|
|
3311
|
+
*/
|
|
3107
3312
|
export interface SubmittedActionButtonExperienceLayoutConfig {
|
|
3108
3313
|
visible?: boolean;
|
|
3109
|
-
|
|
3314
|
+
useDefaultText?: boolean;
|
|
3110
3315
|
}
|
|
3111
3316
|
export interface RequestsTabSubmittedExperienceLayoutConfig {
|
|
3112
3317
|
actionButton: SubmittedActionButtonExperienceLayoutConfig;
|
|
3113
3318
|
}
|
|
3319
|
+
/**
|
|
3320
|
+
* Preference Center Requests Tab Experience Layout Configuration
|
|
3321
|
+
*/
|
|
3114
3322
|
export interface PreferenceRequestsTabExperienceLayoutConfig {
|
|
3115
3323
|
home?: RequestsTabHomeExperienceLayoutConfig;
|
|
3116
3324
|
rightForm?: RequestsTabRightFormExperienceLayoutConfig;
|
|
3117
3325
|
submitted?: RequestsTabSubmittedExperienceLayoutConfig;
|
|
3118
3326
|
}
|
|
3119
|
-
|
|
3327
|
+
/**
|
|
3328
|
+
* Preference Center Tabs Experience Layout Configuration
|
|
3329
|
+
*/
|
|
3330
|
+
export interface PreferenceExperienceTabsLayoutConfig {
|
|
3120
3331
|
welcome?: PreferenceWelcomeTabExperienceLayoutConfig;
|
|
3121
3332
|
privacyPolicy?: PreferencePrivacyPolicyTabExperienceLayoutConfig;
|
|
3122
3333
|
purposes?: PreferencePurposesTabExperienceLayoutConfig;
|
|
3123
3334
|
subscriptions?: PreferenceSubscriptionsTabExperienceLayoutConfig;
|
|
3124
3335
|
requests?: PreferenceRequestsTabExperienceLayoutConfig;
|
|
3125
3336
|
}
|
|
3126
|
-
/**
|
|
3337
|
+
/**
|
|
3338
|
+
* Preference Center Experience Layout Configuration
|
|
3339
|
+
*/
|
|
3340
|
+
export interface PreferenceExperienceLayoutConfig {
|
|
3341
|
+
gpcBadgeVisible?: boolean;
|
|
3342
|
+
tabs?: PreferenceExperienceTabsLayoutConfig;
|
|
3343
|
+
}
|
|
3344
|
+
/**
|
|
3345
|
+
* Experience Layout Configuration
|
|
3346
|
+
*/
|
|
3127
3347
|
export interface ExperienceLayoutConfig {
|
|
3128
3348
|
banner?: BannerExperienceLayoutConfig;
|
|
3129
3349
|
modal?: ModalExperienceLayoutConfig;
|
|
3130
3350
|
preference?: PreferenceExperienceLayoutConfig;
|
|
3131
3351
|
}
|
|
3132
3352
|
/**
|
|
3133
|
-
* Experience
|
|
3353
|
+
* Banner/Modal Header Experience Content Configuration
|
|
3134
3354
|
*/
|
|
3135
|
-
/** Shared Experience Content Config Entities */
|
|
3136
|
-
/** Banner/Modal Header */
|
|
3137
3355
|
export interface HeaderExperienceContentConfig {
|
|
3138
3356
|
title?: string;
|
|
3139
3357
|
}
|
|
3140
|
-
/**
|
|
3358
|
+
/**
|
|
3359
|
+
* Banner/Modal Footer Experience Content Configuration
|
|
3360
|
+
*/
|
|
3141
3361
|
export interface FooterExperienceContentConfig {
|
|
3142
3362
|
actionButtonText?: string;
|
|
3143
3363
|
}
|
|
3144
|
-
/**
|
|
3364
|
+
/**
|
|
3365
|
+
* Switch Buttons Experience Content Configuration
|
|
3366
|
+
*/
|
|
3145
3367
|
export interface SwitchButtonsExperienceContentConfig {
|
|
3146
3368
|
onText?: string;
|
|
3147
3369
|
offText?: string;
|
|
3148
3370
|
}
|
|
3149
|
-
/**
|
|
3150
|
-
|
|
3151
|
-
|
|
3152
|
-
}
|
|
3371
|
+
/**
|
|
3372
|
+
* Text Block Experience Content Configuration
|
|
3373
|
+
*/
|
|
3153
3374
|
export interface TextBlockExperienceContentConfig {
|
|
3154
|
-
title?:
|
|
3155
|
-
|
|
3156
|
-
}
|
|
3157
|
-
export interface PreferenceTabHeaderExperienceContentConfig {
|
|
3158
|
-
description?: string;
|
|
3159
|
-
title?: TextBlockTitleExperienceContentConfig;
|
|
3375
|
+
title?: string;
|
|
3376
|
+
body?: string;
|
|
3160
3377
|
}
|
|
3161
|
-
/**
|
|
3162
|
-
|
|
3378
|
+
/**
|
|
3379
|
+
* Banner Action Button Experience Content Configuration
|
|
3380
|
+
*/
|
|
3163
3381
|
export interface BannerActionButtonExperienceContentConfig {
|
|
3164
3382
|
text?: string;
|
|
3165
3383
|
}
|
|
3166
|
-
/**
|
|
3384
|
+
/**
|
|
3385
|
+
* Banner Buttons Experience Content Configuration
|
|
3386
|
+
*/
|
|
3167
3387
|
export interface BannerButtonsExperienceContentConfig {
|
|
3168
3388
|
primary?: BannerActionButtonExperienceContentConfig;
|
|
3169
3389
|
secondary?: BannerActionButtonExperienceContentConfig;
|
|
3170
3390
|
tertiary?: BannerActionButtonExperienceContentConfig;
|
|
3171
3391
|
}
|
|
3392
|
+
/**
|
|
3393
|
+
* Banner Experience Content Configuration
|
|
3394
|
+
*/
|
|
3172
3395
|
export interface BannerExperienceContentConfig {
|
|
3173
3396
|
header?: HeaderExperienceContentConfig;
|
|
3174
3397
|
description?: string;
|
|
3175
3398
|
buttons?: BannerButtonsExperienceContentConfig;
|
|
3176
3399
|
footer?: FooterExperienceContentConfig;
|
|
3177
3400
|
}
|
|
3178
|
-
/**
|
|
3401
|
+
/**
|
|
3402
|
+
* Modal List Header Experience Content Configuration
|
|
3403
|
+
*/
|
|
3179
3404
|
export interface ModalListHeaderExperienceContentConfig {
|
|
3180
3405
|
text?: string;
|
|
3181
3406
|
}
|
|
3407
|
+
/**
|
|
3408
|
+
* Modal Purpose List Experience Content Configuration
|
|
3409
|
+
*/
|
|
3182
3410
|
export interface ModalPurposeListExperienceContentConfig {
|
|
3183
3411
|
switchButtonLabels?: SwitchButtonsExperienceContentConfig;
|
|
3184
3412
|
}
|
|
3413
|
+
/**
|
|
3414
|
+
* Modal Experience Content Configuration
|
|
3415
|
+
*/
|
|
3185
3416
|
export interface ModalExperienceContentConfig {
|
|
3186
3417
|
header?: HeaderExperienceContentConfig;
|
|
3187
3418
|
description?: TextBlockExperienceContentConfig;
|
|
3188
|
-
|
|
3419
|
+
purposeListHeader?: ModalListHeaderExperienceContentConfig;
|
|
3189
3420
|
purposeList?: ModalPurposeListExperienceContentConfig;
|
|
3190
3421
|
footer?: FooterExperienceContentConfig;
|
|
3191
3422
|
}
|
|
3192
|
-
/**
|
|
3193
|
-
|
|
3423
|
+
/**
|
|
3424
|
+
* Preferences Center Welcome Tab Header Experience Content Configuration
|
|
3425
|
+
*/
|
|
3426
|
+
export interface PreferenceHeaderExperienceContentConfig {
|
|
3194
3427
|
title?: string;
|
|
3195
3428
|
}
|
|
3196
|
-
|
|
3429
|
+
/**
|
|
3430
|
+
* Preferences Center Welcome Tab Navigation Experience Content Configuration
|
|
3431
|
+
*/
|
|
3432
|
+
export interface PreferenceNavigationExperienceContentConfig {
|
|
3197
3433
|
welcomeTitle?: string;
|
|
3198
3434
|
privacyPolicyTitle?: string;
|
|
3199
3435
|
purposesTitle?: string;
|
|
3200
3436
|
subscriptionsTitle?: string;
|
|
3201
3437
|
requestsTitle?: string;
|
|
3202
3438
|
}
|
|
3439
|
+
/**
|
|
3440
|
+
* Preferences Center Welcome Tab Welcome Message Experience Content Configuration
|
|
3441
|
+
*/
|
|
3203
3442
|
export interface WelcomeTabWelcomeMsgExperienceContentConfig {
|
|
3204
3443
|
title?: string;
|
|
3205
3444
|
subtitle?: string;
|
|
3206
3445
|
}
|
|
3446
|
+
/**
|
|
3447
|
+
* Preferences Center Welcome Tab Quick Links Experience Content Configuration
|
|
3448
|
+
*/
|
|
3207
3449
|
export interface QuickLinkExperienceContentConfig {
|
|
3208
3450
|
text?: string;
|
|
3209
3451
|
}
|
|
3210
3452
|
export interface WelcomeTabQuickLinksExperienceContentConfig {
|
|
3211
3453
|
links?: QuickLinkExperienceContentConfig[];
|
|
3212
3454
|
}
|
|
3455
|
+
/**
|
|
3456
|
+
* Preferences Center Welcome Tab About Experience Content Configuration
|
|
3457
|
+
*/
|
|
3213
3458
|
export interface WelcomeTabAboutExperienceContentConfig {
|
|
3214
3459
|
title?: string;
|
|
3215
3460
|
description?: string;
|
|
3216
3461
|
}
|
|
3462
|
+
/**
|
|
3463
|
+
* Preferences Center Welcome Tab Experience Content Configuration
|
|
3464
|
+
*/
|
|
3217
3465
|
export interface PreferenceWelcomeTabExperienceContentConfig {
|
|
3218
|
-
header?: WelcomeTabHeaderExperienceContentConfig;
|
|
3219
|
-
navigation?: WelcomeTabNavigationExperienceContentConfig;
|
|
3220
|
-
footer?: FooterExperienceContentConfig;
|
|
3221
3466
|
welcomeMsg?: WelcomeTabWelcomeMsgExperienceContentConfig;
|
|
3222
3467
|
quickLinks?: WelcomeTabQuickLinksExperienceContentConfig;
|
|
3223
3468
|
about?: WelcomeTabAboutExperienceContentConfig;
|
|
3224
3469
|
}
|
|
3225
|
-
|
|
3470
|
+
export interface PreferenceTabHeaderExperienceContentConfig {
|
|
3471
|
+
title?: string;
|
|
3472
|
+
description?: string;
|
|
3473
|
+
}
|
|
3474
|
+
/**
|
|
3475
|
+
* Preferences Center Purposes Tab List Experience Content Configuration
|
|
3476
|
+
*/
|
|
3226
3477
|
export interface PurposesTabListHeaderExperienceContentConfig {
|
|
3227
3478
|
title?: string;
|
|
3228
3479
|
}
|
|
3229
3480
|
export interface PurposesTabListExperienceContentConfig {
|
|
3230
3481
|
switchButtonLabels?: SwitchButtonsExperienceContentConfig;
|
|
3231
3482
|
}
|
|
3483
|
+
/**
|
|
3484
|
+
* Preferences Center Purposes Tab Experience Content Configuration
|
|
3485
|
+
*/
|
|
3232
3486
|
export interface PreferencePurposesTabExperienceContentConfig {
|
|
3233
3487
|
header?: PreferenceTabHeaderExperienceContentConfig;
|
|
3234
|
-
|
|
3235
|
-
|
|
3488
|
+
purposeListHeader?: PurposesTabListHeaderExperienceContentConfig;
|
|
3489
|
+
purposeList?: PurposesTabListExperienceContentConfig;
|
|
3236
3490
|
actionButtonText?: string;
|
|
3237
3491
|
}
|
|
3238
|
-
/**
|
|
3492
|
+
/**
|
|
3493
|
+
* Preferences Center Subscriptions Tab Unsubscribe All Experience Content Configuration
|
|
3494
|
+
*/
|
|
3239
3495
|
export interface SubscriptionsTabUnsubscribeAllExperienceContentConfig {
|
|
3240
3496
|
title?: string;
|
|
3241
3497
|
description?: string;
|
|
3242
3498
|
switchLabels?: SwitchButtonsExperienceContentConfig;
|
|
3243
3499
|
}
|
|
3500
|
+
/**
|
|
3501
|
+
* Preferences Center Subscriptions Tab Experience Content Configuration
|
|
3502
|
+
*/
|
|
3244
3503
|
export interface PreferenceSubscriptionsTabExperienceContentConfig {
|
|
3245
3504
|
header?: PreferenceTabHeaderExperienceContentConfig;
|
|
3246
3505
|
unsubscribeAll?: SubscriptionsTabUnsubscribeAllExperienceContentConfig;
|
|
3247
3506
|
listSwitchLabels?: SwitchButtonsExperienceContentConfig;
|
|
3248
3507
|
actionButtonText?: string;
|
|
3249
3508
|
}
|
|
3250
|
-
/**
|
|
3509
|
+
/**
|
|
3510
|
+
* Preferences Center Requests Tab Home DSR Link Experience Content Configuration
|
|
3511
|
+
*/
|
|
3251
3512
|
export interface RequestsTabDsrLinkExperienceContentConfig {
|
|
3252
3513
|
title?: string;
|
|
3253
|
-
|
|
3514
|
+
description?: string;
|
|
3254
3515
|
}
|
|
3516
|
+
/**
|
|
3517
|
+
* Preferences Center Requests Tab Home Rights Experience Content Configuration
|
|
3518
|
+
*/
|
|
3255
3519
|
export interface RightsTitleExperienceContentConfig {
|
|
3256
3520
|
title?: string;
|
|
3257
3521
|
}
|
|
@@ -3270,28 +3534,55 @@ export interface RequestsTabHomeExperienceContentConfig {
|
|
|
3270
3534
|
dsrPortalLink?: RequestsTabDsrLinkExperienceContentConfig;
|
|
3271
3535
|
rights?: RequestsTabRightsExperienceContentConfig;
|
|
3272
3536
|
}
|
|
3537
|
+
/**
|
|
3538
|
+
* Preferences Center Requests Tab Right Form Experience Content Configuration
|
|
3539
|
+
*/
|
|
3273
3540
|
export interface RequestsTabRightFormExperienceContentConfig {
|
|
3274
3541
|
recaptchaFailureText?: string;
|
|
3275
3542
|
actionButtonText?: string;
|
|
3276
3543
|
}
|
|
3544
|
+
/**
|
|
3545
|
+
* Preferences Center Requests Tab Submitted Experience Content Configuration
|
|
3546
|
+
*/
|
|
3277
3547
|
export interface RequestsTabSubmittedExperienceContentConfig {
|
|
3278
3548
|
title?: string;
|
|
3279
3549
|
subtitle?: string;
|
|
3280
3550
|
description?: string;
|
|
3281
3551
|
actionButtonText?: string;
|
|
3282
3552
|
}
|
|
3553
|
+
/**
|
|
3554
|
+
* Preferences Center Requests Tab Experience Content Configuration
|
|
3555
|
+
*/
|
|
3283
3556
|
export interface PreferenceRequestsTabExperienceContentConfig {
|
|
3284
3557
|
home?: RequestsTabHomeExperienceContentConfig;
|
|
3285
3558
|
rightForm?: RequestsTabRightFormExperienceContentConfig;
|
|
3286
3559
|
submitted?: RequestsTabSubmittedExperienceContentConfig;
|
|
3287
3560
|
}
|
|
3288
|
-
|
|
3561
|
+
/**
|
|
3562
|
+
* Preferences Center Tabs Experience Content Configuration
|
|
3563
|
+
*/
|
|
3564
|
+
export interface PreferenceExperienceTabsContentConfig {
|
|
3289
3565
|
welcome?: PreferenceWelcomeTabExperienceContentConfig;
|
|
3290
3566
|
purposes?: PreferencePurposesTabExperienceContentConfig;
|
|
3291
3567
|
subscriptions?: PreferenceSubscriptionsTabExperienceContentConfig;
|
|
3292
3568
|
requests?: PreferenceRequestsTabExperienceContentConfig;
|
|
3293
3569
|
}
|
|
3294
|
-
/**
|
|
3570
|
+
/**
|
|
3571
|
+
* Preferences Center Experience Content Configuration
|
|
3572
|
+
*/
|
|
3573
|
+
export interface PreferenceExperienceContentConfig {
|
|
3574
|
+
header?: PreferenceHeaderExperienceContentConfig;
|
|
3575
|
+
navigation?: PreferenceNavigationExperienceContentConfig;
|
|
3576
|
+
footer?: FooterExperienceContentConfig;
|
|
3577
|
+
tabs?: PreferenceExperienceTabsContentConfig;
|
|
3578
|
+
}
|
|
3579
|
+
/**
|
|
3580
|
+
* Static Text Experience Content Configuration
|
|
3581
|
+
*
|
|
3582
|
+
* This is used throughout the banner, modal, and preference experiences
|
|
3583
|
+
* as non-configurable text and/or defaults.
|
|
3584
|
+
*
|
|
3585
|
+
*/
|
|
3295
3586
|
export interface StaticContentConfig {
|
|
3296
3587
|
powered_by?: string;
|
|
3297
3588
|
purpose?: string;
|
|
@@ -3569,7 +3860,9 @@ export interface StaticContentConfig {
|
|
|
3569
3860
|
verification?: string;
|
|
3570
3861
|
and?: string;
|
|
3571
3862
|
}
|
|
3572
|
-
/**
|
|
3863
|
+
/**
|
|
3864
|
+
* Experience Content Configuration
|
|
3865
|
+
*/
|
|
3573
3866
|
export interface ExperienceContentConfig {
|
|
3574
3867
|
banner?: BannerExperienceContentConfig;
|
|
3575
3868
|
modal?: ModalExperienceContentConfig;
|
|
@@ -3577,7 +3870,14 @@ export interface ExperienceContentConfig {
|
|
|
3577
3870
|
static?: StaticContentConfig;
|
|
3578
3871
|
}
|
|
3579
3872
|
/**
|
|
3580
|
-
* Experience
|
|
3873
|
+
* Experience Configuration
|
|
3874
|
+
*
|
|
3875
|
+
* Layout configuration: all configuration options
|
|
3876
|
+
* that DO NOT change with the language, e.g. button visibility.
|
|
3877
|
+
*
|
|
3878
|
+
* Content configuration: all configuration options
|
|
3879
|
+
* that DO change with the language, e.g. banner title.
|
|
3880
|
+
*
|
|
3581
3881
|
*/
|
|
3582
3882
|
export interface ExperienceConfig {
|
|
3583
3883
|
layout?: ExperienceLayoutConfig;
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.FormFieldVariant = exports.FormFieldType = exports.FormFieldCategory = exports.FormFieldWidth = exports.
|
|
3
|
+
exports.FormFieldVariant = exports.FormFieldType = exports.FormFieldCategory = exports.FormFieldWidth = exports.RightsFormMode = exports.CanonicalRightCode = exports.SubscriptionItemType = exports.UnsubscribeAllImpact = exports.PreferenceCenterPage = exports.QuickLinkAction = exports.BannerButtonAction = exports.SwitchButtonDisplay = exports.FormFieldStyle = exports.UnsubscribeFromAllPosition = exports.SubscriptionListStyle = exports.ExitButtonPosition = exports.ModalContainerPosition = exports.BannerContainerPosition = exports.BannerContainerSize = exports.BannerContainerLayout = exports.ListLayout = exports.ItemStyle = exports.ButtonVariant = exports.SubscriptionStatus = exports.SubscriptionExperienceItemType = exports.StorageOriginPolicy = exports.ExperienceActionKind = exports.ModalPosition = exports.BannerPosition = exports.SubscriptionControlPositionType = exports.SubscriptionControlImpactType = exports.SwitchTextRenderLogic = exports.IdentityFormat = exports.IdentityType = exports.CookieCategory = exports.CookieProvenance = exports.CookieDuration = exports.MigrationOption = exports.ExperiencePrimaryButtonAction = exports.ExperienceButtonDestination = exports.ExperienceDefault = exports.ExperienceClosedReason = exports.ConsentExperienceType = exports.ExperienceType = exports.isTab = exports.Tab = void 0;
|
|
4
4
|
/**
|
|
5
5
|
* Tab
|
|
6
6
|
*
|
|
@@ -327,19 +327,25 @@ var ButtonVariant;
|
|
|
327
327
|
ButtonVariant["Outlined"] = "outlined";
|
|
328
328
|
ButtonVariant["Contained"] = "contained";
|
|
329
329
|
})(ButtonVariant = exports.ButtonVariant || (exports.ButtonVariant = {}));
|
|
330
|
-
/**
|
|
330
|
+
/**
|
|
331
|
+
* Action Button Theme Configuration
|
|
332
|
+
*/
|
|
331
333
|
var ItemStyle;
|
|
332
334
|
(function (ItemStyle) {
|
|
333
335
|
ItemStyle["Filled"] = "filled";
|
|
334
336
|
ItemStyle["Outlined"] = "outlined";
|
|
335
337
|
})(ItemStyle = exports.ItemStyle || (exports.ItemStyle = {}));
|
|
336
|
-
/**
|
|
338
|
+
/**
|
|
339
|
+
* List Theme Configuration
|
|
340
|
+
*/
|
|
337
341
|
var ListLayout;
|
|
338
342
|
(function (ListLayout) {
|
|
339
343
|
ListLayout["Expandable"] = "expandable";
|
|
340
344
|
ListLayout["Cards"] = "cards";
|
|
341
345
|
})(ListLayout = exports.ListLayout || (exports.ListLayout = {}));
|
|
342
|
-
/**
|
|
346
|
+
/**
|
|
347
|
+
* Banner Theme Configuration Enums
|
|
348
|
+
*/
|
|
343
349
|
var BannerContainerLayout;
|
|
344
350
|
(function (BannerContainerLayout) {
|
|
345
351
|
BannerContainerLayout["Horizontal"] = "horizontal";
|
|
@@ -360,20 +366,26 @@ var BannerContainerPosition;
|
|
|
360
366
|
BannerContainerPosition["BottomMiddle"] = "bottomMiddle";
|
|
361
367
|
BannerContainerPosition["Center"] = "center";
|
|
362
368
|
})(BannerContainerPosition = exports.BannerContainerPosition || (exports.BannerContainerPosition = {}));
|
|
363
|
-
/**
|
|
369
|
+
/**
|
|
370
|
+
* Modal Theme Theme Configuration Enums
|
|
371
|
+
*/
|
|
364
372
|
var ModalContainerPosition;
|
|
365
373
|
(function (ModalContainerPosition) {
|
|
366
374
|
ModalContainerPosition["Center"] = "center";
|
|
367
375
|
ModalContainerPosition["Left"] = "left";
|
|
368
376
|
ModalContainerPosition["Right"] = "right";
|
|
369
377
|
})(ModalContainerPosition = exports.ModalContainerPosition || (exports.ModalContainerPosition = {}));
|
|
370
|
-
/**
|
|
378
|
+
/**
|
|
379
|
+
* Preference Center Exit Button Theme Configuration
|
|
380
|
+
*/
|
|
371
381
|
var ExitButtonPosition;
|
|
372
382
|
(function (ExitButtonPosition) {
|
|
373
383
|
ExitButtonPosition["topRight"] = "topRight";
|
|
374
384
|
ExitButtonPosition["bottomLeft"] = "bottomLeft";
|
|
375
385
|
})(ExitButtonPosition = exports.ExitButtonPosition || (exports.ExitButtonPosition = {}));
|
|
376
|
-
/**
|
|
386
|
+
/**
|
|
387
|
+
* Preference Center Subscriptions Tab Theme Configuration Enums
|
|
388
|
+
*/
|
|
377
389
|
var SubscriptionListStyle;
|
|
378
390
|
(function (SubscriptionListStyle) {
|
|
379
391
|
SubscriptionListStyle["Filled"] = "filled";
|
|
@@ -384,19 +396,24 @@ var UnsubscribeFromAllPosition;
|
|
|
384
396
|
UnsubscribeFromAllPosition["Top"] = "top";
|
|
385
397
|
UnsubscribeFromAllPosition["Bottom"] = "bottom";
|
|
386
398
|
})(UnsubscribeFromAllPosition = exports.UnsubscribeFromAllPosition || (exports.UnsubscribeFromAllPosition = {}));
|
|
387
|
-
/**
|
|
399
|
+
/**
|
|
400
|
+
* Preference Center Requests Tab Theme Configuration Enums */
|
|
388
401
|
var FormFieldStyle;
|
|
389
402
|
(function (FormFieldStyle) {
|
|
390
403
|
FormFieldStyle["Box"] = "box";
|
|
391
404
|
FormFieldStyle["Underline"] = "underline";
|
|
392
405
|
})(FormFieldStyle = exports.FormFieldStyle || (exports.FormFieldStyle = {}));
|
|
393
|
-
/**
|
|
406
|
+
/**
|
|
407
|
+
* Switch Buttons Experience Layout Configuration
|
|
408
|
+
*/
|
|
394
409
|
var SwitchButtonDisplay;
|
|
395
410
|
(function (SwitchButtonDisplay) {
|
|
396
411
|
SwitchButtonDisplay["Always"] = "always";
|
|
397
412
|
SwitchButtonDisplay["WhenLegalBasisDiffers"] = "whenLegalBasisDiffers";
|
|
398
413
|
})(SwitchButtonDisplay = exports.SwitchButtonDisplay || (exports.SwitchButtonDisplay = {}));
|
|
399
|
-
/**
|
|
414
|
+
/**
|
|
415
|
+
* Banner Action Button Experience Layout Configuration
|
|
416
|
+
*/
|
|
400
417
|
var BannerButtonAction;
|
|
401
418
|
(function (BannerButtonAction) {
|
|
402
419
|
BannerButtonAction["SaveCurrentState"] = "saveCurrentState";
|
|
@@ -405,7 +422,9 @@ var BannerButtonAction;
|
|
|
405
422
|
BannerButtonAction["OpenPreferences"] = "openPreferences";
|
|
406
423
|
BannerButtonAction["RejectAll"] = "rejectAll";
|
|
407
424
|
})(BannerButtonAction = exports.BannerButtonAction || (exports.BannerButtonAction = {}));
|
|
408
|
-
/**
|
|
425
|
+
/**
|
|
426
|
+
* Preference Center Welcome Tab Experience Layout Configuration Enums
|
|
427
|
+
*/
|
|
409
428
|
var QuickLinkAction;
|
|
410
429
|
(function (QuickLinkAction) {
|
|
411
430
|
QuickLinkAction["OpenUrl"] = "openUrl";
|
|
@@ -421,7 +440,9 @@ var PreferenceCenterPage;
|
|
|
421
440
|
PreferenceCenterPage["RequestsForm"] = "requestsForm";
|
|
422
441
|
PreferenceCenterPage["RequestsSubmitted"] = "requestsSubmitted";
|
|
423
442
|
})(PreferenceCenterPage = exports.PreferenceCenterPage || (exports.PreferenceCenterPage = {}));
|
|
424
|
-
/**
|
|
443
|
+
/**
|
|
444
|
+
* Preference Center Subscriptions Tab Experience Layout Configuration Enums
|
|
445
|
+
*/
|
|
425
446
|
var UnsubscribeAllImpact;
|
|
426
447
|
(function (UnsubscribeAllImpact) {
|
|
427
448
|
UnsubscribeAllImpact["Universal"] = "universal";
|
|
@@ -433,22 +454,24 @@ var SubscriptionItemType;
|
|
|
433
454
|
SubscriptionItemType["Topic"] = "topic";
|
|
434
455
|
SubscriptionItemType["Control"] = "control";
|
|
435
456
|
})(SubscriptionItemType = exports.SubscriptionItemType || (exports.SubscriptionItemType = {}));
|
|
436
|
-
/**
|
|
457
|
+
/**
|
|
458
|
+
* Preference Center Requests Tab Experience Layout Configuration Enums
|
|
459
|
+
*/
|
|
460
|
+
var CanonicalRightCode;
|
|
461
|
+
(function (CanonicalRightCode) {
|
|
462
|
+
CanonicalRightCode["Get"] = "get";
|
|
463
|
+
CanonicalRightCode["Delete"] = "delete";
|
|
464
|
+
CanonicalRightCode["Restrict"] = "restrict";
|
|
465
|
+
CanonicalRightCode["Update"] = "update";
|
|
466
|
+
})(CanonicalRightCode = exports.CanonicalRightCode || (exports.CanonicalRightCode = {}));
|
|
437
467
|
var RightsFormMode;
|
|
438
468
|
(function (RightsFormMode) {
|
|
439
469
|
RightsFormMode["Single"] = "single";
|
|
440
470
|
RightsFormMode["Custom"] = "custom";
|
|
441
471
|
})(RightsFormMode = exports.RightsFormMode || (exports.RightsFormMode = {}));
|
|
442
|
-
var RequestType;
|
|
443
|
-
(function (RequestType) {
|
|
444
|
-
RequestType["AccessData"] = "accessData";
|
|
445
|
-
RequestType["DeleteData"] = "deleteData";
|
|
446
|
-
RequestType["RestrictProcessing"] = "restrictProcessing";
|
|
447
|
-
RequestType["UpdateData"] = "updateData";
|
|
448
|
-
})(RequestType = exports.RequestType || (exports.RequestType = {}));
|
|
449
472
|
var forms_1 = require("./forms");
|
|
450
473
|
Object.defineProperty(exports, "FormFieldWidth", { enumerable: true, get: function () { return forms_1.FormFieldWidth; } });
|
|
451
474
|
Object.defineProperty(exports, "FormFieldCategory", { enumerable: true, get: function () { return forms_1.FormFieldCategory; } });
|
|
452
475
|
Object.defineProperty(exports, "FormFieldType", { enumerable: true, get: function () { return forms_1.FormFieldType; } });
|
|
453
476
|
Object.defineProperty(exports, "FormFieldVariant", { enumerable: true, get: function () { return forms_1.FormFieldVariant; } });
|
|
454
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
477
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBRUE7Ozs7R0FJRztBQUNILElBQVksR0FLWDtBQUxELFdBQVksR0FBRztJQUNiLCtCQUF3QixDQUFBO0lBQ3hCLDJCQUFvQixDQUFBO0lBQ3BCLCtCQUF3QixDQUFBO0lBQ3hCLHlDQUFrQyxDQUFBO0FBQ3BDLENBQUMsRUFMVyxHQUFHLEdBQUgsV0FBRyxLQUFILFdBQUcsUUFLZDtBQUVEOztHQUVHO0FBQ0gsTUFBTSxRQUFRLEdBQUcsTUFBTSxDQUFDLE1BQU0sQ0FBQyxHQUFHLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsUUFBUSxFQUFFLENBQUMsQ0FBQTtBQUUxRDs7Ozs7R0FLRztBQUNILFNBQWdCLEtBQUssQ0FBQyxLQUFhO0lBQ2pDLE9BQU8sUUFBUSxDQUFDLFFBQVEsQ0FBQyxLQUFLLENBQUMsQ0FBQTtBQUNqQyxDQUFDO0FBRkQsc0JBRUM7QUFFRDs7OztHQUlHO0FBQ0gsSUFBWSxjQUdYO0FBSEQsV0FBWSxjQUFjO0lBQ3hCLGlEQUErQixDQUFBO0lBQy9CLHVEQUFxQyxDQUFBO0FBQ3ZDLENBQUMsRUFIVyxjQUFjLEdBQWQsc0JBQWMsS0FBZCxzQkFBYyxRQUd6QjtBQUVEOzs7O0dBSUc7QUFDSCxJQUFZLHFCQUlYO0FBSkQsV0FBWSxxQkFBcUI7SUFDL0IsOERBQXFDLENBQUE7SUFDckMsNERBQW1DLENBQUE7SUFDbkMsd0RBQStCLENBQUE7QUFDakMsQ0FBQyxFQUpXLHFCQUFxQixHQUFyQiw2QkFBcUIsS0FBckIsNkJBQXFCLFFBSWhDO0FBRUQ7Ozs7Ozs7OztHQVNHO0FBQ0gsSUFBWSxzQkFNWDtBQU5ELFdBQVksc0JBQXNCO0lBQ2hDLG9EQUEwQixDQUFBO0lBQzFCLHNEQUE0QixDQUFBO0lBQzVCLHlDQUFlLENBQUE7SUFDZix1REFBNkIsQ0FB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
|