@transcend-io/privacy-types 5.20.0 → 5.23.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
@@ -1507,7 +1507,11 @@ type TelemetryPartitionStrategy = (typeof TelemetryPartitionStrategy)[keyof type
1507
1507
  */
1508
1508
  declare const ConsentPrecedenceOption: {
1509
1509
  User: "user";
1510
- Signal: "signal";
1510
+ /**
1511
+ * @deprecated Use Signals instead
1512
+ */
1513
+ Signal: "signal"; /** Detected privacy signals take precedence over confirmed consent */
1514
+ Signals: "signals";
1511
1515
  };
1512
1516
  /** Override type */
1513
1517
  type ConsentPrecedenceOption = (typeof ConsentPrecedenceOption)[keyof typeof ConsentPrecedenceOption];
@@ -3642,6 +3646,7 @@ declare const LoadOptions: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
3642
3646
  forceTheme: t.StringC;
3643
3647
  cssFolder: t.StringC;
3644
3648
  hostThemeMap: t.RecordC<t.StringC, t.StringC>;
3649
+ customCssUrlMap: t.RecordC<t.StringC, t.StringC>;
3645
3650
  }>]>, t.TypeC<{
3646
3651
  themeConfigMap: t.RecordC<t.StringC, t.UnionC<[t.TypeC<{
3647
3652
  firstLayer: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
@@ -5343,6 +5348,7 @@ declare const MobileUiLoadOptions: t.IntersectionC<[t.IntersectionC<[t.TypeC<{
5343
5348
  forceTheme: t.StringC;
5344
5349
  cssFolder: t.StringC;
5345
5350
  hostThemeMap: t.RecordC<t.StringC, t.StringC>;
5351
+ customCssUrlMap: t.RecordC<t.StringC, t.StringC>;
5346
5352
  }>]>, t.TypeC<{
5347
5353
  themeConfigMap: t.RecordC<t.StringC, t.UnionC<[t.IntersectionC<[t.TypeC<{
5348
5354
  buttonThemes: t.ArrayC<t.UnionC<[t.IntersectionC<[t.TypeC<{
@@ -10931,6 +10937,12 @@ declare const DsrErrorCode: {
10931
10937
  * workflow config. `dataSiloIds` may only narrow the workflow's connected set.
10932
10938
  */
10933
10939
  DataSiloNotInWorkflow: "DATA_SILO_NOT_IN_WORKFLOW";
10940
+ /**
10941
+ * This request set both `dataSiloIds` and `ignoreDataSiloIds`. The two are
10942
+ * mutually exclusive: `dataSiloIds` restricts fulfillment to a subset of the
10943
+ * workflow's connected silos, `ignoreDataSiloIds` excludes silos from it.
10944
+ */
10945
+ ConflictingDataSiloFilters: "CONFLICTING_DATA_SILO_FILTERS";
10934
10946
  /**
10935
10947
  * The `type` asserted on this request does not match the workflow config's
10936
10948
  * request action. `type` is optional; omit it to derive from the workflow.
@@ -11037,6 +11049,7 @@ type DsrErrorMessageMap = {
11037
11049
  [DsrErrorCode.UnsupportedIdentifierName]: (name: string) => string;
11038
11050
  [DsrErrorCode.MissingRequiredEmail]: () => string;
11039
11051
  [DsrErrorCode.DataSiloNotInWorkflow]: (input: DataSiloNotInWorkflowMessageInput) => string;
11052
+ [DsrErrorCode.ConflictingDataSiloFilters]: () => string;
11040
11053
  [DsrErrorCode.TypeNotMatchingWorkflow]: (input: TypeNotMatchingWorkflowMessageInput) => string;
11041
11054
  [DsrErrorCode.SubjectTypeNotMatchingWorkflow]: (input: SubjectTypeNotMatchingWorkflowMessageInput) => string;
11042
11055
  [DsrErrorCode.RegionNotInWorkflow]: (input: RegionNotInWorkflowMessageInput) => string;
@@ -11080,6 +11093,7 @@ declare const DSR_ERROR_MESSAGE: {
11080
11093
  workflowConfigId,
11081
11094
  dataSiloIds
11082
11095
  }: DataSiloNotInWorkflowMessageInput) => string;
11096
+ readonly CONFLICTING_DATA_SILO_FILTERS: () => string;
11083
11097
  readonly TYPE_NOT_MATCHING_WORKFLOW: ({
11084
11098
  workflowConfigId,
11085
11099
  providedType,
@@ -47471,6 +47485,15 @@ declare const Preference: t.TypeC<{
47471
47485
  }>;
47472
47486
  /** Override type. */
47473
47487
  type Preference = t.TypeOf<typeof Preference>;
47488
+ /** Maximum length for a preference-store purpose `sourceSystem` label. */
47489
+ declare const MAX_SOURCE_SYSTEM_LENGTH = 128;
47490
+ /**
47491
+ * Free-form source-system label written/read on preference-store purpose items.
47492
+ * Non-empty and at most {@link MAX_SOURCE_SYSTEM_LENGTH} characters.
47493
+ */
47494
+ declare const SourceSystemLabel: t.RefinementC<t.StringC, string>;
47495
+ /** Override type. */
47496
+ type SourceSystemLabel = t.TypeOf<typeof SourceSystemLabel>;
47474
47497
  /**
47475
47498
  * The format for a preference store purpose
47476
47499
  */
@@ -47485,7 +47508,9 @@ declare const PreferenceStorePurposeResponse: t.IntersectionC<[t.TypeC<{
47485
47508
  selectValue: t.UnionC<[t.StringC, t.NullC]>; /** The select values of the preference */
47486
47509
  selectValues: t.UnionC<[t.ArrayC<t.StringC>, t.NullC]>;
47487
47510
  }>;
47488
- }>>;
47511
+ }>>; /** Caller-provided source system label (e.g. "Adobe") */
47512
+ sourceSystem: t.RefinementC<t.StringC, string>; /** Timestamp of when the purpose was last updated (ISO 8601) */
47513
+ timestamp: t.StringC;
47489
47514
  }>]>;
47490
47515
  /** Override type. */
47491
47516
  type PreferenceStorePurposeResponse = t.TypeOf<typeof PreferenceStorePurposeResponse>;
@@ -47518,7 +47543,9 @@ declare const PreferenceQueryResponseItem: t.IntersectionC<[t.TypeC<{
47518
47543
  selectValue: t.UnionC<[t.StringC, t.NullC]>; /** The select values of the preference */
47519
47544
  selectValues: t.UnionC<[t.ArrayC<t.StringC>, t.NullC]>;
47520
47545
  }>;
47521
- }>>;
47546
+ }>>; /** Caller-provided source system label (e.g. "Adobe") */
47547
+ sourceSystem: t.RefinementC<t.StringC, string>; /** Timestamp of when the purpose was last updated (ISO 8601) */
47548
+ timestamp: t.StringC;
47522
47549
  }>]>>;
47523
47550
  }>, t.PartialC<{
47524
47551
  /** Primary identifier of the user. */userId: t.StringC; /** Identifiers associated to the user */
@@ -52964,10 +52991,11 @@ declare const PreferenceStorePurposeUpdate: t.IntersectionC<[t.IntersectionC<[t.
52964
52991
  selectValue: t.UnionC<[t.StringC, t.NullC]>; /** The select values of the preference */
52965
52992
  selectValues: t.UnionC<[t.ArrayC<t.StringC>, t.NullC]>;
52966
52993
  }>;
52967
- }>>;
52994
+ }>>; /** Caller-provided source system label (e.g. "Adobe") */
52995
+ sourceSystem: t.RefinementC<t.StringC, string>; /** Timestamp of when the purpose was last updated (ISO 8601) */
52996
+ timestamp: t.StringC;
52968
52997
  }>]>, t.PartialC<{
52969
- /** Timestamp of when the purpose was last updated (ISO 8601) */timestamp: t.StringC; /** Additional tags to forward to the DSR event */
52970
- attributes: t.ArrayC<t.TypeC<{
52998
+ /** Additional tags to forward to the DSR event */attributes: t.ArrayC<t.TypeC<{
52971
52999
  /** The attribute key that houses the attribute values */key: t.StringC; /** The attribute values used to label resources */
52972
53000
  values: t.ArrayC<t.StringC>;
52973
53001
  }>>; /** Consent workflow settings */
@@ -58402,10 +58430,11 @@ declare const PreferenceUpdateItem: t.IntersectionC<[t.TypeC<{
58402
58430
  selectValue: t.UnionC<[t.StringC, t.NullC]>; /** The select values of the preference */
58403
58431
  selectValues: t.UnionC<[t.ArrayC<t.StringC>, t.NullC]>;
58404
58432
  }>;
58405
- }>>;
58433
+ }>>; /** Caller-provided source system label (e.g. "Adobe") */
58434
+ sourceSystem: t.RefinementC<t.StringC, string>; /** Timestamp of when the purpose was last updated (ISO 8601) */
58435
+ timestamp: t.StringC;
58406
58436
  }>]>, t.PartialC<{
58407
- /** Timestamp of when the purpose was last updated (ISO 8601) */timestamp: t.StringC; /** Additional tags to forward to the DSR event */
58408
- attributes: t.ArrayC<t.TypeC<{
58437
+ /** Additional tags to forward to the DSR event */attributes: t.ArrayC<t.TypeC<{
58409
58438
  /** The attribute key that houses the attribute values */key: t.StringC; /** The attribute values used to label resources */
58410
58439
  values: t.ArrayC<t.StringC>;
58411
58440
  }>>; /** Consent workflow settings */
@@ -64815,5 +64844,5 @@ declare const CollectDataSubjectRegions: {
64815
64844
  /** Override type */
64816
64845
  type CollectDataSubjectRegions = (typeof CollectDataSubjectRegions)[keyof typeof CollectDataSubjectRegions];
64817
64846
  //#endregion
64818
- export { AbsoluteUrlString, ActionItemCode, ActionItemPriorityOverride, AirgapBundleAnalyticsBinInterval, AirgapBundleAnalyticsDimension, AirgapBundleAnalyticsMetric, 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, CollectDataSubjectRegions, CommonLayerConfig, CommonLayerTheme, CommonLayerThemeMinimal, CommunicationIdentifierType, ComparisonOperator, CompletedRequestStatus, ConfidenceLabel, ConfigurableColorPaletteColor, ConsentBundleType, ConsentManagerAnalyticsDataSource, ConsentManagerMetricBin, ConsentPrecedenceOption, ConsentThemeInput, ConsentTrackerSource, ConsentTrackerStatus, ConsentTrackerType, ConsentUiUserFlow, ConsentVariantInput, ContainerTheme, ContentFlows, ContentLayout, Controllership, CookieOrderField, CspOption, CssUnitString, CustomEnricherType, CustomFieldApiInput, CustomFunctionLifecycleState, CustomFunctionPayloadType, CustomFunctionType, CustomFunctionVersionLifecycleState, CustomizableComponent, CustomizableText, DEFAULT_MACROREGIONS_MAP, DOMElementId, DROP_RECORD_ID_MAX_LENGTH, DSR_BULK_ERROR_MESSAGE, DSR_BULK_SUBMISSION_REJECTED_MESSAGE, DSR_ERROR_MESSAGE, DataCategoryType, DataFlowOrderField, DataFlowScope, DataFlowType, DataProtectionImpactAssessmentStatus, DataSiloAttribute, DataSiloAttributeSyncColumn, DataSiloNotInWorkflowMessageInput, DataSubCategoryAttribute, DataSubCategoryAttributeSyncColumn, DatabaseDriver, DatabaseIntegration, DatabaseSqlVariablesForPrivacyRequest, DatabaseVariables, DecryptionStatus, DefaultConsentOption, DefaultDataSubCategoryType, DefaultPurposeSubCategoryType, DescriptionTextTheme, DropListType, DsrBulkErrorCode, DsrBulkErrorMessageMap, DsrErrorCode, DsrErrorMessageMap, DsrRequestOutcome, EXCEPTIONAL_RESERVATIONS, EXCEPTIONAL_RESERVATION_LOOKUP, EnricherType, FirstLayerConfig, FirstLayerTheme, FirstLayerThemeMinimal, FooterConfig, FooterTheme, FullWidthContentLayout, HeaderTheme, HeaderThemeMinimal, HorizontalAlign, ISO_31661, ISO_31662, Icon, IdentifierType, InitEnricherType, IntegerString, InternalDataSiloObjectResolver, IsoCountryCode, IsoCountrySubdivisionCode, LargeLanguageModelClient, Link, LoadOptions, LocalSyncOption, LogicOperator, LogoPosition, MAX_DROP_RECORDS_PER_REQUEST, MAX_UNKNOWN_DROP_RECORDS_IN_ERROR, MacroRegion, MobileUiLoadOptions, 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, PolicyType, Preference, PreferenceQueryResponseItem, PreferenceStoreAuthLevel, PreferenceStoreConsentFields, PreferenceStoreIdentifier, PreferenceStoreKeyConditionals, PreferenceStorePurposeResponse, PreferenceStorePurposeUpdate, PreferenceStoreSystemAttributes, PreferenceStoreWorkflowSettings, PreferenceTopicType, PreferenceUpdateItem, PreflightRequestStatus, PrivacyCenterComponentStyles, PrivacyCenterConfigurableColorPalette, PrivacyCenterFont, PrivacyCenterFontBasic, PrivacyCenterFooterLayout, 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, REQUEST_SUBMISSION_LIMIT, RegimeKey, RegionDetectionMethod, RegionNotInWorkflowMessageInput, RegionsOperator, RequestAction, RequestActionObjectResolver, RequestActionOptIn, RequestActionOptOut, RequestDataSiloStatus, RequestEnricherStatus, RequestOrigin, RequestStatus, RequiredConfigurableColorPaletteColor, RestartIdentifierStrategy, RestartTimeLimitExceededMessageInput, RetentionScheduleOperation, RetentionScheduleType, RetentionType, RgbHexString, RgbaHexString, SQLDriverWithDataMapping, ScopeDefinition, ScopeName, ScopeType, SecondLayerConfig, SecondLayerTheme, SecondLayerThemeMinimal, SemicolonDelimitedRegimeKeyString, ShadowRootOptions, SharedTopLevelConfig, SharedTopLevelTheme, SignedIabAgreementOption, SombraStandardScope, StaticTeamType, SubDataPointAttribute, SubDataPointAttributeSyncColumn, SubDataPointDataSubCategoryGuessStatus, SubjectTypeNotMatchingWorkflowMessageInput, TRANSCEND_SCOPES, TableEncryptionType, TelemetryPartitionStrategy, TemplateVariableModelName, Text, ThemeConfiguration, ThemeConfigurationBannerIntoModal, ThemeConfigurationBannerIntoModalMinimal, ThemeConfigurationBannerOnly, ThemeConfigurationBannerOnlyMinimal, ThemeConfigurationMinimal, ThemeConfigurationModalOnly, ThemeConfigurationModalOnlyMinimal, ThemeKey, ToggleTheme, TranscendProduct, TriageAction, TypeNotMatchingWorkflowMessageInput, UIConfiguration, UIConfigurationBannerIntoModal, UIConfigurationBannerOnly, UIConfigurationModalOnly, URLHostString, UiVariantStatus, UnknownDropRecordsMessageInput, UnknownRequestPolicy, UnstructuredSubDataPointRecommendationStatus, UspapiOption, VariantKey, VendorAttribute, VendorAttributeSyncColumn, VerticalAlign, WorkflowConfigType, WorkflowConfigVisibility, getRegistryLink };
64847
+ export { AbsoluteUrlString, ActionItemCode, ActionItemPriorityOverride, AirgapBundleAnalyticsBinInterval, AirgapBundleAnalyticsDimension, AirgapBundleAnalyticsMetric, 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, CollectDataSubjectRegions, CommonLayerConfig, CommonLayerTheme, CommonLayerThemeMinimal, CommunicationIdentifierType, ComparisonOperator, CompletedRequestStatus, ConfidenceLabel, ConfigurableColorPaletteColor, ConsentBundleType, ConsentManagerAnalyticsDataSource, ConsentManagerMetricBin, ConsentPrecedenceOption, ConsentThemeInput, ConsentTrackerSource, ConsentTrackerStatus, ConsentTrackerType, ConsentUiUserFlow, ConsentVariantInput, ContainerTheme, ContentFlows, ContentLayout, Controllership, CookieOrderField, CspOption, CssUnitString, CustomEnricherType, CustomFieldApiInput, CustomFunctionLifecycleState, CustomFunctionPayloadType, CustomFunctionType, CustomFunctionVersionLifecycleState, CustomizableComponent, CustomizableText, DEFAULT_MACROREGIONS_MAP, DOMElementId, DROP_RECORD_ID_MAX_LENGTH, DSR_BULK_ERROR_MESSAGE, DSR_BULK_SUBMISSION_REJECTED_MESSAGE, DSR_ERROR_MESSAGE, DataCategoryType, DataFlowOrderField, DataFlowScope, DataFlowType, DataProtectionImpactAssessmentStatus, DataSiloAttribute, DataSiloAttributeSyncColumn, DataSiloNotInWorkflowMessageInput, DataSubCategoryAttribute, DataSubCategoryAttributeSyncColumn, DatabaseDriver, DatabaseIntegration, DatabaseSqlVariablesForPrivacyRequest, DatabaseVariables, DecryptionStatus, DefaultConsentOption, DefaultDataSubCategoryType, DefaultPurposeSubCategoryType, DescriptionTextTheme, DropListType, DsrBulkErrorCode, DsrBulkErrorMessageMap, DsrErrorCode, DsrErrorMessageMap, DsrRequestOutcome, EXCEPTIONAL_RESERVATIONS, EXCEPTIONAL_RESERVATION_LOOKUP, EnricherType, FirstLayerConfig, FirstLayerTheme, FirstLayerThemeMinimal, FooterConfig, FooterTheme, FullWidthContentLayout, HeaderTheme, HeaderThemeMinimal, HorizontalAlign, ISO_31661, ISO_31662, Icon, IdentifierType, InitEnricherType, IntegerString, InternalDataSiloObjectResolver, IsoCountryCode, IsoCountrySubdivisionCode, LargeLanguageModelClient, Link, LoadOptions, LocalSyncOption, LogicOperator, LogoPosition, MAX_DROP_RECORDS_PER_REQUEST, MAX_SOURCE_SYSTEM_LENGTH, MAX_UNKNOWN_DROP_RECORDS_IN_ERROR, MacroRegion, MobileUiLoadOptions, 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, PolicyType, Preference, PreferenceQueryResponseItem, PreferenceStoreAuthLevel, PreferenceStoreConsentFields, PreferenceStoreIdentifier, PreferenceStoreKeyConditionals, PreferenceStorePurposeResponse, PreferenceStorePurposeUpdate, PreferenceStoreSystemAttributes, PreferenceStoreWorkflowSettings, PreferenceTopicType, PreferenceUpdateItem, PreflightRequestStatus, PrivacyCenterComponentStyles, PrivacyCenterConfigurableColorPalette, PrivacyCenterFont, PrivacyCenterFontBasic, PrivacyCenterFooterLayout, 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, REQUEST_SUBMISSION_LIMIT, RegimeKey, RegionDetectionMethod, RegionNotInWorkflowMessageInput, RegionsOperator, RequestAction, RequestActionObjectResolver, RequestActionOptIn, RequestActionOptOut, RequestDataSiloStatus, RequestEnricherStatus, RequestOrigin, RequestStatus, RequiredConfigurableColorPaletteColor, RestartIdentifierStrategy, RestartTimeLimitExceededMessageInput, RetentionScheduleOperation, RetentionScheduleType, RetentionType, RgbHexString, RgbaHexString, SQLDriverWithDataMapping, ScopeDefinition, ScopeName, ScopeType, SecondLayerConfig, SecondLayerTheme, SecondLayerThemeMinimal, SemicolonDelimitedRegimeKeyString, ShadowRootOptions, SharedTopLevelConfig, SharedTopLevelTheme, SignedIabAgreementOption, SombraStandardScope, SourceSystemLabel, StaticTeamType, SubDataPointAttribute, SubDataPointAttributeSyncColumn, SubDataPointDataSubCategoryGuessStatus, SubjectTypeNotMatchingWorkflowMessageInput, TRANSCEND_SCOPES, TableEncryptionType, TelemetryPartitionStrategy, TemplateVariableModelName, Text, ThemeConfiguration, ThemeConfigurationBannerIntoModal, ThemeConfigurationBannerIntoModalMinimal, ThemeConfigurationBannerOnly, ThemeConfigurationBannerOnlyMinimal, ThemeConfigurationMinimal, ThemeConfigurationModalOnly, ThemeConfigurationModalOnlyMinimal, ThemeKey, ToggleTheme, TranscendProduct, TriageAction, TypeNotMatchingWorkflowMessageInput, UIConfiguration, UIConfigurationBannerIntoModal, UIConfigurationBannerOnly, UIConfigurationModalOnly, URLHostString, UiVariantStatus, UnknownDropRecordsMessageInput, UnknownRequestPolicy, UnstructuredSubDataPointRecommendationStatus, UspapiOption, VariantKey, VendorAttribute, VendorAttributeSyncColumn, VerticalAlign, WorkflowConfigType, WorkflowConfigVisibility, getRegistryLink };
64819
64848
  //# sourceMappingURL=index.d.mts.map