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