@ketch-sdk/ketch-types 1.15.0 → 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 +407 -180
- package/dist/index.js +19 -24
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -952,6 +952,124 @@ export interface Stack {
|
|
|
952
952
|
*/
|
|
953
953
|
purposeCodes: string[];
|
|
954
954
|
}
|
|
955
|
+
/**
|
|
956
|
+
* Configuration
|
|
957
|
+
*/
|
|
958
|
+
export interface ConfigurationV2 {
|
|
959
|
+
/**
|
|
960
|
+
* Organization this configuration belongs to
|
|
961
|
+
*/
|
|
962
|
+
organization: Organization;
|
|
963
|
+
/**
|
|
964
|
+
* Property this configuration belongs to
|
|
965
|
+
*/
|
|
966
|
+
property?: Property;
|
|
967
|
+
/**
|
|
968
|
+
* Language for all text
|
|
969
|
+
*/
|
|
970
|
+
language?: string;
|
|
971
|
+
/**
|
|
972
|
+
* Available environments. Only available in the "boot" configuration.
|
|
973
|
+
*/
|
|
974
|
+
environments?: Environment[];
|
|
975
|
+
/**
|
|
976
|
+
* Environment for this configuration. Only available in the "full" configuration.
|
|
977
|
+
*/
|
|
978
|
+
environment?: Environment;
|
|
979
|
+
/**
|
|
980
|
+
* Applicable jurisdiction.
|
|
981
|
+
*/
|
|
982
|
+
jurisdiction?: JurisdictionInfo;
|
|
983
|
+
/**
|
|
984
|
+
* Identity spaces defined for this property
|
|
985
|
+
*/
|
|
986
|
+
identities?: {
|
|
987
|
+
[key: string]: Identity;
|
|
988
|
+
};
|
|
989
|
+
/**
|
|
990
|
+
* Deployment information. Only available in the "full" configuration.
|
|
991
|
+
*/
|
|
992
|
+
deployment?: Deployment;
|
|
993
|
+
/**
|
|
994
|
+
* Regulations enabled for this jurisdiction.
|
|
995
|
+
*/
|
|
996
|
+
regulations?: string[];
|
|
997
|
+
/**
|
|
998
|
+
* Rights available in this jurisdiction.
|
|
999
|
+
*/
|
|
1000
|
+
rights?: Right[];
|
|
1001
|
+
/**
|
|
1002
|
+
* Purposes in this jurisdiction.
|
|
1003
|
+
*/
|
|
1004
|
+
purposes?: Purpose[];
|
|
1005
|
+
/**
|
|
1006
|
+
* Mapping of purposes to canonical purposes.
|
|
1007
|
+
*/
|
|
1008
|
+
canonicalPurposes?: {
|
|
1009
|
+
[key: string]: CanonicalPurpose;
|
|
1010
|
+
};
|
|
1011
|
+
/**
|
|
1012
|
+
* Privacy policy document
|
|
1013
|
+
*/
|
|
1014
|
+
privacyPolicy?: PolicyDocument;
|
|
1015
|
+
/**
|
|
1016
|
+
* Terms of Service (ToS) policy document
|
|
1017
|
+
*/
|
|
1018
|
+
termsOfService?: PolicyDocument;
|
|
1019
|
+
/**
|
|
1020
|
+
* Theme V2 definition
|
|
1021
|
+
*/
|
|
1022
|
+
theme?: ThemeConfig;
|
|
1023
|
+
/**
|
|
1024
|
+
* Experience V2 definitions
|
|
1025
|
+
*/
|
|
1026
|
+
experiences?: ExperienceConfig;
|
|
1027
|
+
/**
|
|
1028
|
+
* Vendors (TCF)
|
|
1029
|
+
*/
|
|
1030
|
+
vendors?: Vendor[];
|
|
1031
|
+
/**
|
|
1032
|
+
* Data subject types relevant for this configuration
|
|
1033
|
+
*/
|
|
1034
|
+
dataSubjectTypes?: DataSubjectType[];
|
|
1035
|
+
/**
|
|
1036
|
+
* Stacks to be displayed in an experience
|
|
1037
|
+
*/
|
|
1038
|
+
stacks?: Stack[];
|
|
1039
|
+
/**
|
|
1040
|
+
* Services
|
|
1041
|
+
*/
|
|
1042
|
+
services?: {
|
|
1043
|
+
[key: string]: string;
|
|
1044
|
+
};
|
|
1045
|
+
/**
|
|
1046
|
+
* Flexible options
|
|
1047
|
+
*/
|
|
1048
|
+
options?: {
|
|
1049
|
+
[key: string]: string;
|
|
1050
|
+
};
|
|
1051
|
+
/**
|
|
1052
|
+
* Scripts to load
|
|
1053
|
+
*/
|
|
1054
|
+
scripts?: string[];
|
|
1055
|
+
/**
|
|
1056
|
+
* Plugins configured for the configuration
|
|
1057
|
+
*/
|
|
1058
|
+
plugins?: {
|
|
1059
|
+
[key: string]: PluginOptions;
|
|
1060
|
+
};
|
|
1061
|
+
/**
|
|
1062
|
+
* Recaptcha config
|
|
1063
|
+
*/
|
|
1064
|
+
recaptcha?: Recaptcha;
|
|
1065
|
+
canonicalRightFormTemplates?: CanonicalRightForm[];
|
|
1066
|
+
customRightFormTemplates?: CustomRightForm[];
|
|
1067
|
+
formTemplates: FormTemplate[];
|
|
1068
|
+
/**
|
|
1069
|
+
* Translations static translations
|
|
1070
|
+
*/
|
|
1071
|
+
translations?: Translations;
|
|
1072
|
+
}
|
|
955
1073
|
/**
|
|
956
1074
|
* Configuration
|
|
957
1075
|
*/
|
|
@@ -1024,14 +1142,6 @@ export interface Configuration {
|
|
|
1024
1142
|
* Experience definitions
|
|
1025
1143
|
*/
|
|
1026
1144
|
experiences?: Experience;
|
|
1027
|
-
/**
|
|
1028
|
-
* Theme V2 definition
|
|
1029
|
-
*/
|
|
1030
|
-
themeV2?: ThemeConfigObject;
|
|
1031
|
-
/**
|
|
1032
|
-
* Experience V2 definitions
|
|
1033
|
-
*/
|
|
1034
|
-
experiencesV2?: ExperienceConfigObject;
|
|
1035
1145
|
/**
|
|
1036
1146
|
* Vendors (TCF)
|
|
1037
1147
|
*/
|
|
@@ -2296,7 +2406,9 @@ export declare enum ButtonVariant {
|
|
|
2296
2406
|
Outlined = "outlined",
|
|
2297
2407
|
Contained = "contained"
|
|
2298
2408
|
}
|
|
2299
|
-
/**
|
|
2409
|
+
/**
|
|
2410
|
+
* Experience V2 Theme Config
|
|
2411
|
+
*/
|
|
2300
2412
|
/** Shared Theme Config Entities */
|
|
2301
2413
|
/** Banner/Modal Text */
|
|
2302
2414
|
export interface TextThemeConfig {
|
|
@@ -2395,44 +2507,6 @@ export interface ImageThemeConfig {
|
|
|
2395
2507
|
name?: string;
|
|
2396
2508
|
url?: string;
|
|
2397
2509
|
}
|
|
2398
|
-
/** Shared Experience Config Entities */
|
|
2399
|
-
/** Banner/Modal Header */
|
|
2400
|
-
export interface HeaderExperienceConfig {
|
|
2401
|
-
visible?: boolean;
|
|
2402
|
-
closeButtonVisible?: boolean;
|
|
2403
|
-
title?: string;
|
|
2404
|
-
}
|
|
2405
|
-
/** Banner/Modal Footer */
|
|
2406
|
-
export interface FooterExperienceConfig {
|
|
2407
|
-
ketchBadgeVisible?: boolean;
|
|
2408
|
-
gpcBadgeVisible?: boolean;
|
|
2409
|
-
actionButtonText?: string;
|
|
2410
|
-
}
|
|
2411
|
-
/** Switch Buttons */
|
|
2412
|
-
export declare enum SwitchButtonDisplay {
|
|
2413
|
-
Always = "always",
|
|
2414
|
-
WhenLegalBasisDiffers = "whenLegalBasisDiffers"
|
|
2415
|
-
}
|
|
2416
|
-
export interface SwitchButtonsExperienceConfig {
|
|
2417
|
-
visible?: boolean;
|
|
2418
|
-
display?: SwitchButtonDisplay;
|
|
2419
|
-
useDefaultText?: boolean;
|
|
2420
|
-
onText?: string;
|
|
2421
|
-
offText?: string;
|
|
2422
|
-
}
|
|
2423
|
-
/** Text Block - A block of text with optional title */
|
|
2424
|
-
export interface TextBlockTitleExperienceConfig {
|
|
2425
|
-
visible?: boolean;
|
|
2426
|
-
text?: string;
|
|
2427
|
-
}
|
|
2428
|
-
export interface TextBlockExperienceConfig {
|
|
2429
|
-
title?: TextBlockTitleExperienceConfig;
|
|
2430
|
-
text?: string;
|
|
2431
|
-
}
|
|
2432
|
-
export interface PreferenceTabHeaderExperienceConfig {
|
|
2433
|
-
description?: string;
|
|
2434
|
-
title?: TextBlockTitleExperienceConfig;
|
|
2435
|
-
}
|
|
2436
2510
|
/** Banner Config */
|
|
2437
2511
|
export declare enum BannerContainerLayout {
|
|
2438
2512
|
Horizontal = "horizontal",
|
|
@@ -2451,10 +2525,6 @@ export declare enum BannerContainerPosition {
|
|
|
2451
2525
|
BottomMiddle = "bottomMiddle",
|
|
2452
2526
|
Center = "center"
|
|
2453
2527
|
}
|
|
2454
|
-
export declare enum BannerButtonStyle {
|
|
2455
|
-
Outlined = "outlined",
|
|
2456
|
-
Filled = "filled"
|
|
2457
|
-
}
|
|
2458
2528
|
/** Banner Container */
|
|
2459
2529
|
export interface BannerContainerThemeConfig {
|
|
2460
2530
|
backdrop?: BackdropThemeConfig;
|
|
@@ -2465,7 +2535,6 @@ export interface BannerContainerThemeConfig {
|
|
|
2465
2535
|
size?: BannerContainerSize;
|
|
2466
2536
|
font?: string;
|
|
2467
2537
|
}
|
|
2468
|
-
/** Banner Action Button */
|
|
2469
2538
|
/** Banner Description */
|
|
2470
2539
|
export interface BannerDescriptionThemeConfig {
|
|
2471
2540
|
link?: TextThemeConfig;
|
|
@@ -2484,33 +2553,6 @@ export interface BannerThemeConfig {
|
|
|
2484
2553
|
description?: BannerDescriptionThemeConfig;
|
|
2485
2554
|
buttons?: BannerButtonsThemeConfig;
|
|
2486
2555
|
}
|
|
2487
|
-
/** Banner Experience Config */
|
|
2488
|
-
export declare enum BannerButtonAction {
|
|
2489
|
-
SaveCurrentState = "saveCurrentState",
|
|
2490
|
-
AcceptAll = "acceptAll",
|
|
2491
|
-
OpenModal = "openModal",
|
|
2492
|
-
OpenPreferences = "openPreferences",
|
|
2493
|
-
RejectAll = "rejectAll"
|
|
2494
|
-
}
|
|
2495
|
-
/** Banner Action Button */
|
|
2496
|
-
export interface BannerActionButtonExperienceConfig {
|
|
2497
|
-
visible?: boolean;
|
|
2498
|
-
text?: string;
|
|
2499
|
-
action?: BannerButtonAction;
|
|
2500
|
-
}
|
|
2501
|
-
/** Banner Buttons Experience Config - Rightmost === primary */
|
|
2502
|
-
export interface BannerButtonsExperienceConfig {
|
|
2503
|
-
primary?: BannerActionButtonExperienceConfig;
|
|
2504
|
-
secondary?: BannerActionButtonExperienceConfig;
|
|
2505
|
-
tertiary?: BannerActionButtonExperienceConfig;
|
|
2506
|
-
close?: boolean;
|
|
2507
|
-
}
|
|
2508
|
-
export interface BannerExperienceConfig {
|
|
2509
|
-
header?: HeaderExperienceConfig;
|
|
2510
|
-
description?: string;
|
|
2511
|
-
buttons?: BannerButtonsExperienceConfig;
|
|
2512
|
-
footer?: FooterExperienceConfig;
|
|
2513
|
-
}
|
|
2514
2556
|
/** Modal Theme Config */
|
|
2515
2557
|
export declare enum ModalContainerPosition {
|
|
2516
2558
|
Center = "center",
|
|
@@ -2537,23 +2579,6 @@ export interface ModalThemeConfig {
|
|
|
2537
2579
|
purposeList?: PurposeListThemeConfig;
|
|
2538
2580
|
footer?: FooterThemeConfig;
|
|
2539
2581
|
}
|
|
2540
|
-
/** Modal Experience Config */
|
|
2541
|
-
export interface ModalListHeaderExperienceConfig {
|
|
2542
|
-
visible?: boolean;
|
|
2543
|
-
useDefault?: boolean;
|
|
2544
|
-
text?: string;
|
|
2545
|
-
}
|
|
2546
|
-
export interface ModalPurposeListExperienceConfig {
|
|
2547
|
-
legalBasisVisible?: boolean;
|
|
2548
|
-
switchButtonLabels?: SwitchButtonsExperienceConfig;
|
|
2549
|
-
}
|
|
2550
|
-
export interface ModalExperienceConfig {
|
|
2551
|
-
header?: HeaderExperienceConfig;
|
|
2552
|
-
description?: TextBlockExperienceConfig;
|
|
2553
|
-
listHeader?: ModalListHeaderExperienceConfig;
|
|
2554
|
-
purposeList?: ModalPurposeListExperienceConfig;
|
|
2555
|
-
footer?: FooterExperienceConfig;
|
|
2556
|
-
}
|
|
2557
2582
|
/** Preferences - Welcome Theme Config */
|
|
2558
2583
|
export declare enum ExitButtonPosition {
|
|
2559
2584
|
topRight = "topRight",
|
|
@@ -2754,7 +2779,87 @@ export interface PreferenceThemeConfig {
|
|
|
2754
2779
|
subscriptions?: PreferenceSubscriptionsTabThemeConfig;
|
|
2755
2780
|
requests?: PreferenceRequestsTabThemeConfig;
|
|
2756
2781
|
}
|
|
2757
|
-
|
|
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 */
|
|
2758
2863
|
export declare enum QuickLinkAction {
|
|
2759
2864
|
OpenUrl = "openUrl",
|
|
2760
2865
|
OpenPage = "openPage"
|
|
@@ -2768,73 +2873,53 @@ export declare enum PreferenceCenterPage {
|
|
|
2768
2873
|
RightForm = "rightForm",
|
|
2769
2874
|
Summary = "summary"
|
|
2770
2875
|
}
|
|
2771
|
-
export interface
|
|
2772
|
-
title?: string;
|
|
2773
|
-
}
|
|
2774
|
-
export interface WelcomeTabNavigationExperienceConfig {
|
|
2775
|
-
welcomeTitle?: string;
|
|
2776
|
-
privacyPolicyTitle?: string;
|
|
2777
|
-
purposesTitle?: string;
|
|
2778
|
-
subscriptionsTitle?: string;
|
|
2779
|
-
requestsTitle?: string;
|
|
2780
|
-
}
|
|
2781
|
-
export interface WelcomeTabWelcomeMsgExperienceConfig {
|
|
2876
|
+
export interface WelcomeTabWelcomeMsgExperienceLayoutConfig {
|
|
2782
2877
|
visible?: boolean;
|
|
2783
|
-
title?: string;
|
|
2784
|
-
subtitle?: string;
|
|
2785
2878
|
}
|
|
2786
|
-
export interface
|
|
2879
|
+
export interface QuickLinkExperienceLayoutConfig {
|
|
2787
2880
|
action?: QuickLinkAction;
|
|
2788
|
-
url?: string;
|
|
2789
2881
|
page?: PreferenceCenterPage;
|
|
2790
|
-
|
|
2882
|
+
url?: string;
|
|
2791
2883
|
}
|
|
2792
|
-
export interface
|
|
2884
|
+
export interface WelcomeTabQuickLinksExperienceLayoutConfig {
|
|
2793
2885
|
visible?: boolean;
|
|
2794
|
-
links?:
|
|
2886
|
+
links?: QuickLinkExperienceLayoutConfig[];
|
|
2795
2887
|
}
|
|
2796
|
-
export interface
|
|
2888
|
+
export interface WelcomeTabAboutExperienceLayoutConfig {
|
|
2797
2889
|
visible?: boolean;
|
|
2798
|
-
title?: string;
|
|
2799
|
-
description?: string;
|
|
2800
2890
|
}
|
|
2801
|
-
export interface
|
|
2802
|
-
|
|
2803
|
-
|
|
2804
|
-
|
|
2805
|
-
|
|
2806
|
-
quickLinks?: WelcomeTabQuickLinksExperienceConfig;
|
|
2807
|
-
about?: WelcomeTabAboutExperienceConfig;
|
|
2891
|
+
export interface PreferenceWelcomeTabExperienceLayoutConfig {
|
|
2892
|
+
footer?: FooterExperienceLayoutConfig;
|
|
2893
|
+
welcomeMsg?: WelcomeTabWelcomeMsgExperienceLayoutConfig;
|
|
2894
|
+
quickLinks?: WelcomeTabQuickLinksExperienceLayoutConfig;
|
|
2895
|
+
about?: WelcomeTabAboutExperienceLayoutConfig;
|
|
2808
2896
|
}
|
|
2809
|
-
/** Preferences - Privacy Policy Experience Config */
|
|
2810
|
-
export interface
|
|
2897
|
+
/** Preferences - Privacy Policy Experience Layout Config */
|
|
2898
|
+
export interface PreferencePrivacyPolicyTabExperienceLayoutConfig {
|
|
2811
2899
|
visible?: boolean;
|
|
2812
2900
|
policyDocumentId?: string;
|
|
2813
2901
|
}
|
|
2814
|
-
/** Preferences - Purposes Experience Config */
|
|
2815
|
-
export interface
|
|
2902
|
+
/** Preferences - Purposes Experience Layout Config */
|
|
2903
|
+
export interface PurposesTabListHeaderExperienceLayoutConfig {
|
|
2816
2904
|
titleVisible?: boolean;
|
|
2817
|
-
useDefaultTitle?:
|
|
2818
|
-
title?: string;
|
|
2905
|
+
useDefaultTitle?: boolean;
|
|
2819
2906
|
}
|
|
2820
|
-
export interface
|
|
2907
|
+
export interface PurposesTabListExperienceLayoutConfig {
|
|
2821
2908
|
legalBasisVisible?: boolean;
|
|
2822
|
-
switchButtonLabels?:
|
|
2909
|
+
switchButtonLabels?: SwitchButtonsExperienceLayoutConfig;
|
|
2823
2910
|
}
|
|
2824
|
-
export interface
|
|
2825
|
-
header?:
|
|
2826
|
-
listHeader?:
|
|
2827
|
-
list?:
|
|
2828
|
-
actionButtonText?: string;
|
|
2911
|
+
export interface PreferencePurposesTabExperienceLayoutConfig {
|
|
2912
|
+
header?: PreferenceTabHeaderExperienceLayoutConfig;
|
|
2913
|
+
listHeader?: PurposesTabListHeaderExperienceLayoutConfig;
|
|
2914
|
+
list?: PurposesTabListExperienceLayoutConfig;
|
|
2829
2915
|
}
|
|
2830
|
-
/** Preferences - Subscriptions Experience Config */
|
|
2831
|
-
export interface
|
|
2832
|
-
header?:
|
|
2833
|
-
globalControlSwitchLabel?:
|
|
2834
|
-
listSwitchLabels?:
|
|
2835
|
-
actionButtonText?: string;
|
|
2916
|
+
/** Preferences - Subscriptions Experience Layout Config */
|
|
2917
|
+
export interface PreferenceSubscriptionsTabExperienceLayoutConfig {
|
|
2918
|
+
header?: PreferenceTabHeaderExperienceLayoutConfig;
|
|
2919
|
+
globalControlSwitchLabel?: SwitchButtonsExperienceLayoutConfig;
|
|
2920
|
+
listSwitchLabels?: SwitchButtonsExperienceLayoutConfig;
|
|
2836
2921
|
}
|
|
2837
|
-
/** Preferences - Requests Experience Config */
|
|
2922
|
+
/** Preferences - Requests Experience Layout Config */
|
|
2838
2923
|
export declare enum RightsFormMode {
|
|
2839
2924
|
Single = "single",
|
|
2840
2925
|
Custom = "custom"
|
|
@@ -2845,13 +2930,8 @@ export declare enum RequestType {
|
|
|
2845
2930
|
RestrictProcessing = "restrictProcessing",
|
|
2846
2931
|
UpdateData = "updateData"
|
|
2847
2932
|
}
|
|
2848
|
-
export interface
|
|
2849
|
-
title?: string;
|
|
2850
|
-
subtitle?: string;
|
|
2851
|
-
}
|
|
2852
|
-
export interface RightsTitleExperienceConfig {
|
|
2933
|
+
export interface RightsTitleExperienceLayoutConfig {
|
|
2853
2934
|
useDefault?: boolean;
|
|
2854
|
-
title?: string;
|
|
2855
2935
|
}
|
|
2856
2936
|
export interface RightFormMapping {
|
|
2857
2937
|
rightCode?: string;
|
|
@@ -2862,50 +2942,197 @@ export interface CustomRequestMapping {
|
|
|
2862
2942
|
defaultFormId?: string;
|
|
2863
2943
|
rightMappings?: RightFormMapping[];
|
|
2864
2944
|
}
|
|
2865
|
-
export interface
|
|
2945
|
+
export interface RightsFormsExperienceLayoutConfig {
|
|
2866
2946
|
mode?: RightsFormMode;
|
|
2867
2947
|
singleFormId?: string;
|
|
2868
2948
|
order?: RequestType[];
|
|
2869
2949
|
customFormMappings?: CustomRequestMapping[];
|
|
2870
2950
|
}
|
|
2871
|
-
export interface
|
|
2872
|
-
title?:
|
|
2873
|
-
forms?:
|
|
2951
|
+
export interface RequestsTabRightsExperienceLayoutConfig {
|
|
2952
|
+
title?: RightsTitleExperienceLayoutConfig;
|
|
2953
|
+
forms?: RightsFormsExperienceLayoutConfig;
|
|
2874
2954
|
}
|
|
2875
|
-
export interface
|
|
2876
|
-
header?:
|
|
2877
|
-
|
|
2878
|
-
rights?: RequestsTabRightsExperienceConfig;
|
|
2955
|
+
export interface RequestsTabHomeExperienceLayoutConfig {
|
|
2956
|
+
header?: PreferenceTabHeaderExperienceLayoutConfig;
|
|
2957
|
+
rights?: RequestsTabRightsExperienceLayoutConfig;
|
|
2879
2958
|
}
|
|
2880
|
-
export interface
|
|
2959
|
+
export interface RequestsTabRightFormExperienceLayoutConfig {
|
|
2881
2960
|
enableRecaptcha?: boolean;
|
|
2882
2961
|
}
|
|
2883
|
-
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 {
|
|
2884
3051
|
title?: string;
|
|
2885
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;
|
|
2886
3062
|
description?: string;
|
|
2887
3063
|
}
|
|
2888
|
-
export interface
|
|
2889
|
-
|
|
2890
|
-
|
|
2891
|
-
|
|
3064
|
+
export interface PreferenceWelcomeTabExperienceTranslationConfig {
|
|
3065
|
+
header?: WelcomeTabHeaderExperienceTranslationConfig;
|
|
3066
|
+
navigation?: WelcomeTabNavigationExperienceTranslationConfig;
|
|
3067
|
+
footer?: FooterExperienceTranslationConfig;
|
|
3068
|
+
welcomeMsg?: WelcomeTabWelcomeMsgExperienceTranslationConfig;
|
|
3069
|
+
quickLinks?: WelcomeTabQuickLinksExperienceTranslationConfig;
|
|
3070
|
+
about?: WelcomeTabAboutExperienceTranslationConfig;
|
|
3071
|
+
}
|
|
3072
|
+
/** Preferences - Purposes Experience Translation Config */
|
|
3073
|
+
export interface PurposesTabListHeaderExperienceTranslationConfig {
|
|
3074
|
+
title?: string;
|
|
2892
3075
|
}
|
|
2893
|
-
export interface
|
|
2894
|
-
|
|
2895
|
-
privacyPolicy?: PreferencePrivacyPolicyTabExperienceConfig;
|
|
2896
|
-
purposes?: PreferencePurposesTabExperienceConfig;
|
|
2897
|
-
subscriptions?: PreferenceSubscriptionsTabExperienceConfig;
|
|
2898
|
-
requests?: PreferenceRequestsTabExperienceConfig;
|
|
3076
|
+
export interface PurposesTabListExperienceTranslationConfig {
|
|
3077
|
+
switchButtonLabels?: SwitchButtonsExperienceTranslationConfig;
|
|
2899
3078
|
}
|
|
2900
|
-
|
|
2901
|
-
|
|
2902
|
-
|
|
2903
|
-
|
|
2904
|
-
|
|
3079
|
+
export interface PreferencePurposesTabExperienceTranslationConfig {
|
|
3080
|
+
header?: PreferenceTabHeaderExperienceTranslationConfig;
|
|
3081
|
+
listHeader?: PurposesTabListHeaderExperienceTranslationConfig;
|
|
3082
|
+
list?: PurposesTabListExperienceTranslationConfig;
|
|
3083
|
+
actionButtonText?: string;
|
|
2905
3084
|
}
|
|
2906
|
-
|
|
2907
|
-
|
|
2908
|
-
|
|
2909
|
-
|
|
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;
|
|
3099
|
+
}
|
|
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
|
+
};
|
|
2910
3137
|
}
|
|
2911
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,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7O0FBRUE7Ozs7R0FJRztBQUNILElBQVksR0FLWDtBQUxELFdBQVksR0FBRztJQUNiLCtCQUF3QixDQUFBO0lBQ3hCLDJCQUFvQixDQUFBO0lBQ3BCLCtCQUF3QixDQUFBO0lBQ3hCLHlDQUFrQyxDQUFBO0FBQ3BDLENBQUMsRUFMVyxHQUFHLEdBQUgsV0FBRyxLQUFILFdBQUcsUUFLZDtBQUVEOztHQUVHO0FBQ0gsTUFBTSxRQUFRLEdBQUcsTUFBTSxDQUFDLE1BQU0sQ0FBQyxHQUFHLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUMsUUFBUSxFQUFFLENBQUMsQ0FBQTtBQUUxRDs7Ozs7R0FLRztBQUNILFNBQWdCLEtBQUssQ0FBQyxLQUFhO0lBQ2pDLE9BQU8sUUFBUSxDQUFDLFFBQVEsQ0FBQyxLQUFLLENBQUMsQ0FBQTtBQUNqQyxDQUFDO0FBRkQsc0JBRUM7QUFFRDs7OztHQUlHO0FBQ0gsSUFBWSxjQUdYO0FBSEQsV0FBWSxjQUFjO0lBQ3hCLGlEQUErQixDQUFBO0lBQy9CLHVEQUFxQyxDQUFBO0FBQ3ZDLENBQUMsRUFIVyxjQUFjLEdBQWQsc0JBQWMsS0FBZCxzQkFBYyxRQUd6QjtBQUVEOzs7O0dBSUc7QUFDSCxJQUFZLHFCQUlYO0FBSkQsV0FBWSxxQkFBcUI7SUFDL0IsOERBQXFDLENBQUE7SUFDckMsNERBQW1DLENBQUE7SUFDbkMsd0RBQStCLENBQUE7QUFDakMsQ0FBQyxFQUpXLHFCQUFxQixHQUFyQiw2QkFBcUIsS0FBckIsNkJBQXFCLFFBSWhDO0FBRUQ7Ozs7Ozs7OztHQVNHO0FBQ0gsSUFBWSxzQkFNWDtBQU5ELFdBQVksc0JBQXNCO0lBQ2hDLG9EQUEwQixDQUFBO0lBQzFCLHNEQUE0QixDQUFBO0lBQzVCLHlDQUFlLENBQUE7SUFDZix1REFBNkIsQ0FBQTtJQUM3QixnRUFBc0MsQ0FBQTtBQUN4QyxDQUFDLEVBTlcsc0JBQXNCLEdBQXRCLDhCQUFzQixLQUF0Qiw4QkFBc0IsUUFNakM7QUFFRDs7OztHQUlHO0FBQ0gsSUFBWSxpQkFHWDtBQUhELFdBQVksaUJBQWlCO0lBQzNCLDZEQUFVLENBQUE7SUFDViwyREFBUyxDQUFBO0FBQ1gsQ0FBQyxFQUhXLGlCQUFpQixHQUFqQix5QkFBaUIsS0FBakIseUJBQWlCLFFBRzVCO0FBRUQ7Ozs7R0FJRztBQUNILElBQVksMkJBSVg7QUFKRCxXQUFZLDJCQUEyQjtJQUNyQyx5RkFBYyxDQUFBO0lBQ2QsbUdBQW1CLENBQUE7SUFDbkIseUZBQWMsQ0FBQTtBQUNoQixDQUFDLEVBSlcsMkJBQTJCLEdBQTNCLG1DQUEyQixLQUEzQixtQ0FBMkIsUUFJdEM7QUFFRDs7OztHQUlHO0FBQ0gsSUFBWSw2QkFHWDtBQUhELFdBQVksNkJBQTZCO0lBQ3ZDLDZHQUFzQixDQUFBO0lBQ3RCLDZGQUFjLENBQUE7QUFDaEIsQ0FBQyxFQUhXLDZCQUE2QixHQUE3QixxQ0FBNkIsS0FBN0IscUNBQTZCLFFBR3hDO0FBRUQ7Ozs7R0FJRztBQUNILElBQVksZUFNWDtBQU5ELFdBQVksZUFBZTtJQUN6QiwyRUFBbUIsQ0FBQTtJQUNuQix1RUFBaUIsQ0FBQTtJQUNqQixpRkFBc0IsQ0FBQTtJQUN0QiwrRUFBcUIsQ0FBQTtJQUNyQix5RUFBa0IsQ0FBQTtBQUNwQixDQUFDLEVBTlcsZUFBZSxHQUFmLHVCQUFlLEtBQWYsdUJBQWUsUUFNMUI7QUFFRDs7OztHQUlHO0FBQ0gsSUFBWSxjQUdYO0FBSEQsV0FBWSxjQUFjO0lBQ3hCLHlEQUFXLENBQUE7SUFDWCwrREFBYyxDQUFBO0FBQ2hCLENBQUMsRUFIVyxjQUFjLEdBQWQsc0JBQWMsS0FBZCxzQkFBYyxRQUd6QjtBQUVEOzs7O0dBSUc7QUFDSCxJQUFZLGdCQUdYO0FBSEQsV0FBWSxnQkFBZ0I7SUFDMUIscUVBQWUsQ0FBQTtJQUNmLHFFQUFlLENBQUE7QUFDakIsQ0FBQyxFQUhXLGdCQUFnQixHQUFoQix3QkFBZ0IsS0FBaEIsd0JBQWdCLFFBRzNCO0FBRUQ7Ozs7R0FJRztBQUNILElBQVksY0FLWDtBQUxELFdBQVksY0FBYztJQUN4QiwrRUFBc0IsQ0FBQTtJQUN0QiwrREFBYyxDQUFBO0lBQ2QsaUVBQWUsQ0FBQTtJQUNmLDZEQUFhLENBQUE7QUFDZixDQUFDLEVBTFcsY0FBYyxHQUFkLHNCQUFjLEtBQWQsc0JBQWMsUUFLekI7QUFFRDs7OztHQUlHO0FBQ0gsSUFBWSxZQVNYO0FBVEQsV0FBWSxZQUFZO0lBQ3RCLDRDQUE0QixDQUFBO0lBQzVCLHNEQUFzQyxDQUFBO0lBQ3RDLCtDQUErQixDQUFBO0lBQy9CLCtDQUErQixDQUFBO0lBQy9CLHVEQUF1QyxDQUFBO0lBQ3ZDLDREQUE0QyxDQUFBO0lBQzVDLGdFQUFnRCxDQUFBO0lBQ2hELDBEQUEwQyxDQUFBO0FBQzVDLENBQUMsRUFUVyxZQUFZLEdBQVosb0JBQVksS0FBWixvQkFBWSxRQVN2QjtBQUVEOzs7O0dBSUc7QUFDSCxJQUFZLGNBT1g7QUFQRCxXQUFZLGNBQWM7SUFDeEIsZ0RBQThCLENBQUE7SUFDOUIsbURBQWlDLENBQUE7SUFDakMsK0NBQTZCLENBQUE7SUFDN0IsNkNBQTJCLENBQUE7SUFDM0IsaURBQStCLENBQUE7SUFDL0IseURBQXVDLENBQUE7QUFDekMsQ0FBQyxFQVBXLGNBQWMsR0FBZCxzQkFBYyxLQUFkLHNCQUFjLFFBT3pCO0FBRUQ7Ozs7R0FJRztBQUNILElBQVkscUJBaUJYO0FBakJELFdBQVkscUJBQXFCO0lBQy9COztPQUVHO0lBQ0gscUdBQTBCLENBQUE7SUFDMUI7O09BRUc7SUFDSCxxSEFBa0MsQ0FBQTtJQUNsQzs7T0FFRztJQUNILDJHQUE2QixDQUFBO0lBQzdCOztPQUVHO0lBQ0gseUdBQTRCLENBQUE7QUFDOUIsQ0FBQyxFQWpCVyxxQkFBcUIsR0FBckIsNkJBQXFCLEtBQXJCLDZCQUFxQixRQWlCaEM7QUFFRDs7OztHQUlHO0FBQ0gsSUFBWSxjQUtYO0FBTEQsV0FBWSxjQUFjO0lBQ3hCLHVEQUFVLENBQUE7SUFDVixpREFBTyxDQUFBO0lBQ1AsaUVBQWUsQ0FBQTtJQUNmLG1FQUFnQixDQUFBO0FBQ2xCLENBQUMsRUFMVyxjQUFjLEdBQWQsc0JBQWMsS0FBZCxzQkFBYyxRQUt6QjtBQUVEOzs7O0dBSUc7QUFDSCxJQUFZLGFBSVg7QUFKRCxXQUFZLGFBQWE7SUFDdkIscURBQVUsQ0FBQTtJQUNWLHlFQUFvQixDQUFBO0lBQ3BCLDJFQUFxQixDQUFBO0FBQ3ZCLENBQUMsRUFKVyxhQUFhLEdBQWIscUJBQWEsS0FBYixxQkFBYSxRQUl4QjtBQUVEOzs7O0dBSUc7QUFDSCxJQUFZLG9CQXFCWDtBQXJCRCxXQUFZLG9CQUFvQjtJQUM5Qjs7T0FFRztJQUNILG1GQUFjLENBQUE7SUFDZDs7T0FFRztJQUNILG1GQUFjLENBQUE7SUFDZDs7T0FFRztJQUNILDJFQUFVLENBQUE7SUFDVjs7T0FFRztJQUNILHFGQUFlLENBQUE7SUFDZjs7T0FFRztJQUNILDZFQUFXLENBQUE7QUFDYixDQUFDLEVBckJXLG9CQUFvQixHQUFwQiw0QkFBb0IsS0FBcEIsNEJBQW9CLFFBcUIvQjtBQUVEOzs7O0dBSUc7QUFDSCxJQUFZLG1CQVVYO0FBVkQsV0FBWSxtQkFBbUI7SUFDN0I7O09BRUc7SUFDSCxtREFBNEIsQ0FBQTtJQUU1Qjs7T0FFRztJQUNILGtEQUEyQixDQUFBO0FBQzdCLENBQUMsRUFWVyxtQkFBbUIsR0FBbkIsMkJBQW1CLEtBQW5CLDJCQUFtQixRQVU5QjtBQWdoQkQ7O0dBRUc7QUFDSCxJQUFZLDhCQUlYO0FBSkQsV0FBWSw4QkFBOEI7SUFDeEMsNkpBQTZDLENBQUE7SUFDN0MseUpBQTJDLENBQUE7SUFDM0MsNkpBQTZDLENBQUE7QUFDL0MsQ0FBQyxFQUpXLDhCQUE4QixHQUE5QixzQ0FBOEIsS0FBOUIsc0NBQThCLFFBSXpDO0FBd3JERCxJQUFZLGtCQUdYO0FBSEQsV0FBWSxrQkFBa0I7SUFDNUIsdUNBQWlCLENBQUE7SUFDakIseUNBQW1CLENBQUE7QUFDckIsQ0FBQyxFQUhXLGtCQUFrQixHQUFsQiwwQkFBa0IsS0FBbEIsMEJBQWtCLFFBRzdCO0FBNkhEOzs7O0dBSUc7QUFDSCxJQUFZLGFBR1g7QUFIRCxXQUFZLGFBQWE7SUFDdkIsc0NBQXFCLENBQUE7SUFDckIsd0NBQXVCLENBQUE7QUFDekIsQ0FBQyxFQUhXLGFBQWEsR0FBYixxQkFBYSxLQUFiLHFCQUFhLFFBR3hCO0FBOENELG9CQUFvQjtBQUVwQixJQUFZLFNBR1g7QUFIRCxXQUFZLFNBQVM7SUFDbkIsOEJBQWlCLENBQUE7SUFDakIsa0NBQXFCLENBQUE7QUFDdkIsQ0FBQyxFQUhXLFNBQVMsR0FBVCxpQkFBUyxLQUFULGlCQUFTLFFBR3BCO0FBeUJELG1CQUFtQjtBQUVuQixJQUFZLFVBR1g7QUFIRCxXQUFZLFVBQVU7SUFDcEIsdUNBQXlCLENBQUE7SUFDekIsNkJBQWUsQ0FBQTtBQUNqQixDQUFDLEVBSFcsVUFBVSxHQUFWLGtCQUFVLEtBQVYsa0JBQVUsUUFHckI7QUFtREQsb0JBQW9CO0FBRXBCLElBQVkscUJBSVg7QUFKRCxXQUFZLHFCQUFxQjtJQUMvQixrREFBeUIsQ0FBQTtJQUN6Qiw4Q0FBcUIsQ0FBQTtJQUNyQiw4Q0FBcUIsQ0FBQTtBQUN2QixDQUFDLEVBSlcscUJBQXFCLEdBQXJCLDZCQUFxQixLQUFyQiw2QkFBcUIsUUFJaEM7QUFFRCxJQUFZLG1CQUdYO0FBSEQsV0FBWSxtQkFBbUI7SUFDN0IsNENBQXFCLENBQUE7SUFDckIsMENBQW1CLENBQUE7QUFDckIsQ0FBQyxFQUhXLG1CQUFtQixHQUFuQiwyQkFBbUIsS0FBbkIsMkJBQW1CLFFBRzlCO0FBRUQsSUFBWSx1QkFPWDtBQVBELFdBQVksdUJBQXVCO0lBQ2pDLDRDQUFpQixDQUFBO0lBQ2pCLHNDQUFXLENBQUE7SUFDWCxvREFBeUIsQ0FBQTtJQUN6QixzREFBMkIsQ0FBQTtJQUMzQix3REFBNkIsQ0FBQTtJQUM3Qiw0Q0FBaUIsQ0FBQTtBQUNuQixDQUFDLEVBUFcsdUJBQXVCLEdBQXZCLCtCQUF1QixLQUF2QiwrQkFBdUIsUUFPbEM7QUFvQ0QseUJBQXlCO0FBRXpCLElBQVksc0JBSVg7QUFKRCxXQUFZLHNCQUFzQjtJQUNoQywyQ0FBaUIsQ0FBQTtJQUNqQix1Q0FBYSxDQUFBO0lBQ2IseUNBQWUsQ0FBQTtBQUNqQixDQUFDLEVBSlcsc0JBQXNCLEdBQXRCLDhCQUFzQixLQUF0Qiw4QkFBc0IsUUFJakM7QUF5QkQseUNBQXlDO0FBRXpDLElBQVksa0JBR1g7QUFIRCxXQUFZLGtCQUFrQjtJQUM1QiwyQ0FBcUIsQ0FBQTtJQUNyQiwrQ0FBeUIsQ0FBQTtBQUMzQixDQUFDLEVBSFcsa0JBQWtCLEdBQWxCLDBCQUFrQixLQUFsQiwwQkFBa0IsUUFHN0I7QUEwR0QsK0NBQStDO0FBRS9DLElBQVkscUJBR1g7QUFIRCxXQUFZLHFCQUFxQjtJQUMvQiwwQ0FBaUIsQ0FBQTtJQUNqQixrREFBeUIsQ0FBQTtBQUMzQixDQUFDLEVBSFcscUJBQXFCLEdBQXJCLDZCQUFxQixLQUFyQiw2QkFBcUIsUUFHaEM7QUE4QkQsMENBQTBDO0FBRTFDLElBQVksY0FHWDtBQUhELFdBQVksY0FBYztJQUN4Qiw2QkFBVyxDQUFBO0lBQ1gseUNBQXVCLENBQUE7QUFDekIsQ0FBQyxFQUhXLGNBQWMsR0FBZCxzQkFBYyxLQUFkLHNCQUFjLFFBR3pCO0FBbUhELHFCQUFxQjtBQUVyQixJQUFZLG1CQUdYO0FBSEQsV0FBWSxtQkFBbUI7SUFDN0Isd0NBQWlCLENBQUE7SUFDakIsc0VBQStDLENBQUE7QUFDakQsQ0FBQyxFQUhXLG1CQUFtQixHQUFuQiwyQkFBbUIsS0FBbkIsMkJBQW1CLFFBRzlCO0FBc0JELHNDQUFzQztBQUV0QyxJQUFZLGtCQU1YO0FBTkQsV0FBWSxrQkFBa0I7SUFDNUIsMkRBQXFDLENBQUE7SUFDckMsNkNBQXVCLENBQUE7SUFDdkIsNkNBQXVCLENBQUE7SUFDdkIseURBQW1DLENBQUE7SUFDbkMsNkNBQXVCLENBQUE7QUFDekIsQ0FBQyxFQU5XLGtCQUFrQixHQUFsQiwwQkFBa0IsS0FBbEIsMEJBQWtCLFFBTTdCO0FBMENELHFEQUFxRDtBQUVyRCxJQUFZLGVBR1g7QUFIRCxXQUFZLGVBQWU7SUFDekIsc0NBQW1CLENBQUE7SUFDbkIsd0NBQXFCLENBQUE7QUFDdkIsQ0FBQyxFQUhXLGVBQWUsR0FBZix1QkFBZSxLQUFmLHVCQUFlLFFBRzFCO0FBRUQsSUFBWSxvQkFRWDtBQVJELFdBQVksb0JBQW9CO0lBQzlCLDJDQUFtQixDQUFBO0lBQ25CLHVEQUErQixDQUFBO0lBQy9CLDJDQUFtQixDQUFBO0lBQ25CLHVEQUErQixDQUFBO0lBQy9CLDZDQUFxQixDQUFBO0lBQ3JCLCtDQUF1QixDQUFBO0lBQ3ZCLDJDQUFtQixDQUFBO0FBQ3JCLENBQUMsRUFSVyxvQkFBb0IsR0FBcEIsNEJBQW9CLEtBQXBCLDRCQUFvQixRQVEvQjtBQTJERCxzREFBc0Q7QUFFdEQsSUFBWSxjQUdYO0FBSEQsV0FBWSxjQUFjO0lBQ3hCLG1DQUFpQixDQUFBO0lBQ2pCLG1DQUFpQixDQUFBO0FBQ25CLENBQUMsRUFIVyxjQUFjLEdBQWQsc0JBQWMsS0FBZCxzQkFBYyxRQUd6QjtBQUVELElBQVksV0FLWDtBQUxELFdBQVksV0FBVztJQUNyQix3Q0FBeUIsQ0FBQTtJQUN6Qix3Q0FBeUIsQ0FBQTtJQUN6Qix3REFBeUMsQ0FBQTtJQUN6Qyx3Q0FBeUIsQ0FBQTtBQUMzQixDQUFDLEVBTFcsV0FBVyxHQUFYLG1CQUFXLEtBQVgsbUJBQVcsUUFLdEI7QUFxUUQsaUNBV2dCO0FBUmQsdUdBQUEsY0FBYyxPQUFBO0FBQ2QsMEdBQUEsaUJBQWlCLE9BQUE7QUFDakIsc0dBQUEsYUFBYSxPQUFBO0FBQ2IseUdBQUEsZ0JBQWdCLE9BQUEifQ==
|