@transcend-io/privacy-types 5.17.0 → 5.19.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 +102 -1
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +68 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -10660,6 +10660,48 @@ declare const UIConfiguration: t.UnionC<[t.IntersectionC<[t.TypeC<{
|
|
|
10660
10660
|
/** Type override */
|
|
10661
10661
|
type UIConfiguration = t.TypeOf<typeof UIConfiguration>;
|
|
10662
10662
|
//#endregion
|
|
10663
|
+
//#region src/customFunction.d.ts
|
|
10664
|
+
/**
|
|
10665
|
+
* The product-facing type of a custom function.
|
|
10666
|
+
*/
|
|
10667
|
+
declare const CustomFunctionType: {
|
|
10668
|
+
/** DSR pre-flight enricher and datapoint resolver */Dsr: "DSR"; /** General purpose code execution */
|
|
10669
|
+
General: "GENERAL";
|
|
10670
|
+
};
|
|
10671
|
+
/** Overload CustomFunctionType as a type */
|
|
10672
|
+
type CustomFunctionType = (typeof CustomFunctionType)[keyof typeof CustomFunctionType];
|
|
10673
|
+
/**
|
|
10674
|
+
* The lifecycle state of a custom function.
|
|
10675
|
+
*/
|
|
10676
|
+
declare const CustomFunctionLifecycleState: {
|
|
10677
|
+
/** The function exists but has no active version */Inactive: "INACTIVE"; /** The function has an active version */
|
|
10678
|
+
Active: "ACTIVE"; /** The function is archived */
|
|
10679
|
+
Archived: "ARCHIVED";
|
|
10680
|
+
};
|
|
10681
|
+
/** Overload CustomFunctionLifecycleState as a type */
|
|
10682
|
+
type CustomFunctionLifecycleState = (typeof CustomFunctionLifecycleState)[keyof typeof CustomFunctionLifecycleState];
|
|
10683
|
+
/**
|
|
10684
|
+
* The lifecycle state of a custom function version.
|
|
10685
|
+
*/
|
|
10686
|
+
declare const CustomFunctionVersionLifecycleState: {
|
|
10687
|
+
/** The version is the function's active version */Active: "ACTIVE"; /** The version is a draft pending promotion */
|
|
10688
|
+
Draft: "DRAFT"; /** The version was superseded by a newer version */
|
|
10689
|
+
Inactive: "INACTIVE";
|
|
10690
|
+
};
|
|
10691
|
+
/** Overload CustomFunctionVersionLifecycleState as a type */
|
|
10692
|
+
type CustomFunctionVersionLifecycleState = (typeof CustomFunctionVersionLifecycleState)[keyof typeof CustomFunctionVersionLifecycleState];
|
|
10693
|
+
/**
|
|
10694
|
+
* The payload types a custom function can be invoked with, selecting which
|
|
10695
|
+
* export the runtime executes.
|
|
10696
|
+
*/
|
|
10697
|
+
declare const CustomFunctionPayloadType: {
|
|
10698
|
+
/** DSR datapoint resolver — invokes the `default` export */DataPoint: "DATA_POINT"; /** DSR pre-flight request enricher — invokes the `enricher` export */
|
|
10699
|
+
RequestEnricher: "REQUEST_ENRICHER"; /** General purpose (Maestro) custom function */
|
|
10700
|
+
Maestro: "MAESTRO";
|
|
10701
|
+
};
|
|
10702
|
+
/** Overload CustomFunctionPayloadType as a type */
|
|
10703
|
+
type CustomFunctionPayloadType = (typeof CustomFunctionPayloadType)[keyof typeof CustomFunctionPayloadType];
|
|
10704
|
+
//#endregion
|
|
10663
10705
|
//#region src/database.d.ts
|
|
10664
10706
|
/**
|
|
10665
10707
|
* The database integrations
|
|
@@ -10889,6 +10931,23 @@ declare const DsrErrorCode: {
|
|
|
10889
10931
|
* workflow config. `dataSiloIds` may only narrow the workflow's connected set.
|
|
10890
10932
|
*/
|
|
10891
10933
|
DataSiloNotInWorkflow: "DATA_SILO_NOT_IN_WORKFLOW";
|
|
10934
|
+
/**
|
|
10935
|
+
* The `type` asserted on this request does not match the workflow config's
|
|
10936
|
+
* request action. `type` is optional; omit it to derive from the workflow.
|
|
10937
|
+
*/
|
|
10938
|
+
TypeNotMatchingWorkflow: "TYPE_NOT_MATCHING_WORKFLOW";
|
|
10939
|
+
/**
|
|
10940
|
+
* The `subjectType` asserted on this request does not match the workflow
|
|
10941
|
+
* config's data subject type. `subjectType` is optional; omit it to derive
|
|
10942
|
+
* from the workflow.
|
|
10943
|
+
*/
|
|
10944
|
+
SubjectTypeNotMatchingWorkflow: "SUBJECT_TYPE_NOT_MATCHING_WORKFLOW";
|
|
10945
|
+
/**
|
|
10946
|
+
* The request region is not eligible for the workflow config's regionList.
|
|
10947
|
+
* The supplied country or subdivision must match an entry in regionList when
|
|
10948
|
+
* the workflow collects regions and regionList is non-empty.
|
|
10949
|
+
*/
|
|
10950
|
+
RegionNotInWorkflow: "REGION_NOT_IN_WORKFLOW";
|
|
10892
10951
|
};
|
|
10893
10952
|
/** Type override */
|
|
10894
10953
|
type DsrErrorCode = (typeof DsrErrorCode)[keyof typeof DsrErrorCode];
|
|
@@ -10934,6 +10993,31 @@ interface DataSiloNotInWorkflowMessageInput {
|
|
|
10934
10993
|
/** dataSiloIds that are not connected to that workflow config */
|
|
10935
10994
|
dataSiloIds: readonly string[];
|
|
10936
10995
|
}
|
|
10996
|
+
/** Inputs for the {@link DsrErrorCode.TypeNotMatchingWorkflow} message builder. */
|
|
10997
|
+
interface TypeNotMatchingWorkflowMessageInput {
|
|
10998
|
+
/** Workflow config the submission targeted */
|
|
10999
|
+
workflowConfigId: string;
|
|
11000
|
+
/** The request action (`type`) asserted on the input */
|
|
11001
|
+
providedType: string;
|
|
11002
|
+
/** The workflow config's actual request action */
|
|
11003
|
+
workflowType: string;
|
|
11004
|
+
}
|
|
11005
|
+
/** Inputs for the {@link DsrErrorCode.SubjectTypeNotMatchingWorkflow} message builder. */
|
|
11006
|
+
interface SubjectTypeNotMatchingWorkflowMessageInput {
|
|
11007
|
+
/** Workflow config the submission targeted */
|
|
11008
|
+
workflowConfigId: string;
|
|
11009
|
+
/** The data subject type asserted on the input */
|
|
11010
|
+
providedSubjectType: string;
|
|
11011
|
+
/** The workflow config's actual data subject type */
|
|
11012
|
+
workflowSubjectType: string;
|
|
11013
|
+
}
|
|
11014
|
+
/** Inputs for the {@link DsrErrorCode.RegionNotInWorkflow} message builder. */
|
|
11015
|
+
interface RegionNotInWorkflowMessageInput {
|
|
11016
|
+
/** Human-readable rejected region (e.g. `GB` or `US/US-CA`) */
|
|
11017
|
+
region: string;
|
|
11018
|
+
/** Workflow regionList entries that are eligible */
|
|
11019
|
+
supportedRegions: readonly string[];
|
|
11020
|
+
}
|
|
10937
11021
|
/** Canonical message builder for each {@link DsrErrorCode}. */
|
|
10938
11022
|
type DsrErrorMessageMap = {
|
|
10939
11023
|
[DsrErrorCode.InvalidWorkflowConfigId]: () => string;
|
|
@@ -10953,6 +11037,9 @@ type DsrErrorMessageMap = {
|
|
|
10953
11037
|
[DsrErrorCode.UnsupportedIdentifierName]: (name: string) => string;
|
|
10954
11038
|
[DsrErrorCode.MissingRequiredEmail]: () => string;
|
|
10955
11039
|
[DsrErrorCode.DataSiloNotInWorkflow]: (input: DataSiloNotInWorkflowMessageInput) => string;
|
|
11040
|
+
[DsrErrorCode.TypeNotMatchingWorkflow]: (input: TypeNotMatchingWorkflowMessageInput) => string;
|
|
11041
|
+
[DsrErrorCode.SubjectTypeNotMatchingWorkflow]: (input: SubjectTypeNotMatchingWorkflowMessageInput) => string;
|
|
11042
|
+
[DsrErrorCode.RegionNotInWorkflow]: (input: RegionNotInWorkflowMessageInput) => string;
|
|
10956
11043
|
};
|
|
10957
11044
|
/**
|
|
10958
11045
|
* Canonical per-input DSR bulk submission error messages.
|
|
@@ -10993,6 +11080,20 @@ declare const DSR_ERROR_MESSAGE: {
|
|
|
10993
11080
|
workflowConfigId,
|
|
10994
11081
|
dataSiloIds
|
|
10995
11082
|
}: DataSiloNotInWorkflowMessageInput) => string;
|
|
11083
|
+
readonly TYPE_NOT_MATCHING_WORKFLOW: ({
|
|
11084
|
+
workflowConfigId,
|
|
11085
|
+
providedType,
|
|
11086
|
+
workflowType
|
|
11087
|
+
}: TypeNotMatchingWorkflowMessageInput) => string;
|
|
11088
|
+
readonly SUBJECT_TYPE_NOT_MATCHING_WORKFLOW: ({
|
|
11089
|
+
workflowConfigId,
|
|
11090
|
+
providedSubjectType,
|
|
11091
|
+
workflowSubjectType
|
|
11092
|
+
}: SubjectTypeNotMatchingWorkflowMessageInput) => string;
|
|
11093
|
+
readonly REGION_NOT_IN_WORKFLOW: ({
|
|
11094
|
+
region,
|
|
11095
|
+
supportedRegions
|
|
11096
|
+
}: RegionNotInWorkflowMessageInput) => string;
|
|
10996
11097
|
};
|
|
10997
11098
|
//#endregion
|
|
10998
11099
|
//#region src/dsrRequestOutcome.d.ts
|
|
@@ -64712,5 +64813,5 @@ declare const CollectDataSubjectRegions: {
|
|
|
64712
64813
|
/** Override type */
|
|
64713
64814
|
type CollectDataSubjectRegions = (typeof CollectDataSubjectRegions)[keyof typeof CollectDataSubjectRegions];
|
|
64714
64815
|
//#endregion
|
|
64715
|
-
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, 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, 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, TRANSCEND_SCOPES, TableEncryptionType, TelemetryPartitionStrategy, TemplateVariableModelName, Text, ThemeConfiguration, ThemeConfigurationBannerIntoModal, ThemeConfigurationBannerIntoModalMinimal, ThemeConfigurationBannerOnly, ThemeConfigurationBannerOnlyMinimal, ThemeConfigurationMinimal, ThemeConfigurationModalOnly, ThemeConfigurationModalOnlyMinimal, ThemeKey, ToggleTheme, TranscendProduct, TriageAction, UIConfiguration, UIConfigurationBannerIntoModal, UIConfigurationBannerOnly, UIConfigurationModalOnly, URLHostString, UiVariantStatus, UnknownDropRecordsMessageInput, UnknownRequestPolicy, UnstructuredSubDataPointRecommendationStatus, UspapiOption, VariantKey, VendorAttribute, VendorAttributeSyncColumn, VerticalAlign, WorkflowConfigType, WorkflowConfigVisibility, getRegistryLink };
|
|
64816
|
+
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 };
|
|
64716
64817
|
//# sourceMappingURL=index.d.mts.map
|