@ketch-sdk/ketch-types 1.27.1 → 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.
Files changed (3) hide show
  1. package/dist/index.d.ts +410 -117
  2. package/dist/index.js +36 -13
  3. 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: IdentityFormat;
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
- /** Banner/Modal Text */
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
- /** Banner/Modal Color */
2515
+ /**
2516
+ * Banner/Modal Color Theme Configuration
2517
+ */
2510
2518
  export interface ColorThemeConfig {
2511
2519
  color?: string;
2512
2520
  opacity?: number;
2513
2521
  }
2514
- /** Banner/Modal Backdrop */
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
- /** Banner/Modal Close Button */
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
- /** Banner/Modal Header */
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
- /** Action Button */
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
- /** Footer */
2545
- export interface FooterThemeConfig {
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
- /** Purpose List Header */
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
- /** Purpose List */
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
- listItems?: ListItemsThemeConfig;
2608
+ purposeListItems?: ListItemsThemeConfig;
2579
2609
  switchButtons?: SwitchButtonsThemeConfig;
2580
2610
  }
2581
- /** Page Text Theme */
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
- /** Checkboxes Theme */
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
- /** Banner Config */
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
- /** Banner Container */
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
- /** Banner Description */
2670
+ /**
2671
+ * Banner Description Theme Configuration
2672
+ */
2630
2673
  export interface BannerDescriptionThemeConfig {
2631
2674
  link?: TextThemeConfig;
2632
2675
  text?: TextThemeConfig;
2633
2676
  }
2634
- /** Banner Buttons Theme Config - Rightmost === primary */
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
- /** Banner Theme Config */
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
- /** Modal Theme Config */
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
- listHeader?: PurposeListHeaderThemeConfig;
2728
+ purposeListHeader?: PurposeListHeaderThemeConfig;
2670
2729
  purposeList?: PurposeListThemeConfig;
2671
- footer?: FooterThemeConfig;
2730
+ footer?: BannerModalFooterThemeConfig;
2672
2731
  }
2673
- /** Preferences - Welcome Theme Config */
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
- export interface WelcomeTabContainerThemeConfig {
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
- export interface WelcomeTabHeaderThemeConfig {
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 WelcomeTabNavigationThemeConfig {
2784
+ export interface PreferenceNavigationThemeConfig {
2708
2785
  layout?: NavigationLayoutThemeConfig;
2709
2786
  iconsVisible?: boolean;
2710
2787
  icons?: NavigationIconsThemeConfig;
2711
2788
  }
2712
- export interface WelcomeTabExitButtonThemeConfig {
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
- /** Preferences - Privacy Policy Theme Config */
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
- /** Preferences - Purposes Theme Config */
2755
- export interface PurposesTabHeaderThemeConfig {
2756
- title?: TextThemeConfig;
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
- listHeader?: PurposeListHeaderThemeConfig;
2763
- list?: PurposeListThemeConfig;
2764
- footer?: FooterThemeConfig;
2852
+ purposeListHeader?: PurposeListHeaderThemeConfig;
2853
+ purposeList?: PurposeListThemeConfig;
2854
+ footer?: PreferenceFooterThemeConfig;
2765
2855
  }
2766
- /** Preferences - Subscriptions Theme Config */
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?: FooterThemeConfig;
2899
+ footer?: PreferenceFooterThemeConfig;
2799
2900
  }
2800
- /** Preferences - Requests Theme Config */
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
- bannerVisible?: boolean;
2857
- bannerImage?: ImageThemeConfig;
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
- /** Preferences Theme Config */
2879
- export interface PreferenceThemeConfig {
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
- /** Shared Experience Layout Config Entities */
2895
- /** Banner/Modal Header */
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
- /** Banner/Modal Footer */
2901
- export interface FooterExperienceLayoutConfig {
2902
- ketchBadgeVisible?: boolean;
3034
+ /**
3035
+ * Banner/Modal Footer Experience Layout Configuration
3036
+ */
3037
+ export interface BannerModalFooterExperienceLayoutConfig {
2903
3038
  gpcBadgeVisible?: boolean;
2904
3039
  }
2905
- /** Switch Buttons */
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
- /** Text Block - A block of text with optional title */
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
- export interface PreferenceTabHeaderExperienceLayoutConfig {
2923
- title?: TextBlockTitleExperienceLayoutConfig;
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
- /** Banner Buttons Experience Layout Config - Rightmost === primary */
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?: FooterExperienceLayoutConfig;
3090
+ footer?: BannerModalFooterExperienceLayoutConfig;
2949
3091
  }
2950
- /** Modal Experience Layout Config */
3092
+ /**
3093
+ * Modal List Header Experience Layout Configuration
3094
+ */
2951
3095
  export interface ModalListHeaderExperienceLayoutConfig {
2952
3096
  visible?: boolean;
2953
- useDefault?: boolean;
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
- listHeader?: ModalListHeaderExperienceLayoutConfig;
3112
+ purposeListHeader?: ModalListHeaderExperienceLayoutConfig;
2963
3113
  purposeList?: ModalPurposeListExperienceLayoutConfig;
2964
- footer?: FooterExperienceLayoutConfig;
3114
+ footer?: BannerModalFooterExperienceLayoutConfig;
2965
3115
  }
2966
- /** Preferences - Welcome Experience Layout Config */
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
- /** Preferences - Privacy Policy Experience Layout Config */
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
- /** Preferences - Purposes Experience Layout Config */
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
- useDefaultTitle?: boolean;
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
- listHeader?: PurposesTabListHeaderExperienceLayoutConfig;
3018
- list?: PurposesTabListExperienceLayoutConfig;
3193
+ purposeListHeader?: PurposesTabListHeaderExperienceLayoutConfig;
3194
+ purposeList?: PurposesTabListExperienceLayoutConfig;
3019
3195
  actionButtonUseDefaultText?: boolean;
3020
3196
  }
3021
- /** Preferences - Subscriptions Experience Layout Config */
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
- useDefault?: boolean;
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
- useDefault?: boolean;
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,7 +3244,9 @@ export interface PreferenceSubscriptionsTabExperienceLayoutConfig {
3060
3244
  list?: SubscriptionsTabListExperienceLayoutConfig;
3061
3245
  actionButtonUseDefaultText?: boolean;
3062
3246
  }
3063
- /** Preferences - Requests Experience Layout Config */
3247
+ /**
3248
+ * Preference Center Requests Tab Experience Layout Configuration Enums
3249
+ */
3064
3250
  export declare enum CanonicalRightCode {
3065
3251
  Get = "get",
3066
3252
  Delete = "delete",
@@ -3071,8 +3257,11 @@ export declare enum RightsFormMode {
3071
3257
  Single = "single",
3072
3258
  Custom = "custom"
3073
3259
  }
3260
+ /**
3261
+ * Preference Center Requests Tab Home Right Forms Experience Layout Configuration
3262
+ */
3074
3263
  export interface RightsTitleExperienceLayoutConfig {
3075
- useDefault?: boolean;
3264
+ useDefaultText?: boolean;
3076
3265
  }
3077
3266
  export interface RightFormMapping {
3078
3267
  rightCode?: string;
@@ -3100,10 +3289,16 @@ export interface RequestsTabRightsExperienceLayoutConfig {
3100
3289
  title?: RightsTitleExperienceLayoutConfig;
3101
3290
  forms?: RightFormsExperienceLayoutConfig;
3102
3291
  }
3292
+ /**
3293
+ * Preference Center Requests Tab Home Experience Layout Configuration
3294
+ */
3103
3295
  export interface RequestsTabHomeExperienceLayoutConfig {
3104
3296
  header?: PreferenceTabHeaderExperienceLayoutConfig;
3105
3297
  rights?: RequestsTabRightsExperienceLayoutConfig;
3106
3298
  }
3299
+ /**
3300
+ * Preference Center Requests Tab Right Form Experience Layout Configuration
3301
+ */
3107
3302
  export interface RightFormActionButtonExperienceLayoutConfig {
3108
3303
  useDefaultText?: boolean;
3109
3304
  }
@@ -3111,154 +3306,216 @@ export interface RequestsTabRightFormExperienceLayoutConfig {
3111
3306
  enableRecaptcha?: boolean;
3112
3307
  actionButton?: RightFormActionButtonExperienceLayoutConfig;
3113
3308
  }
3309
+ /**
3310
+ * Preference Center Requests Tab Submitted Action Button Experience Layout Configuration
3311
+ */
3114
3312
  export interface SubmittedActionButtonExperienceLayoutConfig {
3115
3313
  visible?: boolean;
3116
- useDefault?: boolean;
3314
+ useDefaultText?: boolean;
3117
3315
  }
3118
3316
  export interface RequestsTabSubmittedExperienceLayoutConfig {
3119
3317
  actionButton: SubmittedActionButtonExperienceLayoutConfig;
3120
3318
  }
3319
+ /**
3320
+ * Preference Center Requests Tab Experience Layout Configuration
3321
+ */
3121
3322
  export interface PreferenceRequestsTabExperienceLayoutConfig {
3122
3323
  home?: RequestsTabHomeExperienceLayoutConfig;
3123
3324
  rightForm?: RequestsTabRightFormExperienceLayoutConfig;
3124
3325
  submitted?: RequestsTabSubmittedExperienceLayoutConfig;
3125
3326
  }
3126
- export interface PreferenceExperienceLayoutConfig {
3327
+ /**
3328
+ * Preference Center Tabs Experience Layout Configuration
3329
+ */
3330
+ export interface PreferenceExperienceTabsLayoutConfig {
3127
3331
  welcome?: PreferenceWelcomeTabExperienceLayoutConfig;
3128
3332
  privacyPolicy?: PreferencePrivacyPolicyTabExperienceLayoutConfig;
3129
3333
  purposes?: PreferencePurposesTabExperienceLayoutConfig;
3130
3334
  subscriptions?: PreferenceSubscriptionsTabExperienceLayoutConfig;
3131
3335
  requests?: PreferenceRequestsTabExperienceLayoutConfig;
3132
3336
  }
3133
- /** Top level experience layout config object */
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
+ */
3134
3347
  export interface ExperienceLayoutConfig {
3135
3348
  banner?: BannerExperienceLayoutConfig;
3136
3349
  modal?: ModalExperienceLayoutConfig;
3137
3350
  preference?: PreferenceExperienceLayoutConfig;
3138
3351
  }
3139
3352
  /**
3140
- * Experience V2 Content Config
3353
+ * Banner/Modal Header Experience Content Configuration
3141
3354
  */
3142
- /** Shared Experience Content Config Entities */
3143
- /** Banner/Modal Header */
3144
3355
  export interface HeaderExperienceContentConfig {
3145
3356
  title?: string;
3146
3357
  }
3147
- /** Banner/Modal Footer */
3358
+ /**
3359
+ * Banner/Modal Footer Experience Content Configuration
3360
+ */
3148
3361
  export interface FooterExperienceContentConfig {
3149
3362
  actionButtonText?: string;
3150
3363
  }
3151
- /** Switch Buttons */
3364
+ /**
3365
+ * Switch Buttons Experience Content Configuration
3366
+ */
3152
3367
  export interface SwitchButtonsExperienceContentConfig {
3153
3368
  onText?: string;
3154
3369
  offText?: string;
3155
3370
  }
3156
- /** Text Block - A block of text with optional title */
3157
- export interface TextBlockTitleExperienceContentConfig {
3158
- text?: string;
3159
- }
3371
+ /**
3372
+ * Text Block Experience Content Configuration
3373
+ */
3160
3374
  export interface TextBlockExperienceContentConfig {
3161
- title?: TextBlockTitleExperienceContentConfig;
3162
- text?: string;
3163
- }
3164
- export interface PreferenceTabHeaderExperienceContentConfig {
3165
- description?: string;
3166
- title?: TextBlockTitleExperienceContentConfig;
3375
+ title?: string;
3376
+ body?: string;
3167
3377
  }
3168
- /** Banner Experience Content Config */
3169
- /** Banner Action Button */
3378
+ /**
3379
+ * Banner Action Button Experience Content Configuration
3380
+ */
3170
3381
  export interface BannerActionButtonExperienceContentConfig {
3171
3382
  text?: string;
3172
3383
  }
3173
- /** Banner Buttons Experience Content Config - Rightmost === primary */
3384
+ /**
3385
+ * Banner Buttons Experience Content Configuration
3386
+ */
3174
3387
  export interface BannerButtonsExperienceContentConfig {
3175
3388
  primary?: BannerActionButtonExperienceContentConfig;
3176
3389
  secondary?: BannerActionButtonExperienceContentConfig;
3177
3390
  tertiary?: BannerActionButtonExperienceContentConfig;
3178
3391
  }
3392
+ /**
3393
+ * Banner Experience Content Configuration
3394
+ */
3179
3395
  export interface BannerExperienceContentConfig {
3180
3396
  header?: HeaderExperienceContentConfig;
3181
3397
  description?: string;
3182
3398
  buttons?: BannerButtonsExperienceContentConfig;
3183
3399
  footer?: FooterExperienceContentConfig;
3184
3400
  }
3185
- /** Modal Experience Content Config */
3401
+ /**
3402
+ * Modal List Header Experience Content Configuration
3403
+ */
3186
3404
  export interface ModalListHeaderExperienceContentConfig {
3187
3405
  text?: string;
3188
3406
  }
3407
+ /**
3408
+ * Modal Purpose List Experience Content Configuration
3409
+ */
3189
3410
  export interface ModalPurposeListExperienceContentConfig {
3190
3411
  switchButtonLabels?: SwitchButtonsExperienceContentConfig;
3191
3412
  }
3413
+ /**
3414
+ * Modal Experience Content Configuration
3415
+ */
3192
3416
  export interface ModalExperienceContentConfig {
3193
3417
  header?: HeaderExperienceContentConfig;
3194
3418
  description?: TextBlockExperienceContentConfig;
3195
- listHeader?: ModalListHeaderExperienceContentConfig;
3419
+ purposeListHeader?: ModalListHeaderExperienceContentConfig;
3196
3420
  purposeList?: ModalPurposeListExperienceContentConfig;
3197
3421
  footer?: FooterExperienceContentConfig;
3198
3422
  }
3199
- /** Preferences - Welcome Experience Content Config */
3200
- export interface WelcomeTabHeaderExperienceContentConfig {
3423
+ /**
3424
+ * Preferences Center Welcome Tab Header Experience Content Configuration
3425
+ */
3426
+ export interface PreferenceHeaderExperienceContentConfig {
3201
3427
  title?: string;
3202
3428
  }
3203
- export interface WelcomeTabNavigationExperienceContentConfig {
3429
+ /**
3430
+ * Preferences Center Welcome Tab Navigation Experience Content Configuration
3431
+ */
3432
+ export interface PreferenceNavigationExperienceContentConfig {
3204
3433
  welcomeTitle?: string;
3205
3434
  privacyPolicyTitle?: string;
3206
3435
  purposesTitle?: string;
3207
3436
  subscriptionsTitle?: string;
3208
3437
  requestsTitle?: string;
3209
3438
  }
3439
+ /**
3440
+ * Preferences Center Welcome Tab Welcome Message Experience Content Configuration
3441
+ */
3210
3442
  export interface WelcomeTabWelcomeMsgExperienceContentConfig {
3211
3443
  title?: string;
3212
3444
  subtitle?: string;
3213
3445
  }
3446
+ /**
3447
+ * Preferences Center Welcome Tab Quick Links Experience Content Configuration
3448
+ */
3214
3449
  export interface QuickLinkExperienceContentConfig {
3215
3450
  text?: string;
3216
3451
  }
3217
3452
  export interface WelcomeTabQuickLinksExperienceContentConfig {
3218
3453
  links?: QuickLinkExperienceContentConfig[];
3219
3454
  }
3455
+ /**
3456
+ * Preferences Center Welcome Tab About Experience Content Configuration
3457
+ */
3220
3458
  export interface WelcomeTabAboutExperienceContentConfig {
3221
3459
  title?: string;
3222
3460
  description?: string;
3223
3461
  }
3462
+ /**
3463
+ * Preferences Center Welcome Tab Experience Content Configuration
3464
+ */
3224
3465
  export interface PreferenceWelcomeTabExperienceContentConfig {
3225
- header?: WelcomeTabHeaderExperienceContentConfig;
3226
- navigation?: WelcomeTabNavigationExperienceContentConfig;
3227
- footer?: FooterExperienceContentConfig;
3228
3466
  welcomeMsg?: WelcomeTabWelcomeMsgExperienceContentConfig;
3229
3467
  quickLinks?: WelcomeTabQuickLinksExperienceContentConfig;
3230
3468
  about?: WelcomeTabAboutExperienceContentConfig;
3231
3469
  }
3232
- /** Preferences - Purposes Experience Content Config */
3470
+ export interface PreferenceTabHeaderExperienceContentConfig {
3471
+ title?: string;
3472
+ description?: string;
3473
+ }
3474
+ /**
3475
+ * Preferences Center Purposes Tab List Experience Content Configuration
3476
+ */
3233
3477
  export interface PurposesTabListHeaderExperienceContentConfig {
3234
3478
  title?: string;
3235
3479
  }
3236
3480
  export interface PurposesTabListExperienceContentConfig {
3237
3481
  switchButtonLabels?: SwitchButtonsExperienceContentConfig;
3238
3482
  }
3483
+ /**
3484
+ * Preferences Center Purposes Tab Experience Content Configuration
3485
+ */
3239
3486
  export interface PreferencePurposesTabExperienceContentConfig {
3240
3487
  header?: PreferenceTabHeaderExperienceContentConfig;
3241
- listHeader?: PurposesTabListHeaderExperienceContentConfig;
3242
- list?: PurposesTabListExperienceContentConfig;
3488
+ purposeListHeader?: PurposesTabListHeaderExperienceContentConfig;
3489
+ purposeList?: PurposesTabListExperienceContentConfig;
3243
3490
  actionButtonText?: string;
3244
3491
  }
3245
- /** Preferences - Subscriptions Experience Content Config */
3492
+ /**
3493
+ * Preferences Center Subscriptions Tab Unsubscribe All Experience Content Configuration
3494
+ */
3246
3495
  export interface SubscriptionsTabUnsubscribeAllExperienceContentConfig {
3247
3496
  title?: string;
3248
3497
  description?: string;
3249
3498
  switchLabels?: SwitchButtonsExperienceContentConfig;
3250
3499
  }
3500
+ /**
3501
+ * Preferences Center Subscriptions Tab Experience Content Configuration
3502
+ */
3251
3503
  export interface PreferenceSubscriptionsTabExperienceContentConfig {
3252
3504
  header?: PreferenceTabHeaderExperienceContentConfig;
3253
3505
  unsubscribeAll?: SubscriptionsTabUnsubscribeAllExperienceContentConfig;
3254
3506
  listSwitchLabels?: SwitchButtonsExperienceContentConfig;
3255
3507
  actionButtonText?: string;
3256
3508
  }
3257
- /** Preferences - Requests Experience Content Config */
3509
+ /**
3510
+ * Preferences Center Requests Tab Home DSR Link Experience Content Configuration
3511
+ */
3258
3512
  export interface RequestsTabDsrLinkExperienceContentConfig {
3259
3513
  title?: string;
3260
- subtitle?: string;
3514
+ description?: string;
3261
3515
  }
3516
+ /**
3517
+ * Preferences Center Requests Tab Home Rights Experience Content Configuration
3518
+ */
3262
3519
  export interface RightsTitleExperienceContentConfig {
3263
3520
  title?: string;
3264
3521
  }
@@ -3277,28 +3534,55 @@ export interface RequestsTabHomeExperienceContentConfig {
3277
3534
  dsrPortalLink?: RequestsTabDsrLinkExperienceContentConfig;
3278
3535
  rights?: RequestsTabRightsExperienceContentConfig;
3279
3536
  }
3537
+ /**
3538
+ * Preferences Center Requests Tab Right Form Experience Content Configuration
3539
+ */
3280
3540
  export interface RequestsTabRightFormExperienceContentConfig {
3281
3541
  recaptchaFailureText?: string;
3282
3542
  actionButtonText?: string;
3283
3543
  }
3544
+ /**
3545
+ * Preferences Center Requests Tab Submitted Experience Content Configuration
3546
+ */
3284
3547
  export interface RequestsTabSubmittedExperienceContentConfig {
3285
3548
  title?: string;
3286
3549
  subtitle?: string;
3287
3550
  description?: string;
3288
3551
  actionButtonText?: string;
3289
3552
  }
3553
+ /**
3554
+ * Preferences Center Requests Tab Experience Content Configuration
3555
+ */
3290
3556
  export interface PreferenceRequestsTabExperienceContentConfig {
3291
3557
  home?: RequestsTabHomeExperienceContentConfig;
3292
3558
  rightForm?: RequestsTabRightFormExperienceContentConfig;
3293
3559
  submitted?: RequestsTabSubmittedExperienceContentConfig;
3294
3560
  }
3295
- export interface PreferenceExperienceContentConfig {
3561
+ /**
3562
+ * Preferences Center Tabs Experience Content Configuration
3563
+ */
3564
+ export interface PreferenceExperienceTabsContentConfig {
3296
3565
  welcome?: PreferenceWelcomeTabExperienceContentConfig;
3297
3566
  purposes?: PreferencePurposesTabExperienceContentConfig;
3298
3567
  subscriptions?: PreferenceSubscriptionsTabExperienceContentConfig;
3299
3568
  requests?: PreferenceRequestsTabExperienceContentConfig;
3300
3569
  }
3301
- /** Static text */
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
+ */
3302
3586
  export interface StaticContentConfig {
3303
3587
  powered_by?: string;
3304
3588
  purpose?: string;
@@ -3576,7 +3860,9 @@ export interface StaticContentConfig {
3576
3860
  verification?: string;
3577
3861
  and?: string;
3578
3862
  }
3579
- /** Top level experience content config objects */
3863
+ /**
3864
+ * Experience Content Configuration
3865
+ */
3580
3866
  export interface ExperienceContentConfig {
3581
3867
  banner?: BannerExperienceContentConfig;
3582
3868
  modal?: ModalExperienceContentConfig;
@@ -3584,7 +3870,14 @@ export interface ExperienceContentConfig {
3584
3870
  static?: StaticContentConfig;
3585
3871
  }
3586
3872
  /**
3587
- * Experience V2 config
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
+ *
3588
3881
  */
3589
3882
  export interface ExperienceConfig {
3590
3883
  layout?: ExperienceLayoutConfig;
package/dist/index.js CHANGED
@@ -327,19 +327,25 @@ var ButtonVariant;
327
327
  ButtonVariant["Outlined"] = "outlined";
328
328
  ButtonVariant["Contained"] = "contained";
329
329
  })(ButtonVariant = exports.ButtonVariant || (exports.ButtonVariant = {}));
330
- /** Action Button */
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
- /** Purpose List */
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
- /** Banner Config */
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
- /** Modal Theme Config */
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
- /** Preferences - Welcome Theme Config */
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
- /** Preferences - Subscriptions Theme Config */
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
- /** Preferences - Requests Theme Config */
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
- /** Switch Buttons */
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
- /** Banner Experience Layout Config */
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
- /** Preferences - Welcome Experience Layout Config */
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
- /** Preferences - Subscriptions Experience Layout Config */
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,7 +454,9 @@ var SubscriptionItemType;
433
454
  SubscriptionItemType["Topic"] = "topic";
434
455
  SubscriptionItemType["Control"] = "control";
435
456
  })(SubscriptionItemType = exports.SubscriptionItemType || (exports.SubscriptionItemType = {}));
436
- /** Preferences - Requests Experience Layout Config */
457
+ /**
458
+ * Preference Center Requests Tab Experience Layout Configuration Enums
459
+ */
437
460
  var CanonicalRightCode;
438
461
  (function (CanonicalRightCode) {
439
462
  CanonicalRightCode["Get"] = "get";
@@ -451,4 +474,4 @@ Object.defineProperty(exports, "FormFieldWidth", { enumerable: true, get: functi
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,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBRUE7Ozs7R0FJRztBQUNILElBQVksR0FLWDtBQUxELFdBQVksR0FBRztJQUNiLCtCQUF3QixDQUFBO0lBQ3hCLDJCQUFvQixDQUFBO0lBQ3BCLCtCQUF3QixDQUFBO0lBQ3hCLHlDQUFrQyxDQUFBO0FBQ3BDLENBQUMsRUFMVyxHQUFHLEdBQUgsV0FBRyxLQUFILFdBQUcsUUFLZDtBQUVEOztHQUVHO0FBQ0gsTUFBTSxRQUFRLEdBQUcsTUFBTSxDQUFDLE1BQU0sQ0FBQyxHQUFHLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsUUFBUSxFQUFFLENBQUMsQ0FBQTtBQUUxRDs7Ozs7R0FLRztBQUNILFNBQWdCLEtBQUssQ0FBQyxLQUFhO0lBQ2pDLE9BQU8sUUFBUSxDQUFDLFFBQVEsQ0FBQyxLQUFLLENBQUMsQ0FBQTtBQUNqQyxDQUFDO0FBRkQsc0JBRUM7QUFFRDs7OztHQUlHO0FBQ0gsSUFBWSxjQUdYO0FBSEQsV0FBWSxjQUFjO0lBQ3hCLGlEQUErQixDQUFBO0lBQy9CLHVEQUFxQyxDQUFBO0FBQ3ZDLENBQUMsRUFIVyxjQUFjLEdBQWQsc0JBQWMsS0FBZCxzQkFBYyxRQUd6QjtBQUVEOzs7O0dBSUc7QUFDSCxJQUFZLHFCQUlYO0FBSkQsV0FBWSxxQkFBcUI7SUFDL0IsOERBQXFDLENBQUE7SUFDckMsNERBQW1DLENBQUE7SUFDbkMsd0RBQStCLENBQUE7QUFDakMsQ0FBQyxFQUpXLHFCQUFxQixHQUFyQiw2QkFBcUIsS0FBckIsNkJBQXFCLFFBSWhDO0FBRUQ7Ozs7Ozs7OztHQVNHO0FBQ0gsSUFBWSxzQkFNWDtBQU5ELFdBQVksc0JBQXNCO0lBQ2hDLG9EQUEwQixDQUFBO0lBQzFCLHNEQUE0QixDQUFBO0lBQzVCLHlDQUFlLENBQUE7SUFDZix1REFBNkIsQ0FB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
477
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBRUE7Ozs7R0FJRztBQUNILElBQVksR0FLWDtBQUxELFdBQVksR0FBRztJQUNiLCtCQUF3QixDQUFBO0lBQ3hCLDJCQUFvQixDQUFBO0lBQ3BCLCtCQUF3QixDQUFBO0lBQ3hCLHlDQUFrQyxDQUFBO0FBQ3BDLENBQUMsRUFMVyxHQUFHLEdBQUgsV0FBRyxLQUFILFdBQUcsUUFLZDtBQUVEOztHQUVHO0FBQ0gsTUFBTSxRQUFRLEdBQUcsTUFBTSxDQUFDLE1BQU0sQ0FBQyxHQUFHLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsUUFBUSxFQUFFLENBQUMsQ0FBQTtBQUUxRDs7Ozs7R0FLRztBQUNILFNBQWdCLEtBQUssQ0FBQyxLQUFhO0lBQ2pDLE9BQU8sUUFBUSxDQUFDLFFBQVEsQ0FBQyxLQUFLLENBQUMsQ0FBQTtBQUNqQyxDQUFDO0FBRkQsc0JBRUM7QUFFRDs7OztHQUlHO0FBQ0gsSUFBWSxjQUdYO0FBSEQsV0FBWSxjQUFjO0lBQ3hCLGlEQUErQixDQUFBO0lBQy9CLHVEQUFxQyxDQUFBO0FBQ3ZDLENBQUMsRUFIVyxjQUFjLEdBQWQsc0JBQWMsS0FBZCxzQkFBYyxRQUd6QjtBQUVEOzs7O0dBSUc7QUFDSCxJQUFZLHFCQUlYO0FBSkQsV0FBWSxxQkFBcUI7SUFDL0IsOERBQXFDLENBQUE7SUFDckMsNERBQW1DLENBQUE7SUFDbkMsd0RBQStCLENBQUE7QUFDakMsQ0FBQyxFQUpXLHFCQUFxQixHQUFyQiw2QkFBcUIsS0FBckIsNkJBQXFCLFFBSWhDO0FBRUQ7Ozs7Ozs7OztHQVNHO0FBQ0gsSUFBWSxzQkFNWDtBQU5ELFdBQVksc0JBQXNCO0lBQ2hDLG9EQUEwQixDQUFBO0lBQzFCLHNEQUE0QixDQUFBO0lBQzVCLHlDQUFlLENBQUE7SUFDZix1REFBNkIsQ0FB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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ketch-sdk/ketch-types",
3
- "version": "1.27.1",
3
+ "version": "1.27.2",
4
4
  "description": "Ketch Types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",