@transcend-io/privacy-types 5.10.0 → 5.10.2
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 +24 -9
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +24 -11
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -2244,6 +2244,11 @@ const DropListType = {
|
|
|
2244
2244
|
Ndz: "ndz",
|
|
2245
2245
|
NameVin: "name_vin"
|
|
2246
2246
|
};
|
|
2247
|
+
/**
|
|
2248
|
+
* Longest `dropRecordId` accepted on DROP ingress payloads and persisted on
|
|
2249
|
+
* `DropRunRequest`.
|
|
2250
|
+
*/
|
|
2251
|
+
const DROP_RECORD_ID_MAX_LENGTH = 64;
|
|
2247
2252
|
//#endregion
|
|
2248
2253
|
//#region src/dsrBulkErrorCode.ts
|
|
2249
2254
|
/**
|
|
@@ -2259,7 +2264,19 @@ const DsrBulkErrorCode = makeEnum({
|
|
|
2259
2264
|
/** The bulk submission exceeds the maximum number of inputs. */
|
|
2260
2265
|
SubmissionLimitExceeded: "SUBMISSION_LIMIT_EXCEEDED",
|
|
2261
2266
|
/** The bulk submission mixed inputs with and without a pre-generated CEK context. */
|
|
2262
|
-
MixedCekContext: "MIXED_CEK_CONTEXT"
|
|
2267
|
+
MixedCekContext: "MIXED_CEK_CONTEXT",
|
|
2268
|
+
/**
|
|
2269
|
+
* The required Diffie-Hellman encrypted payload was missing. Whether `dhEncrypted`
|
|
2270
|
+
* is required depends on the entire input set — it is required only when at least
|
|
2271
|
+
* one input is missing a pre-generated `encryptedCEKContext`.
|
|
2272
|
+
*/
|
|
2273
|
+
DhContextRequired: "DH_CONTEXT_REQUIRED",
|
|
2274
|
+
/**
|
|
2275
|
+
* A concurrent DROP submission won the `dropRunId` unique-index idempotency race
|
|
2276
|
+
* during bulk create. The retry loop cannot determine which input lost, so no
|
|
2277
|
+
* input index can be attributed.
|
|
2278
|
+
*/
|
|
2279
|
+
ConcurrentSubmissionConflict: "CONCURRENT_SUBMISSION_CONFLICT"
|
|
2263
2280
|
});
|
|
2264
2281
|
//#endregion
|
|
2265
2282
|
//#region src/dsrErrorCode.ts
|
|
@@ -2279,8 +2296,6 @@ const DsrErrorCode = makeEnum({
|
|
|
2279
2296
|
RestartRequestNotFound: "RESTART_REQUEST_NOT_FOUND",
|
|
2280
2297
|
/** A restart was requested for a request closed beyond the org's time limit. */
|
|
2281
2298
|
RestartTimeLimitExceeded: "RESTART_TIME_LIMIT_EXCEEDED",
|
|
2282
|
-
/** The required Diffie-Hellman encrypted payload was missing on this request. */
|
|
2283
|
-
DhContextRequired: "DH_CONTEXT_REQUIRED",
|
|
2284
2299
|
/** The referenced receipt email template does not exist. */
|
|
2285
2300
|
ReceiptTemplateNotFound: "RECEIPT_TEMPLATE_NOT_FOUND",
|
|
2286
2301
|
/** DROP linkage identifiers on this request do not cover the required identifier types. */
|
|
@@ -2295,8 +2310,6 @@ const DsrErrorCode = makeEnum({
|
|
|
2295
2310
|
MaxDropRecordsPerRequestExceeded: "MAX_DROP_RECORDS_PER_REQUEST_EXCEEDED",
|
|
2296
2311
|
/** One or more DROP records on this request are not part of the run's CPPA download. */
|
|
2297
2312
|
UnknownDropRecords: "UNKNOWN_DROP_RECORDS",
|
|
2298
|
-
/** A concurrent submission already created this request. */
|
|
2299
|
-
ConcurrentSubmissionConflict: "CONCURRENT_SUBMISSION_CONFLICT",
|
|
2300
2313
|
/** The DROP run referenced by this request does not exist. */
|
|
2301
2314
|
DropRunNotFound: "DROP_RUN_NOT_FOUND"
|
|
2302
2315
|
});
|
|
@@ -2330,10 +2343,9 @@ const DSR_ERROR_MESSAGE = {
|
|
|
2330
2343
|
[DsrErrorCode.MissingCoreIdentifier]: () => "Missing core identifier",
|
|
2331
2344
|
[DsrErrorCode.RestartRequestNotFound]: () => "Cannot restart: request not found",
|
|
2332
2345
|
[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
2346
|
[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
|
|
2336
|
-
[DsrErrorCode.DuplicateDropRecords]: () => "dropRecords contains duplicate (dropRecordId, dropListType) entries: each DROP record can only be linked to one request.",
|
|
2347
|
+
[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.",
|
|
2348
|
+
[DsrErrorCode.DuplicateDropRecords]: () => "dropRecords contains duplicate (dropRecordId, dropListType) entries: each DROP record can only be linked to one request per submission.",
|
|
2337
2349
|
[DsrErrorCode.InBatchDropIdempotencyKeyCollision]: () => "This request's identifiers conflict with another input in the batch that shares the same dropRunId idempotency key.",
|
|
2338
2350
|
[DsrErrorCode.DropRecordsRequireDropRunId]: () => "dropRecords requires dropRunId",
|
|
2339
2351
|
[DsrErrorCode.MaxDropRecordsPerRequestExceeded]: () => `Cannot link more than 500 DROP records to a single request.`,
|
|
@@ -2342,7 +2354,6 @@ const DSR_ERROR_MESSAGE = {
|
|
|
2342
2354
|
const remainder = records.length > 20 ? ` and ${records.length - 20} more` : "";
|
|
2343
2355
|
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
2356
|
},
|
|
2345
|
-
[DsrErrorCode.ConcurrentSubmissionConflict]: () => "A concurrent submission already created this request. Retry.",
|
|
2346
2357
|
[DsrErrorCode.DropRunNotFound]: (dropRunId) => `Could not find DROP run with id "${dropRunId}"`
|
|
2347
2358
|
};
|
|
2348
2359
|
//#endregion
|
|
@@ -2357,7 +2368,9 @@ const DSR_ERROR_MESSAGE = {
|
|
|
2357
2368
|
const DSR_BULK_ERROR_MESSAGE = {
|
|
2358
2369
|
[DsrBulkErrorCode.NoInputsProvided]: () => "No inputs provided",
|
|
2359
2370
|
[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"
|
|
2371
|
+
[DsrBulkErrorCode.MixedCekContext]: () => "Either all or none of the requests must include encryptedCEKContext",
|
|
2372
|
+
[DsrBulkErrorCode.DhContextRequired]: () => "No encrypted data subject payload provided",
|
|
2373
|
+
[DsrBulkErrorCode.ConcurrentSubmissionConflict]: () => "A concurrent DROP submission already created one or more of these requests. Retry the batch."
|
|
2361
2374
|
};
|
|
2362
2375
|
//#endregion
|
|
2363
2376
|
//#region src/dsrRequestOutcome.ts
|
|
@@ -32351,6 +32364,6 @@ const CollectDataSubjectRegions = makeEnum({
|
|
|
32351
32364
|
Collect: "COLLECT"
|
|
32352
32365
|
});
|
|
32353
32366
|
//#endregion
|
|
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 };
|
|
32367
|
+
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, DROP_RECORD_ID_MAX_LENGTH, 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 };
|
|
32355
32368
|
|
|
32356
32369
|
//# sourceMappingURL=index.mjs.map
|