@transcend-io/privacy-types 5.0.1 → 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 CHANGED
@@ -795,16 +795,6 @@ type AssessmentSyncColumnAttribute = DataSiloAttribute | SubDataPointAttribute |
795
795
  type AssessmentSyncColumnImmutable = DataSiloAttributeImmutable | SubDataPointAttributeImmutable | VendorAttributeImmutable | DataSubCategoryAttributeImmutable | ProcessingPurposeSubCategoryAttributeImmutable | BusinessEntityAttributeImmutable | ProcessingActivityAttributeImmutable;
796
796
  /** The type of the AssessmentQuestion's syncColumn field */
797
797
  declare const AssessmentSyncColumn: {
798
- URL: AssessmentSyncColumnImmutable;
799
- DESCRIPTION: AssessmentSyncColumnImmutable;
800
- DATA_PROCESSING_AGREEMENT_STATUS: AssessmentSyncColumnImmutable;
801
- DATA_PROTECTION_IMPACT_ASSESSMENT_STATUS: AssessmentSyncColumnImmutable;
802
- DEPRECATION_STATE: AssessmentSyncColumnImmutable;
803
- RECOMMENDED_FOR_CONSENT: AssessmentSyncColumnImmutable;
804
- RECOMMENDED_FOR_PRIVACY: AssessmentSyncColumnImmutable;
805
- RETENTION_TYPE: AssessmentSyncColumnImmutable;
806
- CONTROLLERSHIP: AssessmentSyncColumnImmutable;
807
- HAS_PERSONAL_DATA: AssessmentSyncColumnImmutable;
808
798
  CONNECT_START_TIME: AssessmentSyncColumnImmutable;
809
799
  CONNECTION_STATE: AssessmentSyncColumnImmutable;
810
800
  CONTACT_EMAIL: AssessmentSyncColumnImmutable;
@@ -813,12 +803,16 @@ declare const AssessmentSyncColumn: {
813
803
  COUNTRY_SUB_DIVISION: AssessmentSyncColumnImmutable;
814
804
  CREDENTIALS_REFRESH_SCHEDULED_AT: AssessmentSyncColumnImmutable;
815
805
  DATA_PROCESSING_AGREEMENT_LINK: AssessmentSyncColumnImmutable;
806
+ DATA_PROCESSING_AGREEMENT_STATUS: AssessmentSyncColumnImmutable;
816
807
  DATA_RETENTION_NOTE: AssessmentSyncColumnImmutable;
817
808
  DEFAULT_ACCESS_REQUEST_VISIBILITY: AssessmentSyncColumnImmutable;
818
809
  DELETED_AT: AssessmentSyncColumnImmutable;
810
+ DEPRECATION_STATE: AssessmentSyncColumnImmutable;
811
+ DESCRIPTION: AssessmentSyncColumnImmutable;
819
812
  EMAIL_SENDING_LOCK: AssessmentSyncColumnImmutable;
820
813
  EXPIRED_AT: AssessmentSyncColumnImmutable;
821
814
  EXTERNAL_ID: AssessmentSyncColumnImmutable;
815
+ HAS_PERSONAL_DATA: AssessmentSyncColumnImmutable;
822
816
  HEADERS: AssessmentSyncColumnImmutable;
823
817
  IS_LIVE: AssessmentSyncColumnImmutable;
824
818
  LAST_CONNECTED_AT: AssessmentSyncColumnImmutable;
@@ -837,6 +831,8 @@ declare const AssessmentSyncColumn: {
837
831
  PROMPT_A_VENDOR_EMAIL_SEND_FREQUENCY: AssessmentSyncColumnImmutable;
838
832
  PROMPT_A_VENDOR_EMAIL_SEND_TYPE: AssessmentSyncColumnImmutable;
839
833
  PROMPT_A_VENDOR_EMAIL_START_AT: AssessmentSyncColumnImmutable;
834
+ RECOMMENDED_FOR_CONSENT: AssessmentSyncColumnImmutable;
835
+ RECOMMENDED_FOR_PRIVACY: AssessmentSyncColumnImmutable;
840
836
  RECONNECT_FORM_ITEMS: AssessmentSyncColumnImmutable;
841
837
  SAAS_CONTEXT: AssessmentSyncColumnImmutable;
842
838
  SECRET_HEADERS: AssessmentSyncColumnImmutable;
@@ -844,6 +840,7 @@ declare const AssessmentSyncColumn: {
844
840
  SUBDOMAIN: AssessmentSyncColumnImmutable;
845
841
  TITLE: AssessmentSyncColumnImmutable;
846
842
  TYPE: AssessmentSyncColumnImmutable;
843
+ URL: AssessmentSyncColumnImmutable;
847
844
  WEBSITE_URL: AssessmentSyncColumnImmutable;
848
845
  TRANSFER_REGIONS: AssessmentSyncColumnImmutable;
849
846
  CONTROLLERSHIPS: AssessmentSyncColumnImmutable;
@@ -860,6 +857,8 @@ declare const AssessmentSyncColumn: {
860
857
  CONTEXT: AssessmentSyncColumnImmutable;
861
858
  CONTENT_CLASSIFICATION_STATUS: AssessmentSyncColumnImmutable;
862
859
  NON_NULL_CHECK_COMPLETED: AssessmentSyncColumnImmutable;
860
+ CONTROLLERSHIP: AssessmentSyncColumnImmutable;
861
+ RETENTION_TYPE: AssessmentSyncColumnImmutable;
863
862
  RETENTION_PERIOD: AssessmentSyncColumnImmutable;
864
863
  SCAN_RUN_ID: AssessmentSyncColumnImmutable;
865
864
  DATA_TYPE: AssessmentSyncColumnImmutable;
@@ -881,6 +880,7 @@ declare const AssessmentSyncColumn: {
881
880
  SECURITY_MEASURE_DETAILS: AssessmentSyncColumnImmutable;
882
881
  STORAGE_REGIONS: AssessmentSyncColumnImmutable;
883
882
  DATA_PROTECTION_IMPACT_ASSESSMENT_LINK: AssessmentSyncColumnImmutable;
883
+ DATA_PROTECTION_IMPACT_ASSESSMENT_STATUS: AssessmentSyncColumnImmutable;
884
884
  };
885
885
  /** Type override */
886
886
  type AssessmentSyncColumn = (typeof AssessmentSyncColumn)[keyof typeof AssessmentSyncColumn];
@@ -1580,6 +1580,15 @@ declare const LocalSyncOption: {
1580
1580
  };
1581
1581
  /** Type override */
1582
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];
1583
1592
  /**
1584
1593
  * The possible options for configuring default consent
1585
1594
  *
@@ -1594,6 +1603,56 @@ declare const DefaultConsentOption: {
1594
1603
  };
1595
1604
  /** Override type */
1596
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];
1597
1656
  //#endregion
1598
1657
  //#region src/consentUi.d.ts
1599
1658
  /**
@@ -3055,9 +3114,9 @@ declare const LoadOptions: t.IntersectionC<[t.TypeC<{
3055
3114
  }>]>;
3056
3115
  alwaysShowScrollbar: t.BooleanC;
3057
3116
  horizontalAlign: t.KeyofC<{
3058
- right: unknown;
3059
- left: unknown;
3060
3117
  center: unknown;
3118
+ left: unknown;
3119
+ right: unknown;
3061
3120
  }>;
3062
3121
  cookieAndPrivacyPolicy: t.PartialC<{
3063
3122
  linkColor: t.StringC;
@@ -3090,9 +3149,9 @@ declare const LoadOptions: t.IntersectionC<[t.TypeC<{
3090
3149
  "horizontal-flat": unknown;
3091
3150
  }>;
3092
3151
  verticalAlign: t.KeyofC<{
3093
- center: unknown;
3094
3152
  top: unknown;
3095
3153
  bottom: unknown;
3154
+ center: unknown;
3096
3155
  }>;
3097
3156
  }>]>;
3098
3157
  }>]>, t.IntersectionC<[t.TypeC<{
@@ -3129,9 +3188,9 @@ declare const LoadOptions: t.IntersectionC<[t.TypeC<{
3129
3188
  }>]>;
3130
3189
  alwaysShowScrollbar: t.BooleanC;
3131
3190
  horizontalAlign: t.KeyofC<{
3132
- right: unknown;
3133
- left: unknown;
3134
3191
  center: unknown;
3192
+ left: unknown;
3193
+ right: unknown;
3135
3194
  }>;
3136
3195
  cookieAndPrivacyPolicy: t.PartialC<{
3137
3196
  linkColor: t.StringC;
@@ -3237,9 +3296,9 @@ declare const LoadOptions: t.IntersectionC<[t.TypeC<{
3237
3296
  }>]>;
3238
3297
  alwaysShowScrollbar: t.BooleanC;
3239
3298
  horizontalAlign: t.KeyofC<{
3240
- right: unknown;
3241
- left: unknown;
3242
3299
  center: unknown;
3300
+ left: unknown;
3301
+ right: unknown;
3243
3302
  }>;
3244
3303
  cookieAndPrivacyPolicy: t.PartialC<{
3245
3304
  linkColor: t.StringC;
@@ -3272,9 +3331,9 @@ declare const LoadOptions: t.IntersectionC<[t.TypeC<{
3272
3331
  "horizontal-flat": unknown;
3273
3332
  }>;
3274
3333
  verticalAlign: t.KeyofC<{
3275
- center: unknown;
3276
3334
  top: unknown;
3277
3335
  bottom: unknown;
3336
+ center: unknown;
3278
3337
  }>;
3279
3338
  }>]>;
3280
3339
  secondLayer: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
@@ -3298,9 +3357,9 @@ declare const LoadOptions: t.IntersectionC<[t.TypeC<{
3298
3357
  }>]>;
3299
3358
  alwaysShowScrollbar: t.BooleanC;
3300
3359
  horizontalAlign: t.KeyofC<{
3301
- right: unknown;
3302
- left: unknown;
3303
3360
  center: unknown;
3361
+ left: unknown;
3362
+ right: unknown;
3304
3363
  }>;
3305
3364
  cookieAndPrivacyPolicy: t.PartialC<{
3306
3365
  linkColor: t.StringC;
@@ -3836,9 +3895,9 @@ declare const CommonLayerTheme: t.IntersectionC<[t.TypeC<{
3836
3895
  }>]>;
3837
3896
  alwaysShowScrollbar: t.BooleanC;
3838
3897
  horizontalAlign: t.KeyofC<{
3839
- right: unknown;
3840
- left: unknown;
3841
3898
  center: unknown;
3899
+ left: unknown;
3900
+ right: unknown;
3842
3901
  }>;
3843
3902
  cookieAndPrivacyPolicy: t.PartialC<{
3844
3903
  linkColor: t.StringC;
@@ -3889,9 +3948,9 @@ declare const FirstLayerTheme: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
3889
3948
  }>]>;
3890
3949
  alwaysShowScrollbar: t.BooleanC;
3891
3950
  horizontalAlign: t.KeyofC<{
3892
- right: unknown;
3893
- left: unknown;
3894
3951
  center: unknown;
3952
+ left: unknown;
3953
+ right: unknown;
3895
3954
  }>;
3896
3955
  cookieAndPrivacyPolicy: t.PartialC<{
3897
3956
  linkColor: t.StringC;
@@ -3924,9 +3983,9 @@ declare const FirstLayerTheme: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
3924
3983
  "horizontal-flat": unknown;
3925
3984
  }>;
3926
3985
  verticalAlign: t.KeyofC<{
3927
- center: unknown;
3928
3986
  top: unknown;
3929
3987
  bottom: unknown;
3988
+ center: unknown;
3930
3989
  }>;
3931
3990
  }>]>;
3932
3991
  /** Override type */
@@ -3953,9 +4012,9 @@ declare const SecondLayerTheme: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
3953
4012
  }>]>;
3954
4013
  alwaysShowScrollbar: t.BooleanC;
3955
4014
  horizontalAlign: t.KeyofC<{
3956
- right: unknown;
3957
- left: unknown;
3958
4015
  center: unknown;
4016
+ left: unknown;
4017
+ right: unknown;
3959
4018
  }>;
3960
4019
  cookieAndPrivacyPolicy: t.PartialC<{
3961
4020
  linkColor: t.StringC;
@@ -4094,9 +4153,9 @@ declare const ThemeConfigurationBannerOnly: t.IntersectionC<[t.TypeC<{
4094
4153
  }>]>;
4095
4154
  alwaysShowScrollbar: t.BooleanC;
4096
4155
  horizontalAlign: t.KeyofC<{
4097
- right: unknown;
4098
- left: unknown;
4099
4156
  center: unknown;
4157
+ left: unknown;
4158
+ right: unknown;
4100
4159
  }>;
4101
4160
  cookieAndPrivacyPolicy: t.PartialC<{
4102
4161
  linkColor: t.StringC;
@@ -4129,9 +4188,9 @@ declare const ThemeConfigurationBannerOnly: t.IntersectionC<[t.TypeC<{
4129
4188
  "horizontal-flat": unknown;
4130
4189
  }>;
4131
4190
  verticalAlign: t.KeyofC<{
4132
- center: unknown;
4133
4191
  top: unknown;
4134
4192
  bottom: unknown;
4193
+ center: unknown;
4135
4194
  }>;
4136
4195
  }>]>;
4137
4196
  }>]>;
@@ -4172,9 +4231,9 @@ declare const ThemeConfigurationModalOnly: t.IntersectionC<[t.TypeC<{
4172
4231
  }>]>;
4173
4232
  alwaysShowScrollbar: t.BooleanC;
4174
4233
  horizontalAlign: t.KeyofC<{
4175
- right: unknown;
4176
- left: unknown;
4177
4234
  center: unknown;
4235
+ left: unknown;
4236
+ right: unknown;
4178
4237
  }>;
4179
4238
  cookieAndPrivacyPolicy: t.PartialC<{
4180
4239
  linkColor: t.StringC;
@@ -4284,9 +4343,9 @@ declare const ThemeConfigurationBannerIntoModal: t.IntersectionC<[t.TypeC<{
4284
4343
  }>]>;
4285
4344
  alwaysShowScrollbar: t.BooleanC;
4286
4345
  horizontalAlign: t.KeyofC<{
4287
- right: unknown;
4288
- left: unknown;
4289
4346
  center: unknown;
4347
+ left: unknown;
4348
+ right: unknown;
4290
4349
  }>;
4291
4350
  cookieAndPrivacyPolicy: t.PartialC<{
4292
4351
  linkColor: t.StringC;
@@ -4319,9 +4378,9 @@ declare const ThemeConfigurationBannerIntoModal: t.IntersectionC<[t.TypeC<{
4319
4378
  "horizontal-flat": unknown;
4320
4379
  }>;
4321
4380
  verticalAlign: t.KeyofC<{
4322
- center: unknown;
4323
4381
  top: unknown;
4324
4382
  bottom: unknown;
4383
+ center: unknown;
4325
4384
  }>;
4326
4385
  }>]>;
4327
4386
  secondLayer: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
@@ -4345,9 +4404,9 @@ declare const ThemeConfigurationBannerIntoModal: t.IntersectionC<[t.TypeC<{
4345
4404
  }>]>;
4346
4405
  alwaysShowScrollbar: t.BooleanC;
4347
4406
  horizontalAlign: t.KeyofC<{
4348
- right: unknown;
4349
- left: unknown;
4350
4407
  center: unknown;
4408
+ left: unknown;
4409
+ right: unknown;
4351
4410
  }>;
4352
4411
  cookieAndPrivacyPolicy: t.PartialC<{
4353
4412
  linkColor: t.StringC;
@@ -4457,9 +4516,9 @@ declare const ThemeConfiguration: t.UnionC<[t.IntersectionC<[t.TypeC<{
4457
4516
  }>]>;
4458
4517
  alwaysShowScrollbar: t.BooleanC;
4459
4518
  horizontalAlign: t.KeyofC<{
4460
- right: unknown;
4461
- left: unknown;
4462
4519
  center: unknown;
4520
+ left: unknown;
4521
+ right: unknown;
4463
4522
  }>;
4464
4523
  cookieAndPrivacyPolicy: t.PartialC<{
4465
4524
  linkColor: t.StringC;
@@ -4492,9 +4551,9 @@ declare const ThemeConfiguration: t.UnionC<[t.IntersectionC<[t.TypeC<{
4492
4551
  "horizontal-flat": unknown;
4493
4552
  }>;
4494
4553
  verticalAlign: t.KeyofC<{
4495
- center: unknown;
4496
4554
  top: unknown;
4497
4555
  bottom: unknown;
4556
+ center: unknown;
4498
4557
  }>;
4499
4558
  }>]>;
4500
4559
  }>]>, t.IntersectionC<[t.TypeC<{
@@ -4531,9 +4590,9 @@ declare const ThemeConfiguration: t.UnionC<[t.IntersectionC<[t.TypeC<{
4531
4590
  }>]>;
4532
4591
  alwaysShowScrollbar: t.BooleanC;
4533
4592
  horizontalAlign: t.KeyofC<{
4534
- right: unknown;
4535
- left: unknown;
4536
4593
  center: unknown;
4594
+ left: unknown;
4595
+ right: unknown;
4537
4596
  }>;
4538
4597
  cookieAndPrivacyPolicy: t.PartialC<{
4539
4598
  linkColor: t.StringC;
@@ -4639,9 +4698,9 @@ declare const ThemeConfiguration: t.UnionC<[t.IntersectionC<[t.TypeC<{
4639
4698
  }>]>;
4640
4699
  alwaysShowScrollbar: t.BooleanC;
4641
4700
  horizontalAlign: t.KeyofC<{
4642
- right: unknown;
4643
- left: unknown;
4644
4701
  center: unknown;
4702
+ left: unknown;
4703
+ right: unknown;
4645
4704
  }>;
4646
4705
  cookieAndPrivacyPolicy: t.PartialC<{
4647
4706
  linkColor: t.StringC;
@@ -4674,9 +4733,9 @@ declare const ThemeConfiguration: t.UnionC<[t.IntersectionC<[t.TypeC<{
4674
4733
  "horizontal-flat": unknown;
4675
4734
  }>;
4676
4735
  verticalAlign: t.KeyofC<{
4677
- center: unknown;
4678
4736
  top: unknown;
4679
4737
  bottom: unknown;
4738
+ center: unknown;
4680
4739
  }>;
4681
4740
  }>]>;
4682
4741
  secondLayer: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
@@ -4700,9 +4759,9 @@ declare const ThemeConfiguration: t.UnionC<[t.IntersectionC<[t.TypeC<{
4700
4759
  }>]>;
4701
4760
  alwaysShowScrollbar: t.BooleanC;
4702
4761
  horizontalAlign: t.KeyofC<{
4703
- right: unknown;
4704
- left: unknown;
4705
4762
  center: unknown;
4763
+ left: unknown;
4764
+ right: unknown;
4706
4765
  }>;
4707
4766
  cookieAndPrivacyPolicy: t.PartialC<{
4708
4767
  linkColor: t.StringC;
@@ -61851,5 +61910,5 @@ declare const PrivacyCenterThemePartial: t.IntersectionC<[t.TypeC<{
61851
61910
  /** Type override */
61852
61911
  type PrivacyCenterThemePartial = t.TypeOf<typeof PrivacyCenterThemePartial>;
61853
61912
  //#endregion
61854
- 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 };
61855
61914
  //# sourceMappingURL=index.d.mts.map