@ketch-sdk/ketch-types 1.15.1 → 1.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +291 -174
- package/dist/index.js +19 -24
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1019,11 +1019,11 @@ export interface ConfigurationV2 {
|
|
|
1019
1019
|
/**
|
|
1020
1020
|
* Theme V2 definition
|
|
1021
1021
|
*/
|
|
1022
|
-
theme?:
|
|
1022
|
+
theme?: ThemeConfig;
|
|
1023
1023
|
/**
|
|
1024
1024
|
* Experience V2 definitions
|
|
1025
1025
|
*/
|
|
1026
|
-
experiences?:
|
|
1026
|
+
experiences?: ExperienceConfig;
|
|
1027
1027
|
/**
|
|
1028
1028
|
* Vendors (TCF)
|
|
1029
1029
|
*/
|
|
@@ -2406,7 +2406,9 @@ export declare enum ButtonVariant {
|
|
|
2406
2406
|
Outlined = "outlined",
|
|
2407
2407
|
Contained = "contained"
|
|
2408
2408
|
}
|
|
2409
|
-
/**
|
|
2409
|
+
/**
|
|
2410
|
+
* Experience V2 Theme Config
|
|
2411
|
+
*/
|
|
2410
2412
|
/** Shared Theme Config Entities */
|
|
2411
2413
|
/** Banner/Modal Text */
|
|
2412
2414
|
export interface TextThemeConfig {
|
|
@@ -2505,44 +2507,6 @@ export interface ImageThemeConfig {
|
|
|
2505
2507
|
name?: string;
|
|
2506
2508
|
url?: string;
|
|
2507
2509
|
}
|
|
2508
|
-
/** Shared Experience Config Entities */
|
|
2509
|
-
/** Banner/Modal Header */
|
|
2510
|
-
export interface HeaderExperienceConfig {
|
|
2511
|
-
visible?: boolean;
|
|
2512
|
-
closeButtonVisible?: boolean;
|
|
2513
|
-
title?: string;
|
|
2514
|
-
}
|
|
2515
|
-
/** Banner/Modal Footer */
|
|
2516
|
-
export interface FooterExperienceConfig {
|
|
2517
|
-
ketchBadgeVisible?: boolean;
|
|
2518
|
-
gpcBadgeVisible?: boolean;
|
|
2519
|
-
actionButtonText?: string;
|
|
2520
|
-
}
|
|
2521
|
-
/** Switch Buttons */
|
|
2522
|
-
export declare enum SwitchButtonDisplay {
|
|
2523
|
-
Always = "always",
|
|
2524
|
-
WhenLegalBasisDiffers = "whenLegalBasisDiffers"
|
|
2525
|
-
}
|
|
2526
|
-
export interface SwitchButtonsExperienceConfig {
|
|
2527
|
-
visible?: boolean;
|
|
2528
|
-
display?: SwitchButtonDisplay;
|
|
2529
|
-
useDefaultText?: boolean;
|
|
2530
|
-
onText?: string;
|
|
2531
|
-
offText?: string;
|
|
2532
|
-
}
|
|
2533
|
-
/** Text Block - A block of text with optional title */
|
|
2534
|
-
export interface TextBlockTitleExperienceConfig {
|
|
2535
|
-
visible?: boolean;
|
|
2536
|
-
text?: string;
|
|
2537
|
-
}
|
|
2538
|
-
export interface TextBlockExperienceConfig {
|
|
2539
|
-
title?: TextBlockTitleExperienceConfig;
|
|
2540
|
-
text?: string;
|
|
2541
|
-
}
|
|
2542
|
-
export interface PreferenceTabHeaderExperienceConfig {
|
|
2543
|
-
description?: string;
|
|
2544
|
-
title?: TextBlockTitleExperienceConfig;
|
|
2545
|
-
}
|
|
2546
2510
|
/** Banner Config */
|
|
2547
2511
|
export declare enum BannerContainerLayout {
|
|
2548
2512
|
Horizontal = "horizontal",
|
|
@@ -2561,10 +2525,6 @@ export declare enum BannerContainerPosition {
|
|
|
2561
2525
|
BottomMiddle = "bottomMiddle",
|
|
2562
2526
|
Center = "center"
|
|
2563
2527
|
}
|
|
2564
|
-
export declare enum BannerButtonStyle {
|
|
2565
|
-
Outlined = "outlined",
|
|
2566
|
-
Filled = "filled"
|
|
2567
|
-
}
|
|
2568
2528
|
/** Banner Container */
|
|
2569
2529
|
export interface BannerContainerThemeConfig {
|
|
2570
2530
|
backdrop?: BackdropThemeConfig;
|
|
@@ -2575,7 +2535,6 @@ export interface BannerContainerThemeConfig {
|
|
|
2575
2535
|
size?: BannerContainerSize;
|
|
2576
2536
|
font?: string;
|
|
2577
2537
|
}
|
|
2578
|
-
/** Banner Action Button */
|
|
2579
2538
|
/** Banner Description */
|
|
2580
2539
|
export interface BannerDescriptionThemeConfig {
|
|
2581
2540
|
link?: TextThemeConfig;
|
|
@@ -2594,33 +2553,6 @@ export interface BannerThemeConfig {
|
|
|
2594
2553
|
description?: BannerDescriptionThemeConfig;
|
|
2595
2554
|
buttons?: BannerButtonsThemeConfig;
|
|
2596
2555
|
}
|
|
2597
|
-
/** Banner Experience Config */
|
|
2598
|
-
export declare enum BannerButtonAction {
|
|
2599
|
-
SaveCurrentState = "saveCurrentState",
|
|
2600
|
-
AcceptAll = "acceptAll",
|
|
2601
|
-
OpenModal = "openModal",
|
|
2602
|
-
OpenPreferences = "openPreferences",
|
|
2603
|
-
RejectAll = "rejectAll"
|
|
2604
|
-
}
|
|
2605
|
-
/** Banner Action Button */
|
|
2606
|
-
export interface BannerActionButtonExperienceConfig {
|
|
2607
|
-
visible?: boolean;
|
|
2608
|
-
text?: string;
|
|
2609
|
-
action?: BannerButtonAction;
|
|
2610
|
-
}
|
|
2611
|
-
/** Banner Buttons Experience Config - Rightmost === primary */
|
|
2612
|
-
export interface BannerButtonsExperienceConfig {
|
|
2613
|
-
primary?: BannerActionButtonExperienceConfig;
|
|
2614
|
-
secondary?: BannerActionButtonExperienceConfig;
|
|
2615
|
-
tertiary?: BannerActionButtonExperienceConfig;
|
|
2616
|
-
close?: boolean;
|
|
2617
|
-
}
|
|
2618
|
-
export interface BannerExperienceConfig {
|
|
2619
|
-
header?: HeaderExperienceConfig;
|
|
2620
|
-
description?: string;
|
|
2621
|
-
buttons?: BannerButtonsExperienceConfig;
|
|
2622
|
-
footer?: FooterExperienceConfig;
|
|
2623
|
-
}
|
|
2624
2556
|
/** Modal Theme Config */
|
|
2625
2557
|
export declare enum ModalContainerPosition {
|
|
2626
2558
|
Center = "center",
|
|
@@ -2647,23 +2579,6 @@ export interface ModalThemeConfig {
|
|
|
2647
2579
|
purposeList?: PurposeListThemeConfig;
|
|
2648
2580
|
footer?: FooterThemeConfig;
|
|
2649
2581
|
}
|
|
2650
|
-
/** Modal Experience Config */
|
|
2651
|
-
export interface ModalListHeaderExperienceConfig {
|
|
2652
|
-
visible?: boolean;
|
|
2653
|
-
useDefault?: boolean;
|
|
2654
|
-
text?: string;
|
|
2655
|
-
}
|
|
2656
|
-
export interface ModalPurposeListExperienceConfig {
|
|
2657
|
-
legalBasisVisible?: boolean;
|
|
2658
|
-
switchButtonLabels?: SwitchButtonsExperienceConfig;
|
|
2659
|
-
}
|
|
2660
|
-
export interface ModalExperienceConfig {
|
|
2661
|
-
header?: HeaderExperienceConfig;
|
|
2662
|
-
description?: TextBlockExperienceConfig;
|
|
2663
|
-
listHeader?: ModalListHeaderExperienceConfig;
|
|
2664
|
-
purposeList?: ModalPurposeListExperienceConfig;
|
|
2665
|
-
footer?: FooterExperienceConfig;
|
|
2666
|
-
}
|
|
2667
2582
|
/** Preferences - Welcome Theme Config */
|
|
2668
2583
|
export declare enum ExitButtonPosition {
|
|
2669
2584
|
topRight = "topRight",
|
|
@@ -2864,7 +2779,87 @@ export interface PreferenceThemeConfig {
|
|
|
2864
2779
|
subscriptions?: PreferenceSubscriptionsTabThemeConfig;
|
|
2865
2780
|
requests?: PreferenceRequestsTabThemeConfig;
|
|
2866
2781
|
}
|
|
2867
|
-
|
|
2782
|
+
export interface ThemeConfig {
|
|
2783
|
+
banner?: BannerThemeConfig;
|
|
2784
|
+
modal?: ModalThemeConfig;
|
|
2785
|
+
preference?: PreferenceThemeConfig;
|
|
2786
|
+
}
|
|
2787
|
+
/**
|
|
2788
|
+
* Experience V2 Layout Config
|
|
2789
|
+
*/
|
|
2790
|
+
/** Shared Experience Layout Config Entities */
|
|
2791
|
+
/** Banner/Modal Header */
|
|
2792
|
+
export interface HeaderExperienceLayoutConfig {
|
|
2793
|
+
visible?: boolean;
|
|
2794
|
+
closeButtonVisible?: boolean;
|
|
2795
|
+
}
|
|
2796
|
+
/** Banner/Modal Footer */
|
|
2797
|
+
export interface FooterExperienceLayoutConfig {
|
|
2798
|
+
ketchBadgeVisible?: boolean;
|
|
2799
|
+
gpcBadgeVisible?: boolean;
|
|
2800
|
+
}
|
|
2801
|
+
/** Switch Buttons */
|
|
2802
|
+
export declare enum SwitchButtonDisplay {
|
|
2803
|
+
Always = "always",
|
|
2804
|
+
WhenLegalBasisDiffers = "whenLegalBasisDiffers"
|
|
2805
|
+
}
|
|
2806
|
+
export interface SwitchButtonsExperienceLayoutConfig {
|
|
2807
|
+
visible?: boolean;
|
|
2808
|
+
display?: SwitchButtonDisplay;
|
|
2809
|
+
useDefaultText?: boolean;
|
|
2810
|
+
}
|
|
2811
|
+
/** Text Block - A block of text with optional title */
|
|
2812
|
+
export interface TextBlockTitleExperienceLayoutConfig {
|
|
2813
|
+
visible?: boolean;
|
|
2814
|
+
}
|
|
2815
|
+
export interface TextBlockExperienceLayoutConfig {
|
|
2816
|
+
title?: TextBlockTitleExperienceLayoutConfig;
|
|
2817
|
+
}
|
|
2818
|
+
export interface PreferenceTabHeaderExperienceLayoutConfig {
|
|
2819
|
+
title?: TextBlockTitleExperienceLayoutConfig;
|
|
2820
|
+
}
|
|
2821
|
+
/** Banner Experience Layout Config */
|
|
2822
|
+
export declare enum BannerButtonAction {
|
|
2823
|
+
SaveCurrentState = "saveCurrentState",
|
|
2824
|
+
AcceptAll = "acceptAll",
|
|
2825
|
+
OpenModal = "openModal",
|
|
2826
|
+
OpenPreferences = "openPreferences",
|
|
2827
|
+
RejectAll = "rejectAll"
|
|
2828
|
+
}
|
|
2829
|
+
/** Banner Action Button */
|
|
2830
|
+
export interface BannerActionButtonExperienceLayoutConfig {
|
|
2831
|
+
visible?: boolean;
|
|
2832
|
+
action?: BannerButtonAction;
|
|
2833
|
+
}
|
|
2834
|
+
/** Banner Buttons Experience Layout Config - Rightmost === primary */
|
|
2835
|
+
export interface BannerButtonsExperienceLayoutConfig {
|
|
2836
|
+
primary?: BannerActionButtonExperienceLayoutConfig;
|
|
2837
|
+
secondary?: BannerActionButtonExperienceLayoutConfig;
|
|
2838
|
+
tertiary?: BannerActionButtonExperienceLayoutConfig;
|
|
2839
|
+
close?: boolean;
|
|
2840
|
+
}
|
|
2841
|
+
export interface BannerExperienceLayoutConfig {
|
|
2842
|
+
header?: HeaderExperienceLayoutConfig;
|
|
2843
|
+
buttons?: BannerButtonsExperienceLayoutConfig;
|
|
2844
|
+
footer?: FooterExperienceLayoutConfig;
|
|
2845
|
+
}
|
|
2846
|
+
/** Modal Experience Layout Config */
|
|
2847
|
+
export interface ModalListHeaderExperienceLayoutConfig {
|
|
2848
|
+
visible?: boolean;
|
|
2849
|
+
useDefault?: boolean;
|
|
2850
|
+
}
|
|
2851
|
+
export interface ModalPurposeListExperienceLayoutConfig {
|
|
2852
|
+
legalBasisVisible?: boolean;
|
|
2853
|
+
switchButtonLabels?: SwitchButtonsExperienceLayoutConfig;
|
|
2854
|
+
}
|
|
2855
|
+
export interface ModalExperienceLayoutConfig {
|
|
2856
|
+
header?: HeaderExperienceLayoutConfig;
|
|
2857
|
+
description?: TextBlockExperienceLayoutConfig;
|
|
2858
|
+
listHeader?: ModalListHeaderExperienceLayoutConfig;
|
|
2859
|
+
purposeList?: ModalPurposeListExperienceLayoutConfig;
|
|
2860
|
+
footer?: FooterExperienceLayoutConfig;
|
|
2861
|
+
}
|
|
2862
|
+
/** Preferences - Welcome Experience Layout Config */
|
|
2868
2863
|
export declare enum QuickLinkAction {
|
|
2869
2864
|
OpenUrl = "openUrl",
|
|
2870
2865
|
OpenPage = "openPage"
|
|
@@ -2878,73 +2873,53 @@ export declare enum PreferenceCenterPage {
|
|
|
2878
2873
|
RightForm = "rightForm",
|
|
2879
2874
|
Summary = "summary"
|
|
2880
2875
|
}
|
|
2881
|
-
export interface
|
|
2882
|
-
title?: string;
|
|
2883
|
-
}
|
|
2884
|
-
export interface WelcomeTabNavigationExperienceConfig {
|
|
2885
|
-
welcomeTitle?: string;
|
|
2886
|
-
privacyPolicyTitle?: string;
|
|
2887
|
-
purposesTitle?: string;
|
|
2888
|
-
subscriptionsTitle?: string;
|
|
2889
|
-
requestsTitle?: string;
|
|
2890
|
-
}
|
|
2891
|
-
export interface WelcomeTabWelcomeMsgExperienceConfig {
|
|
2876
|
+
export interface WelcomeTabWelcomeMsgExperienceLayoutConfig {
|
|
2892
2877
|
visible?: boolean;
|
|
2893
|
-
title?: string;
|
|
2894
|
-
subtitle?: string;
|
|
2895
2878
|
}
|
|
2896
|
-
export interface
|
|
2879
|
+
export interface QuickLinkExperienceLayoutConfig {
|
|
2897
2880
|
action?: QuickLinkAction;
|
|
2898
|
-
url?: string;
|
|
2899
2881
|
page?: PreferenceCenterPage;
|
|
2900
|
-
|
|
2882
|
+
url?: string;
|
|
2901
2883
|
}
|
|
2902
|
-
export interface
|
|
2884
|
+
export interface WelcomeTabQuickLinksExperienceLayoutConfig {
|
|
2903
2885
|
visible?: boolean;
|
|
2904
|
-
links?:
|
|
2886
|
+
links?: QuickLinkExperienceLayoutConfig[];
|
|
2905
2887
|
}
|
|
2906
|
-
export interface
|
|
2888
|
+
export interface WelcomeTabAboutExperienceLayoutConfig {
|
|
2907
2889
|
visible?: boolean;
|
|
2908
|
-
title?: string;
|
|
2909
|
-
description?: string;
|
|
2910
2890
|
}
|
|
2911
|
-
export interface
|
|
2912
|
-
|
|
2913
|
-
|
|
2914
|
-
|
|
2915
|
-
|
|
2916
|
-
quickLinks?: WelcomeTabQuickLinksExperienceConfig;
|
|
2917
|
-
about?: WelcomeTabAboutExperienceConfig;
|
|
2891
|
+
export interface PreferenceWelcomeTabExperienceLayoutConfig {
|
|
2892
|
+
footer?: FooterExperienceLayoutConfig;
|
|
2893
|
+
welcomeMsg?: WelcomeTabWelcomeMsgExperienceLayoutConfig;
|
|
2894
|
+
quickLinks?: WelcomeTabQuickLinksExperienceLayoutConfig;
|
|
2895
|
+
about?: WelcomeTabAboutExperienceLayoutConfig;
|
|
2918
2896
|
}
|
|
2919
|
-
/** Preferences - Privacy Policy Experience Config */
|
|
2920
|
-
export interface
|
|
2897
|
+
/** Preferences - Privacy Policy Experience Layout Config */
|
|
2898
|
+
export interface PreferencePrivacyPolicyTabExperienceLayoutConfig {
|
|
2921
2899
|
visible?: boolean;
|
|
2922
2900
|
policyDocumentId?: string;
|
|
2923
2901
|
}
|
|
2924
|
-
/** Preferences - Purposes Experience Config */
|
|
2925
|
-
export interface
|
|
2902
|
+
/** Preferences - Purposes Experience Layout Config */
|
|
2903
|
+
export interface PurposesTabListHeaderExperienceLayoutConfig {
|
|
2926
2904
|
titleVisible?: boolean;
|
|
2927
|
-
useDefaultTitle?:
|
|
2928
|
-
title?: string;
|
|
2905
|
+
useDefaultTitle?: boolean;
|
|
2929
2906
|
}
|
|
2930
|
-
export interface
|
|
2907
|
+
export interface PurposesTabListExperienceLayoutConfig {
|
|
2931
2908
|
legalBasisVisible?: boolean;
|
|
2932
|
-
switchButtonLabels?:
|
|
2909
|
+
switchButtonLabels?: SwitchButtonsExperienceLayoutConfig;
|
|
2933
2910
|
}
|
|
2934
|
-
export interface
|
|
2935
|
-
header?:
|
|
2936
|
-
listHeader?:
|
|
2937
|
-
list?:
|
|
2938
|
-
actionButtonText?: string;
|
|
2911
|
+
export interface PreferencePurposesTabExperienceLayoutConfig {
|
|
2912
|
+
header?: PreferenceTabHeaderExperienceLayoutConfig;
|
|
2913
|
+
listHeader?: PurposesTabListHeaderExperienceLayoutConfig;
|
|
2914
|
+
list?: PurposesTabListExperienceLayoutConfig;
|
|
2939
2915
|
}
|
|
2940
|
-
/** Preferences - Subscriptions Experience Config */
|
|
2941
|
-
export interface
|
|
2942
|
-
header?:
|
|
2943
|
-
globalControlSwitchLabel?:
|
|
2944
|
-
listSwitchLabels?:
|
|
2945
|
-
actionButtonText?: string;
|
|
2916
|
+
/** Preferences - Subscriptions Experience Layout Config */
|
|
2917
|
+
export interface PreferenceSubscriptionsTabExperienceLayoutConfig {
|
|
2918
|
+
header?: PreferenceTabHeaderExperienceLayoutConfig;
|
|
2919
|
+
globalControlSwitchLabel?: SwitchButtonsExperienceLayoutConfig;
|
|
2920
|
+
listSwitchLabels?: SwitchButtonsExperienceLayoutConfig;
|
|
2946
2921
|
}
|
|
2947
|
-
/** Preferences - Requests Experience Config */
|
|
2922
|
+
/** Preferences - Requests Experience Layout Config */
|
|
2948
2923
|
export declare enum RightsFormMode {
|
|
2949
2924
|
Single = "single",
|
|
2950
2925
|
Custom = "custom"
|
|
@@ -2955,13 +2930,8 @@ export declare enum RequestType {
|
|
|
2955
2930
|
RestrictProcessing = "restrictProcessing",
|
|
2956
2931
|
UpdateData = "updateData"
|
|
2957
2932
|
}
|
|
2958
|
-
export interface
|
|
2959
|
-
title?: string;
|
|
2960
|
-
subtitle?: string;
|
|
2961
|
-
}
|
|
2962
|
-
export interface RightsTitleExperienceConfig {
|
|
2933
|
+
export interface RightsTitleExperienceLayoutConfig {
|
|
2963
2934
|
useDefault?: boolean;
|
|
2964
|
-
title?: string;
|
|
2965
2935
|
}
|
|
2966
2936
|
export interface RightFormMapping {
|
|
2967
2937
|
rightCode?: string;
|
|
@@ -2972,50 +2942,197 @@ export interface CustomRequestMapping {
|
|
|
2972
2942
|
defaultFormId?: string;
|
|
2973
2943
|
rightMappings?: RightFormMapping[];
|
|
2974
2944
|
}
|
|
2975
|
-
export interface
|
|
2945
|
+
export interface RightsFormsExperienceLayoutConfig {
|
|
2976
2946
|
mode?: RightsFormMode;
|
|
2977
2947
|
singleFormId?: string;
|
|
2978
2948
|
order?: RequestType[];
|
|
2979
2949
|
customFormMappings?: CustomRequestMapping[];
|
|
2980
2950
|
}
|
|
2981
|
-
export interface
|
|
2982
|
-
title?:
|
|
2983
|
-
forms?:
|
|
2951
|
+
export interface RequestsTabRightsExperienceLayoutConfig {
|
|
2952
|
+
title?: RightsTitleExperienceLayoutConfig;
|
|
2953
|
+
forms?: RightsFormsExperienceLayoutConfig;
|
|
2984
2954
|
}
|
|
2985
|
-
export interface
|
|
2986
|
-
header?:
|
|
2987
|
-
|
|
2988
|
-
rights?: RequestsTabRightsExperienceConfig;
|
|
2955
|
+
export interface RequestsTabHomeExperienceLayoutConfig {
|
|
2956
|
+
header?: PreferenceTabHeaderExperienceLayoutConfig;
|
|
2957
|
+
rights?: RequestsTabRightsExperienceLayoutConfig;
|
|
2989
2958
|
}
|
|
2990
|
-
export interface
|
|
2959
|
+
export interface RequestsTabRightFormExperienceLayoutConfig {
|
|
2991
2960
|
enableRecaptcha?: boolean;
|
|
2992
2961
|
}
|
|
2993
|
-
export interface
|
|
2962
|
+
export interface PreferenceRequestsTabExperienceLayoutConfig {
|
|
2963
|
+
home?: RequestsTabHomeExperienceLayoutConfig;
|
|
2964
|
+
rightForm?: RequestsTabRightFormExperienceLayoutConfig;
|
|
2965
|
+
}
|
|
2966
|
+
export interface PreferenceExperienceLayoutConfig {
|
|
2967
|
+
welcome?: PreferenceWelcomeTabExperienceLayoutConfig;
|
|
2968
|
+
privacyPolicy?: PreferencePrivacyPolicyTabExperienceLayoutConfig;
|
|
2969
|
+
purposes?: PreferencePurposesTabExperienceLayoutConfig;
|
|
2970
|
+
subscriptions?: PreferenceSubscriptionsTabExperienceLayoutConfig;
|
|
2971
|
+
requests?: PreferenceRequestsTabExperienceLayoutConfig;
|
|
2972
|
+
}
|
|
2973
|
+
/** Top level experience layout config object, one per locale */
|
|
2974
|
+
export interface ExperienceLayoutConfig {
|
|
2975
|
+
banner?: BannerExperienceLayoutConfig;
|
|
2976
|
+
modal?: ModalExperienceLayoutConfig;
|
|
2977
|
+
preference?: PreferenceExperienceLayoutConfig;
|
|
2978
|
+
}
|
|
2979
|
+
/**
|
|
2980
|
+
* Experience V2 Translation Config
|
|
2981
|
+
*/
|
|
2982
|
+
/** Shared Experience Translation Config Entities */
|
|
2983
|
+
/** Banner/Modal Header */
|
|
2984
|
+
export interface HeaderExperienceTranslationConfig {
|
|
2985
|
+
title?: string;
|
|
2986
|
+
}
|
|
2987
|
+
/** Banner/Modal Footer */
|
|
2988
|
+
export interface FooterExperienceTranslationConfig {
|
|
2989
|
+
actionButtonText?: string;
|
|
2990
|
+
}
|
|
2991
|
+
/** Switch Buttons */
|
|
2992
|
+
export interface SwitchButtonsExperienceTranslationConfig {
|
|
2993
|
+
onText?: string;
|
|
2994
|
+
offText?: string;
|
|
2995
|
+
}
|
|
2996
|
+
/** Text Block - A block of text with optional title */
|
|
2997
|
+
export interface TextBlockTitleExperienceTranslationConfig {
|
|
2998
|
+
text?: string;
|
|
2999
|
+
}
|
|
3000
|
+
export interface TextBlockExperienceTranslationConfig {
|
|
3001
|
+
title?: TextBlockTitleExperienceTranslationConfig;
|
|
3002
|
+
text?: string;
|
|
3003
|
+
}
|
|
3004
|
+
export interface PreferenceTabHeaderExperienceTranslationConfig {
|
|
3005
|
+
description?: string;
|
|
3006
|
+
title?: TextBlockTitleExperienceTranslationConfig;
|
|
3007
|
+
}
|
|
3008
|
+
/** Banner Experience Translation Config */
|
|
3009
|
+
/** Banner Action Button */
|
|
3010
|
+
export interface BannerActionButtonExperienceTranslationConfig {
|
|
3011
|
+
text?: string;
|
|
3012
|
+
}
|
|
3013
|
+
/** Banner Buttons Experience Translation Config - Rightmost === primary */
|
|
3014
|
+
export interface BannerButtonsExperienceTranslationConfig {
|
|
3015
|
+
primary?: BannerActionButtonExperienceTranslationConfig;
|
|
3016
|
+
secondary?: BannerActionButtonExperienceTranslationConfig;
|
|
3017
|
+
tertiary?: BannerActionButtonExperienceTranslationConfig;
|
|
3018
|
+
}
|
|
3019
|
+
export interface BannerExperienceTranslationConfig {
|
|
3020
|
+
header?: HeaderExperienceTranslationConfig;
|
|
3021
|
+
description?: string;
|
|
3022
|
+
buttons?: BannerButtonsExperienceTranslationConfig;
|
|
3023
|
+
footer?: FooterExperienceTranslationConfig;
|
|
3024
|
+
}
|
|
3025
|
+
/** Modal Experience Translation Config */
|
|
3026
|
+
export interface ModalListHeaderExperienceTranslationConfig {
|
|
3027
|
+
text?: string;
|
|
3028
|
+
}
|
|
3029
|
+
export interface ModalPurposeListExperienceTranslationConfig {
|
|
3030
|
+
switchButtonLabels?: SwitchButtonsExperienceTranslationConfig;
|
|
3031
|
+
}
|
|
3032
|
+
export interface ModalExperienceTranslationConfig {
|
|
3033
|
+
header?: HeaderExperienceTranslationConfig;
|
|
3034
|
+
description?: TextBlockExperienceTranslationConfig;
|
|
3035
|
+
listHeader?: ModalListHeaderExperienceTranslationConfig;
|
|
3036
|
+
purposeList?: ModalPurposeListExperienceTranslationConfig;
|
|
3037
|
+
footer?: FooterExperienceTranslationConfig;
|
|
3038
|
+
}
|
|
3039
|
+
/** Preferences - Welcome Experience Translation Config */
|
|
3040
|
+
export interface WelcomeTabHeaderExperienceTranslationConfig {
|
|
3041
|
+
title?: string;
|
|
3042
|
+
}
|
|
3043
|
+
export interface WelcomeTabNavigationExperienceTranslationConfig {
|
|
3044
|
+
welcomeTitle?: string;
|
|
3045
|
+
privacyPolicyTitle?: string;
|
|
3046
|
+
purposesTitle?: string;
|
|
3047
|
+
subscriptionsTitle?: string;
|
|
3048
|
+
requestsTitle?: string;
|
|
3049
|
+
}
|
|
3050
|
+
export interface WelcomeTabWelcomeMsgExperienceTranslationConfig {
|
|
2994
3051
|
title?: string;
|
|
2995
3052
|
subtitle?: string;
|
|
3053
|
+
}
|
|
3054
|
+
export interface QuickLinkExperienceTranslationConfig {
|
|
3055
|
+
text?: string;
|
|
3056
|
+
}
|
|
3057
|
+
export interface WelcomeTabQuickLinksExperienceTranslationConfig {
|
|
3058
|
+
links?: QuickLinkExperienceTranslationConfig[];
|
|
3059
|
+
}
|
|
3060
|
+
export interface WelcomeTabAboutExperienceTranslationConfig {
|
|
3061
|
+
title?: string;
|
|
2996
3062
|
description?: string;
|
|
2997
3063
|
}
|
|
2998
|
-
export interface
|
|
2999
|
-
|
|
3000
|
-
|
|
3001
|
-
|
|
3064
|
+
export interface PreferenceWelcomeTabExperienceTranslationConfig {
|
|
3065
|
+
header?: WelcomeTabHeaderExperienceTranslationConfig;
|
|
3066
|
+
navigation?: WelcomeTabNavigationExperienceTranslationConfig;
|
|
3067
|
+
footer?: FooterExperienceTranslationConfig;
|
|
3068
|
+
welcomeMsg?: WelcomeTabWelcomeMsgExperienceTranslationConfig;
|
|
3069
|
+
quickLinks?: WelcomeTabQuickLinksExperienceTranslationConfig;
|
|
3070
|
+
about?: WelcomeTabAboutExperienceTranslationConfig;
|
|
3002
3071
|
}
|
|
3003
|
-
|
|
3004
|
-
|
|
3005
|
-
|
|
3006
|
-
purposes?: PreferencePurposesTabExperienceConfig;
|
|
3007
|
-
subscriptions?: PreferenceSubscriptionsTabExperienceConfig;
|
|
3008
|
-
requests?: PreferenceRequestsTabExperienceConfig;
|
|
3072
|
+
/** Preferences - Purposes Experience Translation Config */
|
|
3073
|
+
export interface PurposesTabListHeaderExperienceTranslationConfig {
|
|
3074
|
+
title?: string;
|
|
3009
3075
|
}
|
|
3010
|
-
|
|
3011
|
-
|
|
3012
|
-
|
|
3013
|
-
|
|
3014
|
-
|
|
3076
|
+
export interface PurposesTabListExperienceTranslationConfig {
|
|
3077
|
+
switchButtonLabels?: SwitchButtonsExperienceTranslationConfig;
|
|
3078
|
+
}
|
|
3079
|
+
export interface PreferencePurposesTabExperienceTranslationConfig {
|
|
3080
|
+
header?: PreferenceTabHeaderExperienceTranslationConfig;
|
|
3081
|
+
listHeader?: PurposesTabListHeaderExperienceTranslationConfig;
|
|
3082
|
+
list?: PurposesTabListExperienceTranslationConfig;
|
|
3083
|
+
actionButtonText?: string;
|
|
3084
|
+
}
|
|
3085
|
+
/** Preferences - Subscriptions Experience Translation Config */
|
|
3086
|
+
export interface PreferenceSubscriptionsTabExperienceTranslationConfig {
|
|
3087
|
+
header?: PreferenceTabHeaderExperienceTranslationConfig;
|
|
3088
|
+
globalControlSwitchLabel?: SwitchButtonsExperienceTranslationConfig;
|
|
3089
|
+
listSwitchLabels?: SwitchButtonsExperienceTranslationConfig;
|
|
3090
|
+
actionButtonText?: string;
|
|
3091
|
+
}
|
|
3092
|
+
/** Preferences - Requests Experience Translation Config */
|
|
3093
|
+
export interface RequestsTabDsrLinkExperienceTranslationConfig {
|
|
3094
|
+
title?: string;
|
|
3095
|
+
subtitle?: string;
|
|
3096
|
+
}
|
|
3097
|
+
export interface RightsTitleExperienceTranslationConfig {
|
|
3098
|
+
title?: string;
|
|
3015
3099
|
}
|
|
3016
|
-
export interface
|
|
3017
|
-
|
|
3018
|
-
|
|
3019
|
-
|
|
3100
|
+
export interface RequestsTabRightsExperienceTranslationConfig {
|
|
3101
|
+
title?: RightsTitleExperienceTranslationConfig;
|
|
3102
|
+
}
|
|
3103
|
+
export interface RequestsTabHomeExperienceTranslationConfig {
|
|
3104
|
+
header?: PreferenceTabHeaderExperienceTranslationConfig;
|
|
3105
|
+
dsrPortalLink?: RequestsTabDsrLinkExperienceTranslationConfig;
|
|
3106
|
+
rights?: RequestsTabRightsExperienceTranslationConfig;
|
|
3107
|
+
}
|
|
3108
|
+
export interface RequestsTabSubmittedExperienceTranslationConfig {
|
|
3109
|
+
title?: string;
|
|
3110
|
+
subtitle?: string;
|
|
3111
|
+
description?: string;
|
|
3112
|
+
}
|
|
3113
|
+
export interface PreferenceRequestsTabExperienceTranslationConfig {
|
|
3114
|
+
home?: RequestsTabHomeExperienceTranslationConfig;
|
|
3115
|
+
submitted?: RequestsTabSubmittedExperienceTranslationConfig;
|
|
3116
|
+
}
|
|
3117
|
+
export interface PreferenceExperienceTranslationConfig {
|
|
3118
|
+
welcome?: PreferenceWelcomeTabExperienceTranslationConfig;
|
|
3119
|
+
purposes?: PreferencePurposesTabExperienceTranslationConfig;
|
|
3120
|
+
subscriptions?: PreferenceSubscriptionsTabExperienceTranslationConfig;
|
|
3121
|
+
requests?: PreferenceRequestsTabExperienceTranslationConfig;
|
|
3122
|
+
}
|
|
3123
|
+
/** Top level experience translation config objects, one per locale */
|
|
3124
|
+
export interface ExperienceTranslationConfig {
|
|
3125
|
+
banner?: BannerExperienceTranslationConfig;
|
|
3126
|
+
modal?: ModalExperienceTranslationConfig;
|
|
3127
|
+
preference?: PreferenceExperienceTranslationConfig;
|
|
3128
|
+
}
|
|
3129
|
+
/**
|
|
3130
|
+
* Experience V2 config
|
|
3131
|
+
*/
|
|
3132
|
+
export interface ExperienceConfig {
|
|
3133
|
+
layout?: ExperienceLayoutConfig;
|
|
3134
|
+
translations?: {
|
|
3135
|
+
[locale: string]: ExperienceTranslationConfig;
|
|
3136
|
+
};
|
|
3020
3137
|
}
|
|
3021
3138
|
export { ExperienceFormField, FormFieldDropdownOption, FormFieldWidth, FormFieldCategory, FormFieldType, FormFieldVariant, CanonicalRightForm, CustomRightForm, FormSection, FormTemplate, } from './forms';
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.FormFieldVariant = exports.FormFieldType = exports.FormFieldCategory = exports.FormFieldWidth = exports.RequestType = exports.RightsFormMode = exports.PreferenceCenterPage = exports.QuickLinkAction = exports.
|
|
3
|
+
exports.FormFieldVariant = exports.FormFieldType = exports.FormFieldCategory = exports.FormFieldWidth = exports.RequestType = exports.RightsFormMode = exports.PreferenceCenterPage = exports.QuickLinkAction = exports.BannerButtonAction = exports.SwitchButtonDisplay = exports.FormFieldStyle = exports.SubscriptionListStyle = exports.ExitButtonPosition = exports.ModalContainerPosition = exports.BannerContainerPosition = exports.BannerContainerSize = exports.BannerContainerLayout = exports.ListLayout = exports.ItemStyle = exports.ButtonVariant = exports.SubscriptionStatus = exports.SubscriptionExperienceItemType = exports.StorageOriginPolicy = exports.ExperienceActionKind = exports.ModalPosition = exports.BannerPosition = exports.SwitchTextRenderLogic = exports.IdentityFormat = exports.IdentityType = exports.CookieCategory = exports.CookieProvenance = exports.CookieDuration = exports.MigrationOption = exports.ExperiencePrimaryButtonAction = exports.ExperienceButtonDestination = exports.ExperienceDefault = exports.ExperienceClosedReason = exports.ConsentExperienceType = exports.ExperienceType = exports.isTab = exports.Tab = void 0;
|
|
4
4
|
/**
|
|
5
5
|
* Tab
|
|
6
6
|
*
|
|
@@ -299,12 +299,6 @@ var ListLayout;
|
|
|
299
299
|
ListLayout["Expandable"] = "expandable";
|
|
300
300
|
ListLayout["Cards"] = "cards";
|
|
301
301
|
})(ListLayout = exports.ListLayout || (exports.ListLayout = {}));
|
|
302
|
-
/** Switch Buttons */
|
|
303
|
-
var SwitchButtonDisplay;
|
|
304
|
-
(function (SwitchButtonDisplay) {
|
|
305
|
-
SwitchButtonDisplay["Always"] = "always";
|
|
306
|
-
SwitchButtonDisplay["WhenLegalBasisDiffers"] = "whenLegalBasisDiffers";
|
|
307
|
-
})(SwitchButtonDisplay = exports.SwitchButtonDisplay || (exports.SwitchButtonDisplay = {}));
|
|
308
302
|
/** Banner Config */
|
|
309
303
|
var BannerContainerLayout;
|
|
310
304
|
(function (BannerContainerLayout) {
|
|
@@ -326,20 +320,6 @@ var BannerContainerPosition;
|
|
|
326
320
|
BannerContainerPosition["BottomMiddle"] = "bottomMiddle";
|
|
327
321
|
BannerContainerPosition["Center"] = "center";
|
|
328
322
|
})(BannerContainerPosition = exports.BannerContainerPosition || (exports.BannerContainerPosition = {}));
|
|
329
|
-
var BannerButtonStyle;
|
|
330
|
-
(function (BannerButtonStyle) {
|
|
331
|
-
BannerButtonStyle["Outlined"] = "outlined";
|
|
332
|
-
BannerButtonStyle["Filled"] = "filled";
|
|
333
|
-
})(BannerButtonStyle = exports.BannerButtonStyle || (exports.BannerButtonStyle = {}));
|
|
334
|
-
/** Banner Experience Config */
|
|
335
|
-
var BannerButtonAction;
|
|
336
|
-
(function (BannerButtonAction) {
|
|
337
|
-
BannerButtonAction["SaveCurrentState"] = "saveCurrentState";
|
|
338
|
-
BannerButtonAction["AcceptAll"] = "acceptAll";
|
|
339
|
-
BannerButtonAction["OpenModal"] = "openModal";
|
|
340
|
-
BannerButtonAction["OpenPreferences"] = "openPreferences";
|
|
341
|
-
BannerButtonAction["RejectAll"] = "rejectAll";
|
|
342
|
-
})(BannerButtonAction = exports.BannerButtonAction || (exports.BannerButtonAction = {}));
|
|
343
323
|
/** Modal Theme Config */
|
|
344
324
|
var ModalContainerPosition;
|
|
345
325
|
(function (ModalContainerPosition) {
|
|
@@ -365,7 +345,22 @@ var FormFieldStyle;
|
|
|
365
345
|
FormFieldStyle["Box"] = "box";
|
|
366
346
|
FormFieldStyle["Underline"] = "underline";
|
|
367
347
|
})(FormFieldStyle = exports.FormFieldStyle || (exports.FormFieldStyle = {}));
|
|
368
|
-
/**
|
|
348
|
+
/** Switch Buttons */
|
|
349
|
+
var SwitchButtonDisplay;
|
|
350
|
+
(function (SwitchButtonDisplay) {
|
|
351
|
+
SwitchButtonDisplay["Always"] = "always";
|
|
352
|
+
SwitchButtonDisplay["WhenLegalBasisDiffers"] = "whenLegalBasisDiffers";
|
|
353
|
+
})(SwitchButtonDisplay = exports.SwitchButtonDisplay || (exports.SwitchButtonDisplay = {}));
|
|
354
|
+
/** Banner Experience Layout Config */
|
|
355
|
+
var BannerButtonAction;
|
|
356
|
+
(function (BannerButtonAction) {
|
|
357
|
+
BannerButtonAction["SaveCurrentState"] = "saveCurrentState";
|
|
358
|
+
BannerButtonAction["AcceptAll"] = "acceptAll";
|
|
359
|
+
BannerButtonAction["OpenModal"] = "openModal";
|
|
360
|
+
BannerButtonAction["OpenPreferences"] = "openPreferences";
|
|
361
|
+
BannerButtonAction["RejectAll"] = "rejectAll";
|
|
362
|
+
})(BannerButtonAction = exports.BannerButtonAction || (exports.BannerButtonAction = {}));
|
|
363
|
+
/** Preferences - Welcome Experience Layout Config */
|
|
369
364
|
var QuickLinkAction;
|
|
370
365
|
(function (QuickLinkAction) {
|
|
371
366
|
QuickLinkAction["OpenUrl"] = "openUrl";
|
|
@@ -381,7 +376,7 @@ var PreferenceCenterPage;
|
|
|
381
376
|
PreferenceCenterPage["RightForm"] = "rightForm";
|
|
382
377
|
PreferenceCenterPage["Summary"] = "summary";
|
|
383
378
|
})(PreferenceCenterPage = exports.PreferenceCenterPage || (exports.PreferenceCenterPage = {}));
|
|
384
|
-
/** Preferences - Requests Experience Config */
|
|
379
|
+
/** Preferences - Requests Experience Layout Config */
|
|
385
380
|
var RightsFormMode;
|
|
386
381
|
(function (RightsFormMode) {
|
|
387
382
|
RightsFormMode["Single"] = "single";
|
|
@@ -399,4 +394,4 @@ Object.defineProperty(exports, "FormFieldWidth", { enumerable: true, get: functi
|
|
|
399
394
|
Object.defineProperty(exports, "FormFieldCategory", { enumerable: true, get: function () { return forms_1.FormFieldCategory; } });
|
|
400
395
|
Object.defineProperty(exports, "FormFieldType", { enumerable: true, get: function () { return forms_1.FormFieldType; } });
|
|
401
396
|
Object.defineProperty(exports, "FormFieldVariant", { enumerable: true, get: function () { return forms_1.FormFieldVariant; } });
|
|
402
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
397
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBRUE7Ozs7R0FJRztBQUNILElBQVksR0FLWDtBQUxELFdBQVksR0FBRztJQUNiLCtCQUF3QixDQUFBO0lBQ3hCLDJCQUFvQixDQUFBO0lBQ3BCLCtCQUF3QixDQUFBO0lBQ3hCLHlDQUFrQyxDQUFBO0FBQ3BDLENBQUMsRUFMVyxHQUFHLEdBQUgsV0FBRyxLQUFILFdBQUcsUUFLZDtBQUVEOztHQUVHO0FBQ0gsTUFBTSxRQUFRLEdBQUcsTUFBTSxDQUFDLE1BQU0sQ0FBQyxHQUFHLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsUUFBUSxFQUFFLENBQUMsQ0FBQTtBQUUxRDs7Ozs7R0FLRztBQUNILFNBQWdCLEtBQUssQ0FBQyxLQUFhO0lBQ2pDLE9BQU8sUUFBUSxDQUFDLFFBQVEsQ0FBQyxLQUFLLENBQUMsQ0FBQTtBQUNqQyxDQUFDO0FBRkQsc0JBRUM7QUFFRDs7OztHQUlHO0FBQ0gsSUFBWSxjQUdYO0FBSEQsV0FBWSxjQUFjO0lBQ3hCLGlEQUErQixDQUFBO0lBQy9CLHVEQUFxQyxDQUFBO0FBQ3ZDLENBQUMsRUFIVyxjQUFjLEdBQWQsc0JBQWMsS0FBZCxzQkFBYyxRQUd6QjtBQUVEOzs7O0dBSUc7QUFDSCxJQUFZLHFCQUlYO0FBSkQsV0FBWSxxQkFBcUI7SUFDL0IsOERBQXFDLENBQUE7SUFDckMsNERBQW1DLENBQUE7SUFDbkMsd0RBQStCLENBQUE7QUFDakMsQ0FBQyxFQUpXLHFCQUFxQixHQUFyQiw2QkFBcUIsS0FBckIsNkJBQXFCLFFBSWhDO0FBRUQ7Ozs7Ozs7OztHQVNHO0FBQ0gsSUFBWSxzQkFNWDtBQU5ELFdBQVksc0JBQXNCO0lBQ2hDLG9EQUEwQixDQUFBO0lBQzFCLHNEQUE0QixDQUFBO0lBQzVCLHlDQUFlLENBQUE7SUFDZix1REFBNkIsQ0FB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
|