@transcend-io/privacy-types 5.0.0 → 5.1.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.mts +111 -50
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +51 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +7 -5
package/dist/index.d.mts
CHANGED
|
@@ -321,7 +321,9 @@ type AssessmentFormTemplateSource = (typeof AssessmentFormTemplateSource)[keyof
|
|
|
321
321
|
/** The types of the assessment question */
|
|
322
322
|
declare const AssessmentQuestionType: {
|
|
323
323
|
/** A long-answer text question */LongAnswer: "LONG_ANSWER_TEXT"; /** A short-answer text question */
|
|
324
|
-
ShortAnswer: "SHORT_ANSWER_TEXT"; /** A
|
|
324
|
+
ShortAnswer: "SHORT_ANSWER_TEXT"; /** A text question that accepts well-formatted URLs */
|
|
325
|
+
Url: "URL"; /** A question that accepts one or more email addresses */
|
|
326
|
+
Email: "EMAIL"; /** A single-select question */
|
|
325
327
|
SingleSelect: "SINGLE_SELECT"; /** A multi-select question */
|
|
326
328
|
MultiSelect: "MULTI_SELECT"; /** A file question */
|
|
327
329
|
File: "FILE"; /** A static text field that has no answer field */
|
|
@@ -484,11 +486,11 @@ type DataSiloAttribute = (typeof DataSiloAttribute)[keyof typeof DataSiloAttribu
|
|
|
484
486
|
type DataSiloAttributeImmutable = 'CONNECT_START_TIME' | 'CONNECTION_STATE' | 'CONTACT_EMAIL' | 'CONTACT_NAME' | 'COUNTRY' | 'COUNTRY_SUB_DIVISION' | 'CREDENTIALS_REFRESH_SCHEDULED_AT' | 'DATA_PROCESSING_AGREEMENT_LINK' | 'DATA_PROCESSING_AGREEMENT_STATUS' | 'DATA_RETENTION_NOTE' | 'DEFAULT_ACCESS_REQUEST_VISIBILITY' | 'DELETED_AT' | 'DEPRECATION_STATE' | 'DESCRIPTION' | 'EMAIL_SENDING_LOCK' | 'EXPIRED_AT' | 'EXTERNAL_ID' | 'HAS_PERSONAL_DATA' | 'HEADERS' | 'IS_LIVE' | 'LAST_CONNECTED_AT' | 'LAST_ENABLED_AT' | 'LAST_LOOKUP_PROCESS_CREATION_TIME' | 'MANUAL_WORK_RETRY_FREQUENCY' | 'MANUAL_WORK_RETRY_START_AT' | 'NOTES' | 'NOTIFY_EMAIL_ADDRESS' | 'NOTIFY_WEBHOOK_URL' | 'OUTER_TYPE' | 'PLAINTEXT_CONTEXT' | 'PROMPT_A_VENDOR_EMAIL_COMPLETION_LINK_TYPE' | 'PROMPT_A_VENDOR_EMAIL_INCLUDE_IDENTIFIERS_ATTACHMENT' | 'PROMPT_A_VENDOR_EMAIL_SCHEDULED_AT' | 'PROMPT_A_VENDOR_EMAIL_SEND_FREQUENCY' | 'PROMPT_A_VENDOR_EMAIL_SEND_TYPE' | 'PROMPT_A_VENDOR_EMAIL_START_AT' | 'RECOMMENDED_FOR_CONSENT' | 'RECOMMENDED_FOR_PRIVACY' | 'RECONNECT_FORM_ITEMS' | 'SAAS_CONTEXT' | 'SECRET_HEADERS' | 'SLUG' | 'SUBDOMAIN' | 'TITLE' | 'TYPE' | 'URL' | 'WEBSITE_URL' | 'TRANSFER_REGIONS' | 'CONTROLLERSHIPS' | 'CUSTOM_SILO_CONNECTION_STRATEGY';
|
|
485
487
|
/** The value of AssessmentQuestion's syncColumn that stands for DataSilo column */
|
|
486
488
|
declare const DataSiloAttributeSyncColumn: {
|
|
487
|
-
type: DataSiloAttributeImmutable;
|
|
488
489
|
description: DataSiloAttributeImmutable;
|
|
489
490
|
title: DataSiloAttributeImmutable;
|
|
490
491
|
slug: DataSiloAttributeImmutable;
|
|
491
492
|
connectionState: DataSiloAttributeImmutable;
|
|
493
|
+
type: DataSiloAttributeImmutable;
|
|
492
494
|
outerType: DataSiloAttributeImmutable;
|
|
493
495
|
connectStartTime: DataSiloAttributeImmutable;
|
|
494
496
|
reconnectFormItems: DataSiloAttributeImmutable;
|
|
@@ -793,15 +795,6 @@ type AssessmentSyncColumnAttribute = DataSiloAttribute | SubDataPointAttribute |
|
|
|
793
795
|
type AssessmentSyncColumnImmutable = DataSiloAttributeImmutable | SubDataPointAttributeImmutable | VendorAttributeImmutable | DataSubCategoryAttributeImmutable | ProcessingPurposeSubCategoryAttributeImmutable | BusinessEntityAttributeImmutable | ProcessingActivityAttributeImmutable;
|
|
794
796
|
/** The type of the AssessmentQuestion's syncColumn field */
|
|
795
797
|
declare const AssessmentSyncColumn: {
|
|
796
|
-
DESCRIPTION: AssessmentSyncColumnImmutable;
|
|
797
|
-
DATA_PROCESSING_AGREEMENT_STATUS: AssessmentSyncColumnImmutable;
|
|
798
|
-
DATA_PROTECTION_IMPACT_ASSESSMENT_STATUS: AssessmentSyncColumnImmutable;
|
|
799
|
-
DEPRECATION_STATE: AssessmentSyncColumnImmutable;
|
|
800
|
-
RECOMMENDED_FOR_CONSENT: AssessmentSyncColumnImmutable;
|
|
801
|
-
RECOMMENDED_FOR_PRIVACY: AssessmentSyncColumnImmutable;
|
|
802
|
-
RETENTION_TYPE: AssessmentSyncColumnImmutable;
|
|
803
|
-
CONTROLLERSHIP: AssessmentSyncColumnImmutable;
|
|
804
|
-
HAS_PERSONAL_DATA: AssessmentSyncColumnImmutable;
|
|
805
798
|
CONNECT_START_TIME: AssessmentSyncColumnImmutable;
|
|
806
799
|
CONNECTION_STATE: AssessmentSyncColumnImmutable;
|
|
807
800
|
CONTACT_EMAIL: AssessmentSyncColumnImmutable;
|
|
@@ -810,12 +803,16 @@ declare const AssessmentSyncColumn: {
|
|
|
810
803
|
COUNTRY_SUB_DIVISION: AssessmentSyncColumnImmutable;
|
|
811
804
|
CREDENTIALS_REFRESH_SCHEDULED_AT: AssessmentSyncColumnImmutable;
|
|
812
805
|
DATA_PROCESSING_AGREEMENT_LINK: AssessmentSyncColumnImmutable;
|
|
806
|
+
DATA_PROCESSING_AGREEMENT_STATUS: AssessmentSyncColumnImmutable;
|
|
813
807
|
DATA_RETENTION_NOTE: AssessmentSyncColumnImmutable;
|
|
814
808
|
DEFAULT_ACCESS_REQUEST_VISIBILITY: AssessmentSyncColumnImmutable;
|
|
815
809
|
DELETED_AT: AssessmentSyncColumnImmutable;
|
|
810
|
+
DEPRECATION_STATE: AssessmentSyncColumnImmutable;
|
|
811
|
+
DESCRIPTION: AssessmentSyncColumnImmutable;
|
|
816
812
|
EMAIL_SENDING_LOCK: AssessmentSyncColumnImmutable;
|
|
817
813
|
EXPIRED_AT: AssessmentSyncColumnImmutable;
|
|
818
814
|
EXTERNAL_ID: AssessmentSyncColumnImmutable;
|
|
815
|
+
HAS_PERSONAL_DATA: AssessmentSyncColumnImmutable;
|
|
819
816
|
HEADERS: AssessmentSyncColumnImmutable;
|
|
820
817
|
IS_LIVE: AssessmentSyncColumnImmutable;
|
|
821
818
|
LAST_CONNECTED_AT: AssessmentSyncColumnImmutable;
|
|
@@ -834,6 +831,8 @@ declare const AssessmentSyncColumn: {
|
|
|
834
831
|
PROMPT_A_VENDOR_EMAIL_SEND_FREQUENCY: AssessmentSyncColumnImmutable;
|
|
835
832
|
PROMPT_A_VENDOR_EMAIL_SEND_TYPE: AssessmentSyncColumnImmutable;
|
|
836
833
|
PROMPT_A_VENDOR_EMAIL_START_AT: AssessmentSyncColumnImmutable;
|
|
834
|
+
RECOMMENDED_FOR_CONSENT: AssessmentSyncColumnImmutable;
|
|
835
|
+
RECOMMENDED_FOR_PRIVACY: AssessmentSyncColumnImmutable;
|
|
837
836
|
RECONNECT_FORM_ITEMS: AssessmentSyncColumnImmutable;
|
|
838
837
|
SAAS_CONTEXT: AssessmentSyncColumnImmutable;
|
|
839
838
|
SECRET_HEADERS: AssessmentSyncColumnImmutable;
|
|
@@ -858,6 +857,8 @@ declare const AssessmentSyncColumn: {
|
|
|
858
857
|
CONTEXT: AssessmentSyncColumnImmutable;
|
|
859
858
|
CONTENT_CLASSIFICATION_STATUS: AssessmentSyncColumnImmutable;
|
|
860
859
|
NON_NULL_CHECK_COMPLETED: AssessmentSyncColumnImmutable;
|
|
860
|
+
CONTROLLERSHIP: AssessmentSyncColumnImmutable;
|
|
861
|
+
RETENTION_TYPE: AssessmentSyncColumnImmutable;
|
|
861
862
|
RETENTION_PERIOD: AssessmentSyncColumnImmutable;
|
|
862
863
|
SCAN_RUN_ID: AssessmentSyncColumnImmutable;
|
|
863
864
|
DATA_TYPE: AssessmentSyncColumnImmutable;
|
|
@@ -879,6 +880,7 @@ declare const AssessmentSyncColumn: {
|
|
|
879
880
|
SECURITY_MEASURE_DETAILS: AssessmentSyncColumnImmutable;
|
|
880
881
|
STORAGE_REGIONS: AssessmentSyncColumnImmutable;
|
|
881
882
|
DATA_PROTECTION_IMPACT_ASSESSMENT_LINK: AssessmentSyncColumnImmutable;
|
|
883
|
+
DATA_PROTECTION_IMPACT_ASSESSMENT_STATUS: AssessmentSyncColumnImmutable;
|
|
882
884
|
};
|
|
883
885
|
/** Type override */
|
|
884
886
|
type AssessmentSyncColumn = (typeof AssessmentSyncColumn)[keyof typeof AssessmentSyncColumn];
|
|
@@ -1578,6 +1580,15 @@ declare const LocalSyncOption: {
|
|
|
1578
1580
|
};
|
|
1579
1581
|
/** Type override */
|
|
1580
1582
|
type LocalSyncOption = (typeof LocalSyncOption)[keyof typeof LocalSyncOption];
|
|
1583
|
+
/**
|
|
1584
|
+
* Sort direction for GraphQL order-by queries
|
|
1585
|
+
*/
|
|
1586
|
+
declare const OrderDirection: {
|
|
1587
|
+
Asc: "ASC";
|
|
1588
|
+
Desc: "DESC";
|
|
1589
|
+
};
|
|
1590
|
+
/** Override type */
|
|
1591
|
+
type OrderDirection = (typeof OrderDirection)[keyof typeof OrderDirection];
|
|
1581
1592
|
/**
|
|
1582
1593
|
* The possible options for configuring default consent
|
|
1583
1594
|
*
|
|
@@ -1592,6 +1603,56 @@ declare const DefaultConsentOption: {
|
|
|
1592
1603
|
};
|
|
1593
1604
|
/** Override type */
|
|
1594
1605
|
type DefaultConsentOption = (typeof DefaultConsentOption)[keyof typeof DefaultConsentOption];
|
|
1606
|
+
/**
|
|
1607
|
+
* Fields by which you can order cookies
|
|
1608
|
+
*/
|
|
1609
|
+
declare const CookieOrderField: {
|
|
1610
|
+
/** The name of this cookie */Name: "name"; /** When the cookie was created */
|
|
1611
|
+
CreatedAt: "createdAt"; /** The time the cookie was updated */
|
|
1612
|
+
UpdatedAt: "updatedAt";
|
|
1613
|
+
};
|
|
1614
|
+
/** Type override */
|
|
1615
|
+
type CookieOrderField = (typeof CookieOrderField)[keyof typeof CookieOrderField];
|
|
1616
|
+
/**
|
|
1617
|
+
* Fields by which you can order data flows
|
|
1618
|
+
*/
|
|
1619
|
+
declare const DataFlowOrderField: {
|
|
1620
|
+
/** The value of this data flow */Value: "value"; /** When the data flow was created */
|
|
1621
|
+
CreatedAt: "createdAt"; /** The time the data flow was updated */
|
|
1622
|
+
UpdatedAt: "updatedAt"; /** The number of occurrences of this data flow */
|
|
1623
|
+
Occurrences: "occurrences"; /** The SaaS tool associated with these data flows */
|
|
1624
|
+
Service: "service";
|
|
1625
|
+
};
|
|
1626
|
+
/** Type override */
|
|
1627
|
+
type DataFlowOrderField = (typeof DataFlowOrderField)[keyof typeof DataFlowOrderField];
|
|
1628
|
+
/**
|
|
1629
|
+
* Types of data flows
|
|
1630
|
+
*/
|
|
1631
|
+
declare const DataFlowType: {
|
|
1632
|
+
/** URL-based data flow */Url: "URL"; /** Query parameter-based data flow */
|
|
1633
|
+
QueryParam: "QUERY_PARAM"; /** Regular expression-based data flow */
|
|
1634
|
+
RegExp: "REGEX";
|
|
1635
|
+
};
|
|
1636
|
+
/** Type override */
|
|
1637
|
+
type DataFlowType = (typeof DataFlowType)[keyof typeof DataFlowType];
|
|
1638
|
+
/**
|
|
1639
|
+
* Triage actions for consent bulk operations
|
|
1640
|
+
*/
|
|
1641
|
+
declare const TriageAction: {
|
|
1642
|
+
/** Approve the tracker */Approve: "APPROVE"; /** Mark the tracker as junk */
|
|
1643
|
+
Junk: "JUNK";
|
|
1644
|
+
};
|
|
1645
|
+
/** Type override */
|
|
1646
|
+
type TriageAction = (typeof TriageAction)[keyof typeof TriageAction];
|
|
1647
|
+
/**
|
|
1648
|
+
* Discriminator for cookie vs data flow
|
|
1649
|
+
*/
|
|
1650
|
+
declare const ConsentTrackerType: {
|
|
1651
|
+
/** Cookie tracker */Cookie: "cookie"; /** Data flow tracker */
|
|
1652
|
+
DataFlow: "data_flow";
|
|
1653
|
+
};
|
|
1654
|
+
/** Type override */
|
|
1655
|
+
type ConsentTrackerType = (typeof ConsentTrackerType)[keyof typeof ConsentTrackerType];
|
|
1595
1656
|
//#endregion
|
|
1596
1657
|
//#region src/consentUi.d.ts
|
|
1597
1658
|
/**
|
|
@@ -3053,9 +3114,9 @@ declare const LoadOptions: t.IntersectionC<[t.TypeC<{
|
|
|
3053
3114
|
}>]>;
|
|
3054
3115
|
alwaysShowScrollbar: t.BooleanC;
|
|
3055
3116
|
horizontalAlign: t.KeyofC<{
|
|
3056
|
-
right: unknown;
|
|
3057
|
-
left: unknown;
|
|
3058
3117
|
center: unknown;
|
|
3118
|
+
left: unknown;
|
|
3119
|
+
right: unknown;
|
|
3059
3120
|
}>;
|
|
3060
3121
|
cookieAndPrivacyPolicy: t.PartialC<{
|
|
3061
3122
|
linkColor: t.StringC;
|
|
@@ -3088,9 +3149,9 @@ declare const LoadOptions: t.IntersectionC<[t.TypeC<{
|
|
|
3088
3149
|
"horizontal-flat": unknown;
|
|
3089
3150
|
}>;
|
|
3090
3151
|
verticalAlign: t.KeyofC<{
|
|
3091
|
-
center: unknown;
|
|
3092
3152
|
top: unknown;
|
|
3093
3153
|
bottom: unknown;
|
|
3154
|
+
center: unknown;
|
|
3094
3155
|
}>;
|
|
3095
3156
|
}>]>;
|
|
3096
3157
|
}>]>, t.IntersectionC<[t.TypeC<{
|
|
@@ -3127,9 +3188,9 @@ declare const LoadOptions: t.IntersectionC<[t.TypeC<{
|
|
|
3127
3188
|
}>]>;
|
|
3128
3189
|
alwaysShowScrollbar: t.BooleanC;
|
|
3129
3190
|
horizontalAlign: t.KeyofC<{
|
|
3130
|
-
right: unknown;
|
|
3131
|
-
left: unknown;
|
|
3132
3191
|
center: unknown;
|
|
3192
|
+
left: unknown;
|
|
3193
|
+
right: unknown;
|
|
3133
3194
|
}>;
|
|
3134
3195
|
cookieAndPrivacyPolicy: t.PartialC<{
|
|
3135
3196
|
linkColor: t.StringC;
|
|
@@ -3235,9 +3296,9 @@ declare const LoadOptions: t.IntersectionC<[t.TypeC<{
|
|
|
3235
3296
|
}>]>;
|
|
3236
3297
|
alwaysShowScrollbar: t.BooleanC;
|
|
3237
3298
|
horizontalAlign: t.KeyofC<{
|
|
3238
|
-
right: unknown;
|
|
3239
|
-
left: unknown;
|
|
3240
3299
|
center: unknown;
|
|
3300
|
+
left: unknown;
|
|
3301
|
+
right: unknown;
|
|
3241
3302
|
}>;
|
|
3242
3303
|
cookieAndPrivacyPolicy: t.PartialC<{
|
|
3243
3304
|
linkColor: t.StringC;
|
|
@@ -3270,9 +3331,9 @@ declare const LoadOptions: t.IntersectionC<[t.TypeC<{
|
|
|
3270
3331
|
"horizontal-flat": unknown;
|
|
3271
3332
|
}>;
|
|
3272
3333
|
verticalAlign: t.KeyofC<{
|
|
3273
|
-
center: unknown;
|
|
3274
3334
|
top: unknown;
|
|
3275
3335
|
bottom: unknown;
|
|
3336
|
+
center: unknown;
|
|
3276
3337
|
}>;
|
|
3277
3338
|
}>]>;
|
|
3278
3339
|
secondLayer: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
@@ -3296,9 +3357,9 @@ declare const LoadOptions: t.IntersectionC<[t.TypeC<{
|
|
|
3296
3357
|
}>]>;
|
|
3297
3358
|
alwaysShowScrollbar: t.BooleanC;
|
|
3298
3359
|
horizontalAlign: t.KeyofC<{
|
|
3299
|
-
right: unknown;
|
|
3300
|
-
left: unknown;
|
|
3301
3360
|
center: unknown;
|
|
3361
|
+
left: unknown;
|
|
3362
|
+
right: unknown;
|
|
3302
3363
|
}>;
|
|
3303
3364
|
cookieAndPrivacyPolicy: t.PartialC<{
|
|
3304
3365
|
linkColor: t.StringC;
|
|
@@ -3376,7 +3437,6 @@ declare const LoadOptions: t.IntersectionC<[t.TypeC<{
|
|
|
3376
3437
|
off: unknown;
|
|
3377
3438
|
}>, t.StringC]>;
|
|
3378
3439
|
uiZIndex: t.StringC;
|
|
3379
|
-
css: t.StringC;
|
|
3380
3440
|
messageFolder: t.StringC;
|
|
3381
3441
|
regimePrecedence: t.StringC;
|
|
3382
3442
|
uiShadowRoot: t.KeyofC<{
|
|
@@ -3385,6 +3445,7 @@ declare const LoadOptions: t.IntersectionC<[t.TypeC<{
|
|
|
3385
3445
|
none: unknown;
|
|
3386
3446
|
}>;
|
|
3387
3447
|
}>, t.PartialC<{
|
|
3448
|
+
css: t.StringC;
|
|
3388
3449
|
messageMap: t.RecordC<t.KeyofC<{
|
|
3389
3450
|
en: unknown;
|
|
3390
3451
|
ar: unknown;
|
|
@@ -3834,9 +3895,9 @@ declare const CommonLayerTheme: t.IntersectionC<[t.TypeC<{
|
|
|
3834
3895
|
}>]>;
|
|
3835
3896
|
alwaysShowScrollbar: t.BooleanC;
|
|
3836
3897
|
horizontalAlign: t.KeyofC<{
|
|
3837
|
-
right: unknown;
|
|
3838
|
-
left: unknown;
|
|
3839
3898
|
center: unknown;
|
|
3899
|
+
left: unknown;
|
|
3900
|
+
right: unknown;
|
|
3840
3901
|
}>;
|
|
3841
3902
|
cookieAndPrivacyPolicy: t.PartialC<{
|
|
3842
3903
|
linkColor: t.StringC;
|
|
@@ -3887,9 +3948,9 @@ declare const FirstLayerTheme: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
|
3887
3948
|
}>]>;
|
|
3888
3949
|
alwaysShowScrollbar: t.BooleanC;
|
|
3889
3950
|
horizontalAlign: t.KeyofC<{
|
|
3890
|
-
right: unknown;
|
|
3891
|
-
left: unknown;
|
|
3892
3951
|
center: unknown;
|
|
3952
|
+
left: unknown;
|
|
3953
|
+
right: unknown;
|
|
3893
3954
|
}>;
|
|
3894
3955
|
cookieAndPrivacyPolicy: t.PartialC<{
|
|
3895
3956
|
linkColor: t.StringC;
|
|
@@ -3922,9 +3983,9 @@ declare const FirstLayerTheme: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
|
3922
3983
|
"horizontal-flat": unknown;
|
|
3923
3984
|
}>;
|
|
3924
3985
|
verticalAlign: t.KeyofC<{
|
|
3925
|
-
center: unknown;
|
|
3926
3986
|
top: unknown;
|
|
3927
3987
|
bottom: unknown;
|
|
3988
|
+
center: unknown;
|
|
3928
3989
|
}>;
|
|
3929
3990
|
}>]>;
|
|
3930
3991
|
/** Override type */
|
|
@@ -3951,9 +4012,9 @@ declare const SecondLayerTheme: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
|
3951
4012
|
}>]>;
|
|
3952
4013
|
alwaysShowScrollbar: t.BooleanC;
|
|
3953
4014
|
horizontalAlign: t.KeyofC<{
|
|
3954
|
-
right: unknown;
|
|
3955
|
-
left: unknown;
|
|
3956
4015
|
center: unknown;
|
|
4016
|
+
left: unknown;
|
|
4017
|
+
right: unknown;
|
|
3957
4018
|
}>;
|
|
3958
4019
|
cookieAndPrivacyPolicy: t.PartialC<{
|
|
3959
4020
|
linkColor: t.StringC;
|
|
@@ -4092,9 +4153,9 @@ declare const ThemeConfigurationBannerOnly: t.IntersectionC<[t.TypeC<{
|
|
|
4092
4153
|
}>]>;
|
|
4093
4154
|
alwaysShowScrollbar: t.BooleanC;
|
|
4094
4155
|
horizontalAlign: t.KeyofC<{
|
|
4095
|
-
right: unknown;
|
|
4096
|
-
left: unknown;
|
|
4097
4156
|
center: unknown;
|
|
4157
|
+
left: unknown;
|
|
4158
|
+
right: unknown;
|
|
4098
4159
|
}>;
|
|
4099
4160
|
cookieAndPrivacyPolicy: t.PartialC<{
|
|
4100
4161
|
linkColor: t.StringC;
|
|
@@ -4127,9 +4188,9 @@ declare const ThemeConfigurationBannerOnly: t.IntersectionC<[t.TypeC<{
|
|
|
4127
4188
|
"horizontal-flat": unknown;
|
|
4128
4189
|
}>;
|
|
4129
4190
|
verticalAlign: t.KeyofC<{
|
|
4130
|
-
center: unknown;
|
|
4131
4191
|
top: unknown;
|
|
4132
4192
|
bottom: unknown;
|
|
4193
|
+
center: unknown;
|
|
4133
4194
|
}>;
|
|
4134
4195
|
}>]>;
|
|
4135
4196
|
}>]>;
|
|
@@ -4170,9 +4231,9 @@ declare const ThemeConfigurationModalOnly: t.IntersectionC<[t.TypeC<{
|
|
|
4170
4231
|
}>]>;
|
|
4171
4232
|
alwaysShowScrollbar: t.BooleanC;
|
|
4172
4233
|
horizontalAlign: t.KeyofC<{
|
|
4173
|
-
right: unknown;
|
|
4174
|
-
left: unknown;
|
|
4175
4234
|
center: unknown;
|
|
4235
|
+
left: unknown;
|
|
4236
|
+
right: unknown;
|
|
4176
4237
|
}>;
|
|
4177
4238
|
cookieAndPrivacyPolicy: t.PartialC<{
|
|
4178
4239
|
linkColor: t.StringC;
|
|
@@ -4282,9 +4343,9 @@ declare const ThemeConfigurationBannerIntoModal: t.IntersectionC<[t.TypeC<{
|
|
|
4282
4343
|
}>]>;
|
|
4283
4344
|
alwaysShowScrollbar: t.BooleanC;
|
|
4284
4345
|
horizontalAlign: t.KeyofC<{
|
|
4285
|
-
right: unknown;
|
|
4286
|
-
left: unknown;
|
|
4287
4346
|
center: unknown;
|
|
4347
|
+
left: unknown;
|
|
4348
|
+
right: unknown;
|
|
4288
4349
|
}>;
|
|
4289
4350
|
cookieAndPrivacyPolicy: t.PartialC<{
|
|
4290
4351
|
linkColor: t.StringC;
|
|
@@ -4317,9 +4378,9 @@ declare const ThemeConfigurationBannerIntoModal: t.IntersectionC<[t.TypeC<{
|
|
|
4317
4378
|
"horizontal-flat": unknown;
|
|
4318
4379
|
}>;
|
|
4319
4380
|
verticalAlign: t.KeyofC<{
|
|
4320
|
-
center: unknown;
|
|
4321
4381
|
top: unknown;
|
|
4322
4382
|
bottom: unknown;
|
|
4383
|
+
center: unknown;
|
|
4323
4384
|
}>;
|
|
4324
4385
|
}>]>;
|
|
4325
4386
|
secondLayer: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
@@ -4343,9 +4404,9 @@ declare const ThemeConfigurationBannerIntoModal: t.IntersectionC<[t.TypeC<{
|
|
|
4343
4404
|
}>]>;
|
|
4344
4405
|
alwaysShowScrollbar: t.BooleanC;
|
|
4345
4406
|
horizontalAlign: t.KeyofC<{
|
|
4346
|
-
right: unknown;
|
|
4347
|
-
left: unknown;
|
|
4348
4407
|
center: unknown;
|
|
4408
|
+
left: unknown;
|
|
4409
|
+
right: unknown;
|
|
4349
4410
|
}>;
|
|
4350
4411
|
cookieAndPrivacyPolicy: t.PartialC<{
|
|
4351
4412
|
linkColor: t.StringC;
|
|
@@ -4455,9 +4516,9 @@ declare const ThemeConfiguration: t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
|
4455
4516
|
}>]>;
|
|
4456
4517
|
alwaysShowScrollbar: t.BooleanC;
|
|
4457
4518
|
horizontalAlign: t.KeyofC<{
|
|
4458
|
-
right: unknown;
|
|
4459
|
-
left: unknown;
|
|
4460
4519
|
center: unknown;
|
|
4520
|
+
left: unknown;
|
|
4521
|
+
right: unknown;
|
|
4461
4522
|
}>;
|
|
4462
4523
|
cookieAndPrivacyPolicy: t.PartialC<{
|
|
4463
4524
|
linkColor: t.StringC;
|
|
@@ -4490,9 +4551,9 @@ declare const ThemeConfiguration: t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
|
4490
4551
|
"horizontal-flat": unknown;
|
|
4491
4552
|
}>;
|
|
4492
4553
|
verticalAlign: t.KeyofC<{
|
|
4493
|
-
center: unknown;
|
|
4494
4554
|
top: unknown;
|
|
4495
4555
|
bottom: unknown;
|
|
4556
|
+
center: unknown;
|
|
4496
4557
|
}>;
|
|
4497
4558
|
}>]>;
|
|
4498
4559
|
}>]>, t.IntersectionC<[t.TypeC<{
|
|
@@ -4529,9 +4590,9 @@ declare const ThemeConfiguration: t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
|
4529
4590
|
}>]>;
|
|
4530
4591
|
alwaysShowScrollbar: t.BooleanC;
|
|
4531
4592
|
horizontalAlign: t.KeyofC<{
|
|
4532
|
-
right: unknown;
|
|
4533
|
-
left: unknown;
|
|
4534
4593
|
center: unknown;
|
|
4594
|
+
left: unknown;
|
|
4595
|
+
right: unknown;
|
|
4535
4596
|
}>;
|
|
4536
4597
|
cookieAndPrivacyPolicy: t.PartialC<{
|
|
4537
4598
|
linkColor: t.StringC;
|
|
@@ -4637,9 +4698,9 @@ declare const ThemeConfiguration: t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
|
4637
4698
|
}>]>;
|
|
4638
4699
|
alwaysShowScrollbar: t.BooleanC;
|
|
4639
4700
|
horizontalAlign: t.KeyofC<{
|
|
4640
|
-
right: unknown;
|
|
4641
|
-
left: unknown;
|
|
4642
4701
|
center: unknown;
|
|
4702
|
+
left: unknown;
|
|
4703
|
+
right: unknown;
|
|
4643
4704
|
}>;
|
|
4644
4705
|
cookieAndPrivacyPolicy: t.PartialC<{
|
|
4645
4706
|
linkColor: t.StringC;
|
|
@@ -4672,9 +4733,9 @@ declare const ThemeConfiguration: t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
|
4672
4733
|
"horizontal-flat": unknown;
|
|
4673
4734
|
}>;
|
|
4674
4735
|
verticalAlign: t.KeyofC<{
|
|
4675
|
-
center: unknown;
|
|
4676
4736
|
top: unknown;
|
|
4677
4737
|
bottom: unknown;
|
|
4738
|
+
center: unknown;
|
|
4678
4739
|
}>;
|
|
4679
4740
|
}>]>;
|
|
4680
4741
|
secondLayer: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
@@ -4698,9 +4759,9 @@ declare const ThemeConfiguration: t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
|
4698
4759
|
}>]>;
|
|
4699
4760
|
alwaysShowScrollbar: t.BooleanC;
|
|
4700
4761
|
horizontalAlign: t.KeyofC<{
|
|
4701
|
-
right: unknown;
|
|
4702
|
-
left: unknown;
|
|
4703
4762
|
center: unknown;
|
|
4763
|
+
left: unknown;
|
|
4764
|
+
right: unknown;
|
|
4704
4765
|
}>;
|
|
4705
4766
|
cookieAndPrivacyPolicy: t.PartialC<{
|
|
4706
4767
|
linkColor: t.StringC;
|
|
@@ -61849,5 +61910,5 @@ declare const PrivacyCenterThemePartial: t.IntersectionC<[t.TypeC<{
|
|
|
61849
61910
|
/** Type override */
|
|
61850
61911
|
type PrivacyCenterThemePartial = t.TypeOf<typeof PrivacyCenterThemePartial>;
|
|
61851
61912
|
//#endregion
|
|
61852
|
-
export { AbsoluteUrlString, ActionItemCode, ActionItemPriorityOverride, AssessmentFormStatus, AssessmentFormTemplateSource, AssessmentFormTemplateStatus, AssessmentQuestionSubType, AssessmentQuestionType, AssessmentSyncColumn, AssessmentSyncColumnAttribute, AssessmentSyncColumnImmutable, AssessmentSyncModel, AssessmentsDisplayLogicAction, AttributeKeyType, AttributeSupportedResourceType, AutofocusToggle, AutofocusValues, BackendSyncOption, Background, Border, Breakpoint, BreakpointType, BrowserTimeZone, BusinessEntityAttribute, BusinessEntityAttributeSyncColumn, ButtonAction, ButtonConfig, ButtonTheme, ButtonThemeIndex, ButtonType, CODE_PACKAGE_TYPE_TO_LINK, COUNTRIES, COUNTRY_LOOKUP, ChatCompletionMessage, ChatCompletionRole, CloseButtonTheme, CodePackageType, CommonLayerConfig, CommonLayerTheme, CommunicationIdentifierType, ComparisonOperator, CompletedRequestStatus, ConfidenceLabel, ConfigurableColorPaletteColor, ConsentBundleType, ConsentPrecedenceOption, ConsentTrackerSource, ConsentTrackerStatus, ContainerTheme, ContentFlows, ContentLayout, Controllership, CspOption, CssUnitString, CustomEnricherType, CustomFieldApiInput, CustomizableComponent, CustomizableText, DEFAULT_MACROREGIONS_MAP, DOMElementId, DataCategoryType, DataFlowScope, DataProtectionImpactAssessmentStatus, DataSiloAttribute, DataSiloAttributeSyncColumn, DataSubCategoryAttribute, DataSubCategoryAttributeSyncColumn, DatabaseDriver, DatabaseIntegration, DatabaseSqlVariablesForPrivacyRequest, DatabaseVariables, DecryptionStatus, DefaultConsentOption, DefaultDataSubCategoryType, DefaultPurposeSubCategoryType, DescriptionTextTheme, EXCEPTIONAL_RESERVATIONS, EXCEPTIONAL_RESERVATION_LOOKUP, EnricherType, FirstLayerConfig, FirstLayerTheme, FooterConfig, FooterTheme, FullWidthContentLayout, HeaderTheme, HorizontalAlign, ISO_31661, ISO_31662, Icon, IdentifierType, InitEnricherType, IntegerString, InternalDataSiloObjectResolver, IsoCountryCode, IsoCountrySubdivisionCode, LargeLanguageModelClient, Link, LoadOptions, LocalSyncOption, LogicOperator, LogoPosition, MacroRegion, ModalButtonActions, ModalButtonConfig, NORMALIZE_PHONE_NUMBER, OneTrustApprover, OneTrustAssessment, OneTrustAssessmentCreatedBy, OneTrustAssessmentCsvHeader, OneTrustAssessmentCsvRecord, OneTrustAssessmentNestedQuestion, OneTrustAssessmentQuestion, OneTrustAssessmentQuestionOption, OneTrustAssessmentQuestionResponses, OneTrustAssessmentQuestionRisk, OneTrustAssessmentResponses, OneTrustAssessmentSection, OneTrustAssessmentSectionHeader, OneTrustAssessmentSectionHeaderRiskStatistics, OneTrustAssessmentSectionSubmittedBy, OneTrustAssessmentStatus, OneTrustEnrichedAssessment, OneTrustEnrichedAssessmentQuestion, OneTrustEnrichedAssessmentResponse, OneTrustEnrichedAssessmentSection, OneTrustEnrichedAssessments, OneTrustEnrichedRisk, OneTrustEnrichedRisks, OneTrustEnrichedUser, OneTrustGetAssessmentResponse, OneTrustGetListOfAssessmentsResponse, OneTrustGetRiskResponse, OneTrustGetUserResponse, OneTrustPrimaryEntityDetails, OneTrustQuestionComment, OneTrustQuestionComments, OneTrustRiskCategories, OneTrustRiskReference, OneTrustRiskReferences, OneTrustRiskTemplate, OneTrustUserDetails, OneTrustUserEmail, OneTrustUserEmails, OneTrustUserGroup, OneTrustUserGroups, OneTrustUserMetadata, OneTrustUserName, OptionalConfigurableColorPaletteColor, PROMPT_FILE_PURPOSE_TO_OPEN_AI, PaddedContentLayout, Preference, PreferenceQueryResponseItem, PreferenceStoreAuthLevel, PreferenceStoreConsentFields, PreferenceStoreIdentifier, PreferenceStoreKeyConditionals, PreferenceStorePurposeResponse, PreferenceStorePurposeUpdate, PreferenceStoreSystemAttributes, PreferenceStoreWorkflowSettings, PreferenceTopicType, PreferenceUpdateItem, PreflightRequestStatus, PrivacyCenterComponentStyles, PrivacyCenterConfigurableColorPalette, PrivacyCenterFont, PrivacyCenterFontBasic, PrivacyCenterTextStyles, PrivacyCenterThemePartial, ProcessingActivityAttribute, ProcessingActivityAttributeSyncColumn, ProcessingPurpose, ProcessingPurposeSubCategoryAttribute, ProcessingPurposeSubCategoryAttributeSyncColumn, PromptAVendorEmailCompletionLinkType, PromptAVendorEmailSendType, PromptFilePurpose, PromptResponseFormat, PromptRunProductArea, PromptStatus, QueueStatus, REQUEST_ACTION_OPT_IN_TO_OPT_OUT, REQUEST_ACTION_OPT_OUT_TO_OPT_IN, RegimeKey, RegionDetectionMethod, RegionsOperator, RequestAction, RequestActionObjectResolver, RequestActionOptIn, RequestActionOptOut, RequestDataSiloStatus, RequestEnricherStatus, RequestOrigin, RequestStatus, RequiredConfigurableColorPaletteColor, RetentionScheduleOperation, RetentionScheduleType, RetentionType, RgbHexString, RgbaHexString, SQLDriverWithDataMapping, ScopeDefinition, ScopeName, ScopeType, SecondLayerConfig, SecondLayerTheme, SemicolonDelimitedRegimeKeyString, ShadowRootOptions, SharedTopLevelConfig, SharedTopLevelTheme, SignedIabAgreementOption, SombraStandardScope, StaticTeamType, SubDataPointAttribute, SubDataPointAttributeSyncColumn, SubDataPointDataSubCategoryGuessStatus, TRANSCEND_SCOPES, TableEncryptionType, TelemetryPartitionStrategy, TemplateVariableModelName, Text, ThemeConfiguration, ThemeConfigurationBannerIntoModal, ThemeConfigurationBannerOnly, ThemeConfigurationModalOnly, ThemeKey, ToggleTheme, TranscendProduct, UIConfiguration, UIConfigurationBannerIntoModal, UIConfigurationBannerOnly, UIConfigurationModalOnly, UnknownRequestPolicy, UnstructuredSubDataPointRecommendationStatus, UspapiOption, VariantKey, VendorAttribute, VendorAttributeSyncColumn, VerticalAlign, getRegistryLink };
|
|
61913
|
+
export { AbsoluteUrlString, ActionItemCode, ActionItemPriorityOverride, AssessmentFormStatus, AssessmentFormTemplateSource, AssessmentFormTemplateStatus, AssessmentQuestionSubType, AssessmentQuestionType, AssessmentSyncColumn, AssessmentSyncColumnAttribute, AssessmentSyncColumnImmutable, AssessmentSyncModel, AssessmentsDisplayLogicAction, AttributeKeyType, AttributeSupportedResourceType, AutofocusToggle, AutofocusValues, BackendSyncOption, Background, Border, Breakpoint, BreakpointType, BrowserTimeZone, BusinessEntityAttribute, BusinessEntityAttributeSyncColumn, ButtonAction, ButtonConfig, ButtonTheme, ButtonThemeIndex, ButtonType, CODE_PACKAGE_TYPE_TO_LINK, COUNTRIES, COUNTRY_LOOKUP, ChatCompletionMessage, ChatCompletionRole, CloseButtonTheme, CodePackageType, CommonLayerConfig, CommonLayerTheme, CommunicationIdentifierType, ComparisonOperator, CompletedRequestStatus, ConfidenceLabel, ConfigurableColorPaletteColor, ConsentBundleType, ConsentPrecedenceOption, ConsentTrackerSource, ConsentTrackerStatus, ConsentTrackerType, ContainerTheme, ContentFlows, ContentLayout, Controllership, CookieOrderField, CspOption, CssUnitString, CustomEnricherType, CustomFieldApiInput, CustomizableComponent, CustomizableText, DEFAULT_MACROREGIONS_MAP, DOMElementId, DataCategoryType, DataFlowOrderField, DataFlowScope, DataFlowType, DataProtectionImpactAssessmentStatus, DataSiloAttribute, DataSiloAttributeSyncColumn, DataSubCategoryAttribute, DataSubCategoryAttributeSyncColumn, DatabaseDriver, DatabaseIntegration, DatabaseSqlVariablesForPrivacyRequest, DatabaseVariables, DecryptionStatus, DefaultConsentOption, DefaultDataSubCategoryType, DefaultPurposeSubCategoryType, DescriptionTextTheme, EXCEPTIONAL_RESERVATIONS, EXCEPTIONAL_RESERVATION_LOOKUP, EnricherType, FirstLayerConfig, FirstLayerTheme, FooterConfig, FooterTheme, FullWidthContentLayout, HeaderTheme, HorizontalAlign, ISO_31661, ISO_31662, Icon, IdentifierType, InitEnricherType, IntegerString, InternalDataSiloObjectResolver, IsoCountryCode, IsoCountrySubdivisionCode, LargeLanguageModelClient, Link, LoadOptions, LocalSyncOption, LogicOperator, LogoPosition, MacroRegion, ModalButtonActions, ModalButtonConfig, NORMALIZE_PHONE_NUMBER, OneTrustApprover, OneTrustAssessment, OneTrustAssessmentCreatedBy, OneTrustAssessmentCsvHeader, OneTrustAssessmentCsvRecord, OneTrustAssessmentNestedQuestion, OneTrustAssessmentQuestion, OneTrustAssessmentQuestionOption, OneTrustAssessmentQuestionResponses, OneTrustAssessmentQuestionRisk, OneTrustAssessmentResponses, OneTrustAssessmentSection, OneTrustAssessmentSectionHeader, OneTrustAssessmentSectionHeaderRiskStatistics, OneTrustAssessmentSectionSubmittedBy, OneTrustAssessmentStatus, OneTrustEnrichedAssessment, OneTrustEnrichedAssessmentQuestion, OneTrustEnrichedAssessmentResponse, OneTrustEnrichedAssessmentSection, OneTrustEnrichedAssessments, OneTrustEnrichedRisk, OneTrustEnrichedRisks, OneTrustEnrichedUser, OneTrustGetAssessmentResponse, OneTrustGetListOfAssessmentsResponse, OneTrustGetRiskResponse, OneTrustGetUserResponse, OneTrustPrimaryEntityDetails, OneTrustQuestionComment, OneTrustQuestionComments, OneTrustRiskCategories, OneTrustRiskReference, OneTrustRiskReferences, OneTrustRiskTemplate, OneTrustUserDetails, OneTrustUserEmail, OneTrustUserEmails, OneTrustUserGroup, OneTrustUserGroups, OneTrustUserMetadata, OneTrustUserName, OptionalConfigurableColorPaletteColor, OrderDirection, PROMPT_FILE_PURPOSE_TO_OPEN_AI, PaddedContentLayout, Preference, PreferenceQueryResponseItem, PreferenceStoreAuthLevel, PreferenceStoreConsentFields, PreferenceStoreIdentifier, PreferenceStoreKeyConditionals, PreferenceStorePurposeResponse, PreferenceStorePurposeUpdate, PreferenceStoreSystemAttributes, PreferenceStoreWorkflowSettings, PreferenceTopicType, PreferenceUpdateItem, PreflightRequestStatus, PrivacyCenterComponentStyles, PrivacyCenterConfigurableColorPalette, PrivacyCenterFont, PrivacyCenterFontBasic, PrivacyCenterTextStyles, PrivacyCenterThemePartial, ProcessingActivityAttribute, ProcessingActivityAttributeSyncColumn, ProcessingPurpose, ProcessingPurposeSubCategoryAttribute, ProcessingPurposeSubCategoryAttributeSyncColumn, PromptAVendorEmailCompletionLinkType, PromptAVendorEmailSendType, PromptFilePurpose, PromptResponseFormat, PromptRunProductArea, PromptStatus, QueueStatus, REQUEST_ACTION_OPT_IN_TO_OPT_OUT, REQUEST_ACTION_OPT_OUT_TO_OPT_IN, RegimeKey, RegionDetectionMethod, RegionsOperator, RequestAction, RequestActionObjectResolver, RequestActionOptIn, RequestActionOptOut, RequestDataSiloStatus, RequestEnricherStatus, RequestOrigin, RequestStatus, RequiredConfigurableColorPaletteColor, RetentionScheduleOperation, RetentionScheduleType, RetentionType, RgbHexString, RgbaHexString, SQLDriverWithDataMapping, ScopeDefinition, ScopeName, ScopeType, SecondLayerConfig, SecondLayerTheme, SemicolonDelimitedRegimeKeyString, ShadowRootOptions, SharedTopLevelConfig, SharedTopLevelTheme, SignedIabAgreementOption, SombraStandardScope, StaticTeamType, SubDataPointAttribute, SubDataPointAttributeSyncColumn, SubDataPointDataSubCategoryGuessStatus, TRANSCEND_SCOPES, TableEncryptionType, TelemetryPartitionStrategy, TemplateVariableModelName, Text, ThemeConfiguration, ThemeConfigurationBannerIntoModal, ThemeConfigurationBannerOnly, ThemeConfigurationModalOnly, ThemeKey, ToggleTheme, TranscendProduct, TriageAction, UIConfiguration, UIConfigurationBannerIntoModal, UIConfigurationBannerOnly, UIConfigurationModalOnly, UnknownRequestPolicy, UnstructuredSubDataPointRecommendationStatus, UspapiOption, VariantKey, VendorAttribute, VendorAttributeSyncColumn, VerticalAlign, getRegistryLink };
|
|
61853
61914
|
//# sourceMappingURL=index.d.mts.map
|