@transcend-io/privacy-types 5.9.1 → 5.10.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
@@ -9189,28 +9189,160 @@ declare const DropListType: {
9189
9189
  /** Type override */
9190
9190
  type DropListType = (typeof DropListType)[keyof typeof DropListType];
9191
9191
  //#endregion
9192
+ //#region src/dsrBulkErrorCode.d.ts
9193
+ /**
9194
+ * Stable, machine-readable error codes for bulk submission failures that apply
9195
+ * to the call as a whole rather than a single `input[]` item.
9196
+ *
9197
+ * Surfaced on `POST /v1/data-subject-request-bulk` when the payload or its
9198
+ * preconditions are invalid before per-input processing completes.
9199
+ */
9200
+ declare const DsrBulkErrorCode: {
9201
+ /** The bulk submission included no request inputs. */NoInputsProvided: "NO_INPUTS_PROVIDED"; /** The bulk submission exceeds the maximum number of inputs. */
9202
+ SubmissionLimitExceeded: "SUBMISSION_LIMIT_EXCEEDED"; /** The bulk submission mixed inputs with and without a pre-generated CEK context. */
9203
+ MixedCekContext: "MIXED_CEK_CONTEXT";
9204
+ };
9205
+ /** Type override */
9206
+ type DsrBulkErrorCode = (typeof DsrBulkErrorCode)[keyof typeof DsrBulkErrorCode];
9207
+ //#endregion
9208
+ //#region src/dsrBulkErrorMessage.d.ts
9209
+ /** Canonical message builder for each {@link DsrBulkErrorCode}. */
9210
+ type DsrBulkErrorMessageMap = {
9211
+ [DsrBulkErrorCode.NoInputsProvided]: () => string;
9212
+ [DsrBulkErrorCode.SubmissionLimitExceeded]: () => string;
9213
+ [DsrBulkErrorCode.MixedCekContext]: () => string;
9214
+ };
9215
+ /**
9216
+ * Canonical bulk-call DSR submission error messages.
9217
+ *
9218
+ * Each {@link DsrBulkErrorCode} has exactly one builder for failures that apply
9219
+ * to the submission as a whole. These currently surface as HTTP 400 bad-request
9220
+ * validation failures, so no separate status map is exported.
9221
+ */
9222
+ declare const DSR_BULK_ERROR_MESSAGE: {
9223
+ readonly NO_INPUTS_PROVIDED: () => string;
9224
+ readonly SUBMISSION_LIMIT_EXCEEDED: () => string;
9225
+ readonly MIXED_CEK_CONTEXT: () => string;
9226
+ };
9227
+ //#endregion
9192
9228
  //#region src/dsrErrorCode.d.ts
9193
9229
  /**
9194
- * Stable, machine-readable error codes for the DSR submission API
9195
- * (`POST /v1/data-subject-request-bulk`).
9230
+ * Stable, machine-readable error codes for a single bulk submission input
9231
+ * (`POST /v1/data-subject-request-bulk` `input[]` item).
9196
9232
  *
9197
- * Surfaced to clients as `extensions.code` on GraphQL errors so they can branch
9198
- * on the failure type without parsing the error message.
9233
+ * Returned on one failed input so callers can branch without parsing the error
9234
+ * message. Failures about the bulk call as a whole use {@link DsrBulkErrorCode}.
9199
9235
  */
9200
9236
  declare const DsrErrorCode: {
9201
- /** A duplicate open request already exists for this data subject + type. */DuplicateRequest: "DUPLICATE_REQUEST"; /** An open parent request already exists for this data subject. */
9202
- OpenParentRequestExists: "OPEN_PARENT_REQUEST_EXISTS"; /** A restart was requested for a request ID that does not exist. */
9237
+ /** This request has an invalid or missing workflowConfigId. */InvalidWorkflowConfigId: "INVALID_WORKFLOW_CONFIG_ID"; /** This request is missing a core identifier. */
9238
+ MissingCoreIdentifier: "MISSING_CORE_IDENTIFIER"; /** A restart was requested for a request ID that does not exist. */
9203
9239
  RestartRequestNotFound: "RESTART_REQUEST_NOT_FOUND"; /** A restart was requested for a request closed beyond the org's time limit. */
9204
- RestartTimeLimitExceeded: "RESTART_TIME_LIMIT_EXCEEDED"; /** The bulk submission exceeds the per-request item limit. */
9205
- SubmissionLimitExceeded: "SUBMISSION_LIMIT_EXCEEDED"; /** A bulk submission mixed items with and without a pre-generated CEK context. */
9206
- MixedCekContext: "MIXED_CEK_CONTEXT"; /** The required Diffie-Hellman encrypted payload was missing. */
9207
- DhContextRequired: "DH_CONTEXT_REQUIRED"; /** Generic input validation failure. */
9208
- InvalidInput: "INVALID_INPUT"; /** DROP linkage identifiers do not cover the required identifier types. */
9209
- DropIdentifierCoverageMismatch: "DROP_IDENTIFIER_COVERAGE_MISMATCH";
9240
+ RestartTimeLimitExceeded: "RESTART_TIME_LIMIT_EXCEEDED"; /** The required Diffie-Hellman encrypted payload was missing on this request. */
9241
+ DhContextRequired: "DH_CONTEXT_REQUIRED"; /** The referenced receipt email template does not exist. */
9242
+ ReceiptTemplateNotFound: "RECEIPT_TEMPLATE_NOT_FOUND"; /** DROP linkage identifiers on this request do not cover the required identifier types. */
9243
+ DropIdentifierCoverageMismatch: "DROP_IDENTIFIER_COVERAGE_MISMATCH"; /** The same DROP record was claimed more than once on this request. */
9244
+ DuplicateDropRecords: "DUPLICATE_DROP_RECORDS"; /** This request's DROP identifiers conflict with another input sharing a dropRunId idempotency key. */
9245
+ InBatchDropIdempotencyKeyCollision: "IN_BATCH_DROP_IDEMPOTENCY_KEY_COLLISION"; /** This request's `dropRecords` was provided without a `dropRunId`. */
9246
+ DropRecordsRequireDropRunId: "DROP_RECORDS_REQUIRE_DROP_RUN_ID"; /** This request exceeds the per-request DROP record link limit. */
9247
+ MaxDropRecordsPerRequestExceeded: "MAX_DROP_RECORDS_PER_REQUEST_EXCEEDED"; /** One or more DROP records on this request are not part of the run's CPPA download. */
9248
+ UnknownDropRecords: "UNKNOWN_DROP_RECORDS"; /** A concurrent submission already created this request. */
9249
+ ConcurrentSubmissionConflict: "CONCURRENT_SUBMISSION_CONFLICT"; /** The DROP run referenced by this request does not exist. */
9250
+ DropRunNotFound: "DROP_RUN_NOT_FOUND";
9210
9251
  };
9211
9252
  /** Type override */
9212
9253
  type DsrErrorCode = (typeof DsrErrorCode)[keyof typeof DsrErrorCode];
9213
9254
  //#endregion
9255
+ //#region src/dsrErrorMessage.d.ts
9256
+ /**
9257
+ * Maximum CPPA DROP records that can be linked to a single DSR at submission
9258
+ * time.
9259
+ */
9260
+ declare const MAX_DROP_RECORDS_PER_REQUEST = 500;
9261
+ /**
9262
+ * Maximum number of requests that can be submitted at once in a bulk
9263
+ * operation.
9264
+ */
9265
+ declare const REQUEST_SUBMISSION_LIMIT = 100;
9266
+ /**
9267
+ * Maximum unknown DROP records named in an {@link DsrErrorCode.UnknownDropRecords}
9268
+ * error message before truncating with an "and N more" suffix.
9269
+ */
9270
+ declare const MAX_UNKNOWN_DROP_RECORDS_IN_ERROR = 20;
9271
+ /** Inputs for the {@link DsrErrorCode.RestartTimeLimitExceeded} message builder. */
9272
+ interface RestartTimeLimitExceededMessageInput {
9273
+ /** Days since the request's status last changed */
9274
+ daysSinceLastTransition: number;
9275
+ /** Organization-configured restart time limit in days */
9276
+ restartTimeLimitDays: number;
9277
+ }
9278
+ /** Inputs for the {@link DsrErrorCode.UnknownDropRecords} message builder. */
9279
+ interface UnknownDropRecordsMessageInput {
9280
+ /** DROP record identifier from the submission payload */
9281
+ dropRecordId: string;
9282
+ /** DROP list type for the referenced record */
9283
+ dropListType: DropListType;
9284
+ }
9285
+ /** Canonical message builder for each {@link DsrErrorCode}. */
9286
+ type DsrErrorMessageMap = {
9287
+ [DsrErrorCode.InvalidWorkflowConfigId]: () => string;
9288
+ [DsrErrorCode.MissingCoreIdentifier]: () => string;
9289
+ [DsrErrorCode.RestartRequestNotFound]: () => string;
9290
+ [DsrErrorCode.RestartTimeLimitExceeded]: (input: RestartTimeLimitExceededMessageInput) => string;
9291
+ [DsrErrorCode.DhContextRequired]: () => string;
9292
+ [DsrErrorCode.ReceiptTemplateNotFound]: (templateId: string) => string;
9293
+ [DsrErrorCode.DropIdentifierCoverageMismatch]: () => string;
9294
+ [DsrErrorCode.DuplicateDropRecords]: () => string;
9295
+ [DsrErrorCode.InBatchDropIdempotencyKeyCollision]: () => string;
9296
+ [DsrErrorCode.DropRecordsRequireDropRunId]: () => string;
9297
+ [DsrErrorCode.MaxDropRecordsPerRequestExceeded]: () => string;
9298
+ [DsrErrorCode.UnknownDropRecords]: (records: readonly UnknownDropRecordsMessageInput[]) => string;
9299
+ [DsrErrorCode.ConcurrentSubmissionConflict]: () => string;
9300
+ [DsrErrorCode.DropRunNotFound]: (dropRunId: string) => string;
9301
+ };
9302
+ /**
9303
+ * Canonical per-input DSR bulk submission error messages.
9304
+ *
9305
+ * Each {@link DsrErrorCode} has exactly one builder; call
9306
+ * `DSR_ERROR_MESSAGE[code](...)` to render the runtime string for one failed
9307
+ * `input[]` item. Per-input errors currently surface as HTTP 400 bad-request
9308
+ * validation failures.
9309
+ */
9310
+ declare const DSR_ERROR_MESSAGE: {
9311
+ readonly INVALID_WORKFLOW_CONFIG_ID: () => string;
9312
+ readonly MISSING_CORE_IDENTIFIER: () => string;
9313
+ readonly RESTART_REQUEST_NOT_FOUND: () => string;
9314
+ readonly RESTART_TIME_LIMIT_EXCEEDED: ({
9315
+ daysSinceLastTransition,
9316
+ restartTimeLimitDays
9317
+ }: RestartTimeLimitExceededMessageInput) => string;
9318
+ readonly DH_CONTEXT_REQUIRED: () => string;
9319
+ readonly RECEIPT_TEMPLATE_NOT_FOUND: (templateId: string) => string;
9320
+ readonly DROP_IDENTIFIER_COVERAGE_MISMATCH: () => string;
9321
+ readonly DUPLICATE_DROP_RECORDS: () => string;
9322
+ readonly IN_BATCH_DROP_IDEMPOTENCY_KEY_COLLISION: () => string;
9323
+ readonly DROP_RECORDS_REQUIRE_DROP_RUN_ID: () => string;
9324
+ readonly MAX_DROP_RECORDS_PER_REQUEST_EXCEEDED: () => string;
9325
+ readonly UNKNOWN_DROP_RECORDS: (records: readonly UnknownDropRecordsMessageInput[]) => string;
9326
+ readonly CONCURRENT_SUBMISSION_CONFLICT: () => string;
9327
+ readonly DROP_RUN_NOT_FOUND: (dropRunId: string) => string;
9328
+ };
9329
+ //#endregion
9330
+ //#region src/dsrRequestOutcome.d.ts
9331
+ /**
9332
+ * Per-input outcome for `POST /v1/data-subject-request-bulk` responses.
9333
+ *
9334
+ * Returned on successful bulk submissions so callers can branch without parsing
9335
+ * error messages. Failures continue to use {@link DsrErrorCode}.
9336
+ */
9337
+ declare const DsrRequestOutcome: {
9338
+ /** A new request was created. */Created: "CREATED"; /** An equivalent open request already exists for this submission. */
9339
+ AlreadyOpen: "ALREADY_OPEN"; /** DROP records were linked to an existing request without creating a new one. */
9340
+ DropRecordsLinked: "DROP_RECORDS_LINKED"; /** An existing request was restarted. */
9341
+ Restarted: "RESTARTED";
9342
+ };
9343
+ /** Type override */
9344
+ type DsrRequestOutcome = (typeof DsrRequestOutcome)[keyof typeof DsrRequestOutcome];
9345
+ //#endregion
9214
9346
  //#region src/enricher.d.ts
9215
9347
  /**
9216
9348
  * Enrichers that are a bit more freeform, as in they can take in arbitrary inputs
@@ -62920,5 +63052,5 @@ declare const CollectDataSubjectRegions: {
62920
63052
  /** Override type */
62921
63053
  type CollectDataSubjectRegions = (typeof CollectDataSubjectRegions)[keyof typeof CollectDataSubjectRegions];
62922
63054
  //#endregion
62923
- 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, DataCategoryType, DataFlowOrderField, DataFlowScope, DataFlowType, DataProtectionImpactAssessmentStatus, DataSiloAttribute, DataSiloAttributeSyncColumn, DataSubCategoryAttribute, DataSubCategoryAttributeSyncColumn, DatabaseDriver, DatabaseIntegration, DatabaseSqlVariablesForPrivacyRequest, DatabaseVariables, DecryptionStatus, DefaultConsentOption, DefaultDataSubCategoryType, DefaultPurposeSubCategoryType, DescriptionTextTheme, DropListType, DsrErrorCode, 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, 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, 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, RegimeKey, RegionDetectionMethod, RegionsOperator, RequestAction, RequestActionObjectResolver, RequestActionOptIn, RequestActionOptOut, RequestDataSiloStatus, RequestEnricherStatus, RequestOrigin, RequestStatus, RequiredConfigurableColorPaletteColor, RestartIdentifierStrategy, 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, UnknownRequestPolicy, UnstructuredSubDataPointRecommendationStatus, UspapiOption, VariantKey, VendorAttribute, VendorAttributeSyncColumn, VerticalAlign, WorkflowConfigType, WorkflowConfigVisibility, getRegistryLink };
63055
+ 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, DSR_BULK_ERROR_MESSAGE, DSR_ERROR_MESSAGE, DataCategoryType, DataFlowOrderField, DataFlowScope, DataFlowType, DataProtectionImpactAssessmentStatus, DataSiloAttribute, DataSiloAttributeSyncColumn, 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, 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 };
62924
63056
  //# sourceMappingURL=index.d.mts.map