@transcend-io/privacy-types 5.9.1 → 5.10.1
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 +192 -50
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +131 -19
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -2245,33 +2245,145 @@ const DropListType = {
|
|
|
2245
2245
|
NameVin: "name_vin"
|
|
2246
2246
|
};
|
|
2247
2247
|
//#endregion
|
|
2248
|
+
//#region src/dsrBulkErrorCode.ts
|
|
2249
|
+
/**
|
|
2250
|
+
* Stable, machine-readable error codes for bulk submission failures that apply
|
|
2251
|
+
* to the call as a whole rather than a single `input[]` item.
|
|
2252
|
+
*
|
|
2253
|
+
* Surfaced on `POST /v1/data-subject-request-bulk` when the payload or its
|
|
2254
|
+
* preconditions are invalid before per-input processing completes.
|
|
2255
|
+
*/
|
|
2256
|
+
const DsrBulkErrorCode = makeEnum({
|
|
2257
|
+
/** The bulk submission included no request inputs. */
|
|
2258
|
+
NoInputsProvided: "NO_INPUTS_PROVIDED",
|
|
2259
|
+
/** The bulk submission exceeds the maximum number of inputs. */
|
|
2260
|
+
SubmissionLimitExceeded: "SUBMISSION_LIMIT_EXCEEDED",
|
|
2261
|
+
/** The bulk submission mixed inputs with and without a pre-generated CEK context. */
|
|
2262
|
+
MixedCekContext: "MIXED_CEK_CONTEXT",
|
|
2263
|
+
/**
|
|
2264
|
+
* The required Diffie-Hellman encrypted payload was missing. Whether `dhEncrypted`
|
|
2265
|
+
* is required depends on the entire input set — it is required only when at least
|
|
2266
|
+
* one input is missing a pre-generated `encryptedCEKContext`.
|
|
2267
|
+
*/
|
|
2268
|
+
DhContextRequired: "DH_CONTEXT_REQUIRED",
|
|
2269
|
+
/**
|
|
2270
|
+
* A concurrent DROP submission won the `dropRunId` unique-index idempotency race
|
|
2271
|
+
* during bulk create. The retry loop cannot determine which input lost, so no
|
|
2272
|
+
* input index can be attributed.
|
|
2273
|
+
*/
|
|
2274
|
+
ConcurrentSubmissionConflict: "CONCURRENT_SUBMISSION_CONFLICT"
|
|
2275
|
+
});
|
|
2276
|
+
//#endregion
|
|
2248
2277
|
//#region src/dsrErrorCode.ts
|
|
2249
2278
|
/**
|
|
2250
|
-
* Stable, machine-readable error codes for
|
|
2251
|
-
* (`POST /v1/data-subject-request-bulk`).
|
|
2279
|
+
* Stable, machine-readable error codes for a single bulk submission input
|
|
2280
|
+
* (`POST /v1/data-subject-request-bulk` `input[]` item).
|
|
2252
2281
|
*
|
|
2253
|
-
*
|
|
2254
|
-
*
|
|
2282
|
+
* Returned on one failed input so callers can branch without parsing the error
|
|
2283
|
+
* message. Failures about the bulk call as a whole use {@link DsrBulkErrorCode}.
|
|
2255
2284
|
*/
|
|
2256
2285
|
const DsrErrorCode = makeEnum({
|
|
2257
|
-
/**
|
|
2258
|
-
|
|
2259
|
-
/**
|
|
2260
|
-
|
|
2286
|
+
/** This request has an invalid or missing workflowConfigId. */
|
|
2287
|
+
InvalidWorkflowConfigId: "INVALID_WORKFLOW_CONFIG_ID",
|
|
2288
|
+
/** This request is missing a core identifier. */
|
|
2289
|
+
MissingCoreIdentifier: "MISSING_CORE_IDENTIFIER",
|
|
2261
2290
|
/** A restart was requested for a request ID that does not exist. */
|
|
2262
2291
|
RestartRequestNotFound: "RESTART_REQUEST_NOT_FOUND",
|
|
2263
2292
|
/** A restart was requested for a request closed beyond the org's time limit. */
|
|
2264
2293
|
RestartTimeLimitExceeded: "RESTART_TIME_LIMIT_EXCEEDED",
|
|
2265
|
-
/** The
|
|
2266
|
-
|
|
2267
|
-
/**
|
|
2268
|
-
|
|
2269
|
-
/** The
|
|
2270
|
-
|
|
2271
|
-
/**
|
|
2272
|
-
|
|
2273
|
-
/**
|
|
2274
|
-
|
|
2294
|
+
/** The referenced receipt email template does not exist. */
|
|
2295
|
+
ReceiptTemplateNotFound: "RECEIPT_TEMPLATE_NOT_FOUND",
|
|
2296
|
+
/** DROP linkage identifiers on this request do not cover the required identifier types. */
|
|
2297
|
+
DropIdentifierCoverageMismatch: "DROP_IDENTIFIER_COVERAGE_MISMATCH",
|
|
2298
|
+
/** The same DROP record was claimed more than once on this request. */
|
|
2299
|
+
DuplicateDropRecords: "DUPLICATE_DROP_RECORDS",
|
|
2300
|
+
/** This request's DROP identifiers conflict with another input sharing a dropRunId idempotency key. */
|
|
2301
|
+
InBatchDropIdempotencyKeyCollision: "IN_BATCH_DROP_IDEMPOTENCY_KEY_COLLISION",
|
|
2302
|
+
/** This request's `dropRecords` was provided without a `dropRunId`. */
|
|
2303
|
+
DropRecordsRequireDropRunId: "DROP_RECORDS_REQUIRE_DROP_RUN_ID",
|
|
2304
|
+
/** This request exceeds the per-request DROP record link limit. */
|
|
2305
|
+
MaxDropRecordsPerRequestExceeded: "MAX_DROP_RECORDS_PER_REQUEST_EXCEEDED",
|
|
2306
|
+
/** One or more DROP records on this request are not part of the run's CPPA download. */
|
|
2307
|
+
UnknownDropRecords: "UNKNOWN_DROP_RECORDS",
|
|
2308
|
+
/** The DROP run referenced by this request does not exist. */
|
|
2309
|
+
DropRunNotFound: "DROP_RUN_NOT_FOUND"
|
|
2310
|
+
});
|
|
2311
|
+
//#endregion
|
|
2312
|
+
//#region src/dsrErrorMessage.ts
|
|
2313
|
+
/**
|
|
2314
|
+
* Maximum CPPA DROP records that can be linked to a single DSR at submission
|
|
2315
|
+
* time.
|
|
2316
|
+
*/
|
|
2317
|
+
const MAX_DROP_RECORDS_PER_REQUEST = 500;
|
|
2318
|
+
/**
|
|
2319
|
+
* Maximum number of requests that can be submitted at once in a bulk
|
|
2320
|
+
* operation.
|
|
2321
|
+
*/
|
|
2322
|
+
const REQUEST_SUBMISSION_LIMIT = 100;
|
|
2323
|
+
/**
|
|
2324
|
+
* Maximum unknown DROP records named in an {@link DsrErrorCode.UnknownDropRecords}
|
|
2325
|
+
* error message before truncating with an "and N more" suffix.
|
|
2326
|
+
*/
|
|
2327
|
+
const MAX_UNKNOWN_DROP_RECORDS_IN_ERROR = 20;
|
|
2328
|
+
/**
|
|
2329
|
+
* Canonical per-input DSR bulk submission error messages.
|
|
2330
|
+
*
|
|
2331
|
+
* Each {@link DsrErrorCode} has exactly one builder; call
|
|
2332
|
+
* `DSR_ERROR_MESSAGE[code](...)` to render the runtime string for one failed
|
|
2333
|
+
* `input[]` item. Per-input errors currently surface as HTTP 400 bad-request
|
|
2334
|
+
* validation failures.
|
|
2335
|
+
*/
|
|
2336
|
+
const DSR_ERROR_MESSAGE = {
|
|
2337
|
+
[DsrErrorCode.InvalidWorkflowConfigId]: () => "Invalid workflowConfigId",
|
|
2338
|
+
[DsrErrorCode.MissingCoreIdentifier]: () => "Missing core identifier",
|
|
2339
|
+
[DsrErrorCode.RestartRequestNotFound]: () => "Cannot restart: request not found",
|
|
2340
|
+
[DsrErrorCode.RestartTimeLimitExceeded]: ({ daysSinceLastTransition, restartTimeLimitDays }) => `This request's status last changed ${daysSinceLastTransition} days ago, which exceeds your organization's restart time limit of ${restartTimeLimitDays} days. Create a new request instead.`,
|
|
2341
|
+
[DsrErrorCode.ReceiptTemplateNotFound]: (templateId) => `Could not find specified email template ID: ${templateId}`,
|
|
2342
|
+
[DsrErrorCode.DropIdentifierCoverageMismatch]: () => "Cannot link DROP records to an existing request until every identifier on this submission is already on that request. Submit a new request that includes all required identifiers, or retry with only identifiers already on the existing request.",
|
|
2343
|
+
[DsrErrorCode.DuplicateDropRecords]: () => "dropRecords contains duplicate (dropRecordId, dropListType) entries: each DROP record can only be linked to one request per submission.",
|
|
2344
|
+
[DsrErrorCode.InBatchDropIdempotencyKeyCollision]: () => "This request's identifiers conflict with another input in the batch that shares the same dropRunId idempotency key.",
|
|
2345
|
+
[DsrErrorCode.DropRecordsRequireDropRunId]: () => "dropRecords requires dropRunId",
|
|
2346
|
+
[DsrErrorCode.MaxDropRecordsPerRequestExceeded]: () => `Cannot link more than 500 DROP records to a single request.`,
|
|
2347
|
+
[DsrErrorCode.UnknownDropRecords]: (records) => {
|
|
2348
|
+
const named = records.slice(0, 20).map(({ dropRecordId, dropListType }) => `${dropRecordId} (${dropListType})`).join(", ");
|
|
2349
|
+
const remainder = records.length > 20 ? ` and ${records.length - 20} more` : "";
|
|
2350
|
+
return `${records.length} DROP record(s) are not part of this run's CPPA download: ${named}${remainder}. Re-index the run's records, or download a fresh matched-records file and edit that.`;
|
|
2351
|
+
},
|
|
2352
|
+
[DsrErrorCode.DropRunNotFound]: (dropRunId) => `Could not find DROP run with id "${dropRunId}"`
|
|
2353
|
+
};
|
|
2354
|
+
//#endregion
|
|
2355
|
+
//#region src/dsrBulkErrorMessage.ts
|
|
2356
|
+
/**
|
|
2357
|
+
* Canonical bulk-call DSR submission error messages.
|
|
2358
|
+
*
|
|
2359
|
+
* Each {@link DsrBulkErrorCode} has exactly one builder for failures that apply
|
|
2360
|
+
* to the submission as a whole. These currently surface as HTTP 400 bad-request
|
|
2361
|
+
* validation failures, so no separate status map is exported.
|
|
2362
|
+
*/
|
|
2363
|
+
const DSR_BULK_ERROR_MESSAGE = {
|
|
2364
|
+
[DsrBulkErrorCode.NoInputsProvided]: () => "No inputs provided",
|
|
2365
|
+
[DsrBulkErrorCode.SubmissionLimitExceeded]: () => `Cannot submit more than 100 requests at once. Please split your requests into smaller batches and try again.`,
|
|
2366
|
+
[DsrBulkErrorCode.MixedCekContext]: () => "Either all or none of the requests must include encryptedCEKContext",
|
|
2367
|
+
[DsrBulkErrorCode.DhContextRequired]: () => "No encrypted data subject payload provided",
|
|
2368
|
+
[DsrBulkErrorCode.ConcurrentSubmissionConflict]: () => "A concurrent DROP submission already created one or more of these requests. Retry the batch."
|
|
2369
|
+
};
|
|
2370
|
+
//#endregion
|
|
2371
|
+
//#region src/dsrRequestOutcome.ts
|
|
2372
|
+
/**
|
|
2373
|
+
* Per-input outcome for `POST /v1/data-subject-request-bulk` responses.
|
|
2374
|
+
*
|
|
2375
|
+
* Returned on successful bulk submissions so callers can branch without parsing
|
|
2376
|
+
* error messages. Failures continue to use {@link DsrErrorCode}.
|
|
2377
|
+
*/
|
|
2378
|
+
const DsrRequestOutcome = makeEnum({
|
|
2379
|
+
/** A new request was created. */
|
|
2380
|
+
Created: "CREATED",
|
|
2381
|
+
/** An equivalent open request already exists for this submission. */
|
|
2382
|
+
AlreadyOpen: "ALREADY_OPEN",
|
|
2383
|
+
/** DROP records were linked to an existing request without creating a new one. */
|
|
2384
|
+
DropRecordsLinked: "DROP_RECORDS_LINKED",
|
|
2385
|
+
/** An existing request was restarted. */
|
|
2386
|
+
Restarted: "RESTARTED"
|
|
2275
2387
|
});
|
|
2276
2388
|
//#endregion
|
|
2277
2389
|
//#region src/identifier.ts
|
|
@@ -32247,6 +32359,6 @@ const CollectDataSubjectRegions = makeEnum({
|
|
|
32247
32359
|
Collect: "COLLECT"
|
|
32248
32360
|
});
|
|
32249
32361
|
//#endregion
|
|
32250
|
-
export { AbsoluteUrlString, ActionItemCode, ActionItemPriorityOverride, AirgapBundleAnalyticsBinInterval, AirgapBundleAnalyticsDimension, AirgapBundleAnalyticsMetric, AssessmentFormStatus, AssessmentFormTemplateSource, AssessmentFormTemplateStatus, AssessmentQuestionSubType, AssessmentQuestionType, AssessmentSyncColumn, 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, OneTrustUserMetadata, 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, 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 };
|
|
32362
|
+
export { AbsoluteUrlString, ActionItemCode, ActionItemPriorityOverride, AirgapBundleAnalyticsBinInterval, AirgapBundleAnalyticsDimension, AirgapBundleAnalyticsMetric, AssessmentFormStatus, AssessmentFormTemplateSource, AssessmentFormTemplateStatus, AssessmentQuestionSubType, AssessmentQuestionType, AssessmentSyncColumn, 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, DsrErrorCode, 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, OneTrustUserMetadata, 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, RetentionScheduleOperation, RetentionScheduleType, RetentionType, RgbHexString, RgbaHexString, SQLDriverWithDataMapping, 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 };
|
|
32251
32363
|
|
|
32252
32364
|
//# sourceMappingURL=index.mjs.map
|