@transcend-io/privacy-types 5.19.0 → 5.22.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 +34 -11
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +52 -8
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
package/dist/index.mjs
CHANGED
|
@@ -1449,7 +1449,12 @@ const TelemetryPartitionStrategy = makeEnum({
|
|
|
1449
1449
|
*/
|
|
1450
1450
|
const ConsentPrecedenceOption = makeEnum({
|
|
1451
1451
|
User: "user",
|
|
1452
|
-
|
|
1452
|
+
/**
|
|
1453
|
+
* @deprecated Use Signals instead
|
|
1454
|
+
*/
|
|
1455
|
+
Signal: "signal",
|
|
1456
|
+
/** Detected privacy signals take precedence over confirmed consent */
|
|
1457
|
+
Signals: "signals"
|
|
1453
1458
|
});
|
|
1454
1459
|
/**
|
|
1455
1460
|
* The possible options for configuring the CSP
|
|
@@ -2107,7 +2112,8 @@ const SharedLoadOptions = t.intersection([t.type({
|
|
|
2107
2112
|
messageMap: t.record(valuesOf(LOCALE_KEY), AbsoluteUrlString),
|
|
2108
2113
|
forceTheme: ThemeKey,
|
|
2109
2114
|
cssFolder: AbsoluteUrlString,
|
|
2110
|
-
hostThemeMap: t.record(URLHostString, ThemeKey)
|
|
2115
|
+
hostThemeMap: t.record(URLHostString, ThemeKey),
|
|
2116
|
+
customCssUrlMap: t.record(ThemeKey, AbsoluteUrlString)
|
|
2111
2117
|
})]);
|
|
2112
2118
|
/** The top-level configuration for the consent UI (minimal theme configs) */
|
|
2113
2119
|
const LoadOptions = t.intersection([SharedLoadOptions, t.type({ themeConfigMap: t.record(ThemeKey, ThemeConfigurationMinimal) })]);
|
|
@@ -30532,6 +30538,13 @@ const Preference = t.type({
|
|
|
30532
30538
|
selectValues: t.union([t.array(t.string), t.null])
|
|
30533
30539
|
})
|
|
30534
30540
|
});
|
|
30541
|
+
/** Maximum length for a preference-store purpose `sourceSystem` label. */
|
|
30542
|
+
const MAX_SOURCE_SYSTEM_LENGTH = 128;
|
|
30543
|
+
/**
|
|
30544
|
+
* Free-form source-system label written/read on preference-store purpose items.
|
|
30545
|
+
* Non-empty and at most {@link MAX_SOURCE_SYSTEM_LENGTH} characters.
|
|
30546
|
+
*/
|
|
30547
|
+
const SourceSystemLabel = t.refinement(t.string, (value) => value.length > 0 && value.length <= 128, "SourceSystemLabel");
|
|
30535
30548
|
/**
|
|
30536
30549
|
* The format for a preference store purpose
|
|
30537
30550
|
*/
|
|
@@ -30540,9 +30553,14 @@ const PreferenceStorePurposeResponse = t.intersection([t.type({
|
|
|
30540
30553
|
purpose: t.string,
|
|
30541
30554
|
/** Whether the purpose is enabled */
|
|
30542
30555
|
enabled: t.boolean
|
|
30543
|
-
}), t.partial({
|
|
30544
|
-
/** additional preference associated with this purpose */
|
|
30545
|
-
preferences: t.array(Preference)
|
|
30556
|
+
}), t.partial({
|
|
30557
|
+
/** additional preference associated with this purpose */
|
|
30558
|
+
preferences: t.array(Preference),
|
|
30559
|
+
/** Caller-provided source system label (e.g. "Adobe") */
|
|
30560
|
+
sourceSystem: SourceSystemLabel,
|
|
30561
|
+
/** Timestamp of when the purpose was last updated (ISO 8601) */
|
|
30562
|
+
timestamp: t.string
|
|
30563
|
+
})]);
|
|
30546
30564
|
const PreferenceQueryResponseItem = t.intersection([
|
|
30547
30565
|
PreferenceStoreKeyConditionals,
|
|
30548
30566
|
t.type({
|
|
@@ -30613,8 +30631,6 @@ const PreferenceStoreWorkflowSettings = t.partial({
|
|
|
30613
30631
|
* The format for a preference store purpose
|
|
30614
30632
|
*/
|
|
30615
30633
|
const PreferenceStorePurposeUpdate = t.intersection([PreferenceStorePurposeResponse, t.partial({
|
|
30616
|
-
/** Timestamp of when the purpose was last updated (ISO 8601) */
|
|
30617
|
-
timestamp: t.string,
|
|
30618
30634
|
/** Additional tags to forward to the DSR event */
|
|
30619
30635
|
attributes: t.array(CustomFieldApiInput),
|
|
30620
30636
|
/** Consent workflow settings */
|
|
@@ -31171,6 +31187,8 @@ let ScopeName = /* @__PURE__ */ function(ScopeName) {
|
|
|
31171
31187
|
ScopeName["ViewAssignedRules"] = "viewAssignedRules";
|
|
31172
31188
|
ScopeName["ManageAssignedRules"] = "manageAssignedRules";
|
|
31173
31189
|
ScopeName["ExecuteRules"] = "executeRules";
|
|
31190
|
+
ScopeName["ViewCustomFunction"] = "viewCustomFunction";
|
|
31191
|
+
ScopeName["ManageCustomFunction"] = "manageCustomFunction";
|
|
31174
31192
|
return ScopeName;
|
|
31175
31193
|
}({});
|
|
31176
31194
|
/**
|
|
@@ -32008,6 +32026,32 @@ const SCOPES_WITHOUT_VIEW_ONLY = {
|
|
|
32008
32026
|
description: "Trigger rule execution and view the outputs.",
|
|
32009
32027
|
type: "MODIFY",
|
|
32010
32028
|
products: ["RULES_AUTOMATION"]
|
|
32029
|
+
},
|
|
32030
|
+
["viewCustomFunction"]: {
|
|
32031
|
+
title: "View Custom Functions",
|
|
32032
|
+
dependencies: [],
|
|
32033
|
+
description: "View Custom Functions, their versions, and run history.",
|
|
32034
|
+
type: "VIEW",
|
|
32035
|
+
products: [
|
|
32036
|
+
"DSR_AUTOMATION",
|
|
32037
|
+
"DATA_INVENTORY",
|
|
32038
|
+
"STRUCTURED_DISCOVERY",
|
|
32039
|
+
"SILO_DISCOVERY",
|
|
32040
|
+
"UNSTRUCTURED_DISCOVERY"
|
|
32041
|
+
]
|
|
32042
|
+
},
|
|
32043
|
+
["manageCustomFunction"]: {
|
|
32044
|
+
title: "Manage Custom Functions",
|
|
32045
|
+
dependencies: ["viewCustomFunction"],
|
|
32046
|
+
description: "Create, update, archive, promote, and run Custom Functions and their versions.",
|
|
32047
|
+
type: "MODIFY",
|
|
32048
|
+
products: [
|
|
32049
|
+
"DSR_AUTOMATION",
|
|
32050
|
+
"DATA_INVENTORY",
|
|
32051
|
+
"STRUCTURED_DISCOVERY",
|
|
32052
|
+
"SILO_DISCOVERY",
|
|
32053
|
+
"UNSTRUCTURED_DISCOVERY"
|
|
32054
|
+
]
|
|
32011
32055
|
}
|
|
32012
32056
|
};
|
|
32013
32057
|
const TRANSCEND_SCOPES = {
|
|
@@ -32417,6 +32461,6 @@ const CollectDataSubjectRegions = makeEnum({
|
|
|
32417
32461
|
Collect: "COLLECT"
|
|
32418
32462
|
});
|
|
32419
32463
|
//#endregion
|
|
32420
|
-
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, 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, 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, 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, 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 };
|
|
32464
|
+
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, 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, 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_SOURCE_SYSTEM_LENGTH, 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, 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, SourceSystemLabel, 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 };
|
|
32421
32465
|
|
|
32422
32466
|
//# sourceMappingURL=index.mjs.map
|