@ketch-sdk/ketch-types 1.27.1 → 1.27.3

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