@ketch-sdk/ketch-types 1.15.1 → 1.17.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 +343 -174
- package/dist/index.js +51 -24
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -173,6 +173,36 @@ export declare enum SwitchTextRenderLogic {
|
|
|
173
173
|
*/
|
|
174
174
|
SWITCH_TEXT_RENDER_NEVER = 4
|
|
175
175
|
}
|
|
176
|
+
/**
|
|
177
|
+
* SubscriptionControlImpactType
|
|
178
|
+
*
|
|
179
|
+
* @enum
|
|
180
|
+
*/
|
|
181
|
+
export declare enum SubscriptionControlImpactType {
|
|
182
|
+
/**
|
|
183
|
+
* Unsubscribe from all subscription topics
|
|
184
|
+
*/
|
|
185
|
+
GLOBAL = 1,
|
|
186
|
+
/**
|
|
187
|
+
* Unsubscribe from subscription topics configured to experience
|
|
188
|
+
*/
|
|
189
|
+
LOCAL = 2
|
|
190
|
+
}
|
|
191
|
+
/**
|
|
192
|
+
* SubscriptionControlPositionType
|
|
193
|
+
*
|
|
194
|
+
* @enum
|
|
195
|
+
*/
|
|
196
|
+
export declare enum SubscriptionControlPositionType {
|
|
197
|
+
/**
|
|
198
|
+
* Position control at top
|
|
199
|
+
*/
|
|
200
|
+
TOP = 1,
|
|
201
|
+
/**
|
|
202
|
+
* Position control at bottom
|
|
203
|
+
*/
|
|
204
|
+
BOTTOM = 2
|
|
205
|
+
}
|
|
176
206
|
/**
|
|
177
207
|
* BannerPosition
|
|
178
208
|
*
|
|
@@ -1019,11 +1049,11 @@ export interface ConfigurationV2 {
|
|
|
1019
1049
|
/**
|
|
1020
1050
|
* Theme V2 definition
|
|
1021
1051
|
*/
|
|
1022
|
-
theme?:
|
|
1052
|
+
theme?: ThemeConfig;
|
|
1023
1053
|
/**
|
|
1024
1054
|
* Experience V2 definitions
|
|
1025
1055
|
*/
|
|
1026
|
-
experiences?:
|
|
1056
|
+
experiences?: ExperienceConfig;
|
|
1027
1057
|
/**
|
|
1028
1058
|
* Vendors (TCF)
|
|
1029
1059
|
*/
|
|
@@ -2252,6 +2282,7 @@ declare global {
|
|
|
2252
2282
|
}
|
|
2253
2283
|
export interface SubscriptionControlSetting {
|
|
2254
2284
|
status: SubscriptionStatus;
|
|
2285
|
+
impact?: SubscriptionControlImpactType;
|
|
2255
2286
|
}
|
|
2256
2287
|
export interface SubscriptionTopicContactMethodSetting {
|
|
2257
2288
|
status: SubscriptionStatus;
|
|
@@ -2276,6 +2307,26 @@ export interface SubscriptionControl {
|
|
|
2276
2307
|
* The display description of the Subscription Control
|
|
2277
2308
|
*/
|
|
2278
2309
|
description: string;
|
|
2310
|
+
/**
|
|
2311
|
+
* The impactType of the Subscription Control
|
|
2312
|
+
*/
|
|
2313
|
+
impactType?: SubscriptionControlImpactType;
|
|
2314
|
+
/**
|
|
2315
|
+
* The positionType of the Subscription Control
|
|
2316
|
+
*/
|
|
2317
|
+
positionType?: SubscriptionControlPositionType;
|
|
2318
|
+
/**
|
|
2319
|
+
* The switchOffText of the Subscription Control
|
|
2320
|
+
*/
|
|
2321
|
+
switchOffText?: string;
|
|
2322
|
+
/**
|
|
2323
|
+
* The switchOnText of the Subscription Control
|
|
2324
|
+
*/
|
|
2325
|
+
switchOnText?: string;
|
|
2326
|
+
/**
|
|
2327
|
+
* The switchTextRenderLogic of the Subscription Control
|
|
2328
|
+
*/
|
|
2329
|
+
switchTextRenderLogic?: SwitchTextRenderLogic;
|
|
2279
2330
|
}
|
|
2280
2331
|
export interface SubscriptionTopic {
|
|
2281
2332
|
/**
|
|
@@ -2374,6 +2425,7 @@ export interface GetSubscriptionConfigurationRequest {
|
|
|
2374
2425
|
organizationCode: string;
|
|
2375
2426
|
propertyCode: string;
|
|
2376
2427
|
languageCode: string;
|
|
2428
|
+
experienceCode?: string;
|
|
2377
2429
|
}
|
|
2378
2430
|
/**
|
|
2379
2431
|
* ContactMethod
|
|
@@ -2406,7 +2458,9 @@ export declare enum ButtonVariant {
|
|
|
2406
2458
|
Outlined = "outlined",
|
|
2407
2459
|
Contained = "contained"
|
|
2408
2460
|
}
|
|
2409
|
-
/**
|
|
2461
|
+
/**
|
|
2462
|
+
* Experience V2 Theme Config
|
|
2463
|
+
*/
|
|
2410
2464
|
/** Shared Theme Config Entities */
|
|
2411
2465
|
/** Banner/Modal Text */
|
|
2412
2466
|
export interface TextThemeConfig {
|
|
@@ -2505,44 +2559,6 @@ export interface ImageThemeConfig {
|
|
|
2505
2559
|
name?: string;
|
|
2506
2560
|
url?: string;
|
|
2507
2561
|
}
|
|
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
2562
|
/** Banner Config */
|
|
2547
2563
|
export declare enum BannerContainerLayout {
|
|
2548
2564
|
Horizontal = "horizontal",
|
|
@@ -2561,10 +2577,6 @@ export declare enum BannerContainerPosition {
|
|
|
2561
2577
|
BottomMiddle = "bottomMiddle",
|
|
2562
2578
|
Center = "center"
|
|
2563
2579
|
}
|
|
2564
|
-
export declare enum BannerButtonStyle {
|
|
2565
|
-
Outlined = "outlined",
|
|
2566
|
-
Filled = "filled"
|
|
2567
|
-
}
|
|
2568
2580
|
/** Banner Container */
|
|
2569
2581
|
export interface BannerContainerThemeConfig {
|
|
2570
2582
|
backdrop?: BackdropThemeConfig;
|
|
@@ -2575,7 +2587,6 @@ export interface BannerContainerThemeConfig {
|
|
|
2575
2587
|
size?: BannerContainerSize;
|
|
2576
2588
|
font?: string;
|
|
2577
2589
|
}
|
|
2578
|
-
/** Banner Action Button */
|
|
2579
2590
|
/** Banner Description */
|
|
2580
2591
|
export interface BannerDescriptionThemeConfig {
|
|
2581
2592
|
link?: TextThemeConfig;
|
|
@@ -2594,33 +2605,6 @@ export interface BannerThemeConfig {
|
|
|
2594
2605
|
description?: BannerDescriptionThemeConfig;
|
|
2595
2606
|
buttons?: BannerButtonsThemeConfig;
|
|
2596
2607
|
}
|
|
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
2608
|
/** Modal Theme Config */
|
|
2625
2609
|
export declare enum ModalContainerPosition {
|
|
2626
2610
|
Center = "center",
|
|
@@ -2647,23 +2631,6 @@ export interface ModalThemeConfig {
|
|
|
2647
2631
|
purposeList?: PurposeListThemeConfig;
|
|
2648
2632
|
footer?: FooterThemeConfig;
|
|
2649
2633
|
}
|
|
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
2634
|
/** Preferences - Welcome Theme Config */
|
|
2668
2635
|
export declare enum ExitButtonPosition {
|
|
2669
2636
|
topRight = "topRight",
|
|
@@ -2864,7 +2831,87 @@ export interface PreferenceThemeConfig {
|
|
|
2864
2831
|
subscriptions?: PreferenceSubscriptionsTabThemeConfig;
|
|
2865
2832
|
requests?: PreferenceRequestsTabThemeConfig;
|
|
2866
2833
|
}
|
|
2867
|
-
|
|
2834
|
+
export interface ThemeConfig {
|
|
2835
|
+
banner?: BannerThemeConfig;
|
|
2836
|
+
modal?: ModalThemeConfig;
|
|
2837
|
+
preference?: PreferenceThemeConfig;
|
|
2838
|
+
}
|
|
2839
|
+
/**
|
|
2840
|
+
* Experience V2 Layout Config
|
|
2841
|
+
*/
|
|
2842
|
+
/** Shared Experience Layout Config Entities */
|
|
2843
|
+
/** Banner/Modal Header */
|
|
2844
|
+
export interface HeaderExperienceLayoutConfig {
|
|
2845
|
+
visible?: boolean;
|
|
2846
|
+
closeButtonVisible?: boolean;
|
|
2847
|
+
}
|
|
2848
|
+
/** Banner/Modal Footer */
|
|
2849
|
+
export interface FooterExperienceLayoutConfig {
|
|
2850
|
+
ketchBadgeVisible?: boolean;
|
|
2851
|
+
gpcBadgeVisible?: boolean;
|
|
2852
|
+
}
|
|
2853
|
+
/** Switch Buttons */
|
|
2854
|
+
export declare enum SwitchButtonDisplay {
|
|
2855
|
+
Always = "always",
|
|
2856
|
+
WhenLegalBasisDiffers = "whenLegalBasisDiffers"
|
|
2857
|
+
}
|
|
2858
|
+
export interface SwitchButtonsExperienceLayoutConfig {
|
|
2859
|
+
visible?: boolean;
|
|
2860
|
+
display?: SwitchButtonDisplay;
|
|
2861
|
+
useDefaultText?: boolean;
|
|
2862
|
+
}
|
|
2863
|
+
/** Text Block - A block of text with optional title */
|
|
2864
|
+
export interface TextBlockTitleExperienceLayoutConfig {
|
|
2865
|
+
visible?: boolean;
|
|
2866
|
+
}
|
|
2867
|
+
export interface TextBlockExperienceLayoutConfig {
|
|
2868
|
+
title?: TextBlockTitleExperienceLayoutConfig;
|
|
2869
|
+
}
|
|
2870
|
+
export interface PreferenceTabHeaderExperienceLayoutConfig {
|
|
2871
|
+
title?: TextBlockTitleExperienceLayoutConfig;
|
|
2872
|
+
}
|
|
2873
|
+
/** Banner Experience Layout Config */
|
|
2874
|
+
export declare enum BannerButtonAction {
|
|
2875
|
+
SaveCurrentState = "saveCurrentState",
|
|
2876
|
+
AcceptAll = "acceptAll",
|
|
2877
|
+
OpenModal = "openModal",
|
|
2878
|
+
OpenPreferences = "openPreferences",
|
|
2879
|
+
RejectAll = "rejectAll"
|
|
2880
|
+
}
|
|
2881
|
+
/** Banner Action Button */
|
|
2882
|
+
export interface BannerActionButtonExperienceLayoutConfig {
|
|
2883
|
+
visible?: boolean;
|
|
2884
|
+
action?: BannerButtonAction;
|
|
2885
|
+
}
|
|
2886
|
+
/** Banner Buttons Experience Layout Config - Rightmost === primary */
|
|
2887
|
+
export interface BannerButtonsExperienceLayoutConfig {
|
|
2888
|
+
primary?: BannerActionButtonExperienceLayoutConfig;
|
|
2889
|
+
secondary?: BannerActionButtonExperienceLayoutConfig;
|
|
2890
|
+
tertiary?: BannerActionButtonExperienceLayoutConfig;
|
|
2891
|
+
close?: boolean;
|
|
2892
|
+
}
|
|
2893
|
+
export interface BannerExperienceLayoutConfig {
|
|
2894
|
+
header?: HeaderExperienceLayoutConfig;
|
|
2895
|
+
buttons?: BannerButtonsExperienceLayoutConfig;
|
|
2896
|
+
footer?: FooterExperienceLayoutConfig;
|
|
2897
|
+
}
|
|
2898
|
+
/** Modal Experience Layout Config */
|
|
2899
|
+
export interface ModalListHeaderExperienceLayoutConfig {
|
|
2900
|
+
visible?: boolean;
|
|
2901
|
+
useDefault?: boolean;
|
|
2902
|
+
}
|
|
2903
|
+
export interface ModalPurposeListExperienceLayoutConfig {
|
|
2904
|
+
legalBasisVisible?: boolean;
|
|
2905
|
+
switchButtonLabels?: SwitchButtonsExperienceLayoutConfig;
|
|
2906
|
+
}
|
|
2907
|
+
export interface ModalExperienceLayoutConfig {
|
|
2908
|
+
header?: HeaderExperienceLayoutConfig;
|
|
2909
|
+
description?: TextBlockExperienceLayoutConfig;
|
|
2910
|
+
listHeader?: ModalListHeaderExperienceLayoutConfig;
|
|
2911
|
+
purposeList?: ModalPurposeListExperienceLayoutConfig;
|
|
2912
|
+
footer?: FooterExperienceLayoutConfig;
|
|
2913
|
+
}
|
|
2914
|
+
/** Preferences - Welcome Experience Layout Config */
|
|
2868
2915
|
export declare enum QuickLinkAction {
|
|
2869
2916
|
OpenUrl = "openUrl",
|
|
2870
2917
|
OpenPage = "openPage"
|
|
@@ -2878,73 +2925,53 @@ export declare enum PreferenceCenterPage {
|
|
|
2878
2925
|
RightForm = "rightForm",
|
|
2879
2926
|
Summary = "summary"
|
|
2880
2927
|
}
|
|
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 {
|
|
2928
|
+
export interface WelcomeTabWelcomeMsgExperienceLayoutConfig {
|
|
2892
2929
|
visible?: boolean;
|
|
2893
|
-
title?: string;
|
|
2894
|
-
subtitle?: string;
|
|
2895
2930
|
}
|
|
2896
|
-
export interface
|
|
2931
|
+
export interface QuickLinkExperienceLayoutConfig {
|
|
2897
2932
|
action?: QuickLinkAction;
|
|
2898
|
-
url?: string;
|
|
2899
2933
|
page?: PreferenceCenterPage;
|
|
2900
|
-
|
|
2934
|
+
url?: string;
|
|
2901
2935
|
}
|
|
2902
|
-
export interface
|
|
2936
|
+
export interface WelcomeTabQuickLinksExperienceLayoutConfig {
|
|
2903
2937
|
visible?: boolean;
|
|
2904
|
-
links?:
|
|
2938
|
+
links?: QuickLinkExperienceLayoutConfig[];
|
|
2905
2939
|
}
|
|
2906
|
-
export interface
|
|
2940
|
+
export interface WelcomeTabAboutExperienceLayoutConfig {
|
|
2907
2941
|
visible?: boolean;
|
|
2908
|
-
title?: string;
|
|
2909
|
-
description?: string;
|
|
2910
2942
|
}
|
|
2911
|
-
export interface
|
|
2912
|
-
|
|
2913
|
-
|
|
2914
|
-
|
|
2915
|
-
|
|
2916
|
-
quickLinks?: WelcomeTabQuickLinksExperienceConfig;
|
|
2917
|
-
about?: WelcomeTabAboutExperienceConfig;
|
|
2943
|
+
export interface PreferenceWelcomeTabExperienceLayoutConfig {
|
|
2944
|
+
footer?: FooterExperienceLayoutConfig;
|
|
2945
|
+
welcomeMsg?: WelcomeTabWelcomeMsgExperienceLayoutConfig;
|
|
2946
|
+
quickLinks?: WelcomeTabQuickLinksExperienceLayoutConfig;
|
|
2947
|
+
about?: WelcomeTabAboutExperienceLayoutConfig;
|
|
2918
2948
|
}
|
|
2919
|
-
/** Preferences - Privacy Policy Experience Config */
|
|
2920
|
-
export interface
|
|
2949
|
+
/** Preferences - Privacy Policy Experience Layout Config */
|
|
2950
|
+
export interface PreferencePrivacyPolicyTabExperienceLayoutConfig {
|
|
2921
2951
|
visible?: boolean;
|
|
2922
2952
|
policyDocumentId?: string;
|
|
2923
2953
|
}
|
|
2924
|
-
/** Preferences - Purposes Experience Config */
|
|
2925
|
-
export interface
|
|
2954
|
+
/** Preferences - Purposes Experience Layout Config */
|
|
2955
|
+
export interface PurposesTabListHeaderExperienceLayoutConfig {
|
|
2926
2956
|
titleVisible?: boolean;
|
|
2927
|
-
useDefaultTitle?:
|
|
2928
|
-
title?: string;
|
|
2957
|
+
useDefaultTitle?: boolean;
|
|
2929
2958
|
}
|
|
2930
|
-
export interface
|
|
2959
|
+
export interface PurposesTabListExperienceLayoutConfig {
|
|
2931
2960
|
legalBasisVisible?: boolean;
|
|
2932
|
-
switchButtonLabels?:
|
|
2961
|
+
switchButtonLabels?: SwitchButtonsExperienceLayoutConfig;
|
|
2933
2962
|
}
|
|
2934
|
-
export interface
|
|
2935
|
-
header?:
|
|
2936
|
-
listHeader?:
|
|
2937
|
-
list?:
|
|
2938
|
-
actionButtonText?: string;
|
|
2963
|
+
export interface PreferencePurposesTabExperienceLayoutConfig {
|
|
2964
|
+
header?: PreferenceTabHeaderExperienceLayoutConfig;
|
|
2965
|
+
listHeader?: PurposesTabListHeaderExperienceLayoutConfig;
|
|
2966
|
+
list?: PurposesTabListExperienceLayoutConfig;
|
|
2939
2967
|
}
|
|
2940
|
-
/** Preferences - Subscriptions Experience Config */
|
|
2941
|
-
export interface
|
|
2942
|
-
header?:
|
|
2943
|
-
globalControlSwitchLabel?:
|
|
2944
|
-
listSwitchLabels?:
|
|
2945
|
-
actionButtonText?: string;
|
|
2968
|
+
/** Preferences - Subscriptions Experience Layout Config */
|
|
2969
|
+
export interface PreferenceSubscriptionsTabExperienceLayoutConfig {
|
|
2970
|
+
header?: PreferenceTabHeaderExperienceLayoutConfig;
|
|
2971
|
+
globalControlSwitchLabel?: SwitchButtonsExperienceLayoutConfig;
|
|
2972
|
+
listSwitchLabels?: SwitchButtonsExperienceLayoutConfig;
|
|
2946
2973
|
}
|
|
2947
|
-
/** Preferences - Requests Experience Config */
|
|
2974
|
+
/** Preferences - Requests Experience Layout Config */
|
|
2948
2975
|
export declare enum RightsFormMode {
|
|
2949
2976
|
Single = "single",
|
|
2950
2977
|
Custom = "custom"
|
|
@@ -2955,13 +2982,8 @@ export declare enum RequestType {
|
|
|
2955
2982
|
RestrictProcessing = "restrictProcessing",
|
|
2956
2983
|
UpdateData = "updateData"
|
|
2957
2984
|
}
|
|
2958
|
-
export interface
|
|
2959
|
-
title?: string;
|
|
2960
|
-
subtitle?: string;
|
|
2961
|
-
}
|
|
2962
|
-
export interface RightsTitleExperienceConfig {
|
|
2985
|
+
export interface RightsTitleExperienceLayoutConfig {
|
|
2963
2986
|
useDefault?: boolean;
|
|
2964
|
-
title?: string;
|
|
2965
2987
|
}
|
|
2966
2988
|
export interface RightFormMapping {
|
|
2967
2989
|
rightCode?: string;
|
|
@@ -2972,50 +2994,197 @@ export interface CustomRequestMapping {
|
|
|
2972
2994
|
defaultFormId?: string;
|
|
2973
2995
|
rightMappings?: RightFormMapping[];
|
|
2974
2996
|
}
|
|
2975
|
-
export interface
|
|
2997
|
+
export interface RightsFormsExperienceLayoutConfig {
|
|
2976
2998
|
mode?: RightsFormMode;
|
|
2977
2999
|
singleFormId?: string;
|
|
2978
3000
|
order?: RequestType[];
|
|
2979
3001
|
customFormMappings?: CustomRequestMapping[];
|
|
2980
3002
|
}
|
|
2981
|
-
export interface
|
|
2982
|
-
title?:
|
|
2983
|
-
forms?:
|
|
3003
|
+
export interface RequestsTabRightsExperienceLayoutConfig {
|
|
3004
|
+
title?: RightsTitleExperienceLayoutConfig;
|
|
3005
|
+
forms?: RightsFormsExperienceLayoutConfig;
|
|
2984
3006
|
}
|
|
2985
|
-
export interface
|
|
2986
|
-
header?:
|
|
2987
|
-
|
|
2988
|
-
rights?: RequestsTabRightsExperienceConfig;
|
|
3007
|
+
export interface RequestsTabHomeExperienceLayoutConfig {
|
|
3008
|
+
header?: PreferenceTabHeaderExperienceLayoutConfig;
|
|
3009
|
+
rights?: RequestsTabRightsExperienceLayoutConfig;
|
|
2989
3010
|
}
|
|
2990
|
-
export interface
|
|
3011
|
+
export interface RequestsTabRightFormExperienceLayoutConfig {
|
|
2991
3012
|
enableRecaptcha?: boolean;
|
|
2992
3013
|
}
|
|
2993
|
-
export interface
|
|
3014
|
+
export interface PreferenceRequestsTabExperienceLayoutConfig {
|
|
3015
|
+
home?: RequestsTabHomeExperienceLayoutConfig;
|
|
3016
|
+
rightForm?: RequestsTabRightFormExperienceLayoutConfig;
|
|
3017
|
+
}
|
|
3018
|
+
export interface PreferenceExperienceLayoutConfig {
|
|
3019
|
+
welcome?: PreferenceWelcomeTabExperienceLayoutConfig;
|
|
3020
|
+
privacyPolicy?: PreferencePrivacyPolicyTabExperienceLayoutConfig;
|
|
3021
|
+
purposes?: PreferencePurposesTabExperienceLayoutConfig;
|
|
3022
|
+
subscriptions?: PreferenceSubscriptionsTabExperienceLayoutConfig;
|
|
3023
|
+
requests?: PreferenceRequestsTabExperienceLayoutConfig;
|
|
3024
|
+
}
|
|
3025
|
+
/** Top level experience layout config object, one per locale */
|
|
3026
|
+
export interface ExperienceLayoutConfig {
|
|
3027
|
+
banner?: BannerExperienceLayoutConfig;
|
|
3028
|
+
modal?: ModalExperienceLayoutConfig;
|
|
3029
|
+
preference?: PreferenceExperienceLayoutConfig;
|
|
3030
|
+
}
|
|
3031
|
+
/**
|
|
3032
|
+
* Experience V2 Translation Config
|
|
3033
|
+
*/
|
|
3034
|
+
/** Shared Experience Translation Config Entities */
|
|
3035
|
+
/** Banner/Modal Header */
|
|
3036
|
+
export interface HeaderExperienceTranslationConfig {
|
|
3037
|
+
title?: string;
|
|
3038
|
+
}
|
|
3039
|
+
/** Banner/Modal Footer */
|
|
3040
|
+
export interface FooterExperienceTranslationConfig {
|
|
3041
|
+
actionButtonText?: string;
|
|
3042
|
+
}
|
|
3043
|
+
/** Switch Buttons */
|
|
3044
|
+
export interface SwitchButtonsExperienceTranslationConfig {
|
|
3045
|
+
onText?: string;
|
|
3046
|
+
offText?: string;
|
|
3047
|
+
}
|
|
3048
|
+
/** Text Block - A block of text with optional title */
|
|
3049
|
+
export interface TextBlockTitleExperienceTranslationConfig {
|
|
3050
|
+
text?: string;
|
|
3051
|
+
}
|
|
3052
|
+
export interface TextBlockExperienceTranslationConfig {
|
|
3053
|
+
title?: TextBlockTitleExperienceTranslationConfig;
|
|
3054
|
+
text?: string;
|
|
3055
|
+
}
|
|
3056
|
+
export interface PreferenceTabHeaderExperienceTranslationConfig {
|
|
3057
|
+
description?: string;
|
|
3058
|
+
title?: TextBlockTitleExperienceTranslationConfig;
|
|
3059
|
+
}
|
|
3060
|
+
/** Banner Experience Translation Config */
|
|
3061
|
+
/** Banner Action Button */
|
|
3062
|
+
export interface BannerActionButtonExperienceTranslationConfig {
|
|
3063
|
+
text?: string;
|
|
3064
|
+
}
|
|
3065
|
+
/** Banner Buttons Experience Translation Config - Rightmost === primary */
|
|
3066
|
+
export interface BannerButtonsExperienceTranslationConfig {
|
|
3067
|
+
primary?: BannerActionButtonExperienceTranslationConfig;
|
|
3068
|
+
secondary?: BannerActionButtonExperienceTranslationConfig;
|
|
3069
|
+
tertiary?: BannerActionButtonExperienceTranslationConfig;
|
|
3070
|
+
}
|
|
3071
|
+
export interface BannerExperienceTranslationConfig {
|
|
3072
|
+
header?: HeaderExperienceTranslationConfig;
|
|
3073
|
+
description?: string;
|
|
3074
|
+
buttons?: BannerButtonsExperienceTranslationConfig;
|
|
3075
|
+
footer?: FooterExperienceTranslationConfig;
|
|
3076
|
+
}
|
|
3077
|
+
/** Modal Experience Translation Config */
|
|
3078
|
+
export interface ModalListHeaderExperienceTranslationConfig {
|
|
3079
|
+
text?: string;
|
|
3080
|
+
}
|
|
3081
|
+
export interface ModalPurposeListExperienceTranslationConfig {
|
|
3082
|
+
switchButtonLabels?: SwitchButtonsExperienceTranslationConfig;
|
|
3083
|
+
}
|
|
3084
|
+
export interface ModalExperienceTranslationConfig {
|
|
3085
|
+
header?: HeaderExperienceTranslationConfig;
|
|
3086
|
+
description?: TextBlockExperienceTranslationConfig;
|
|
3087
|
+
listHeader?: ModalListHeaderExperienceTranslationConfig;
|
|
3088
|
+
purposeList?: ModalPurposeListExperienceTranslationConfig;
|
|
3089
|
+
footer?: FooterExperienceTranslationConfig;
|
|
3090
|
+
}
|
|
3091
|
+
/** Preferences - Welcome Experience Translation Config */
|
|
3092
|
+
export interface WelcomeTabHeaderExperienceTranslationConfig {
|
|
3093
|
+
title?: string;
|
|
3094
|
+
}
|
|
3095
|
+
export interface WelcomeTabNavigationExperienceTranslationConfig {
|
|
3096
|
+
welcomeTitle?: string;
|
|
3097
|
+
privacyPolicyTitle?: string;
|
|
3098
|
+
purposesTitle?: string;
|
|
3099
|
+
subscriptionsTitle?: string;
|
|
3100
|
+
requestsTitle?: string;
|
|
3101
|
+
}
|
|
3102
|
+
export interface WelcomeTabWelcomeMsgExperienceTranslationConfig {
|
|
2994
3103
|
title?: string;
|
|
2995
3104
|
subtitle?: string;
|
|
3105
|
+
}
|
|
3106
|
+
export interface QuickLinkExperienceTranslationConfig {
|
|
3107
|
+
text?: string;
|
|
3108
|
+
}
|
|
3109
|
+
export interface WelcomeTabQuickLinksExperienceTranslationConfig {
|
|
3110
|
+
links?: QuickLinkExperienceTranslationConfig[];
|
|
3111
|
+
}
|
|
3112
|
+
export interface WelcomeTabAboutExperienceTranslationConfig {
|
|
3113
|
+
title?: string;
|
|
2996
3114
|
description?: string;
|
|
2997
3115
|
}
|
|
2998
|
-
export interface
|
|
2999
|
-
|
|
3000
|
-
|
|
3001
|
-
|
|
3116
|
+
export interface PreferenceWelcomeTabExperienceTranslationConfig {
|
|
3117
|
+
header?: WelcomeTabHeaderExperienceTranslationConfig;
|
|
3118
|
+
navigation?: WelcomeTabNavigationExperienceTranslationConfig;
|
|
3119
|
+
footer?: FooterExperienceTranslationConfig;
|
|
3120
|
+
welcomeMsg?: WelcomeTabWelcomeMsgExperienceTranslationConfig;
|
|
3121
|
+
quickLinks?: WelcomeTabQuickLinksExperienceTranslationConfig;
|
|
3122
|
+
about?: WelcomeTabAboutExperienceTranslationConfig;
|
|
3002
3123
|
}
|
|
3003
|
-
|
|
3004
|
-
|
|
3005
|
-
|
|
3006
|
-
purposes?: PreferencePurposesTabExperienceConfig;
|
|
3007
|
-
subscriptions?: PreferenceSubscriptionsTabExperienceConfig;
|
|
3008
|
-
requests?: PreferenceRequestsTabExperienceConfig;
|
|
3124
|
+
/** Preferences - Purposes Experience Translation Config */
|
|
3125
|
+
export interface PurposesTabListHeaderExperienceTranslationConfig {
|
|
3126
|
+
title?: string;
|
|
3009
3127
|
}
|
|
3010
|
-
|
|
3011
|
-
|
|
3012
|
-
|
|
3013
|
-
|
|
3014
|
-
|
|
3128
|
+
export interface PurposesTabListExperienceTranslationConfig {
|
|
3129
|
+
switchButtonLabels?: SwitchButtonsExperienceTranslationConfig;
|
|
3130
|
+
}
|
|
3131
|
+
export interface PreferencePurposesTabExperienceTranslationConfig {
|
|
3132
|
+
header?: PreferenceTabHeaderExperienceTranslationConfig;
|
|
3133
|
+
listHeader?: PurposesTabListHeaderExperienceTranslationConfig;
|
|
3134
|
+
list?: PurposesTabListExperienceTranslationConfig;
|
|
3135
|
+
actionButtonText?: string;
|
|
3136
|
+
}
|
|
3137
|
+
/** Preferences - Subscriptions Experience Translation Config */
|
|
3138
|
+
export interface PreferenceSubscriptionsTabExperienceTranslationConfig {
|
|
3139
|
+
header?: PreferenceTabHeaderExperienceTranslationConfig;
|
|
3140
|
+
globalControlSwitchLabel?: SwitchButtonsExperienceTranslationConfig;
|
|
3141
|
+
listSwitchLabels?: SwitchButtonsExperienceTranslationConfig;
|
|
3142
|
+
actionButtonText?: string;
|
|
3143
|
+
}
|
|
3144
|
+
/** Preferences - Requests Experience Translation Config */
|
|
3145
|
+
export interface RequestsTabDsrLinkExperienceTranslationConfig {
|
|
3146
|
+
title?: string;
|
|
3147
|
+
subtitle?: string;
|
|
3015
3148
|
}
|
|
3016
|
-
export interface
|
|
3017
|
-
|
|
3018
|
-
|
|
3019
|
-
|
|
3149
|
+
export interface RightsTitleExperienceTranslationConfig {
|
|
3150
|
+
title?: string;
|
|
3151
|
+
}
|
|
3152
|
+
export interface RequestsTabRightsExperienceTranslationConfig {
|
|
3153
|
+
title?: RightsTitleExperienceTranslationConfig;
|
|
3154
|
+
}
|
|
3155
|
+
export interface RequestsTabHomeExperienceTranslationConfig {
|
|
3156
|
+
header?: PreferenceTabHeaderExperienceTranslationConfig;
|
|
3157
|
+
dsrPortalLink?: RequestsTabDsrLinkExperienceTranslationConfig;
|
|
3158
|
+
rights?: RequestsTabRightsExperienceTranslationConfig;
|
|
3159
|
+
}
|
|
3160
|
+
export interface RequestsTabSubmittedExperienceTranslationConfig {
|
|
3161
|
+
title?: string;
|
|
3162
|
+
subtitle?: string;
|
|
3163
|
+
description?: string;
|
|
3164
|
+
}
|
|
3165
|
+
export interface PreferenceRequestsTabExperienceTranslationConfig {
|
|
3166
|
+
home?: RequestsTabHomeExperienceTranslationConfig;
|
|
3167
|
+
submitted?: RequestsTabSubmittedExperienceTranslationConfig;
|
|
3168
|
+
}
|
|
3169
|
+
export interface PreferenceExperienceTranslationConfig {
|
|
3170
|
+
welcome?: PreferenceWelcomeTabExperienceTranslationConfig;
|
|
3171
|
+
purposes?: PreferencePurposesTabExperienceTranslationConfig;
|
|
3172
|
+
subscriptions?: PreferenceSubscriptionsTabExperienceTranslationConfig;
|
|
3173
|
+
requests?: PreferenceRequestsTabExperienceTranslationConfig;
|
|
3174
|
+
}
|
|
3175
|
+
/** Top level experience translation config objects, one per locale */
|
|
3176
|
+
export interface ExperienceTranslationConfig {
|
|
3177
|
+
banner?: BannerExperienceTranslationConfig;
|
|
3178
|
+
modal?: ModalExperienceTranslationConfig;
|
|
3179
|
+
preference?: PreferenceExperienceTranslationConfig;
|
|
3180
|
+
}
|
|
3181
|
+
/**
|
|
3182
|
+
* Experience V2 config
|
|
3183
|
+
*/
|
|
3184
|
+
export interface ExperienceConfig {
|
|
3185
|
+
layout?: ExperienceLayoutConfig;
|
|
3186
|
+
translations?: {
|
|
3187
|
+
[locale: string]: ExperienceTranslationConfig;
|
|
3188
|
+
};
|
|
3020
3189
|
}
|
|
3021
3190
|
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.SubscriptionControlPositionType = exports.SubscriptionControlImpactType = exports.SwitchTextRenderLogic = exports.IdentityFormat = exports.IdentityType = exports.CookieCategory = exports.CookieProvenance = exports.CookieDuration = exports.MigrationOption = exports.ExperiencePrimaryButtonAction = exports.ExperienceButtonDestination = exports.ExperienceDefault = exports.ExperienceClosedReason = exports.ConsentExperienceType = exports.ExperienceType = exports.isTab = exports.Tab = void 0;
|
|
4
4
|
/**
|
|
5
5
|
* Tab
|
|
6
6
|
*
|
|
@@ -196,6 +196,38 @@ var SwitchTextRenderLogic;
|
|
|
196
196
|
*/
|
|
197
197
|
SwitchTextRenderLogic[SwitchTextRenderLogic["SWITCH_TEXT_RENDER_NEVER"] = 4] = "SWITCH_TEXT_RENDER_NEVER";
|
|
198
198
|
})(SwitchTextRenderLogic = exports.SwitchTextRenderLogic || (exports.SwitchTextRenderLogic = {}));
|
|
199
|
+
/**
|
|
200
|
+
* SubscriptionControlImpactType
|
|
201
|
+
*
|
|
202
|
+
* @enum
|
|
203
|
+
*/
|
|
204
|
+
var SubscriptionControlImpactType;
|
|
205
|
+
(function (SubscriptionControlImpactType) {
|
|
206
|
+
/**
|
|
207
|
+
* Unsubscribe from all subscription topics
|
|
208
|
+
*/
|
|
209
|
+
SubscriptionControlImpactType[SubscriptionControlImpactType["GLOBAL"] = 1] = "GLOBAL";
|
|
210
|
+
/**
|
|
211
|
+
* Unsubscribe from subscription topics configured to experience
|
|
212
|
+
*/
|
|
213
|
+
SubscriptionControlImpactType[SubscriptionControlImpactType["LOCAL"] = 2] = "LOCAL";
|
|
214
|
+
})(SubscriptionControlImpactType = exports.SubscriptionControlImpactType || (exports.SubscriptionControlImpactType = {}));
|
|
215
|
+
/**
|
|
216
|
+
* SubscriptionControlPositionType
|
|
217
|
+
*
|
|
218
|
+
* @enum
|
|
219
|
+
*/
|
|
220
|
+
var SubscriptionControlPositionType;
|
|
221
|
+
(function (SubscriptionControlPositionType) {
|
|
222
|
+
/**
|
|
223
|
+
* Position control at top
|
|
224
|
+
*/
|
|
225
|
+
SubscriptionControlPositionType[SubscriptionControlPositionType["TOP"] = 1] = "TOP";
|
|
226
|
+
/**
|
|
227
|
+
* Position control at bottom
|
|
228
|
+
*/
|
|
229
|
+
SubscriptionControlPositionType[SubscriptionControlPositionType["BOTTOM"] = 2] = "BOTTOM";
|
|
230
|
+
})(SubscriptionControlPositionType = exports.SubscriptionControlPositionType || (exports.SubscriptionControlPositionType = {}));
|
|
199
231
|
/**
|
|
200
232
|
* BannerPosition
|
|
201
233
|
*
|
|
@@ -299,12 +331,6 @@ var ListLayout;
|
|
|
299
331
|
ListLayout["Expandable"] = "expandable";
|
|
300
332
|
ListLayout["Cards"] = "cards";
|
|
301
333
|
})(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
334
|
/** Banner Config */
|
|
309
335
|
var BannerContainerLayout;
|
|
310
336
|
(function (BannerContainerLayout) {
|
|
@@ -326,20 +352,6 @@ var BannerContainerPosition;
|
|
|
326
352
|
BannerContainerPosition["BottomMiddle"] = "bottomMiddle";
|
|
327
353
|
BannerContainerPosition["Center"] = "center";
|
|
328
354
|
})(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
355
|
/** Modal Theme Config */
|
|
344
356
|
var ModalContainerPosition;
|
|
345
357
|
(function (ModalContainerPosition) {
|
|
@@ -365,7 +377,22 @@ var FormFieldStyle;
|
|
|
365
377
|
FormFieldStyle["Box"] = "box";
|
|
366
378
|
FormFieldStyle["Underline"] = "underline";
|
|
367
379
|
})(FormFieldStyle = exports.FormFieldStyle || (exports.FormFieldStyle = {}));
|
|
368
|
-
/**
|
|
380
|
+
/** Switch Buttons */
|
|
381
|
+
var SwitchButtonDisplay;
|
|
382
|
+
(function (SwitchButtonDisplay) {
|
|
383
|
+
SwitchButtonDisplay["Always"] = "always";
|
|
384
|
+
SwitchButtonDisplay["WhenLegalBasisDiffers"] = "whenLegalBasisDiffers";
|
|
385
|
+
})(SwitchButtonDisplay = exports.SwitchButtonDisplay || (exports.SwitchButtonDisplay = {}));
|
|
386
|
+
/** Banner Experience Layout Config */
|
|
387
|
+
var BannerButtonAction;
|
|
388
|
+
(function (BannerButtonAction) {
|
|
389
|
+
BannerButtonAction["SaveCurrentState"] = "saveCurrentState";
|
|
390
|
+
BannerButtonAction["AcceptAll"] = "acceptAll";
|
|
391
|
+
BannerButtonAction["OpenModal"] = "openModal";
|
|
392
|
+
BannerButtonAction["OpenPreferences"] = "openPreferences";
|
|
393
|
+
BannerButtonAction["RejectAll"] = "rejectAll";
|
|
394
|
+
})(BannerButtonAction = exports.BannerButtonAction || (exports.BannerButtonAction = {}));
|
|
395
|
+
/** Preferences - Welcome Experience Layout Config */
|
|
369
396
|
var QuickLinkAction;
|
|
370
397
|
(function (QuickLinkAction) {
|
|
371
398
|
QuickLinkAction["OpenUrl"] = "openUrl";
|
|
@@ -381,7 +408,7 @@ var PreferenceCenterPage;
|
|
|
381
408
|
PreferenceCenterPage["RightForm"] = "rightForm";
|
|
382
409
|
PreferenceCenterPage["Summary"] = "summary";
|
|
383
410
|
})(PreferenceCenterPage = exports.PreferenceCenterPage || (exports.PreferenceCenterPage = {}));
|
|
384
|
-
/** Preferences - Requests Experience Config */
|
|
411
|
+
/** Preferences - Requests Experience Layout Config */
|
|
385
412
|
var RightsFormMode;
|
|
386
413
|
(function (RightsFormMode) {
|
|
387
414
|
RightsFormMode["Single"] = "single";
|
|
@@ -399,4 +426,4 @@ Object.defineProperty(exports, "FormFieldWidth", { enumerable: true, get: functi
|
|
|
399
426
|
Object.defineProperty(exports, "FormFieldCategory", { enumerable: true, get: function () { return forms_1.FormFieldCategory; } });
|
|
400
427
|
Object.defineProperty(exports, "FormFieldType", { enumerable: true, get: function () { return forms_1.FormFieldType; } });
|
|
401
428
|
Object.defineProperty(exports, "FormFieldVariant", { enumerable: true, get: function () { return forms_1.FormFieldVariant; } });
|
|
402
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
429
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBRUE7Ozs7R0FJRztBQUNILElBQVksR0FLWDtBQUxELFdBQVksR0FBRztJQUNiLCtCQUF3QixDQUFBO0lBQ3hCLDJCQUFvQixDQUFBO0lBQ3BCLCtCQUF3QixDQUFBO0lBQ3hCLHlDQUFrQyxDQUFBO0FBQ3BDLENBQUMsRUFMVyxHQUFHLEdBQUgsV0FBRyxLQUFILFdBQUcsUUFLZDtBQUVEOztHQUVHO0FBQ0gsTUFBTSxRQUFRLEdBQUcsTUFBTSxDQUFDLE1BQU0sQ0FBQyxHQUFHLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsUUFBUSxFQUFFLENBQUMsQ0FBQTtBQUUxRDs7Ozs7R0FLRztBQUNILFNBQWdCLEtBQUssQ0FBQyxLQUFhO0lBQ2pDLE9BQU8sUUFBUSxDQUFDLFFBQVEsQ0FBQyxLQUFLLENBQUMsQ0FBQTtBQUNqQyxDQUFDO0FBRkQsc0JBRUM7QUFFRDs7OztHQUlHO0FBQ0gsSUFBWSxjQUdYO0FBSEQsV0FBWSxjQUFjO0lBQ3hCLGlEQUErQixDQUFBO0lBQy9CLHVEQUFxQyxDQUFBO0FBQ3ZDLENBQUMsRUFIVyxjQUFjLEdBQWQsc0JBQWMsS0FBZCxzQkFBYyxRQUd6QjtBQUVEOzs7O0dBSUc7QUFDSCxJQUFZLHFCQUlYO0FBSkQsV0FBWSxxQkFBcUI7SUFDL0IsOERBQXFDLENBQUE7SUFDckMsNERBQW1DLENBQUE7SUFDbkMsd0RBQStCLENBQUE7QUFDakMsQ0FBQyxFQUpXLHFCQUFxQixHQUFyQiw2QkFBcUIsS0FBckIsNkJBQXFCLFFBSWhDO0FBRUQ7Ozs7Ozs7OztHQVNHO0FBQ0gsSUFBWSxzQkFNWDtBQU5ELFdBQVksc0JBQXNCO0lBQ2hDLG9EQUEwQixDQUFBO0lBQzFCLHNEQUE0QixDQUFBO0lBQzVCLHlDQUFlLENBQUE7SUFDZix1REFBNkIsQ0FB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
|