@adobe/alloy 2.31.1 → 2.31.2-beta.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/babel.config.js +1 -1
- package/dist/alloy.js +20053 -0
- package/dist/alloy.min.js +15 -0
- package/dist/alloyServiceWorker.js +666 -0
- package/dist/alloyServiceWorker.min.js +13 -0
- package/dist/types/browser/src/baseCode/index.d.ts +3 -0
- package/dist/types/browser/src/baseCode.d.ts +1 -0
- package/dist/types/browser/src/index.d.ts +2 -0
- package/dist/types/browser/src/serviceWorker.d.ts +1 -0
- package/dist/types/browser/src/standalone.d.ts +1 -0
- package/dist/types/browser/src/types.d.ts +38 -0
- package/dist/types/core/src/components/ActivityCollector/attachClickActivityCollector.d.ts +6 -0
- package/dist/types/core/src/components/ActivityCollector/configValidators.d.ts +4 -0
- package/dist/types/core/src/components/ActivityCollector/createClickActivityStorage.d.ts +8 -0
- package/dist/types/core/src/components/ActivityCollector/createClickedElementProperties.d.ts +30 -0
- package/dist/types/core/src/components/ActivityCollector/createGetClickedElementProperties.d.ts +42 -0
- package/dist/types/core/src/components/ActivityCollector/createInjectClickedElementProperties.d.ts +10 -0
- package/dist/types/core/src/components/ActivityCollector/createRecallAndInjectClickedElementProperties.d.ts +4 -0
- package/dist/types/core/src/components/ActivityCollector/createStorePageViewProperties.d.ts +4 -0
- package/dist/types/core/src/components/ActivityCollector/getLinkName.d.ts +2 -0
- package/dist/types/core/src/components/ActivityCollector/getLinkRegion.d.ts +2 -0
- package/dist/types/core/src/components/ActivityCollector/index.d.ts +36 -0
- package/dist/types/core/src/components/ActivityCollector/utils/activityMapExtensionEnabled.d.ts +2 -0
- package/dist/types/core/src/components/ActivityCollector/utils/createTransientStorage.d.ts +6 -0
- package/dist/types/core/src/components/ActivityCollector/utils/determineLinkType.d.ts +2 -0
- package/dist/types/core/src/components/ActivityCollector/utils/dom/elementHasClickHandler.d.ts +2 -0
- package/dist/types/core/src/components/ActivityCollector/utils/dom/extractDomain.d.ts +2 -0
- package/dist/types/core/src/components/ActivityCollector/utils/dom/findClickableElement.d.ts +2 -0
- package/dist/types/core/src/components/ActivityCollector/utils/dom/getAbsoluteUrlFromAnchorElement.d.ts +2 -0
- package/dist/types/core/src/components/ActivityCollector/utils/dom/isButtonSubmitElement.d.ts +2 -0
- package/dist/types/core/src/components/ActivityCollector/utils/dom/isDownloadLink.d.ts +2 -0
- package/dist/types/core/src/components/ActivityCollector/utils/dom/isExitLink.d.ts +2 -0
- package/dist/types/core/src/components/ActivityCollector/utils/dom/isInputSubmitElement.d.ts +2 -0
- package/dist/types/core/src/components/ActivityCollector/utils/dom/isSupportedAnchorElement.d.ts +2 -0
- package/dist/types/core/src/components/ActivityCollector/utils/dom/isSupportedTextNode.d.ts +2 -0
- package/dist/types/core/src/components/ActivityCollector/utils/hasPageName.d.ts +2 -0
- package/dist/types/core/src/components/ActivityCollector/utils/isDifferentDomains.d.ts +2 -0
- package/dist/types/core/src/components/ActivityCollector/utils/trimQueryFromUrl.d.ts +2 -0
- package/dist/types/core/src/components/ActivityCollector/utils/truncateWhiteSpace.d.ts +2 -0
- package/dist/types/core/src/components/ActivityCollector/validateClickCollectionConfig.d.ts +2 -0
- package/dist/types/core/src/components/Advertising/configValidators.d.ts +2 -0
- package/dist/types/core/src/components/Advertising/constants/index.d.ts +45 -0
- package/dist/types/core/src/components/Advertising/createComponent.d.ts +10 -0
- package/dist/types/core/src/components/Advertising/handlers/clickThroughHandler.d.ts +21 -0
- package/dist/types/core/src/components/Advertising/handlers/createAdConversionHandler.d.ts +12 -0
- package/dist/types/core/src/components/Advertising/handlers/createOnBeforeSendEventHandler.d.ts +17 -0
- package/dist/types/core/src/components/Advertising/handlers/sendAdConversion.d.ts +10 -0
- package/dist/types/core/src/components/Advertising/handlers/viewThroughHandler.d.ts +8 -0
- package/dist/types/core/src/components/Advertising/identities/collectAllIdentities.d.ts +6 -0
- package/dist/types/core/src/components/Advertising/identities/collectID5Id.d.ts +2 -0
- package/dist/types/core/src/components/Advertising/identities/collectRampId.d.ts +2 -0
- package/dist/types/core/src/components/Advertising/identities/collectSurferId.d.ts +2 -0
- package/dist/types/core/src/components/Advertising/index.d.ts +19 -0
- package/dist/types/core/src/components/Advertising/utils/advertisingCookieManager.d.ts +8 -0
- package/dist/types/core/src/components/Advertising/utils/helpers.d.ts +22 -0
- package/dist/types/core/src/components/Audiences/index.d.ts +15 -0
- package/dist/types/core/src/components/Audiences/injectProcessDestinations.d.ts +7 -0
- package/dist/types/core/src/components/Audiences/injectProcessResponse.d.ts +6 -0
- package/dist/types/core/src/components/BrandConcierge/configValidators.d.ts +2 -0
- package/dist/types/core/src/components/BrandConcierge/constants.d.ts +2 -0
- package/dist/types/core/src/components/BrandConcierge/createBuildEndpointUrl.d.ts +8 -0
- package/dist/types/core/src/components/BrandConcierge/createConversationServiceRequest.d.ts +6 -0
- package/dist/types/core/src/components/BrandConcierge/createSendConversationEvent.d.ts +14 -0
- package/dist/types/core/src/components/BrandConcierge/createSendConversationServiceRequest.d.ts +10 -0
- package/dist/types/core/src/components/BrandConcierge/createStreamParser.d.ts +6 -0
- package/dist/types/core/src/components/BrandConcierge/createTimeoutWrapper.d.ts +5 -0
- package/dist/types/core/src/components/BrandConcierge/index.d.ts +30 -0
- package/dist/types/core/src/components/BrandConcierge/utils.d.ts +5 -0
- package/dist/types/core/src/components/BrandConcierge/validateMessage.d.ts +4 -0
- package/dist/types/core/src/components/Consent/computeConsentHash.d.ts +2 -0
- package/dist/types/core/src/components/Consent/configValidators.d.ts +2 -0
- package/dist/types/core/src/components/Consent/createComponent.d.ts +26 -0
- package/dist/types/core/src/components/Consent/createConsentHashStore.d.ts +10 -0
- package/dist/types/core/src/components/Consent/createConsentRequest.d.ts +5 -0
- package/dist/types/core/src/components/Consent/createConsentRequestPayload.d.ts +3 -0
- package/dist/types/core/src/components/Consent/createStoredConsent.d.ts +9 -0
- package/dist/types/core/src/components/Consent/index.d.ts +27 -0
- package/dist/types/core/src/components/Consent/injectSendSetConsentRequest.d.ts +11 -0
- package/dist/types/core/src/components/Consent/parseConsentCookie.d.ts +2 -0
- package/dist/types/core/src/components/Consent/types.d.ts +27 -0
- package/dist/types/core/src/components/Consent/validateSetConsentOptions.d.ts +2 -0
- package/dist/types/core/src/components/Context/createComponent.d.ts +9 -0
- package/dist/types/core/src/components/Context/implementationDetails.d.ts +2 -0
- package/dist/types/core/src/components/Context/index.d.ts +16 -0
- package/dist/types/core/src/components/Context/injectDevice.d.ts +2 -0
- package/dist/types/core/src/components/Context/injectEnvironment.d.ts +2 -0
- package/dist/types/core/src/components/Context/injectHighEntropyUserAgentHints.d.ts +2 -0
- package/dist/types/core/src/components/Context/injectOneTimeAnalyticsReferrer.d.ts +2 -0
- package/dist/types/core/src/components/Context/injectPlaceContext.d.ts +2 -0
- package/dist/types/core/src/components/Context/injectTimestamp.d.ts +2 -0
- package/dist/types/core/src/components/Context/injectWeb.d.ts +2 -0
- package/dist/types/core/src/components/DataCollector/index.d.ts +21 -0
- package/dist/types/core/src/components/DataCollector/validateApplyResponse.d.ts +4 -0
- package/dist/types/core/src/components/DataCollector/validateUserEventOptions.d.ts +2 -0
- package/dist/types/core/src/components/EventMerge/createComponent.d.ts +10 -0
- package/dist/types/core/src/components/EventMerge/createEventMergeId.d.ts +4 -0
- package/dist/types/core/src/components/EventMerge/index.d.ts +11 -0
- package/dist/types/core/src/components/Identity/addEcidToPayload.d.ts +2 -0
- package/dist/types/core/src/components/Identity/appendIdentityToUrl/appendIdentityToUrlOptionsValidator.d.ts +2 -0
- package/dist/types/core/src/components/Identity/appendIdentityToUrl/injectAppendIdentityToUrl.d.ts +5 -0
- package/dist/types/core/src/components/Identity/configValidators.d.ts +2 -0
- package/dist/types/core/src/components/Identity/createComponent.d.ts +36 -0
- package/dist/types/core/src/components/Identity/createLegacyIdentity.d.ts +11 -0
- package/dist/types/core/src/components/Identity/getIdentity/createGetIdentity.d.ts +7 -0
- package/dist/types/core/src/components/Identity/getIdentity/createGetIdentityOptionsValidator.d.ts +4 -0
- package/dist/types/core/src/components/Identity/getIdentity/createIdentityRequest.d.ts +5 -0
- package/dist/types/core/src/components/Identity/getIdentity/createIdentityRequestPayload.d.ts +2 -0
- package/dist/types/core/src/components/Identity/getNamespacesFromResponse.d.ts +2 -0
- package/dist/types/core/src/components/Identity/index.d.ts +37 -0
- package/dist/types/core/src/components/Identity/injectAddEcidQueryToPayload.d.ts +5 -0
- package/dist/types/core/src/components/Identity/injectAddLegacyEcidToPayload.d.ts +5 -0
- package/dist/types/core/src/components/Identity/injectAddQueryStringIdentityToPayload.d.ts +7 -0
- package/dist/types/core/src/components/Identity/injectAwaitIdentityCookie.d.ts +9 -0
- package/dist/types/core/src/components/Identity/injectEnsureSingleIdentity.d.ts +12 -0
- package/dist/types/core/src/components/Identity/injectHandleResponseForIdSyncs.d.ts +4 -0
- package/dist/types/core/src/components/Identity/injectProcessIdSyncs.d.ts +5 -0
- package/dist/types/core/src/components/Identity/injectSetDomainForInitialIdentityPayload.d.ts +5 -0
- package/dist/types/core/src/components/Identity/visitorService/awaitVisitorOptIn.d.ts +4 -0
- package/dist/types/core/src/components/Identity/visitorService/getVisitor.d.ts +2 -0
- package/dist/types/core/src/components/Identity/visitorService/injectGetEcidFromVisitor.d.ts +6 -0
- package/dist/types/core/src/components/LibraryInfo/index.d.ts +21 -0
- package/dist/types/core/src/components/MediaAnalyticsBridge/constants/constants.d.ts +84 -0
- package/dist/types/core/src/components/MediaAnalyticsBridge/constants/mediaKeysToXdmConverter.d.ts +34 -0
- package/dist/types/core/src/components/MediaAnalyticsBridge/createGetInstance.d.ts +18 -0
- package/dist/types/core/src/components/MediaAnalyticsBridge/createMediaAnalyticsBridgeComponent.d.ts +22 -0
- package/dist/types/core/src/components/MediaAnalyticsBridge/createMediaHelper.d.ts +61 -0
- package/dist/types/core/src/components/MediaAnalyticsBridge/index.d.ts +23 -0
- package/dist/types/core/src/components/Personalization/constants/loggerMessage.d.ts +2 -0
- package/dist/types/core/src/components/Personalization/constants/scopeType.d.ts +3 -0
- package/dist/types/core/src/components/Personalization/createApplyPropositions.d.ts +13 -0
- package/dist/types/core/src/components/Personalization/createClickStorage.d.ts +15 -0
- package/dist/types/core/src/components/Personalization/createComponent.d.ts +44 -0
- package/dist/types/core/src/components/Personalization/createFetchDataHandler.d.ts +18 -0
- package/dist/types/core/src/components/Personalization/createGetPageLocation.d.ts +4 -0
- package/dist/types/core/src/components/Personalization/createHandleConsentFlicker.d.ts +5 -0
- package/dist/types/core/src/components/Personalization/createInteractionStorage.d.ts +5 -0
- package/dist/types/core/src/components/Personalization/createNotificationHandler.d.ts +2 -0
- package/dist/types/core/src/components/Personalization/createOnClickHandler.d.ts +13 -0
- package/dist/types/core/src/components/Personalization/createOnDecisionHandler.d.ts +14 -0
- package/dist/types/core/src/components/Personalization/createPersonalizationDetails.d.ts +27 -0
- package/dist/types/core/src/components/Personalization/createSetTargetMigration.d.ts +4 -0
- package/dist/types/core/src/components/Personalization/createViewCacheManager.d.ts +11 -0
- package/dist/types/core/src/components/Personalization/createViewChangeHandler.d.ts +9 -0
- package/dist/types/core/src/components/Personalization/dom-actions/action.d.ts +19 -0
- package/dist/types/core/src/components/Personalization/dom-actions/addNonceToInlineStyleElements.d.ts +2 -0
- package/dist/types/core/src/components/Personalization/dom-actions/appendHtml.d.ts +2 -0
- package/dist/types/core/src/components/Personalization/dom-actions/clicks/collectClicks.d.ts +7 -0
- package/dist/types/core/src/components/Personalization/dom-actions/clicks/collectInteractions.d.ts +12 -0
- package/dist/types/core/src/components/Personalization/dom-actions/collectInteractions.d.ts +2 -0
- package/dist/types/core/src/components/Personalization/dom-actions/createPreprocess.d.ts +2 -0
- package/dist/types/core/src/components/Personalization/dom-actions/createRedirect.d.ts +2 -0
- package/dist/types/core/src/components/Personalization/dom-actions/dom/createFragment.d.ts +2 -0
- package/dist/types/core/src/components/Personalization/dom-actions/dom/getAttribute.d.ts +2 -0
- package/dist/types/core/src/components/Personalization/dom-actions/dom/getChildNodes.d.ts +2 -0
- package/dist/types/core/src/components/Personalization/dom-actions/dom/getChildren.d.ts +2 -0
- package/dist/types/core/src/components/Personalization/dom-actions/dom/getElementById.d.ts +2 -0
- package/dist/types/core/src/components/Personalization/dom-actions/dom/getFirstChild.d.ts +2 -0
- package/dist/types/core/src/components/Personalization/dom-actions/dom/getNextSibling.d.ts +2 -0
- package/dist/types/core/src/components/Personalization/dom-actions/dom/getNonce.d.ts +3 -0
- package/dist/types/core/src/components/Personalization/dom-actions/dom/getParent.d.ts +2 -0
- package/dist/types/core/src/components/Personalization/dom-actions/dom/helperForEq.d.ts +2 -0
- package/dist/types/core/src/components/Personalization/dom-actions/dom/index.d.ts +14 -0
- package/dist/types/core/src/components/Personalization/dom-actions/dom/insertAfter.d.ts +2 -0
- package/dist/types/core/src/components/Personalization/dom-actions/dom/insertBefore.d.ts +2 -0
- package/dist/types/core/src/components/Personalization/dom-actions/dom/matchesSelectorWithEq.d.ts +2 -0
- package/dist/types/core/src/components/Personalization/dom-actions/dom/removeAttribute.d.ts +2 -0
- package/dist/types/core/src/components/Personalization/dom-actions/dom/selectNodesWithEq.d.ts +9 -0
- package/dist/types/core/src/components/Personalization/dom-actions/dom/setAttribute.d.ts +2 -0
- package/dist/types/core/src/components/Personalization/dom-actions/dom/setStyle.d.ts +2 -0
- package/dist/types/core/src/components/Personalization/dom-actions/dom/util.d.ts +1 -0
- package/dist/types/core/src/components/Personalization/dom-actions/images.d.ts +3 -0
- package/dist/types/core/src/components/Personalization/dom-actions/index.d.ts +1 -0
- package/dist/types/core/src/components/Personalization/dom-actions/initDomActionsModules.d.ts +148 -0
- package/dist/types/core/src/components/Personalization/dom-actions/insertHtmlAfter.d.ts +2 -0
- package/dist/types/core/src/components/Personalization/dom-actions/insertHtmlBefore.d.ts +2 -0
- package/dist/types/core/src/components/Personalization/dom-actions/move.d.ts +2 -0
- package/dist/types/core/src/components/Personalization/dom-actions/prependHtml.d.ts +2 -0
- package/dist/types/core/src/components/Personalization/dom-actions/rearrangeChildren.d.ts +5 -0
- package/dist/types/core/src/components/Personalization/dom-actions/remapCustomCodeOffers.d.ts +2 -0
- package/dist/types/core/src/components/Personalization/dom-actions/remapHeadOffers.d.ts +2 -0
- package/dist/types/core/src/components/Personalization/dom-actions/replaceHtml.d.ts +2 -0
- package/dist/types/core/src/components/Personalization/dom-actions/resize.d.ts +2 -0
- package/dist/types/core/src/components/Personalization/dom-actions/scripts.d.ts +5 -0
- package/dist/types/core/src/components/Personalization/dom-actions/setAttributes.d.ts +2 -0
- package/dist/types/core/src/components/Personalization/dom-actions/setHtml.d.ts +2 -0
- package/dist/types/core/src/components/Personalization/dom-actions/setStyles.d.ts +2 -0
- package/dist/types/core/src/components/Personalization/dom-actions/setText.d.ts +2 -0
- package/dist/types/core/src/components/Personalization/dom-actions/swapImage.d.ts +2 -0
- package/dist/types/core/src/components/Personalization/flicker/index.d.ts +4 -0
- package/dist/types/core/src/components/Personalization/handlers/createDecorateProposition.d.ts +5 -0
- package/dist/types/core/src/components/Personalization/handlers/createProcessDomAction.d.ts +16 -0
- package/dist/types/core/src/components/Personalization/handlers/createProcessHtmlContent.d.ts +15 -0
- package/dist/types/core/src/components/Personalization/handlers/createProcessInAppMessage.d.ts +13 -0
- package/dist/types/core/src/components/Personalization/handlers/createProcessPropositions.d.ts +13 -0
- package/dist/types/core/src/components/Personalization/handlers/createProcessRedirect.d.ts +14 -0
- package/dist/types/core/src/components/Personalization/handlers/createRenderStatusHandler.d.ts +17 -0
- package/dist/types/core/src/components/Personalization/handlers/injectCreateProposition.d.ts +19 -0
- package/dist/types/core/src/components/Personalization/handlers/processDefaultContent.d.ts +6 -0
- package/dist/types/core/src/components/Personalization/in-app-message-actions/actions/displayIframeContent.d.ts +23 -0
- package/dist/types/core/src/components/Personalization/in-app-message-actions/initInAppMessageActionsModules.d.ts +4 -0
- package/dist/types/core/src/components/Personalization/in-app-message-actions/utils.d.ts +2 -0
- package/dist/types/core/src/components/Personalization/index.d.ts +37 -0
- package/dist/types/core/src/components/Personalization/utils/createAsyncArray.d.ts +10 -0
- package/dist/types/core/src/components/Personalization/utils/isAuthoringModeEnabled.d.ts +2 -0
- package/dist/types/core/src/components/Personalization/utils/metaUtils.d.ts +2 -0
- package/dist/types/core/src/components/Personalization/validateApplyPropositionsOptions.d.ts +8 -0
- package/dist/types/core/src/components/PushNotifications/helpers/constants.d.ts +4 -0
- package/dist/types/core/src/components/PushNotifications/helpers/getPushSubscriptionDetails.d.ts +29 -0
- package/dist/types/core/src/components/PushNotifications/helpers/readFromIndexedDb.d.ts +3 -0
- package/dist/types/core/src/components/PushNotifications/helpers/saveToIndexedDb.d.ts +8 -0
- package/dist/types/core/src/components/PushNotifications/helpers/serviceWorkerNotificationClickListener.d.ts +13 -0
- package/dist/types/core/src/components/PushNotifications/helpers/serviceWorkerPushListener.d.ts +7 -0
- package/dist/types/core/src/components/PushNotifications/index.d.ts +50 -0
- package/dist/types/core/src/components/PushNotifications/request/createSendPushSubscriptionPayload.d.ts +9 -0
- package/dist/types/core/src/components/PushNotifications/request/createSendPushSubscriptionRequest.d.ts +6 -0
- package/dist/types/core/src/components/PushNotifications/request/makeSendPushSubscriptionRequest.d.ts +20 -0
- package/dist/types/core/src/components/PushNotifications/request/makeSendServiceWorkerTrackingData.d.ts +11 -0
- package/dist/types/core/src/components/PushNotifications/types.d.ts +189 -0
- package/dist/types/core/src/components/RulesEngine/consequenceAdapters/inAppMessageConsequenceAdapter.d.ts +11 -0
- package/dist/types/core/src/components/RulesEngine/consequenceAdapters/schemaTypeConsequenceAdapter.d.ts +6 -0
- package/dist/types/core/src/components/RulesEngine/constants/index.d.ts +22 -0
- package/dist/types/core/src/components/RulesEngine/createApplyResponse.d.ts +12 -0
- package/dist/types/core/src/components/RulesEngine/createConsequenceAdapter.d.ts +2 -0
- package/dist/types/core/src/components/RulesEngine/createContextProvider.d.ts +8 -0
- package/dist/types/core/src/components/RulesEngine/createDecisionProvider.d.ts +8 -0
- package/dist/types/core/src/components/RulesEngine/createEvaluableRulesetPayload.d.ts +6 -0
- package/dist/types/core/src/components/RulesEngine/createEvaluateRulesetsCommand.d.ts +12 -0
- package/dist/types/core/src/components/RulesEngine/createEventRegistry.d.ts +5 -0
- package/dist/types/core/src/components/RulesEngine/createOnResponseHandler.d.ts +11 -0
- package/dist/types/core/src/components/RulesEngine/createSubscribeRulesetItems.d.ts +16 -0
- package/dist/types/core/src/components/RulesEngine/index.d.ts +48 -0
- package/dist/types/core/src/components/RulesEngine/types.d.ts +106 -0
- package/dist/types/core/src/components/RulesEngine/utils/createEventPruner.d.ts +2 -0
- package/dist/types/core/src/components/RulesEngine/utils/extractPayloadsFromEventHistoryOperations.d.ts +4 -0
- package/dist/types/core/src/components/RulesEngine/utils/generateEventHash.d.ts +2 -0
- package/dist/types/core/src/components/RulesEngine/utils/getExpirationDate.d.ts +2 -0
- package/dist/types/core/src/components/RulesEngine/utils/getPropositionData.d.ts +2 -0
- package/dist/types/core/src/components/RulesEngine/utils/hasExperienceData.d.ts +2 -0
- package/dist/types/core/src/components/RulesEngine/utils/index.d.ts +6 -0
- package/dist/types/core/src/components/RulesEngine/utils/storage.d.ts +7 -0
- package/dist/types/core/src/components/StreamingMedia/configValidators.d.ts +2 -0
- package/dist/types/core/src/components/StreamingMedia/constants/eventTypes.d.ts +21 -0
- package/dist/types/core/src/components/StreamingMedia/constants/playbackState.d.ts +6 -0
- package/dist/types/core/src/components/StreamingMedia/createMediaEventManager.d.ts +28 -0
- package/dist/types/core/src/components/StreamingMedia/createMediaRequest.d.ts +5 -0
- package/dist/types/core/src/components/StreamingMedia/createMediaResponseHandler.d.ts +14 -0
- package/dist/types/core/src/components/StreamingMedia/createMediaSessionCacheManager.d.ts +16 -0
- package/dist/types/core/src/components/StreamingMedia/createStreamingMediaComponent.d.ts +24 -0
- package/dist/types/core/src/components/StreamingMedia/createTrackMediaEvent.d.ts +6 -0
- package/dist/types/core/src/components/StreamingMedia/createTrackMediaSession.d.ts +7 -0
- package/dist/types/core/src/components/StreamingMedia/index.d.ts +30 -0
- package/dist/types/core/src/components/StreamingMedia/validateMediaEventOptions.d.ts +4 -0
- package/dist/types/core/src/components/StreamingMedia/validateMediaSessionOptions.d.ts +4 -0
- package/dist/types/core/src/constants/apiVersion.d.ts +2 -0
- package/dist/types/core/src/constants/browser.d.ts +7 -0
- package/dist/types/core/src/constants/consentPurpose.d.ts +1 -0
- package/dist/types/core/src/constants/consentStatus.d.ts +6 -0
- package/dist/types/core/src/constants/contentType.d.ts +2 -0
- package/dist/types/core/src/constants/cookieNameKey.d.ts +3 -0
- package/dist/types/core/src/constants/cookieNamePrefix.d.ts +2 -0
- package/dist/types/core/src/constants/coreCommands.d.ts +2 -0
- package/dist/types/core/src/constants/coreNamespace.d.ts +2 -0
- package/dist/types/core/src/constants/debugQueryParam.d.ts +2 -0
- package/dist/types/core/src/constants/decisionProvider.d.ts +3 -0
- package/dist/types/core/src/constants/domain.d.ts +2 -0
- package/dist/types/core/src/constants/ecidNamespace.d.ts +2 -0
- package/dist/types/core/src/constants/edgeBasePath.d.ts +2 -0
- package/dist/types/core/src/constants/elementAttribute.d.ts +1 -0
- package/dist/types/core/src/constants/eventType.d.ts +6 -0
- package/dist/types/core/src/constants/highEntropyUserAgentClientHints.d.ts +2 -0
- package/dist/types/core/src/constants/httpHeaderNames.d.ts +2 -0
- package/dist/types/core/src/constants/httpStatusCode.d.ts +5 -0
- package/dist/types/core/src/constants/identityMapAuthenticatedState.d.ts +3 -0
- package/dist/types/core/src/constants/legacyCookies.d.ts +3 -0
- package/dist/types/core/src/constants/libraryName.d.ts +2 -0
- package/dist/types/core/src/constants/libraryVersion.d.ts +2 -0
- package/dist/types/core/src/constants/namespace.d.ts +2 -0
- package/dist/types/core/src/constants/pageWideScope.d.ts +2 -0
- package/dist/types/core/src/constants/propositionEventType.d.ts +9 -0
- package/dist/types/core/src/constants/propositionInteractionType.d.ts +4 -0
- package/dist/types/core/src/constants/queryStringIdentityParam.d.ts +2 -0
- package/dist/types/core/src/constants/schema.d.ts +11 -0
- package/dist/types/core/src/constants/sessionDataKeys.d.ts +1 -0
- package/dist/types/core/src/constants/shadowSeparator.d.ts +2 -0
- package/dist/types/core/src/constants/surface.d.ts +4 -0
- package/dist/types/core/src/constants/tagName.d.ts +7 -0
- package/dist/types/core/src/core/buildAndValidateConfig.d.ts +9 -0
- package/dist/types/core/src/core/componentCreators.d.ts +11 -0
- package/dist/types/core/src/core/config/createConfig.d.ts +2 -0
- package/dist/types/core/src/core/config/createCoreConfigs.d.ts +2 -0
- package/dist/types/core/src/core/consent/createConsent.d.ts +6 -0
- package/dist/types/core/src/core/consent/createConsentStateMachine.d.ts +11 -0
- package/dist/types/core/src/core/consent/types.d.ts +41 -0
- package/dist/types/core/src/core/createComponentRegistry.d.ts +8 -0
- package/dist/types/core/src/core/createCookieTransfer.d.ts +20 -0
- package/dist/types/core/src/core/createEvent.d.ts +20 -0
- package/dist/types/core/src/core/createEventManager.d.ts +31 -0
- package/dist/types/core/src/core/createInstanceFunction.d.ts +2 -0
- package/dist/types/core/src/core/createLifecycle.d.ts +2 -0
- package/dist/types/core/src/core/createLogController.d.ts +15 -0
- package/dist/types/core/src/core/createLogger.d.ts +36 -0
- package/dist/types/core/src/core/edgeNetwork/handleRequestFailure.d.ts +2 -0
- package/dist/types/core/src/core/edgeNetwork/injectApplyResponse.d.ts +13 -0
- package/dist/types/core/src/core/edgeNetwork/injectExtractEdgeInfo.d.ts +8 -0
- package/dist/types/core/src/core/edgeNetwork/injectGetLocationHint.d.ts +5 -0
- package/dist/types/core/src/core/edgeNetwork/injectProcessWarningsAndErrors.d.ts +4 -0
- package/dist/types/core/src/core/edgeNetwork/injectSendEdgeNetworkRequest.d.ts +17 -0
- package/dist/types/core/src/core/edgeNetwork/mergeLifecycleResponses.d.ts +2 -0
- package/dist/types/core/src/core/edgeNetwork/types.d.ts +11 -0
- package/dist/types/core/src/core/getMonitors.d.ts +3 -0
- package/dist/types/core/src/core/identity/createIdentity.d.ts +11 -0
- package/dist/types/core/src/core/identity/types.d.ts +22 -0
- package/dist/types/core/src/core/index.d.ts +13 -0
- package/dist/types/core/src/core/initializeComponents.d.ts +7 -0
- package/dist/types/core/src/core/injectCreateResponse.d.ts +5 -0
- package/dist/types/core/src/core/injectExecuteCommand.d.ts +8 -0
- package/dist/types/core/src/core/injectHandleError.d.ts +5 -0
- package/dist/types/core/src/core/injectShouldTransferCookie.d.ts +5 -0
- package/dist/types/core/src/core/network/getRequestRetryDelay.d.ts +5 -0
- package/dist/types/core/src/core/network/injectSendNetworkRequest.d.ts +13 -0
- package/dist/types/core/src/core/network/isRequestRetryable.d.ts +5 -0
- package/dist/types/core/src/core/network/requestMethods/injectSendBeaconRequest.d.ts +6 -0
- package/dist/types/core/src/core/network/requestMethods/injectSendFetchRequest.d.ts +4 -0
- package/dist/types/core/src/core/requiredComponentCreators.d.ts +4 -0
- package/dist/types/core/src/core/types.d.ts +215 -0
- package/dist/types/core/src/core/validateCommandOptions.d.ts +5 -0
- package/dist/types/core/src/createEventListeners.d.ts +9 -0
- package/dist/types/core/src/index.d.ts +10 -0
- package/dist/types/core/src/types.d.ts +9 -0
- package/dist/types/core/src/utils/assignConcatArrayValues.d.ts +2 -0
- package/dist/types/core/src/utils/bytes.d.ts +4 -0
- package/dist/types/core/src/utils/clamp.d.ts +2 -0
- package/dist/types/core/src/utils/clone.d.ts +2 -0
- package/dist/types/core/src/utils/cookieJar.d.ts +7 -0
- package/dist/types/core/src/utils/createCallbackAggregator.d.ts +5 -0
- package/dist/types/core/src/utils/createCollect.d.ts +13 -0
- package/dist/types/core/src/utils/createDecodeKndctrCookie.d.ts +10 -0
- package/dist/types/core/src/utils/createLoggingCookieJar.d.ts +7 -0
- package/dist/types/core/src/utils/createMerger.d.ts +2 -0
- package/dist/types/core/src/utils/createSubscription.d.ts +12 -0
- package/dist/types/core/src/utils/createTaskQueue.d.ts +19 -0
- package/dist/types/core/src/utils/decodeUriComponentSafely.d.ts +2 -0
- package/dist/types/core/src/utils/deduplicateArray.d.ts +2 -0
- package/dist/types/core/src/utils/deepAssign.d.ts +2 -0
- package/dist/types/core/src/utils/defer.d.ts +4 -0
- package/dist/types/core/src/utils/dom/appendNode.d.ts +2 -0
- package/dist/types/core/src/utils/dom/awaitSelector.d.ts +7 -0
- package/dist/types/core/src/utils/dom/createGetPageLocation.d.ts +4 -0
- package/dist/types/core/src/utils/dom/createNode.d.ts +2 -0
- package/dist/types/core/src/utils/dom/index.d.ts +9 -0
- package/dist/types/core/src/utils/dom/isShadowSelector.d.ts +2 -0
- package/dist/types/core/src/utils/dom/loadScript.d.ts +16 -0
- package/dist/types/core/src/utils/dom/matchesSelector.d.ts +2 -0
- package/dist/types/core/src/utils/dom/querySelectorAll.d.ts +2 -0
- package/dist/types/core/src/utils/dom/removeNode.d.ts +2 -0
- package/dist/types/core/src/utils/dom/selectNodes.d.ts +2 -0
- package/dist/types/core/src/utils/dom/selectNodesWithShadow.d.ts +2 -0
- package/dist/types/core/src/utils/event.d.ts +2 -0
- package/dist/types/core/src/utils/filterObject.d.ts +13 -0
- package/dist/types/core/src/utils/fireImage.d.ts +2 -0
- package/dist/types/core/src/utils/flattenArray.d.ts +2 -0
- package/dist/types/core/src/utils/flattenObject.d.ts +2 -0
- package/dist/types/core/src/utils/fnv1a32Hex.d.ts +7 -0
- package/dist/types/core/src/utils/getApexDomain.d.ts +2 -0
- package/dist/types/core/src/utils/getLastArrayItems.d.ts +2 -0
- package/dist/types/core/src/utils/getNamespacedCookieName.d.ts +2 -0
- package/dist/types/core/src/utils/groupBy.d.ts +2 -0
- package/dist/types/core/src/utils/index.d.ts +52 -0
- package/dist/types/core/src/utils/indexedDb.d.ts +3 -0
- package/dist/types/core/src/utils/injectAreThirdPartyCookiesSupportedByDefault.d.ts +4 -0
- package/dist/types/core/src/utils/injectDoesIdentityCookieExist.d.ts +4 -0
- package/dist/types/core/src/utils/injectFireReferrerHideableImage.d.ts +7 -0
- package/dist/types/core/src/utils/injectGetBrowser.d.ts +4 -0
- package/dist/types/core/src/utils/injectStorage.d.ts +3 -0
- package/dist/types/core/src/utils/intersection.d.ts +2 -0
- package/dist/types/core/src/utils/isBlankString.d.ts +2 -0
- package/dist/types/core/src/utils/isBoolean.d.ts +2 -0
- package/dist/types/core/src/utils/isEmptyObject.d.ts +2 -0
- package/dist/types/core/src/utils/isFunction.d.ts +2 -0
- package/dist/types/core/src/utils/isInteger.d.ts +2 -0
- package/dist/types/core/src/utils/isNamespacedCookieName.d.ts +2 -0
- package/dist/types/core/src/utils/isNil.d.ts +2 -0
- package/dist/types/core/src/utils/isNonEmptyArray.d.ts +2 -0
- package/dist/types/core/src/utils/isNonEmptyString.d.ts +2 -0
- package/dist/types/core/src/utils/isNumber.d.ts +2 -0
- package/dist/types/core/src/utils/isObject.d.ts +2 -0
- package/dist/types/core/src/utils/isString.d.ts +2 -0
- package/dist/types/core/src/utils/isUnique.d.ts +2 -0
- package/dist/types/core/src/utils/isValidRegExp.d.ts +2 -0
- package/dist/types/core/src/utils/lazy.d.ts +2 -0
- package/dist/types/core/src/utils/networkErrors.d.ts +3 -0
- package/dist/types/core/src/utils/noop.d.ts +2 -0
- package/dist/types/core/src/utils/parseUrl.d.ts +19 -0
- package/dist/types/core/src/utils/prepareConfigOverridesForEdge.d.ts +2 -0
- package/dist/types/core/src/utils/querystring.d.ts +2 -0
- package/dist/types/core/src/utils/request/createAddIdentity.d.ts +2 -0
- package/dist/types/core/src/utils/request/createDataCollectionRequest.d.ts +5 -0
- package/dist/types/core/src/utils/request/createDataCollectionRequestPayload.d.ts +3 -0
- package/dist/types/core/src/utils/request/createGetAssuranceValidationTokenParams.d.ts +5 -0
- package/dist/types/core/src/utils/request/createHasIdentity.d.ts +2 -0
- package/dist/types/core/src/utils/request/createRequest.d.ts +14 -0
- package/dist/types/core/src/utils/request/createRequestParams.d.ts +16 -0
- package/dist/types/core/src/utils/request/createRequestPayload.d.ts +8 -0
- package/dist/types/core/src/utils/request/index.d.ts +8 -0
- package/dist/types/core/src/utils/request/types.d.ts +92 -0
- package/dist/types/core/src/utils/sanitizeOrgIdForCookieName.d.ts +2 -0
- package/dist/types/core/src/utils/sortObjectKeysRecursively.d.ts +2 -0
- package/dist/types/core/src/utils/stackError.d.ts +5 -0
- package/dist/types/core/src/utils/stringToBoolean.d.ts +2 -0
- package/dist/types/core/src/utils/surfaceUtils.d.ts +3 -0
- package/dist/types/core/src/utils/toArray.d.ts +2 -0
- package/dist/types/core/src/utils/toError.d.ts +2 -0
- package/dist/types/core/src/utils/toISOStringLocal.d.ts +2 -0
- package/dist/types/core/src/utils/toInteger.d.ts +2 -0
- package/dist/types/core/src/utils/types.d.ts +90 -0
- package/dist/types/core/src/utils/updateErrorMessage.d.ts +5 -0
- package/dist/types/core/src/utils/uuid.d.ts +2 -0
- package/dist/types/core/src/utils/validateConfigOverride.d.ts +2 -0
- package/dist/types/core/src/utils/validateIdentityMap.d.ts +2 -0
- package/dist/types/core/src/utils/validation/booleanValidator.d.ts +2 -0
- package/dist/types/core/src/utils/validation/callbackValidator.d.ts +2 -0
- package/dist/types/core/src/utils/validation/createAnyOfValidator.d.ts +2 -0
- package/dist/types/core/src/utils/validation/createArrayOfValidator.d.ts +2 -0
- package/dist/types/core/src/utils/validation/createDefaultValidator.d.ts +2 -0
- package/dist/types/core/src/utils/validation/createDeprecatedValidator.d.ts +2 -0
- package/dist/types/core/src/utils/validation/createLiteralValidator.d.ts +2 -0
- package/dist/types/core/src/utils/validation/createMapOfValuesValidator.d.ts +2 -0
- package/dist/types/core/src/utils/validation/createMaximumValidator.d.ts +2 -0
- package/dist/types/core/src/utils/validation/createMinimumValidator.d.ts +2 -0
- package/dist/types/core/src/utils/validation/createNoUnknownFieldsValidator.d.ts +2 -0
- package/dist/types/core/src/utils/validation/createNonEmptyValidator.d.ts +2 -0
- package/dist/types/core/src/utils/validation/createObjectOfValidator.d.ts +2 -0
- package/dist/types/core/src/utils/validation/createRenamedValidator.d.ts +2 -0
- package/dist/types/core/src/utils/validation/createUniqueItemsValidator.d.ts +2 -0
- package/dist/types/core/src/utils/validation/createUniqueValidator.d.ts +2 -0
- package/dist/types/core/src/utils/validation/domainValidator.d.ts +2 -0
- package/dist/types/core/src/utils/validation/index.d.ts +12 -0
- package/dist/types/core/src/utils/validation/integerValidator.d.ts +2 -0
- package/dist/types/core/src/utils/validation/matchesRegexpValidator.d.ts +2 -0
- package/dist/types/core/src/utils/validation/numberValidator.d.ts +2 -0
- package/dist/types/core/src/utils/validation/regexpValidator.d.ts +2 -0
- package/dist/types/core/src/utils/validation/requiredValidator.d.ts +2 -0
- package/dist/types/core/src/utils/validation/stringValidator.d.ts +2 -0
- package/dist/types/core/src/utils/validation/utils.d.ts +4 -0
- package/package.json +48 -94
- package/rollup.config.js +25 -41
- package/scripts/alloyBuilder.js +31 -38
- package/scripts/helpers/entryPointGeneratorBabelPlugin.js +83 -21
- package/scripts/helpers/path.js +17 -3
- package/src/baseCode/index.js +63 -0
- package/src/baseCode.js +17 -0
- package/src/index.js +13 -0
- package/src/serviceWorker.js +81 -0
- package/src/standalone.js +40 -0
- package/src/types.js +35 -0
- package/LICENSE +0 -201
- package/README.md +0 -22
- package/libEs5/baseCode/index.js +0 -62
- package/libEs5/components/ActivityCollector/attachClickActivityCollector.js +0 -60
- package/libEs5/components/ActivityCollector/configValidators.js +0 -41
- package/libEs5/components/ActivityCollector/createClickActivityStorage.js +0 -37
- package/libEs5/components/ActivityCollector/createClickedElementProperties.js +0 -222
- package/libEs5/components/ActivityCollector/createGetClickedElementProperties.js +0 -72
- package/libEs5/components/ActivityCollector/createInjectClickedElementProperties.js +0 -73
- package/libEs5/components/ActivityCollector/createRecallAndInjectClickedElementProperties.js +0 -48
- package/libEs5/components/ActivityCollector/createStorePageViewProperties.js +0 -25
- package/libEs5/components/ActivityCollector/getLinkName.js +0 -131
- package/libEs5/components/ActivityCollector/getLinkRegion.js +0 -62
- package/libEs5/components/ActivityCollector/index.js +0 -131
- package/libEs5/components/ActivityCollector/utils/activityMapExtensionEnabled.js +0 -18
- package/libEs5/components/ActivityCollector/utils/createTransientStorage.js +0 -29
- package/libEs5/components/ActivityCollector/utils/determineLinkType.js +0 -29
- package/libEs5/components/ActivityCollector/utils/dom/elementHasClickHandler.js +0 -18
- package/libEs5/components/ActivityCollector/utils/dom/extractDomain.js +0 -23
- package/libEs5/components/ActivityCollector/utils/dom/findClickableElement.js +0 -33
- package/libEs5/components/ActivityCollector/utils/dom/getAbsoluteUrlFromAnchorElement.js +0 -28
- package/libEs5/components/ActivityCollector/utils/dom/isButtonSubmitElement.js +0 -18
- package/libEs5/components/ActivityCollector/utils/dom/isDownloadLink.js +0 -29
- package/libEs5/components/ActivityCollector/utils/dom/isExitLink.js +0 -26
- package/libEs5/components/ActivityCollector/utils/dom/isInputSubmitElement.js +0 -29
- package/libEs5/components/ActivityCollector/utils/dom/isSupportedAnchorElement.js +0 -21
- package/libEs5/components/ActivityCollector/utils/dom/isSupportedTextNode.js +0 -31
- package/libEs5/components/ActivityCollector/utils/hasPageName.js +0 -22
- package/libEs5/components/ActivityCollector/utils/isDifferentDomains.js +0 -21
- package/libEs5/components/ActivityCollector/utils/trimQueryFromUrl.js +0 -31
- package/libEs5/components/ActivityCollector/utils/truncateWhiteSpace.js +0 -25
- package/libEs5/components/ActivityCollector/validateClickCollectionConfig.js +0 -43
- package/libEs5/components/Advertising/configValidators.js +0 -26
- package/libEs5/components/Advertising/constants/index.js +0 -78
- package/libEs5/components/Advertising/createComponent.js +0 -67
- package/libEs5/components/Advertising/handlers/clickThroughHandler.js +0 -80
- package/libEs5/components/Advertising/handlers/createAdConversionHandler.js +0 -55
- package/libEs5/components/Advertising/handlers/onBeforeSendEventHandler.js +0 -80
- package/libEs5/components/Advertising/handlers/sendAdConversion.js +0 -70
- package/libEs5/components/Advertising/handlers/viewThroughHandler.js +0 -63
- package/libEs5/components/Advertising/identities/collectAllIdentities.js +0 -34
- package/libEs5/components/Advertising/identities/collectID5Id.js +0 -112
- package/libEs5/components/Advertising/identities/collectRampId.js +0 -183
- package/libEs5/components/Advertising/identities/collectSurferId.js +0 -153
- package/libEs5/components/Advertising/index.js +0 -53
- package/libEs5/components/Advertising/utils/advertisingCookieManager.js +0 -80
- package/libEs5/components/Advertising/utils/helpers.js +0 -123
- package/libEs5/components/Audiences/index.js +0 -50
- package/libEs5/components/Audiences/injectProcessDestinations.js +0 -64
- package/libEs5/components/Audiences/injectProcessResponse.js +0 -41
- package/libEs5/components/BrandConcierge/configValidators.js +0 -25
- package/libEs5/components/BrandConcierge/constants.js +0 -16
- package/libEs5/components/BrandConcierge/createBuildEndpointUrl.js +0 -33
- package/libEs5/components/BrandConcierge/createConversationServiceRequest.js +0 -35
- package/libEs5/components/BrandConcierge/createSendConversationEvent.js +0 -148
- package/libEs5/components/BrandConcierge/createSendConversationServiceRequest.js +0 -85
- package/libEs5/components/BrandConcierge/createStreamParser.js +0 -142
- package/libEs5/components/BrandConcierge/createTimeoutWrapper.js +0 -79
- package/libEs5/components/BrandConcierge/index.js +0 -102
- package/libEs5/components/BrandConcierge/utils.js +0 -33
- package/libEs5/components/BrandConcierge/validateMessage.js +0 -44
- package/libEs5/components/Consent/computeConsentHash.js +0 -17
- package/libEs5/components/Consent/configValidators.js +0 -19
- package/libEs5/components/Consent/createComponent.js +0 -88
- package/libEs5/components/Consent/createConsentHashStore.js +0 -62
- package/libEs5/components/Consent/createConsentRequest.js +0 -31
- package/libEs5/components/Consent/createConsentRequestPayload.js +0 -45
- package/libEs5/components/Consent/createStoredConsent.js +0 -33
- package/libEs5/components/Consent/index.js +0 -68
- package/libEs5/components/Consent/injectSendSetConsentRequest.js +0 -48
- package/libEs5/components/Consent/parseConsentCookie.js +0 -29
- package/libEs5/components/Consent/types.js +0 -30
- package/libEs5/components/Consent/validateSetConsentOptions.js +0 -21
- package/libEs5/components/Context/createComponent.js +0 -35
- package/libEs5/components/Context/implementationDetails.js +0 -26
- package/libEs5/components/Context/index.js +0 -58
- package/libEs5/components/Context/injectDevice.js +0 -74
- package/libEs5/components/Context/injectEnvironment.js +0 -45
- package/libEs5/components/Context/injectHighEntropyUserAgentHints.js +0 -50
- package/libEs5/components/Context/injectOneTimeAnalyticsReferrer.js +0 -52
- package/libEs5/components/Context/injectPlaceContext.js +0 -33
- package/libEs5/components/Context/injectTimestamp.js +0 -23
- package/libEs5/components/Context/injectWeb.js +0 -29
- package/libEs5/components/DataCollector/index.js +0 -109
- package/libEs5/components/DataCollector/validateApplyResponse.js +0 -37
- package/libEs5/components/DataCollector/validateUserEventOptions.js +0 -55
- package/libEs5/components/EventMerge/createComponent.js +0 -26
- package/libEs5/components/EventMerge/createEventMergeId.js +0 -21
- package/libEs5/components/EventMerge/index.js +0 -24
- package/libEs5/components/Identity/addEcidToPayload.js +0 -21
- package/libEs5/components/Identity/appendIdentityToUrl/appendIdentityToUrlOptionsValidator.js +0 -25
- package/libEs5/components/Identity/appendIdentityToUrl/injectAppendIdentityToUrl.js +0 -35
- package/libEs5/components/Identity/configValidators.js +0 -21
- package/libEs5/components/Identity/constants/authState.js +0 -18
- package/libEs5/components/Identity/constants/defaultIdSyncTtlMinutes.js +0 -15
- package/libEs5/components/Identity/createComponent.js +0 -139
- package/libEs5/components/Identity/createLegacyIdentity.js +0 -72
- package/libEs5/components/Identity/getIdentity/createGetIdentity.js +0 -37
- package/libEs5/components/Identity/getIdentity/createGetIdentityOptionsValidator.js +0 -43
- package/libEs5/components/Identity/getIdentity/createIdentityRequest.js +0 -31
- package/libEs5/components/Identity/getIdentity/createIdentityRequestPayload.js +0 -30
- package/libEs5/components/Identity/getNamespacesFromResponse.js +0 -24
- package/libEs5/components/Identity/index.js +0 -143
- package/libEs5/components/Identity/injectAddEcidQueryToPayload.js +0 -33
- package/libEs5/components/Identity/injectAddLegacyEcidToPayload.js +0 -33
- package/libEs5/components/Identity/injectAddQueryStringIdentityToPayload.js +0 -64
- package/libEs5/components/Identity/injectAwaitIdentityCookie.js +0 -55
- package/libEs5/components/Identity/injectEnsureSingleIdentity.js +0 -103
- package/libEs5/components/Identity/injectHandleResponseForIdSyncs.js +0 -22
- package/libEs5/components/Identity/injectProcessIdSyncs.js +0 -39
- package/libEs5/components/Identity/injectSetDomainForInitialIdentityPayload.js +0 -34
- package/libEs5/components/Identity/visitorService/awaitVisitorOptIn.js +0 -36
- package/libEs5/components/Identity/visitorService/getVisitor.js +0 -20
- package/libEs5/components/Identity/visitorService/injectGetEcidFromVisitor.js +0 -51
- package/libEs5/components/LibraryInfo/index.js +0 -61
- package/libEs5/components/MediaAnalyticsBridge/constants/constants.js +0 -144
- package/libEs5/components/MediaAnalyticsBridge/constants/mediaKeysToXdmConverter.js +0 -49
- package/libEs5/components/MediaAnalyticsBridge/createGetInstance.js +0 -243
- package/libEs5/components/MediaAnalyticsBridge/createMediaAnalyticsBridgeComponent.js +0 -88
- package/libEs5/components/MediaAnalyticsBridge/createMediaHelper.js +0 -183
- package/libEs5/components/MediaAnalyticsBridge/index.js +0 -69
- package/libEs5/components/Personalization/constants/loggerMessage.js +0 -16
- package/libEs5/components/Personalization/constants/scopeType.js +0 -18
- package/libEs5/components/Personalization/constants/surface.js +0 -19
- package/libEs5/components/Personalization/createApplyPropositions.js +0 -123
- package/libEs5/components/Personalization/createClickStorage.js +0 -62
- package/libEs5/components/Personalization/createComponent.js +0 -137
- package/libEs5/components/Personalization/createFetchDataHandler.js +0 -129
- package/libEs5/components/Personalization/createGetPageLocation.js +0 -20
- package/libEs5/components/Personalization/createHandleConsentFlicker.js +0 -30
- package/libEs5/components/Personalization/createInteractionStorage.js +0 -87
- package/libEs5/components/Personalization/createNotificationHandler.js +0 -51
- package/libEs5/components/Personalization/createOnClickHandler.js +0 -83
- package/libEs5/components/Personalization/createOnDecisionHandler.js +0 -74
- package/libEs5/components/Personalization/createPersonalizationDetails.js +0 -98
- package/libEs5/components/Personalization/createSetTargetMigration.js +0 -30
- package/libEs5/components/Personalization/createViewCacheManager.js +0 -87
- package/libEs5/components/Personalization/createViewChangeHandler.js +0 -60
- package/libEs5/components/Personalization/dom-actions/action.js +0 -157
- package/libEs5/components/Personalization/dom-actions/addNonceToInlineStyleElements.js +0 -39
- package/libEs5/components/Personalization/dom-actions/appendHtml.js +0 -34
- package/libEs5/components/Personalization/dom-actions/clicks/collectClicks.js +0 -83
- package/libEs5/components/Personalization/dom-actions/clicks/collectInteractions.js +0 -78
- package/libEs5/components/Personalization/dom-actions/collectInteractions.js +0 -18
- package/libEs5/components/Personalization/dom-actions/createPreprocess.js +0 -24
- package/libEs5/components/Personalization/dom-actions/createRedirect.js +0 -25
- package/libEs5/components/Personalization/dom-actions/dom/createFragment.js +0 -22
- package/libEs5/components/Personalization/dom-actions/dom/getAttribute.js +0 -18
- package/libEs5/components/Personalization/dom-actions/dom/getChildNodes.js +0 -25
- package/libEs5/components/Personalization/dom-actions/dom/getChildren.js +0 -25
- package/libEs5/components/Personalization/dom-actions/dom/getElementById.js +0 -24
- package/libEs5/components/Personalization/dom-actions/dom/getFirstChild.js +0 -18
- package/libEs5/components/Personalization/dom-actions/dom/getNextSibling.js +0 -18
- package/libEs5/components/Personalization/dom-actions/dom/getNonce.js +0 -36
- package/libEs5/components/Personalization/dom-actions/dom/getParent.js +0 -18
- package/libEs5/components/Personalization/dom-actions/dom/helperForEq.js +0 -24
- package/libEs5/components/Personalization/dom-actions/dom/index.js +0 -100
- package/libEs5/components/Personalization/dom-actions/dom/insertAfter.js +0 -26
- package/libEs5/components/Personalization/dom-actions/dom/insertBefore.js +0 -25
- package/libEs5/components/Personalization/dom-actions/dom/isDomElement.js +0 -16
- package/libEs5/components/Personalization/dom-actions/dom/matchesSelectorWithEq.js +0 -38
- package/libEs5/components/Personalization/dom-actions/dom/removeAttribute.js +0 -18
- package/libEs5/components/Personalization/dom-actions/dom/selectNodesWithEq.js +0 -105
- package/libEs5/components/Personalization/dom-actions/dom/setAttribute.js +0 -18
- package/libEs5/components/Personalization/dom-actions/dom/setStyle.js +0 -24
- package/libEs5/components/Personalization/dom-actions/dom/util.js +0 -20
- package/libEs5/components/Personalization/dom-actions/images.js +0 -37
- package/libEs5/components/Personalization/dom-actions/index.js +0 -9
- package/libEs5/components/Personalization/dom-actions/initDomActionsModules.js +0 -69
- package/libEs5/components/Personalization/dom-actions/insertHtmlAfter.js +0 -35
- package/libEs5/components/Personalization/dom-actions/insertHtmlBefore.js +0 -33
- package/libEs5/components/Personalization/dom-actions/move.js +0 -31
- package/libEs5/components/Personalization/dom-actions/prependHtml.js +0 -49
- package/libEs5/components/Personalization/dom-actions/rearrangeChildren.js +0 -36
- package/libEs5/components/Personalization/dom-actions/remapCustomCodeOffers.js +0 -41
- package/libEs5/components/Personalization/dom-actions/remapHeadOffers.js +0 -61
- package/libEs5/components/Personalization/dom-actions/replaceHtml.js +0 -22
- package/libEs5/components/Personalization/dom-actions/resize.js +0 -31
- package/libEs5/components/Personalization/dom-actions/scripts.js +0 -102
- package/libEs5/components/Personalization/dom-actions/setAttributes.js +0 -22
- package/libEs5/components/Personalization/dom-actions/setHtml.js +0 -28
- package/libEs5/components/Personalization/dom-actions/setStyles.js +0 -26
- package/libEs5/components/Personalization/dom-actions/setText.js +0 -19
- package/libEs5/components/Personalization/dom-actions/swapImage.js +0 -33
- package/libEs5/components/Personalization/flicker/index.js +0 -103
- package/libEs5/components/Personalization/handlers/createDecorateProposition.js +0 -61
- package/libEs5/components/Personalization/handlers/createProcessDomAction.js +0 -72
- package/libEs5/components/Personalization/handlers/createProcessHtmlContent.js +0 -50
- package/libEs5/components/Personalization/handlers/createProcessInAppMessage.js +0 -85
- package/libEs5/components/Personalization/handlers/createProcessPropositions.js +0 -217
- package/libEs5/components/Personalization/handlers/createProcessRedirect.js +0 -62
- package/libEs5/components/Personalization/handlers/createRenderStatusHandler.js +0 -59
- package/libEs5/components/Personalization/handlers/injectCreateProposition.js +0 -127
- package/libEs5/components/Personalization/handlers/processDefaultContent.js +0 -23
- package/libEs5/components/Personalization/in-app-message-actions/actions/displayIframeContent.js +0 -304
- package/libEs5/components/Personalization/in-app-message-actions/initInAppMessageActionsModules.js +0 -21
- package/libEs5/components/Personalization/in-app-message-actions/utils.js +0 -56
- package/libEs5/components/Personalization/index.js +0 -198
- package/libEs5/components/Personalization/utils/addRenderAttemptedToDecisions.js +0 -24
- package/libEs5/components/Personalization/utils/createAsyncArray.js +0 -39
- package/libEs5/components/Personalization/utils/isAuthoringModeEnabled.js +0 -18
- package/libEs5/components/Personalization/utils/metaUtils.js +0 -28
- package/libEs5/components/Personalization/utils/surfaceUtils.js +0 -82
- package/libEs5/components/Personalization/validateApplyPropositionsOptions.js +0 -47
- package/libEs5/components/PushNotifications/helpers/constants.js +0 -19
- package/libEs5/components/PushNotifications/helpers/getPushSubscriptionDetails.js +0 -116
- package/libEs5/components/PushNotifications/helpers/readFromIndexedDb.js +0 -41
- package/libEs5/components/PushNotifications/helpers/saveToIndexedDb.js +0 -50
- package/libEs5/components/PushNotifications/helpers/serviceWorkerNotificationClickListener.js +0 -85
- package/libEs5/components/PushNotifications/helpers/serviceWorkerPushListener.js +0 -70
- package/libEs5/components/PushNotifications/index.js +0 -129
- package/libEs5/components/PushNotifications/request/createSendPushSubscriptionPayload.js +0 -62
- package/libEs5/components/PushNotifications/request/createSendPushSubscriptionRequest.js +0 -35
- package/libEs5/components/PushNotifications/request/makeSendPushSubscriptionRequest.js +0 -93
- package/libEs5/components/PushNotifications/request/makeSendServiceWorkerTrackingData.js +0 -146
- package/libEs5/components/PushNotifications/types.js +0 -107
- package/libEs5/components/RulesEngine/consequenceAdapters/inAppMessageConsequenceAdapter.js +0 -34
- package/libEs5/components/RulesEngine/consequenceAdapters/schemaTypeConsequenceAdapter.js +0 -27
- package/libEs5/components/RulesEngine/constants/index.js +0 -37
- package/libEs5/components/RulesEngine/createApplyResponse.js +0 -45
- package/libEs5/components/RulesEngine/createConsequenceAdapter.js +0 -33
- package/libEs5/components/RulesEngine/createContextProvider.js +0 -99
- package/libEs5/components/RulesEngine/createDecisionProvider.js +0 -48
- package/libEs5/components/RulesEngine/createEvaluableRulesetPayload.js +0 -90
- package/libEs5/components/RulesEngine/createEvaluateRulesetsCommand.js +0 -50
- package/libEs5/components/RulesEngine/createEventRegistry.js +0 -163
- package/libEs5/components/RulesEngine/createOnResponseHandler.js +0 -49
- package/libEs5/components/RulesEngine/createSubscribeRulesetItems.js +0 -134
- package/libEs5/components/RulesEngine/index.js +0 -155
- package/libEs5/components/RulesEngine/types.js +0 -91
- package/libEs5/components/RulesEngine/utils/createEventPruner.js +0 -57
- package/libEs5/components/RulesEngine/utils/extractPayloadsFromEventHistoryOperations.js +0 -50
- package/libEs5/components/RulesEngine/utils/generateEventHash.js +0 -36
- package/libEs5/components/RulesEngine/utils/getExpirationDate.js +0 -20
- package/libEs5/components/RulesEngine/utils/getPropositionData.js +0 -19
- package/libEs5/components/RulesEngine/utils/hasExperienceData.js +0 -21
- package/libEs5/components/RulesEngine/utils/index.js +0 -68
- package/libEs5/components/RulesEngine/utils/storage.js +0 -47
- package/libEs5/components/StreamingMedia/configValidators.js +0 -24
- package/libEs5/components/StreamingMedia/constants/eventTypes.js +0 -34
- package/libEs5/components/StreamingMedia/constants/playbackState.js +0 -19
- package/libEs5/components/StreamingMedia/createMediaEventManager.js +0 -129
- package/libEs5/components/StreamingMedia/createMediaRequest.js +0 -31
- package/libEs5/components/StreamingMedia/createMediaResponseHandler.js +0 -62
- package/libEs5/components/StreamingMedia/createMediaSessionCacheManager.js +0 -62
- package/libEs5/components/StreamingMedia/createStreamingMediaComponent.js +0 -73
- package/libEs5/components/StreamingMedia/createTrackMediaEvent.js +0 -98
- package/libEs5/components/StreamingMedia/createTrackMediaSession.js +0 -57
- package/libEs5/components/StreamingMedia/index.js +0 -67
- package/libEs5/components/StreamingMedia/validateMediaEventOptions.js +0 -37
- package/libEs5/components/StreamingMedia/validateMediaSessionOptions.js +0 -40
- package/libEs5/constants/apiVersion.js +0 -15
- package/libEs5/constants/browser.js +0 -22
- package/libEs5/constants/consentPurpose.js +0 -16
- package/libEs5/constants/consentStatus.js +0 -21
- package/libEs5/constants/contentType.js +0 -16
- package/libEs5/constants/cookieNameKey.js +0 -18
- package/libEs5/constants/cookieNamePrefix.js +0 -16
- package/libEs5/constants/coreCommands.js +0 -17
- package/libEs5/constants/coreNamespace.js +0 -15
- package/libEs5/constants/debugQueryParam.js +0 -15
- package/libEs5/constants/decisionProvider.js +0 -17
- package/libEs5/constants/domain.js +0 -17
- package/libEs5/constants/ecidNamespace.js +0 -15
- package/libEs5/constants/edgeBasePath.js +0 -15
- package/libEs5/constants/elementAttribute.js +0 -16
- package/libEs5/constants/eventType.js +0 -21
- package/libEs5/constants/highEntropyUserAgentClientHints.js +0 -15
- package/libEs5/constants/httpHeaderNames.js +0 -17
- package/libEs5/constants/httpStatusCode.js +0 -20
- package/libEs5/constants/identityMapAuthenticatedState.js +0 -17
- package/libEs5/constants/legacyCookies.js +0 -18
- package/libEs5/constants/libraryName.js +0 -15
- package/libEs5/constants/libraryVersion.js +0 -17
- package/libEs5/constants/namespace.js +0 -15
- package/libEs5/constants/pageWideScope.js +0 -15
- package/libEs5/constants/propositionEventType.js +0 -41
- package/libEs5/constants/propositionInteractionType.js +0 -18
- package/libEs5/constants/queryStringIdentityParam.js +0 -15
- package/libEs5/constants/schema.js +0 -26
- package/libEs5/constants/sessionDataKeys.js +0 -15
- package/libEs5/constants/shadowSeparator.js +0 -15
- package/libEs5/constants/surface.js +0 -19
- package/libEs5/constants/tagName.js +0 -22
- package/libEs5/core/buildAndValidateConfig.js +0 -100
- package/libEs5/core/componentCreators.js +0 -79
- package/libEs5/core/config/createConfig.js +0 -21
- package/libEs5/core/config/createCoreConfigs.js +0 -28
- package/libEs5/core/consent/createConsent.js +0 -73
- package/libEs5/core/consent/createConsentStateMachine.js +0 -165
- package/libEs5/core/consent/types.js +0 -36
- package/libEs5/core/createComponentRegistry.js +0 -87
- package/libEs5/core/createCookieTransfer.js +0 -82
- package/libEs5/core/createEvent.js +0 -172
- package/libEs5/core/createEventManager.js +0 -139
- package/libEs5/core/createInstanceFunction.js +0 -20
- package/libEs5/core/createLifecycle.js +0 -69
- package/libEs5/core/createLogController.js +0 -71
- package/libEs5/core/createLogger.js +0 -117
- package/libEs5/core/edgeNetwork/handleRequestFailure.js +0 -28
- package/libEs5/core/edgeNetwork/injectApplyResponse.js +0 -63
- package/libEs5/core/edgeNetwork/injectExtractEdgeInfo.js +0 -36
- package/libEs5/core/edgeNetwork/injectGetLocationHint.js +0 -35
- package/libEs5/core/edgeNetwork/injectProcessWarningsAndErrors.js +0 -46
- package/libEs5/core/edgeNetwork/injectSendEdgeNetworkRequest.js +0 -170
- package/libEs5/core/edgeNetwork/mergeLifecycleResponses.js +0 -24
- package/libEs5/core/edgeNetwork/types.js +0 -22
- package/libEs5/core/getMonitors.js +0 -32
- package/libEs5/core/identity/createIdentity.js +0 -82
- package/libEs5/core/identity/types.js +0 -27
- package/libEs5/core/index.js +0 -255
- package/libEs5/core/initializeComponents.js +0 -43
- package/libEs5/core/injectCreateResponse.js +0 -73
- package/libEs5/core/injectExecuteCommand.js +0 -116
- package/libEs5/core/injectHandleError.js +0 -36
- package/libEs5/core/injectShouldTransferCookie.js +0 -28
- package/libEs5/core/network/getRequestRetryDelay.js +0 -75
- package/libEs5/core/network/injectSendNetworkRequest.js +0 -99
- package/libEs5/core/network/isRequestRetryable.js +0 -28
- package/libEs5/core/network/requestMethods/injectSendBeaconRequest.js +0 -41
- package/libEs5/core/network/requestMethods/injectSendFetchRequest.js +0 -43
- package/libEs5/core/requiredComponentCreators.js +0 -30
- package/libEs5/core/types.js +0 -121
- package/libEs5/core/validateCommandOptions.js +0 -37
- package/libEs5/index.js +0 -115
- package/libEs5/package.json +0 -1
- package/libEs5/serviceWorker.js +0 -91
- package/libEs5/standalone.js +0 -23
- package/libEs5/utils/assignConcatArrayValues.js +0 -39
- package/libEs5/utils/bytes.js +0 -49
- package/libEs5/utils/clamp.js +0 -25
- package/libEs5/utils/clone.js +0 -21
- package/libEs5/utils/cookieJar.js +0 -21
- package/libEs5/utils/createCallbackAggregator.js +0 -34
- package/libEs5/utils/createCollect.js +0 -54
- package/libEs5/utils/createDecodeKndctrCookie.js +0 -259
- package/libEs5/utils/createLoggingCookieJar.js +0 -44
- package/libEs5/utils/createMerger.js +0 -33
- package/libEs5/utils/createSubscription.js +0 -90
- package/libEs5/utils/createTaskQueue.js +0 -51
- package/libEs5/utils/decodeUriComponentSafely.js +0 -22
- package/libEs5/utils/deduplicateArray.js +0 -27
- package/libEs5/utils/deepAssign.js +0 -49
- package/libEs5/utils/defer.js +0 -27
- package/libEs5/utils/dom/appendNode.js +0 -18
- package/libEs5/utils/dom/awaitSelector.js +0 -111
- package/libEs5/utils/dom/createGetPageLocation.js +0 -20
- package/libEs5/utils/dom/createNode.js +0 -42
- package/libEs5/utils/dom/index.js +0 -65
- package/libEs5/utils/dom/isShadowSelector.js +0 -17
- package/libEs5/utils/dom/loadScript.js +0 -93
- package/libEs5/utils/dom/matchesSelector.js +0 -29
- package/libEs5/utils/dom/querySelectorAll.js +0 -24
- package/libEs5/utils/dom/removeNode.js +0 -22
- package/libEs5/utils/dom/selectNodes.js +0 -30
- package/libEs5/utils/dom/selectNodesWithShadow.js +0 -56
- package/libEs5/utils/event.js +0 -49
- package/libEs5/utils/filterObject.js +0 -57
- package/libEs5/utils/fireImage.js +0 -39
- package/libEs5/utils/flattenArray.js +0 -16
- package/libEs5/utils/flattenObject.js +0 -32
- package/libEs5/utils/fnv1a32Hex.js +0 -51
- package/libEs5/utils/getApexDomain.js +0 -46
- package/libEs5/utils/getLastArrayItems.js +0 -22
- package/libEs5/utils/getNamespacedCookieName.js +0 -18
- package/libEs5/utils/groupBy.js +0 -32
- package/libEs5/utils/index.js +0 -372
- package/libEs5/utils/indexedDb.js +0 -73
- package/libEs5/utils/injectAreThirdPartyCookiesSupportedByDefault.js +0 -25
- package/libEs5/utils/injectDoesIdentityCookieExist.js +0 -27
- package/libEs5/utils/injectFireReferrerHideableImage.js +0 -69
- package/libEs5/utils/injectGetBrowser.js +0 -69
- package/libEs5/utils/injectStorage.js +0 -91
- package/libEs5/utils/intersection.js +0 -22
- package/libEs5/utils/isBlankString.js +0 -22
- package/libEs5/utils/isBoolean.js +0 -21
- package/libEs5/utils/isEmptyObject.js +0 -22
- package/libEs5/utils/isFunction.js +0 -21
- package/libEs5/utils/isInteger.js +0 -25
- package/libEs5/utils/isNamespacedCookieName.js +0 -25
- package/libEs5/utils/isNil.js +0 -21
- package/libEs5/utils/isNonEmptyArray.js +0 -21
- package/libEs5/utils/isNonEmptyString.js +0 -22
- package/libEs5/utils/isNumber.js +0 -21
- package/libEs5/utils/isObject.js +0 -22
- package/libEs5/utils/isString.js +0 -21
- package/libEs5/utils/isUnique.js +0 -31
- package/libEs5/utils/isValidRegExp.js +0 -27
- package/libEs5/utils/lazy.js +0 -26
- package/libEs5/utils/networkErrors.js +0 -26
- package/libEs5/utils/noop.js +0 -19
- package/libEs5/utils/parseUrl.js +0 -97
- package/libEs5/utils/prepareConfigOverridesForEdge.js +0 -55
- package/libEs5/utils/querystring.js +0 -16
- package/libEs5/utils/request/createAddIdentity.js +0 -23
- package/libEs5/utils/request/createDataCollectionRequest.js +0 -72
- package/libEs5/utils/request/createDataCollectionRequestPayload.js +0 -45
- package/libEs5/utils/request/createGetAssuranceValidationTokenParams.js +0 -46
- package/libEs5/utils/request/createHasIdentity.js +0 -18
- package/libEs5/utils/request/createRequest.js +0 -96
- package/libEs5/utils/request/createRequestParams.js +0 -50
- package/libEs5/utils/request/createRequestPayload.js +0 -111
- package/libEs5/utils/request/index.js +0 -58
- package/libEs5/utils/request/types.js +0 -65
- package/libEs5/utils/sanitizeOrgIdForCookieName.js +0 -16
- package/libEs5/utils/sortObjectKeysRecursively.js +0 -42
- package/libEs5/utils/stackError.js +0 -37
- package/libEs5/utils/stringToBoolean.js +0 -19
- package/libEs5/utils/surfaceUtils.js +0 -82
- package/libEs5/utils/toArray.js +0 -24
- package/libEs5/utils/toError.js +0 -24
- package/libEs5/utils/toISOStringLocal.js +0 -54
- package/libEs5/utils/toInteger.js +0 -31
- package/libEs5/utils/types.js +0 -51
- package/libEs5/utils/updateErrorMessage.js +0 -26
- package/libEs5/utils/uuid.js +0 -17
- package/libEs5/utils/validateConfigOverride.js +0 -16
- package/libEs5/utils/validateIdentityMap.js +0 -25
- package/libEs5/utils/validation/booleanValidator.js +0 -21
- package/libEs5/utils/validation/callbackValidator.js +0 -21
- package/libEs5/utils/validation/createAnyOfValidator.js +0 -29
- package/libEs5/utils/validation/createArrayOfValidator.js +0 -32
- package/libEs5/utils/validation/createDefaultValidator.js +0 -21
- package/libEs5/utils/validation/createDeprecatedValidator.js +0 -27
- package/libEs5/utils/validation/createLiteralValidator.js +0 -20
- package/libEs5/utils/validation/createMapOfValuesValidator.js +0 -38
- package/libEs5/utils/validation/createMaximumValidator.js +0 -20
- package/libEs5/utils/validation/createMinimumValidator.js +0 -20
- package/libEs5/utils/validation/createNoUnknownFieldsValidator.js +0 -28
- package/libEs5/utils/validation/createNonEmptyValidator.js +0 -26
- package/libEs5/utils/validation/createObjectOfValidator.js +0 -46
- package/libEs5/utils/validation/createRenamedValidator.js +0 -41
- package/libEs5/utils/validation/createUniqueItemsValidator.js +0 -23
- package/libEs5/utils/validation/createUniqueValidator.js +0 -24
- package/libEs5/utils/validation/domainValidator.js +0 -22
- package/libEs5/utils/validation/index.js +0 -237
- package/libEs5/utils/validation/integerValidator.js +0 -21
- package/libEs5/utils/validation/matchesRegexpValidator.js +0 -20
- package/libEs5/utils/validation/numberValidator.js +0 -21
- package/libEs5/utils/validation/regexpValidator.js +0 -21
- package/libEs5/utils/validation/requiredValidator.js +0 -21
- package/libEs5/utils/validation/stringValidator.js +0 -21
- package/libEs5/utils/validation/utils.js +0 -131
- package/libEs6/baseCode/index.js +0 -61
- package/libEs6/components/ActivityCollector/attachClickActivityCollector.js +0 -56
- package/libEs6/components/ActivityCollector/configValidators.js +0 -39
- package/libEs6/components/ActivityCollector/createClickActivityStorage.js +0 -34
- package/libEs6/components/ActivityCollector/createClickedElementProperties.js +0 -218
- package/libEs6/components/ActivityCollector/createGetClickedElementProperties.js +0 -69
- package/libEs6/components/ActivityCollector/createInjectClickedElementProperties.js +0 -69
- package/libEs6/components/ActivityCollector/createRecallAndInjectClickedElementProperties.js +0 -45
- package/libEs6/components/ActivityCollector/createStorePageViewProperties.js +0 -22
- package/libEs6/components/ActivityCollector/getLinkName.js +0 -128
- package/libEs6/components/ActivityCollector/getLinkRegion.js +0 -58
- package/libEs6/components/ActivityCollector/index.js +0 -128
- package/libEs6/components/ActivityCollector/utils/activityMapExtensionEnabled.js +0 -14
- package/libEs6/components/ActivityCollector/utils/createTransientStorage.js +0 -26
- package/libEs6/components/ActivityCollector/utils/determineLinkType.js +0 -26
- package/libEs6/components/ActivityCollector/utils/dom/elementHasClickHandler.js +0 -15
- package/libEs6/components/ActivityCollector/utils/dom/extractDomain.js +0 -20
- package/libEs6/components/ActivityCollector/utils/dom/findClickableElement.js +0 -30
- package/libEs6/components/ActivityCollector/utils/dom/getAbsoluteUrlFromAnchorElement.js +0 -25
- package/libEs6/components/ActivityCollector/utils/dom/isButtonSubmitElement.js +0 -15
- package/libEs6/components/ActivityCollector/utils/dom/isDownloadLink.js +0 -26
- package/libEs6/components/ActivityCollector/utils/dom/isExitLink.js +0 -23
- package/libEs6/components/ActivityCollector/utils/dom/isInputSubmitElement.js +0 -26
- package/libEs6/components/ActivityCollector/utils/dom/isSupportedAnchorElement.js +0 -18
- package/libEs6/components/ActivityCollector/utils/dom/isSupportedTextNode.js +0 -27
- package/libEs6/components/ActivityCollector/utils/hasPageName.js +0 -19
- package/libEs6/components/ActivityCollector/utils/isDifferentDomains.js +0 -18
- package/libEs6/components/ActivityCollector/utils/trimQueryFromUrl.js +0 -28
- package/libEs6/components/ActivityCollector/utils/truncateWhiteSpace.js +0 -22
- package/libEs6/components/ActivityCollector/validateClickCollectionConfig.js +0 -40
- package/libEs6/components/Advertising/configValidators.js +0 -24
- package/libEs6/components/Advertising/constants/index.js +0 -75
- package/libEs6/components/Advertising/createComponent.js +0 -64
- package/libEs6/components/Advertising/handlers/clickThroughHandler.js +0 -78
- package/libEs6/components/Advertising/handlers/createAdConversionHandler.js +0 -52
- package/libEs6/components/Advertising/handlers/onBeforeSendEventHandler.js +0 -77
- package/libEs6/components/Advertising/handlers/sendAdConversion.js +0 -68
- package/libEs6/components/Advertising/handlers/viewThroughHandler.js +0 -60
- package/libEs6/components/Advertising/identities/collectAllIdentities.js +0 -31
- package/libEs6/components/Advertising/identities/collectID5Id.js +0 -108
- package/libEs6/components/Advertising/identities/collectRampId.js +0 -179
- package/libEs6/components/Advertising/identities/collectSurferId.js +0 -150
- package/libEs6/components/Advertising/index.js +0 -50
- package/libEs6/components/Advertising/utils/advertisingCookieManager.js +0 -77
- package/libEs6/components/Advertising/utils/helpers.js +0 -113
- package/libEs6/components/Audiences/index.js +0 -47
- package/libEs6/components/Audiences/injectProcessDestinations.js +0 -60
- package/libEs6/components/Audiences/injectProcessResponse.js +0 -38
- package/libEs6/components/BrandConcierge/configValidators.js +0 -22
- package/libEs6/components/BrandConcierge/constants.js +0 -13
- package/libEs6/components/BrandConcierge/createBuildEndpointUrl.js +0 -30
- package/libEs6/components/BrandConcierge/createConversationServiceRequest.js +0 -31
- package/libEs6/components/BrandConcierge/createSendConversationEvent.js +0 -144
- package/libEs6/components/BrandConcierge/createSendConversationServiceRequest.js +0 -81
- package/libEs6/components/BrandConcierge/createStreamParser.js +0 -138
- package/libEs6/components/BrandConcierge/createTimeoutWrapper.js +0 -76
- package/libEs6/components/BrandConcierge/index.js +0 -98
- package/libEs6/components/BrandConcierge/utils.js +0 -27
- package/libEs6/components/BrandConcierge/validateMessage.js +0 -40
- package/libEs6/components/Consent/computeConsentHash.js +0 -14
- package/libEs6/components/Consent/configValidators.js +0 -16
- package/libEs6/components/Consent/createComponent.js +0 -85
- package/libEs6/components/Consent/createConsentHashStore.js +0 -57
- package/libEs6/components/Consent/createConsentRequest.js +0 -28
- package/libEs6/components/Consent/createConsentRequestPayload.js +0 -44
- package/libEs6/components/Consent/createStoredConsent.js +0 -30
- package/libEs6/components/Consent/index.js +0 -65
- package/libEs6/components/Consent/injectSendSetConsentRequest.js +0 -45
- package/libEs6/components/Consent/parseConsentCookie.js +0 -26
- package/libEs6/components/Consent/types.js +0 -27
- package/libEs6/components/Consent/validateSetConsentOptions.js +0 -18
- package/libEs6/components/Context/createComponent.js +0 -31
- package/libEs6/components/Context/implementationDetails.js +0 -22
- package/libEs6/components/Context/index.js +0 -55
- package/libEs6/components/Context/injectDevice.js +0 -70
- package/libEs6/components/Context/injectEnvironment.js +0 -42
- package/libEs6/components/Context/injectHighEntropyUserAgentHints.js +0 -46
- package/libEs6/components/Context/injectOneTimeAnalyticsReferrer.js +0 -48
- package/libEs6/components/Context/injectPlaceContext.js +0 -29
- package/libEs6/components/Context/injectTimestamp.js +0 -20
- package/libEs6/components/Context/injectWeb.js +0 -26
- package/libEs6/components/DataCollector/index.js +0 -106
- package/libEs6/components/DataCollector/validateApplyResponse.js +0 -33
- package/libEs6/components/DataCollector/validateUserEventOptions.js +0 -52
- package/libEs6/components/EventMerge/createComponent.js +0 -23
- package/libEs6/components/EventMerge/createEventMergeId.js +0 -18
- package/libEs6/components/EventMerge/index.js +0 -21
- package/libEs6/components/Identity/addEcidToPayload.js +0 -18
- package/libEs6/components/Identity/appendIdentityToUrl/appendIdentityToUrlOptionsValidator.js +0 -23
- package/libEs6/components/Identity/appendIdentityToUrl/injectAppendIdentityToUrl.js +0 -31
- package/libEs6/components/Identity/configValidators.js +0 -18
- package/libEs6/components/Identity/constants/authState.js +0 -15
- package/libEs6/components/Identity/constants/defaultIdSyncTtlMinutes.js +0 -13
- package/libEs6/components/Identity/createComponent.js +0 -135
- package/libEs6/components/Identity/createLegacyIdentity.js +0 -69
- package/libEs6/components/Identity/getIdentity/createGetIdentity.js +0 -34
- package/libEs6/components/Identity/getIdentity/createGetIdentityOptionsValidator.js +0 -40
- package/libEs6/components/Identity/getIdentity/createIdentityRequest.js +0 -28
- package/libEs6/components/Identity/getIdentity/createIdentityRequestPayload.js +0 -27
- package/libEs6/components/Identity/getNamespacesFromResponse.js +0 -20
- package/libEs6/components/Identity/index.js +0 -140
- package/libEs6/components/Identity/injectAddEcidQueryToPayload.js +0 -30
- package/libEs6/components/Identity/injectAddLegacyEcidToPayload.js +0 -30
- package/libEs6/components/Identity/injectAddQueryStringIdentityToPayload.js +0 -61
- package/libEs6/components/Identity/injectAwaitIdentityCookie.js +0 -52
- package/libEs6/components/Identity/injectEnsureSingleIdentity.js +0 -100
- package/libEs6/components/Identity/injectHandleResponseForIdSyncs.js +0 -19
- package/libEs6/components/Identity/injectProcessIdSyncs.js +0 -34
- package/libEs6/components/Identity/injectSetDomainForInitialIdentityPayload.js +0 -31
- package/libEs6/components/Identity/visitorService/awaitVisitorOptIn.js +0 -33
- package/libEs6/components/Identity/visitorService/getVisitor.js +0 -17
- package/libEs6/components/Identity/visitorService/injectGetEcidFromVisitor.js +0 -48
- package/libEs6/components/LibraryInfo/index.js +0 -58
- package/libEs6/components/MediaAnalyticsBridge/constants/constants.js +0 -141
- package/libEs6/components/MediaAnalyticsBridge/constants/mediaKeysToXdmConverter.js +0 -46
- package/libEs6/components/MediaAnalyticsBridge/createGetInstance.js +0 -239
- package/libEs6/components/MediaAnalyticsBridge/createMediaAnalyticsBridgeComponent.js +0 -85
- package/libEs6/components/MediaAnalyticsBridge/createMediaHelper.js +0 -180
- package/libEs6/components/MediaAnalyticsBridge/index.js +0 -66
- package/libEs6/components/Personalization/constants/loggerMessage.js +0 -13
- package/libEs6/components/Personalization/constants/scopeType.js +0 -15
- package/libEs6/components/Personalization/constants/surface.js +0 -16
- package/libEs6/components/Personalization/createApplyPropositions.js +0 -119
- package/libEs6/components/Personalization/createClickStorage.js +0 -58
- package/libEs6/components/Personalization/createComponent.js +0 -134
- package/libEs6/components/Personalization/createFetchDataHandler.js +0 -124
- package/libEs6/components/Personalization/createGetPageLocation.js +0 -17
- package/libEs6/components/Personalization/createHandleConsentFlicker.js +0 -26
- package/libEs6/components/Personalization/createInteractionStorage.js +0 -84
- package/libEs6/components/Personalization/createNotificationHandler.js +0 -47
- package/libEs6/components/Personalization/createOnClickHandler.js +0 -79
- package/libEs6/components/Personalization/createOnDecisionHandler.js +0 -71
- package/libEs6/components/Personalization/createPersonalizationDetails.js +0 -94
- package/libEs6/components/Personalization/createSetTargetMigration.js +0 -27
- package/libEs6/components/Personalization/createViewCacheManager.js +0 -84
- package/libEs6/components/Personalization/createViewChangeHandler.js +0 -57
- package/libEs6/components/Personalization/dom-actions/action.js +0 -88
- package/libEs6/components/Personalization/dom-actions/addNonceToInlineStyleElements.js +0 -35
- package/libEs6/components/Personalization/dom-actions/appendHtml.js +0 -31
- package/libEs6/components/Personalization/dom-actions/clicks/collectClicks.js +0 -79
- package/libEs6/components/Personalization/dom-actions/clicks/collectInteractions.js +0 -74
- package/libEs6/components/Personalization/dom-actions/collectInteractions.js +0 -15
- package/libEs6/components/Personalization/dom-actions/createPreprocess.js +0 -21
- package/libEs6/components/Personalization/dom-actions/createRedirect.js +0 -22
- package/libEs6/components/Personalization/dom-actions/dom/createFragment.js +0 -19
- package/libEs6/components/Personalization/dom-actions/dom/getAttribute.js +0 -15
- package/libEs6/components/Personalization/dom-actions/dom/getChildNodes.js +0 -22
- package/libEs6/components/Personalization/dom-actions/dom/getChildren.js +0 -22
- package/libEs6/components/Personalization/dom-actions/dom/getElementById.js +0 -21
- package/libEs6/components/Personalization/dom-actions/dom/getFirstChild.js +0 -15
- package/libEs6/components/Personalization/dom-actions/dom/getNextSibling.js +0 -15
- package/libEs6/components/Personalization/dom-actions/dom/getNonce.js +0 -33
- package/libEs6/components/Personalization/dom-actions/dom/getParent.js +0 -15
- package/libEs6/components/Personalization/dom-actions/dom/helperForEq.js +0 -19
- package/libEs6/components/Personalization/dom-actions/dom/index.js +0 -26
- package/libEs6/components/Personalization/dom-actions/dom/insertAfter.js +0 -23
- package/libEs6/components/Personalization/dom-actions/dom/insertBefore.js +0 -22
- package/libEs6/components/Personalization/dom-actions/dom/isDomElement.js +0 -12
- package/libEs6/components/Personalization/dom-actions/dom/matchesSelectorWithEq.js +0 -35
- package/libEs6/components/Personalization/dom-actions/dom/removeAttribute.js +0 -15
- package/libEs6/components/Personalization/dom-actions/dom/selectNodesWithEq.js +0 -100
- package/libEs6/components/Personalization/dom-actions/dom/setAttribute.js +0 -15
- package/libEs6/components/Personalization/dom-actions/dom/setStyle.js +0 -21
- package/libEs6/components/Personalization/dom-actions/dom/util.js +0 -16
- package/libEs6/components/Personalization/dom-actions/images.js +0 -31
- package/libEs6/components/Personalization/dom-actions/index.js +0 -13
- package/libEs6/components/Personalization/dom-actions/initDomActionsModules.js +0 -65
- package/libEs6/components/Personalization/dom-actions/insertHtmlAfter.js +0 -32
- package/libEs6/components/Personalization/dom-actions/insertHtmlBefore.js +0 -30
- package/libEs6/components/Personalization/dom-actions/move.js +0 -28
- package/libEs6/components/Personalization/dom-actions/prependHtml.js +0 -46
- package/libEs6/components/Personalization/dom-actions/rearrangeChildren.js +0 -33
- package/libEs6/components/Personalization/dom-actions/remapCustomCodeOffers.js +0 -36
- package/libEs6/components/Personalization/dom-actions/remapHeadOffers.js +0 -57
- package/libEs6/components/Personalization/dom-actions/replaceHtml.js +0 -19
- package/libEs6/components/Personalization/dom-actions/resize.js +0 -28
- package/libEs6/components/Personalization/dom-actions/scripts.js +0 -93
- package/libEs6/components/Personalization/dom-actions/setAttributes.js +0 -19
- package/libEs6/components/Personalization/dom-actions/setHtml.js +0 -24
- package/libEs6/components/Personalization/dom-actions/setStyles.js +0 -23
- package/libEs6/components/Personalization/dom-actions/setText.js +0 -16
- package/libEs6/components/Personalization/dom-actions/swapImage.js +0 -30
- package/libEs6/components/Personalization/flicker/index.js +0 -96
- package/libEs6/components/Personalization/handlers/createDecorateProposition.js +0 -57
- package/libEs6/components/Personalization/handlers/createProcessDomAction.js +0 -69
- package/libEs6/components/Personalization/handlers/createProcessHtmlContent.js +0 -46
- package/libEs6/components/Personalization/handlers/createProcessInAppMessage.js +0 -80
- package/libEs6/components/Personalization/handlers/createProcessPropositions.js +0 -214
- package/libEs6/components/Personalization/handlers/createProcessRedirect.js +0 -57
- package/libEs6/components/Personalization/handlers/createRenderStatusHandler.js +0 -56
- package/libEs6/components/Personalization/handlers/injectCreateProposition.js +0 -124
- package/libEs6/components/Personalization/handlers/processDefaultContent.js +0 -19
- package/libEs6/components/Personalization/in-app-message-actions/actions/displayIframeContent.js +0 -295
- package/libEs6/components/Personalization/in-app-message-actions/initInAppMessageActionsModules.js +0 -17
- package/libEs6/components/Personalization/in-app-message-actions/utils.js +0 -50
- package/libEs6/components/Personalization/index.js +0 -195
- package/libEs6/components/Personalization/utils/addRenderAttemptedToDecisions.js +0 -21
- package/libEs6/components/Personalization/utils/createAsyncArray.js +0 -35
- package/libEs6/components/Personalization/utils/isAuthoringModeEnabled.js +0 -15
- package/libEs6/components/Personalization/utils/metaUtils.js +0 -23
- package/libEs6/components/Personalization/utils/surfaceUtils.js +0 -76
- package/libEs6/components/Personalization/validateApplyPropositionsOptions.js +0 -42
- package/libEs6/components/PushNotifications/helpers/constants.js +0 -16
- package/libEs6/components/PushNotifications/helpers/getPushSubscriptionDetails.js +0 -114
- package/libEs6/components/PushNotifications/helpers/readFromIndexedDb.js +0 -40
- package/libEs6/components/PushNotifications/helpers/saveToIndexedDb.js +0 -48
- package/libEs6/components/PushNotifications/helpers/serviceWorkerNotificationClickListener.js +0 -82
- package/libEs6/components/PushNotifications/helpers/serviceWorkerPushListener.js +0 -69
- package/libEs6/components/PushNotifications/index.js +0 -126
- package/libEs6/components/PushNotifications/request/createSendPushSubscriptionPayload.js +0 -61
- package/libEs6/components/PushNotifications/request/createSendPushSubscriptionRequest.js +0 -34
- package/libEs6/components/PushNotifications/request/makeSendPushSubscriptionRequest.js +0 -89
- package/libEs6/components/PushNotifications/request/makeSendServiceWorkerTrackingData.js +0 -146
- package/libEs6/components/PushNotifications/types.js +0 -104
- package/libEs6/components/RulesEngine/consequenceAdapters/inAppMessageConsequenceAdapter.js +0 -30
- package/libEs6/components/RulesEngine/consequenceAdapters/schemaTypeConsequenceAdapter.js +0 -24
- package/libEs6/components/RulesEngine/constants/index.js +0 -34
- package/libEs6/components/RulesEngine/createApplyResponse.js +0 -42
- package/libEs6/components/RulesEngine/createConsequenceAdapter.js +0 -28
- package/libEs6/components/RulesEngine/createContextProvider.js +0 -95
- package/libEs6/components/RulesEngine/createDecisionProvider.js +0 -44
- package/libEs6/components/RulesEngine/createEvaluableRulesetPayload.js +0 -85
- package/libEs6/components/RulesEngine/createEvaluateRulesetsCommand.js +0 -45
- package/libEs6/components/RulesEngine/createEventRegistry.js +0 -162
- package/libEs6/components/RulesEngine/createOnResponseHandler.js +0 -46
- package/libEs6/components/RulesEngine/createSubscribeRulesetItems.js +0 -129
- package/libEs6/components/RulesEngine/index.js +0 -151
- package/libEs6/components/RulesEngine/types.js +0 -88
- package/libEs6/components/RulesEngine/utils/createEventPruner.js +0 -54
- package/libEs6/components/RulesEngine/utils/extractPayloadsFromEventHistoryOperations.js +0 -48
- package/libEs6/components/RulesEngine/utils/generateEventHash.js +0 -33
- package/libEs6/components/RulesEngine/utils/getExpirationDate.js +0 -16
- package/libEs6/components/RulesEngine/utils/getPropositionData.js +0 -14
- package/libEs6/components/RulesEngine/utils/hasExperienceData.js +0 -17
- package/libEs6/components/RulesEngine/utils/index.js +0 -18
- package/libEs6/components/RulesEngine/utils/storage.js +0 -40
- package/libEs6/components/StreamingMedia/configValidators.js +0 -22
- package/libEs6/components/StreamingMedia/constants/eventTypes.js +0 -31
- package/libEs6/components/StreamingMedia/constants/playbackState.js +0 -16
- package/libEs6/components/StreamingMedia/createMediaEventManager.js +0 -125
- package/libEs6/components/StreamingMedia/createMediaRequest.js +0 -28
- package/libEs6/components/StreamingMedia/createMediaResponseHandler.js +0 -58
- package/libEs6/components/StreamingMedia/createMediaSessionCacheManager.js +0 -59
- package/libEs6/components/StreamingMedia/createStreamingMediaComponent.js +0 -69
- package/libEs6/components/StreamingMedia/createTrackMediaEvent.js +0 -93
- package/libEs6/components/StreamingMedia/createTrackMediaSession.js +0 -53
- package/libEs6/components/StreamingMedia/index.js +0 -64
- package/libEs6/components/StreamingMedia/validateMediaEventOptions.js +0 -33
- package/libEs6/components/StreamingMedia/validateMediaSessionOptions.js +0 -37
- package/libEs6/constants/apiVersion.js +0 -12
- package/libEs6/constants/browser.js +0 -19
- package/libEs6/constants/consentPurpose.js +0 -13
- package/libEs6/constants/consentStatus.js +0 -18
- package/libEs6/constants/contentType.js +0 -13
- package/libEs6/constants/cookieNameKey.js +0 -15
- package/libEs6/constants/cookieNamePrefix.js +0 -14
- package/libEs6/constants/coreCommands.js +0 -14
- package/libEs6/constants/coreNamespace.js +0 -13
- package/libEs6/constants/debugQueryParam.js +0 -13
- package/libEs6/constants/decisionProvider.js +0 -14
- package/libEs6/constants/domain.js +0 -14
- package/libEs6/constants/ecidNamespace.js +0 -13
- package/libEs6/constants/edgeBasePath.js +0 -12
- package/libEs6/constants/elementAttribute.js +0 -13
- package/libEs6/constants/eventType.js +0 -18
- package/libEs6/constants/highEntropyUserAgentClientHints.js +0 -13
- package/libEs6/constants/httpHeaderNames.js +0 -14
- package/libEs6/constants/httpStatusCode.js +0 -17
- package/libEs6/constants/identityMapAuthenticatedState.js +0 -14
- package/libEs6/constants/legacyCookies.js +0 -15
- package/libEs6/constants/libraryName.js +0 -13
- package/libEs6/constants/libraryVersion.js +0 -16
- package/libEs6/constants/namespace.js +0 -13
- package/libEs6/constants/pageWideScope.js +0 -13
- package/libEs6/constants/propositionEventType.js +0 -36
- package/libEs6/constants/propositionInteractionType.js +0 -15
- package/libEs6/constants/queryStringIdentityParam.js +0 -13
- package/libEs6/constants/schema.js +0 -23
- package/libEs6/constants/sessionDataKeys.js +0 -12
- package/libEs6/constants/shadowSeparator.js +0 -13
- package/libEs6/constants/surface.js +0 -16
- package/libEs6/constants/tagName.js +0 -19
- package/libEs6/core/buildAndValidateConfig.js +0 -96
- package/libEs6/core/componentCreators.js +0 -27
- package/libEs6/core/config/createConfig.js +0 -18
- package/libEs6/core/config/createCoreConfigs.js +0 -25
- package/libEs6/core/consent/createConsent.js +0 -72
- package/libEs6/core/consent/createConsentStateMachine.js +0 -161
- package/libEs6/core/consent/types.js +0 -33
- package/libEs6/core/createComponentRegistry.js +0 -83
- package/libEs6/core/createCookieTransfer.js +0 -78
- package/libEs6/core/createEvent.js +0 -168
- package/libEs6/core/createEventManager.js +0 -135
- package/libEs6/core/createInstanceFunction.js +0 -17
- package/libEs6/core/createLifecycle.js +0 -65
- package/libEs6/core/createLogController.js +0 -68
- package/libEs6/core/createLogger.js +0 -114
- package/libEs6/core/edgeNetwork/handleRequestFailure.js +0 -24
- package/libEs6/core/edgeNetwork/injectApplyResponse.js +0 -58
- package/libEs6/core/edgeNetwork/injectExtractEdgeInfo.js +0 -33
- package/libEs6/core/edgeNetwork/injectGetLocationHint.js +0 -32
- package/libEs6/core/edgeNetwork/injectProcessWarningsAndErrors.js +0 -42
- package/libEs6/core/edgeNetwork/injectSendEdgeNetworkRequest.js +0 -166
- package/libEs6/core/edgeNetwork/mergeLifecycleResponses.js +0 -21
- package/libEs6/core/edgeNetwork/types.js +0 -19
- package/libEs6/core/getMonitors.js +0 -31
- package/libEs6/core/identity/createIdentity.js +0 -81
- package/libEs6/core/identity/types.js +0 -24
- package/libEs6/core/index.js +0 -250
- package/libEs6/core/initializeComponents.js +0 -40
- package/libEs6/core/injectCreateResponse.js +0 -72
- package/libEs6/core/injectExecuteCommand.js +0 -113
- package/libEs6/core/injectHandleError.js +0 -33
- package/libEs6/core/injectShouldTransferCookie.js +0 -25
- package/libEs6/core/network/getRequestRetryDelay.js +0 -72
- package/libEs6/core/network/injectSendNetworkRequest.js +0 -96
- package/libEs6/core/network/isRequestRetryable.js +0 -24
- package/libEs6/core/network/requestMethods/injectSendBeaconRequest.js +0 -38
- package/libEs6/core/network/requestMethods/injectSendFetchRequest.js +0 -40
- package/libEs6/core/requiredComponentCreators.js +0 -16
- package/libEs6/core/types.js +0 -118
- package/libEs6/core/validateCommandOptions.js +0 -33
- package/libEs6/index.js +0 -104
- package/libEs6/package.json +0 -1
- package/libEs6/serviceWorker.js +0 -90
- package/libEs6/standalone.js +0 -22
- package/libEs6/utils/assignConcatArrayValues.js +0 -35
- package/libEs6/utils/bytes.js +0 -44
- package/libEs6/utils/clamp.js +0 -22
- package/libEs6/utils/clone.js +0 -18
- package/libEs6/utils/cookieJar.js +0 -19
- package/libEs6/utils/createCallbackAggregator.js +0 -31
- package/libEs6/utils/createCollect.js +0 -50
- package/libEs6/utils/createDecodeKndctrCookie.js +0 -255
- package/libEs6/utils/createLoggingCookieJar.js +0 -42
- package/libEs6/utils/createMerger.js +0 -31
- package/libEs6/utils/createSubscription.js +0 -87
- package/libEs6/utils/createTaskQueue.js +0 -48
- package/libEs6/utils/decodeUriComponentSafely.js +0 -19
- package/libEs6/utils/deduplicateArray.js +0 -23
- package/libEs6/utils/deepAssign.js +0 -46
- package/libEs6/utils/defer.js +0 -24
- package/libEs6/utils/dom/appendNode.js +0 -15
- package/libEs6/utils/dom/awaitSelector.js +0 -102
- package/libEs6/utils/dom/createGetPageLocation.js +0 -17
- package/libEs6/utils/dom/createNode.js +0 -38
- package/libEs6/utils/dom/index.js +0 -21
- package/libEs6/utils/dom/isShadowSelector.js +0 -14
- package/libEs6/utils/dom/loadScript.js +0 -90
- package/libEs6/utils/dom/matchesSelector.js +0 -26
- package/libEs6/utils/dom/querySelectorAll.js +0 -20
- package/libEs6/utils/dom/removeNode.js +0 -19
- package/libEs6/utils/dom/selectNodes.js +0 -28
- package/libEs6/utils/dom/selectNodesWithShadow.js +0 -52
- package/libEs6/utils/event.js +0 -45
- package/libEs6/utils/filterObject.js +0 -55
- package/libEs6/utils/fireImage.js +0 -37
- package/libEs6/utils/flattenArray.js +0 -13
- package/libEs6/utils/flattenObject.js +0 -28
- package/libEs6/utils/fnv1a32Hex.js +0 -48
- package/libEs6/utils/getApexDomain.js +0 -42
- package/libEs6/utils/getLastArrayItems.js +0 -19
- package/libEs6/utils/getNamespacedCookieName.js +0 -15
- package/libEs6/utils/groupBy.js +0 -29
- package/libEs6/utils/index.js +0 -65
- package/libEs6/utils/indexedDb.js +0 -67
- package/libEs6/utils/injectAreThirdPartyCookiesSupportedByDefault.js +0 -22
- package/libEs6/utils/injectDoesIdentityCookieExist.js +0 -24
- package/libEs6/utils/injectFireReferrerHideableImage.js +0 -65
- package/libEs6/utils/injectGetBrowser.js +0 -65
- package/libEs6/utils/injectStorage.js +0 -88
- package/libEs6/utils/intersection.js +0 -18
- package/libEs6/utils/isBlankString.js +0 -20
- package/libEs6/utils/isBoolean.js +0 -18
- package/libEs6/utils/isEmptyObject.js +0 -20
- package/libEs6/utils/isFunction.js +0 -18
- package/libEs6/utils/isInteger.js +0 -23
- package/libEs6/utils/isNamespacedCookieName.js +0 -23
- package/libEs6/utils/isNil.js +0 -18
- package/libEs6/utils/isNonEmptyArray.js +0 -18
- package/libEs6/utils/isNonEmptyString.js +0 -20
- package/libEs6/utils/isNumber.js +0 -18
- package/libEs6/utils/isObject.js +0 -20
- package/libEs6/utils/isString.js +0 -18
- package/libEs6/utils/isUnique.js +0 -27
- package/libEs6/utils/isValidRegExp.js +0 -24
- package/libEs6/utils/lazy.js +0 -22
- package/libEs6/utils/networkErrors.js +0 -22
- package/libEs6/utils/noop.js +0 -16
- package/libEs6/utils/parseUrl.js +0 -93
- package/libEs6/utils/prepareConfigOverridesForEdge.js +0 -52
- package/libEs6/utils/querystring.js +0 -14
- package/libEs6/utils/request/createAddIdentity.js +0 -19
- package/libEs6/utils/request/createDataCollectionRequest.js +0 -69
- package/libEs6/utils/request/createDataCollectionRequestPayload.js +0 -44
- package/libEs6/utils/request/createGetAssuranceValidationTokenParams.js +0 -42
- package/libEs6/utils/request/createHasIdentity.js +0 -15
- package/libEs6/utils/request/createRequest.js +0 -95
- package/libEs6/utils/request/createRequestParams.js +0 -47
- package/libEs6/utils/request/createRequestPayload.js +0 -108
- package/libEs6/utils/request/index.js +0 -20
- package/libEs6/utils/request/types.js +0 -62
- package/libEs6/utils/sanitizeOrgIdForCookieName.js +0 -13
- package/libEs6/utils/sortObjectKeysRecursively.js +0 -38
- package/libEs6/utils/stackError.js +0 -35
- package/libEs6/utils/stringToBoolean.js +0 -15
- package/libEs6/utils/surfaceUtils.js +0 -76
- package/libEs6/utils/toArray.js +0 -21
- package/libEs6/utils/toError.js +0 -21
- package/libEs6/utils/toISOStringLocal.js +0 -50
- package/libEs6/utils/toInteger.js +0 -29
- package/libEs6/utils/types.js +0 -48
- package/libEs6/utils/updateErrorMessage.js +0 -23
- package/libEs6/utils/uuid.js +0 -15
- package/libEs6/utils/validateConfigOverride.js +0 -14
- package/libEs6/utils/validateIdentityMap.js +0 -23
- package/libEs6/utils/validation/booleanValidator.js +0 -18
- package/libEs6/utils/validation/callbackValidator.js +0 -17
- package/libEs6/utils/validation/createAnyOfValidator.js +0 -25
- package/libEs6/utils/validation/createArrayOfValidator.js +0 -28
- package/libEs6/utils/validation/createDefaultValidator.js +0 -18
- package/libEs6/utils/validation/createDeprecatedValidator.js +0 -24
- package/libEs6/utils/validation/createLiteralValidator.js +0 -16
- package/libEs6/utils/validation/createMapOfValuesValidator.js +0 -35
- package/libEs6/utils/validation/createMaximumValidator.js +0 -16
- package/libEs6/utils/validation/createMinimumValidator.js +0 -16
- package/libEs6/utils/validation/createNoUnknownFieldsValidator.js +0 -25
- package/libEs6/utils/validation/createNonEmptyValidator.js +0 -23
- package/libEs6/utils/validation/createObjectOfValidator.js +0 -43
- package/libEs6/utils/validation/createRenamedValidator.js +0 -37
- package/libEs6/utils/validation/createUniqueItemsValidator.js +0 -19
- package/libEs6/utils/validation/createUniqueValidator.js +0 -21
- package/libEs6/utils/validation/domainValidator.js +0 -17
- package/libEs6/utils/validation/index.js +0 -236
- package/libEs6/utils/validation/integerValidator.js +0 -18
- package/libEs6/utils/validation/matchesRegexpValidator.js +0 -17
- package/libEs6/utils/validation/numberValidator.js +0 -18
- package/libEs6/utils/validation/regexpValidator.js +0 -18
- package/libEs6/utils/validation/requiredValidator.js +0 -18
- package/libEs6/utils/validation/stringValidator.js +0 -17
- package/libEs6/utils/validation/utils.js +0 -124
- package/scripts/helpers/versionBabelPlugin.js +0 -54
- package/types/baseCode/index.d.ts +0 -3
- package/types/baseCode/index.d.ts.map +0 -1
- package/types/baseCode.d.ts +0 -2
- package/types/baseCode.d.ts.map +0 -1
- package/types/components/ActivityCollector/attachClickActivityCollector.d.ts +0 -7
- package/types/components/ActivityCollector/attachClickActivityCollector.d.ts.map +0 -1
- package/types/components/ActivityCollector/configValidators.d.ts +0 -5
- package/types/components/ActivityCollector/configValidators.d.ts.map +0 -1
- package/types/components/ActivityCollector/createClickActivityStorage.d.ts +0 -9
- package/types/components/ActivityCollector/createClickActivityStorage.d.ts.map +0 -1
- package/types/components/ActivityCollector/createClickedElementProperties.d.ts +0 -31
- package/types/components/ActivityCollector/createClickedElementProperties.d.ts.map +0 -1
- package/types/components/ActivityCollector/createGetClickedElementProperties.d.ts +0 -43
- package/types/components/ActivityCollector/createGetClickedElementProperties.d.ts.map +0 -1
- package/types/components/ActivityCollector/createInjectClickedElementProperties.d.ts +0 -11
- package/types/components/ActivityCollector/createInjectClickedElementProperties.d.ts.map +0 -1
- package/types/components/ActivityCollector/createRecallAndInjectClickedElementProperties.d.ts +0 -5
- package/types/components/ActivityCollector/createRecallAndInjectClickedElementProperties.d.ts.map +0 -1
- package/types/components/ActivityCollector/createStorePageViewProperties.d.ts +0 -5
- package/types/components/ActivityCollector/createStorePageViewProperties.d.ts.map +0 -1
- package/types/components/ActivityCollector/getLinkName.d.ts +0 -3
- package/types/components/ActivityCollector/getLinkName.d.ts.map +0 -1
- package/types/components/ActivityCollector/getLinkRegion.d.ts +0 -3
- package/types/components/ActivityCollector/getLinkRegion.d.ts.map +0 -1
- package/types/components/ActivityCollector/index.d.ts +0 -37
- package/types/components/ActivityCollector/index.d.ts.map +0 -1
- package/types/components/ActivityCollector/utils/activityMapExtensionEnabled.d.ts +0 -3
- package/types/components/ActivityCollector/utils/activityMapExtensionEnabled.d.ts.map +0 -1
- package/types/components/ActivityCollector/utils/createTransientStorage.d.ts +0 -7
- package/types/components/ActivityCollector/utils/createTransientStorage.d.ts.map +0 -1
- package/types/components/ActivityCollector/utils/determineLinkType.d.ts +0 -3
- package/types/components/ActivityCollector/utils/determineLinkType.d.ts.map +0 -1
- package/types/components/ActivityCollector/utils/dom/elementHasClickHandler.d.ts +0 -3
- package/types/components/ActivityCollector/utils/dom/elementHasClickHandler.d.ts.map +0 -1
- package/types/components/ActivityCollector/utils/dom/extractDomain.d.ts +0 -3
- package/types/components/ActivityCollector/utils/dom/extractDomain.d.ts.map +0 -1
- package/types/components/ActivityCollector/utils/dom/findClickableElement.d.ts +0 -3
- package/types/components/ActivityCollector/utils/dom/findClickableElement.d.ts.map +0 -1
- package/types/components/ActivityCollector/utils/dom/getAbsoluteUrlFromAnchorElement.d.ts +0 -3
- package/types/components/ActivityCollector/utils/dom/getAbsoluteUrlFromAnchorElement.d.ts.map +0 -1
- package/types/components/ActivityCollector/utils/dom/isButtonSubmitElement.d.ts +0 -3
- package/types/components/ActivityCollector/utils/dom/isButtonSubmitElement.d.ts.map +0 -1
- package/types/components/ActivityCollector/utils/dom/isDownloadLink.d.ts +0 -3
- package/types/components/ActivityCollector/utils/dom/isDownloadLink.d.ts.map +0 -1
- package/types/components/ActivityCollector/utils/dom/isExitLink.d.ts +0 -3
- package/types/components/ActivityCollector/utils/dom/isExitLink.d.ts.map +0 -1
- package/types/components/ActivityCollector/utils/dom/isInputSubmitElement.d.ts +0 -3
- package/types/components/ActivityCollector/utils/dom/isInputSubmitElement.d.ts.map +0 -1
- package/types/components/ActivityCollector/utils/dom/isSupportedAnchorElement.d.ts +0 -3
- package/types/components/ActivityCollector/utils/dom/isSupportedAnchorElement.d.ts.map +0 -1
- package/types/components/ActivityCollector/utils/dom/isSupportedTextNode.d.ts +0 -3
- package/types/components/ActivityCollector/utils/dom/isSupportedTextNode.d.ts.map +0 -1
- package/types/components/ActivityCollector/utils/hasPageName.d.ts +0 -3
- package/types/components/ActivityCollector/utils/hasPageName.d.ts.map +0 -1
- package/types/components/ActivityCollector/utils/isDifferentDomains.d.ts +0 -3
- package/types/components/ActivityCollector/utils/isDifferentDomains.d.ts.map +0 -1
- package/types/components/ActivityCollector/utils/trimQueryFromUrl.d.ts +0 -3
- package/types/components/ActivityCollector/utils/trimQueryFromUrl.d.ts.map +0 -1
- package/types/components/ActivityCollector/utils/truncateWhiteSpace.d.ts +0 -3
- package/types/components/ActivityCollector/utils/truncateWhiteSpace.d.ts.map +0 -1
- package/types/components/ActivityCollector/validateClickCollectionConfig.d.ts +0 -3
- package/types/components/ActivityCollector/validateClickCollectionConfig.d.ts.map +0 -1
- package/types/components/Advertising/configValidators.d.ts +0 -3
- package/types/components/Advertising/configValidators.d.ts.map +0 -1
- package/types/components/Advertising/constants/index.d.ts +0 -46
- package/types/components/Advertising/constants/index.d.ts.map +0 -1
- package/types/components/Advertising/createComponent.d.ts +0 -19
- package/types/components/Advertising/createComponent.d.ts.map +0 -1
- package/types/components/Advertising/handlers/clickThroughHandler.d.ts +0 -22
- package/types/components/Advertising/handlers/clickThroughHandler.d.ts.map +0 -1
- package/types/components/Advertising/handlers/createAdConversionHandler.d.ts +0 -13
- package/types/components/Advertising/handlers/createAdConversionHandler.d.ts.map +0 -1
- package/types/components/Advertising/handlers/onBeforeSendEventHandler.d.ts +0 -21
- package/types/components/Advertising/handlers/onBeforeSendEventHandler.d.ts.map +0 -1
- package/types/components/Advertising/handlers/sendAdConversion.d.ts +0 -11
- package/types/components/Advertising/handlers/sendAdConversion.d.ts.map +0 -1
- package/types/components/Advertising/handlers/viewThroughHandler.d.ts +0 -9
- package/types/components/Advertising/handlers/viewThroughHandler.d.ts.map +0 -1
- package/types/components/Advertising/identities/collectAllIdentities.d.ts +0 -7
- package/types/components/Advertising/identities/collectAllIdentities.d.ts.map +0 -1
- package/types/components/Advertising/identities/collectID5Id.d.ts +0 -3
- package/types/components/Advertising/identities/collectID5Id.d.ts.map +0 -1
- package/types/components/Advertising/identities/collectRampId.d.ts +0 -3
- package/types/components/Advertising/identities/collectRampId.d.ts.map +0 -1
- package/types/components/Advertising/identities/collectSurferId.d.ts +0 -3
- package/types/components/Advertising/identities/collectSurferId.d.ts.map +0 -1
- package/types/components/Advertising/index.d.ts +0 -23
- package/types/components/Advertising/index.d.ts.map +0 -1
- package/types/components/Advertising/utils/advertisingCookieManager.d.ts +0 -9
- package/types/components/Advertising/utils/advertisingCookieManager.d.ts.map +0 -1
- package/types/components/Advertising/utils/helpers.d.ts +0 -23
- package/types/components/Advertising/utils/helpers.d.ts.map +0 -1
- package/types/components/Audiences/index.d.ts +0 -16
- package/types/components/Audiences/index.d.ts.map +0 -1
- package/types/components/Audiences/injectProcessDestinations.d.ts +0 -8
- package/types/components/Audiences/injectProcessDestinations.d.ts.map +0 -1
- package/types/components/Audiences/injectProcessResponse.d.ts +0 -7
- package/types/components/Audiences/injectProcessResponse.d.ts.map +0 -1
- package/types/components/BrandConcierge/configValidators.d.ts +0 -3
- package/types/components/BrandConcierge/configValidators.d.ts.map +0 -1
- package/types/components/BrandConcierge/constants.d.ts +0 -3
- package/types/components/BrandConcierge/constants.d.ts.map +0 -1
- package/types/components/BrandConcierge/createBuildEndpointUrl.d.ts +0 -9
- package/types/components/BrandConcierge/createBuildEndpointUrl.d.ts.map +0 -1
- package/types/components/BrandConcierge/createConversationServiceRequest.d.ts +0 -7
- package/types/components/BrandConcierge/createConversationServiceRequest.d.ts.map +0 -1
- package/types/components/BrandConcierge/createSendConversationEvent.d.ts +0 -15
- package/types/components/BrandConcierge/createSendConversationEvent.d.ts.map +0 -1
- package/types/components/BrandConcierge/createSendConversationServiceRequest.d.ts +0 -11
- package/types/components/BrandConcierge/createSendConversationServiceRequest.d.ts.map +0 -1
- package/types/components/BrandConcierge/createStreamParser.d.ts +0 -7
- package/types/components/BrandConcierge/createStreamParser.d.ts.map +0 -1
- package/types/components/BrandConcierge/createTimeoutWrapper.d.ts +0 -6
- package/types/components/BrandConcierge/createTimeoutWrapper.d.ts.map +0 -1
- package/types/components/BrandConcierge/index.d.ts +0 -32
- package/types/components/BrandConcierge/index.d.ts.map +0 -1
- package/types/components/BrandConcierge/utils.d.ts +0 -6
- package/types/components/BrandConcierge/utils.d.ts.map +0 -1
- package/types/components/BrandConcierge/validateMessage.d.ts +0 -5
- package/types/components/BrandConcierge/validateMessage.d.ts.map +0 -1
- package/types/components/Consent/computeConsentHash.d.ts +0 -3
- package/types/components/Consent/computeConsentHash.d.ts.map +0 -1
- package/types/components/Consent/configValidators.d.ts +0 -3
- package/types/components/Consent/configValidators.d.ts.map +0 -1
- package/types/components/Consent/createComponent.d.ts +0 -27
- package/types/components/Consent/createComponent.d.ts.map +0 -1
- package/types/components/Consent/createConsentHashStore.d.ts +0 -11
- package/types/components/Consent/createConsentHashStore.d.ts.map +0 -1
- package/types/components/Consent/createConsentRequest.d.ts +0 -6
- package/types/components/Consent/createConsentRequest.d.ts.map +0 -1
- package/types/components/Consent/createConsentRequestPayload.d.ts +0 -4
- package/types/components/Consent/createConsentRequestPayload.d.ts.map +0 -1
- package/types/components/Consent/createStoredConsent.d.ts +0 -10
- package/types/components/Consent/createStoredConsent.d.ts.map +0 -1
- package/types/components/Consent/index.d.ts +0 -28
- package/types/components/Consent/index.d.ts.map +0 -1
- package/types/components/Consent/injectSendSetConsentRequest.d.ts +0 -12
- package/types/components/Consent/injectSendSetConsentRequest.d.ts.map +0 -1
- package/types/components/Consent/parseConsentCookie.d.ts +0 -3
- package/types/components/Consent/parseConsentCookie.d.ts.map +0 -1
- package/types/components/Consent/types.d.ts +0 -28
- package/types/components/Consent/types.d.ts.map +0 -1
- package/types/components/Consent/validateSetConsentOptions.d.ts +0 -3
- package/types/components/Consent/validateSetConsentOptions.d.ts.map +0 -1
- package/types/components/Context/createComponent.d.ts +0 -10
- package/types/components/Context/createComponent.d.ts.map +0 -1
- package/types/components/Context/implementationDetails.d.ts +0 -3
- package/types/components/Context/implementationDetails.d.ts.map +0 -1
- package/types/components/Context/index.d.ts +0 -17
- package/types/components/Context/index.d.ts.map +0 -1
- package/types/components/Context/injectDevice.d.ts +0 -3
- package/types/components/Context/injectDevice.d.ts.map +0 -1
- package/types/components/Context/injectEnvironment.d.ts +0 -3
- package/types/components/Context/injectEnvironment.d.ts.map +0 -1
- package/types/components/Context/injectHighEntropyUserAgentHints.d.ts +0 -3
- package/types/components/Context/injectHighEntropyUserAgentHints.d.ts.map +0 -1
- package/types/components/Context/injectOneTimeAnalyticsReferrer.d.ts +0 -3
- package/types/components/Context/injectOneTimeAnalyticsReferrer.d.ts.map +0 -1
- package/types/components/Context/injectPlaceContext.d.ts +0 -3
- package/types/components/Context/injectPlaceContext.d.ts.map +0 -1
- package/types/components/Context/injectTimestamp.d.ts +0 -3
- package/types/components/Context/injectTimestamp.d.ts.map +0 -1
- package/types/components/Context/injectWeb.d.ts +0 -3
- package/types/components/Context/injectWeb.d.ts.map +0 -1
- package/types/components/DataCollector/index.d.ts +0 -22
- package/types/components/DataCollector/index.d.ts.map +0 -1
- package/types/components/DataCollector/validateApplyResponse.d.ts +0 -5
- package/types/components/DataCollector/validateApplyResponse.d.ts.map +0 -1
- package/types/components/DataCollector/validateUserEventOptions.d.ts +0 -3
- package/types/components/DataCollector/validateUserEventOptions.d.ts.map +0 -1
- package/types/components/EventMerge/createComponent.d.ts +0 -11
- package/types/components/EventMerge/createComponent.d.ts.map +0 -1
- package/types/components/EventMerge/createEventMergeId.d.ts +0 -5
- package/types/components/EventMerge/createEventMergeId.d.ts.map +0 -1
- package/types/components/EventMerge/index.d.ts +0 -12
- package/types/components/EventMerge/index.d.ts.map +0 -1
- package/types/components/Identity/addEcidToPayload.d.ts +0 -3
- package/types/components/Identity/addEcidToPayload.d.ts.map +0 -1
- package/types/components/Identity/appendIdentityToUrl/appendIdentityToUrlOptionsValidator.d.ts +0 -3
- package/types/components/Identity/appendIdentityToUrl/appendIdentityToUrlOptionsValidator.d.ts.map +0 -1
- package/types/components/Identity/appendIdentityToUrl/injectAppendIdentityToUrl.d.ts +0 -6
- package/types/components/Identity/appendIdentityToUrl/injectAppendIdentityToUrl.d.ts.map +0 -1
- package/types/components/Identity/configValidators.d.ts +0 -3
- package/types/components/Identity/configValidators.d.ts.map +0 -1
- package/types/components/Identity/constants/authState.d.ts +0 -4
- package/types/components/Identity/constants/authState.d.ts.map +0 -1
- package/types/components/Identity/constants/defaultIdSyncTtlMinutes.d.ts +0 -3
- package/types/components/Identity/constants/defaultIdSyncTtlMinutes.d.ts.map +0 -1
- package/types/components/Identity/createComponent.d.ts +0 -37
- package/types/components/Identity/createComponent.d.ts.map +0 -1
- package/types/components/Identity/createLegacyIdentity.d.ts +0 -12
- package/types/components/Identity/createLegacyIdentity.d.ts.map +0 -1
- package/types/components/Identity/getIdentity/createGetIdentity.d.ts +0 -8
- package/types/components/Identity/getIdentity/createGetIdentity.d.ts.map +0 -1
- package/types/components/Identity/getIdentity/createGetIdentityOptionsValidator.d.ts +0 -5
- package/types/components/Identity/getIdentity/createGetIdentityOptionsValidator.d.ts.map +0 -1
- package/types/components/Identity/getIdentity/createIdentityRequest.d.ts +0 -6
- package/types/components/Identity/getIdentity/createIdentityRequest.d.ts.map +0 -1
- package/types/components/Identity/getIdentity/createIdentityRequestPayload.d.ts +0 -3
- package/types/components/Identity/getIdentity/createIdentityRequestPayload.d.ts.map +0 -1
- package/types/components/Identity/getNamespacesFromResponse.d.ts +0 -3
- package/types/components/Identity/getNamespacesFromResponse.d.ts.map +0 -1
- package/types/components/Identity/index.d.ts +0 -38
- package/types/components/Identity/index.d.ts.map +0 -1
- package/types/components/Identity/injectAddEcidQueryToPayload.d.ts +0 -6
- package/types/components/Identity/injectAddEcidQueryToPayload.d.ts.map +0 -1
- package/types/components/Identity/injectAddLegacyEcidToPayload.d.ts +0 -6
- package/types/components/Identity/injectAddLegacyEcidToPayload.d.ts.map +0 -1
- package/types/components/Identity/injectAddQueryStringIdentityToPayload.d.ts +0 -8
- package/types/components/Identity/injectAddQueryStringIdentityToPayload.d.ts.map +0 -1
- package/types/components/Identity/injectAwaitIdentityCookie.d.ts +0 -10
- package/types/components/Identity/injectAwaitIdentityCookie.d.ts.map +0 -1
- package/types/components/Identity/injectEnsureSingleIdentity.d.ts +0 -13
- package/types/components/Identity/injectEnsureSingleIdentity.d.ts.map +0 -1
- package/types/components/Identity/injectHandleResponseForIdSyncs.d.ts +0 -5
- package/types/components/Identity/injectHandleResponseForIdSyncs.d.ts.map +0 -1
- package/types/components/Identity/injectProcessIdSyncs.d.ts +0 -6
- package/types/components/Identity/injectProcessIdSyncs.d.ts.map +0 -1
- package/types/components/Identity/injectSetDomainForInitialIdentityPayload.d.ts +0 -6
- package/types/components/Identity/injectSetDomainForInitialIdentityPayload.d.ts.map +0 -1
- package/types/components/Identity/visitorService/awaitVisitorOptIn.d.ts +0 -5
- package/types/components/Identity/visitorService/awaitVisitorOptIn.d.ts.map +0 -1
- package/types/components/Identity/visitorService/getVisitor.d.ts +0 -3
- package/types/components/Identity/visitorService/getVisitor.d.ts.map +0 -1
- package/types/components/Identity/visitorService/injectGetEcidFromVisitor.d.ts +0 -7
- package/types/components/Identity/visitorService/injectGetEcidFromVisitor.d.ts.map +0 -1
- package/types/components/LibraryInfo/index.d.ts +0 -22
- package/types/components/LibraryInfo/index.d.ts.map +0 -1
- package/types/components/MediaAnalyticsBridge/constants/constants.d.ts +0 -85
- package/types/components/MediaAnalyticsBridge/constants/constants.d.ts.map +0 -1
- package/types/components/MediaAnalyticsBridge/constants/mediaKeysToXdmConverter.d.ts +0 -35
- package/types/components/MediaAnalyticsBridge/constants/mediaKeysToXdmConverter.d.ts.map +0 -1
- package/types/components/MediaAnalyticsBridge/createGetInstance.d.ts +0 -19
- package/types/components/MediaAnalyticsBridge/createGetInstance.d.ts.map +0 -1
- package/types/components/MediaAnalyticsBridge/createMediaAnalyticsBridgeComponent.d.ts +0 -23
- package/types/components/MediaAnalyticsBridge/createMediaAnalyticsBridgeComponent.d.ts.map +0 -1
- package/types/components/MediaAnalyticsBridge/createMediaHelper.d.ts +0 -62
- package/types/components/MediaAnalyticsBridge/createMediaHelper.d.ts.map +0 -1
- package/types/components/MediaAnalyticsBridge/index.d.ts +0 -24
- package/types/components/MediaAnalyticsBridge/index.d.ts.map +0 -1
- package/types/components/Personalization/constants/loggerMessage.d.ts +0 -3
- package/types/components/Personalization/constants/loggerMessage.d.ts.map +0 -1
- package/types/components/Personalization/constants/scopeType.d.ts +0 -4
- package/types/components/Personalization/constants/scopeType.d.ts.map +0 -1
- package/types/components/Personalization/constants/surface.d.ts +0 -5
- package/types/components/Personalization/constants/surface.d.ts.map +0 -1
- package/types/components/Personalization/createApplyPropositions.d.ts +0 -14
- package/types/components/Personalization/createApplyPropositions.d.ts.map +0 -1
- package/types/components/Personalization/createClickStorage.d.ts +0 -16
- package/types/components/Personalization/createClickStorage.d.ts.map +0 -1
- package/types/components/Personalization/createComponent.d.ts +0 -45
- package/types/components/Personalization/createComponent.d.ts.map +0 -1
- package/types/components/Personalization/createFetchDataHandler.d.ts +0 -19
- package/types/components/Personalization/createFetchDataHandler.d.ts.map +0 -1
- package/types/components/Personalization/createGetPageLocation.d.ts +0 -5
- package/types/components/Personalization/createGetPageLocation.d.ts.map +0 -1
- package/types/components/Personalization/createHandleConsentFlicker.d.ts +0 -6
- package/types/components/Personalization/createHandleConsentFlicker.d.ts.map +0 -1
- package/types/components/Personalization/createInteractionStorage.d.ts +0 -6
- package/types/components/Personalization/createInteractionStorage.d.ts.map +0 -1
- package/types/components/Personalization/createNotificationHandler.d.ts +0 -3
- package/types/components/Personalization/createNotificationHandler.d.ts.map +0 -1
- package/types/components/Personalization/createOnClickHandler.d.ts +0 -14
- package/types/components/Personalization/createOnClickHandler.d.ts.map +0 -1
- package/types/components/Personalization/createOnDecisionHandler.d.ts +0 -15
- package/types/components/Personalization/createOnDecisionHandler.d.ts.map +0 -1
- package/types/components/Personalization/createPersonalizationDetails.d.ts +0 -28
- package/types/components/Personalization/createPersonalizationDetails.d.ts.map +0 -1
- package/types/components/Personalization/createSetTargetMigration.d.ts +0 -5
- package/types/components/Personalization/createSetTargetMigration.d.ts.map +0 -1
- package/types/components/Personalization/createViewCacheManager.d.ts +0 -12
- package/types/components/Personalization/createViewCacheManager.d.ts.map +0 -1
- package/types/components/Personalization/createViewChangeHandler.d.ts +0 -10
- package/types/components/Personalization/createViewChangeHandler.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/action.d.ts +0 -20
- package/types/components/Personalization/dom-actions/action.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/addNonceToInlineStyleElements.d.ts +0 -3
- package/types/components/Personalization/dom-actions/addNonceToInlineStyleElements.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/appendHtml.d.ts +0 -3
- package/types/components/Personalization/dom-actions/appendHtml.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/clicks/collectClicks.d.ts +0 -8
- package/types/components/Personalization/dom-actions/clicks/collectClicks.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/clicks/collectInteractions.d.ts +0 -13
- package/types/components/Personalization/dom-actions/clicks/collectInteractions.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/collectInteractions.d.ts +0 -3
- package/types/components/Personalization/dom-actions/collectInteractions.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/createPreprocess.d.ts +0 -3
- package/types/components/Personalization/dom-actions/createPreprocess.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/createRedirect.d.ts +0 -3
- package/types/components/Personalization/dom-actions/createRedirect.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/dom/createFragment.d.ts +0 -3
- package/types/components/Personalization/dom-actions/dom/createFragment.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/dom/getAttribute.d.ts +0 -3
- package/types/components/Personalization/dom-actions/dom/getAttribute.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/dom/getChildNodes.d.ts +0 -3
- package/types/components/Personalization/dom-actions/dom/getChildNodes.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/dom/getChildren.d.ts +0 -3
- package/types/components/Personalization/dom-actions/dom/getChildren.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/dom/getElementById.d.ts +0 -3
- package/types/components/Personalization/dom-actions/dom/getElementById.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/dom/getFirstChild.d.ts +0 -3
- package/types/components/Personalization/dom-actions/dom/getFirstChild.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/dom/getNextSibling.d.ts +0 -3
- package/types/components/Personalization/dom-actions/dom/getNextSibling.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/dom/getNonce.d.ts +0 -4
- package/types/components/Personalization/dom-actions/dom/getNonce.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/dom/getParent.d.ts +0 -3
- package/types/components/Personalization/dom-actions/dom/getParent.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/dom/helperForEq.d.ts +0 -3
- package/types/components/Personalization/dom-actions/dom/helperForEq.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/dom/index.d.ts +0 -15
- package/types/components/Personalization/dom-actions/dom/index.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/dom/insertAfter.d.ts +0 -3
- package/types/components/Personalization/dom-actions/dom/insertAfter.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/dom/insertBefore.d.ts +0 -3
- package/types/components/Personalization/dom-actions/dom/insertBefore.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/dom/isDomElement.d.ts +0 -3
- package/types/components/Personalization/dom-actions/dom/isDomElement.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/dom/matchesSelectorWithEq.d.ts +0 -3
- package/types/components/Personalization/dom-actions/dom/matchesSelectorWithEq.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/dom/removeAttribute.d.ts +0 -3
- package/types/components/Personalization/dom-actions/dom/removeAttribute.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/dom/selectNodesWithEq.d.ts +0 -10
- package/types/components/Personalization/dom-actions/dom/selectNodesWithEq.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/dom/setAttribute.d.ts +0 -3
- package/types/components/Personalization/dom-actions/dom/setAttribute.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/dom/setStyle.d.ts +0 -3
- package/types/components/Personalization/dom-actions/dom/setStyle.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/dom/util.d.ts +0 -2
- package/types/components/Personalization/dom-actions/dom/util.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/images.d.ts +0 -4
- package/types/components/Personalization/dom-actions/images.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/index.d.ts +0 -2
- package/types/components/Personalization/dom-actions/index.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/initDomActionsModules.d.ts +0 -149
- package/types/components/Personalization/dom-actions/initDomActionsModules.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/insertHtmlAfter.d.ts +0 -3
- package/types/components/Personalization/dom-actions/insertHtmlAfter.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/insertHtmlBefore.d.ts +0 -3
- package/types/components/Personalization/dom-actions/insertHtmlBefore.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/move.d.ts +0 -3
- package/types/components/Personalization/dom-actions/move.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/prependHtml.d.ts +0 -3
- package/types/components/Personalization/dom-actions/prependHtml.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/rearrangeChildren.d.ts +0 -6
- package/types/components/Personalization/dom-actions/rearrangeChildren.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/remapCustomCodeOffers.d.ts +0 -3
- package/types/components/Personalization/dom-actions/remapCustomCodeOffers.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/remapHeadOffers.d.ts +0 -3
- package/types/components/Personalization/dom-actions/remapHeadOffers.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/replaceHtml.d.ts +0 -3
- package/types/components/Personalization/dom-actions/replaceHtml.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/resize.d.ts +0 -3
- package/types/components/Personalization/dom-actions/resize.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/scripts.d.ts +0 -6
- package/types/components/Personalization/dom-actions/scripts.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/setAttributes.d.ts +0 -3
- package/types/components/Personalization/dom-actions/setAttributes.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/setHtml.d.ts +0 -3
- package/types/components/Personalization/dom-actions/setHtml.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/setStyles.d.ts +0 -3
- package/types/components/Personalization/dom-actions/setStyles.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/setText.d.ts +0 -3
- package/types/components/Personalization/dom-actions/setText.d.ts.map +0 -1
- package/types/components/Personalization/dom-actions/swapImage.d.ts +0 -3
- package/types/components/Personalization/dom-actions/swapImage.d.ts.map +0 -1
- package/types/components/Personalization/flicker/index.d.ts +0 -5
- package/types/components/Personalization/flicker/index.d.ts.map +0 -1
- package/types/components/Personalization/handlers/createDecorateProposition.d.ts +0 -6
- package/types/components/Personalization/handlers/createDecorateProposition.d.ts.map +0 -1
- package/types/components/Personalization/handlers/createProcessDomAction.d.ts +0 -17
- package/types/components/Personalization/handlers/createProcessDomAction.d.ts.map +0 -1
- package/types/components/Personalization/handlers/createProcessHtmlContent.d.ts +0 -16
- package/types/components/Personalization/handlers/createProcessHtmlContent.d.ts.map +0 -1
- package/types/components/Personalization/handlers/createProcessInAppMessage.d.ts +0 -14
- package/types/components/Personalization/handlers/createProcessInAppMessage.d.ts.map +0 -1
- package/types/components/Personalization/handlers/createProcessPropositions.d.ts +0 -14
- package/types/components/Personalization/handlers/createProcessPropositions.d.ts.map +0 -1
- package/types/components/Personalization/handlers/createProcessRedirect.d.ts +0 -15
- package/types/components/Personalization/handlers/createProcessRedirect.d.ts.map +0 -1
- package/types/components/Personalization/handlers/createRenderStatusHandler.d.ts +0 -18
- package/types/components/Personalization/handlers/createRenderStatusHandler.d.ts.map +0 -1
- package/types/components/Personalization/handlers/injectCreateProposition.d.ts +0 -20
- package/types/components/Personalization/handlers/injectCreateProposition.d.ts.map +0 -1
- package/types/components/Personalization/handlers/processDefaultContent.d.ts +0 -7
- package/types/components/Personalization/handlers/processDefaultContent.d.ts.map +0 -1
- package/types/components/Personalization/in-app-message-actions/actions/displayIframeContent.d.ts +0 -24
- package/types/components/Personalization/in-app-message-actions/actions/displayIframeContent.d.ts.map +0 -1
- package/types/components/Personalization/in-app-message-actions/initInAppMessageActionsModules.d.ts +0 -5
- package/types/components/Personalization/in-app-message-actions/initInAppMessageActionsModules.d.ts.map +0 -1
- package/types/components/Personalization/in-app-message-actions/utils.d.ts +0 -3
- package/types/components/Personalization/in-app-message-actions/utils.d.ts.map +0 -1
- package/types/components/Personalization/index.d.ts +0 -38
- package/types/components/Personalization/index.d.ts.map +0 -1
- package/types/components/Personalization/utils/addRenderAttemptedToDecisions.d.ts +0 -6
- package/types/components/Personalization/utils/addRenderAttemptedToDecisions.d.ts.map +0 -1
- package/types/components/Personalization/utils/createAsyncArray.d.ts +0 -11
- package/types/components/Personalization/utils/createAsyncArray.d.ts.map +0 -1
- package/types/components/Personalization/utils/isAuthoringModeEnabled.d.ts +0 -3
- package/types/components/Personalization/utils/isAuthoringModeEnabled.d.ts.map +0 -1
- package/types/components/Personalization/utils/metaUtils.d.ts +0 -3
- package/types/components/Personalization/utils/metaUtils.d.ts.map +0 -1
- package/types/components/Personalization/utils/surfaceUtils.d.ts +0 -4
- package/types/components/Personalization/utils/surfaceUtils.d.ts.map +0 -1
- package/types/components/Personalization/validateApplyPropositionsOptions.d.ts +0 -9
- package/types/components/Personalization/validateApplyPropositionsOptions.d.ts.map +0 -1
- package/types/components/PushNotifications/helpers/constants.d.ts +0 -5
- package/types/components/PushNotifications/helpers/constants.d.ts.map +0 -1
- package/types/components/PushNotifications/helpers/getPushSubscriptionDetails.d.ts +0 -30
- package/types/components/PushNotifications/helpers/getPushSubscriptionDetails.d.ts.map +0 -1
- package/types/components/PushNotifications/helpers/readFromIndexedDb.d.ts +0 -4
- package/types/components/PushNotifications/helpers/readFromIndexedDb.d.ts.map +0 -1
- package/types/components/PushNotifications/helpers/saveToIndexedDb.d.ts +0 -9
- package/types/components/PushNotifications/helpers/saveToIndexedDb.d.ts.map +0 -1
- package/types/components/PushNotifications/helpers/serviceWorkerNotificationClickListener.d.ts +0 -9
- package/types/components/PushNotifications/helpers/serviceWorkerNotificationClickListener.d.ts.map +0 -1
- package/types/components/PushNotifications/helpers/serviceWorkerPushListener.d.ts +0 -8
- package/types/components/PushNotifications/helpers/serviceWorkerPushListener.d.ts.map +0 -1
- package/types/components/PushNotifications/index.d.ts +0 -51
- package/types/components/PushNotifications/index.d.ts.map +0 -1
- package/types/components/PushNotifications/request/createSendPushSubscriptionPayload.d.ts +0 -10
- package/types/components/PushNotifications/request/createSendPushSubscriptionPayload.d.ts.map +0 -1
- package/types/components/PushNotifications/request/createSendPushSubscriptionRequest.d.ts +0 -7
- package/types/components/PushNotifications/request/createSendPushSubscriptionRequest.d.ts.map +0 -1
- package/types/components/PushNotifications/request/makeSendPushSubscriptionRequest.d.ts +0 -21
- package/types/components/PushNotifications/request/makeSendPushSubscriptionRequest.d.ts.map +0 -1
- package/types/components/PushNotifications/request/makeSendServiceWorkerTrackingData.d.ts +0 -11
- package/types/components/PushNotifications/request/makeSendServiceWorkerTrackingData.d.ts.map +0 -1
- package/types/components/PushNotifications/types.d.ts +0 -190
- package/types/components/PushNotifications/types.d.ts.map +0 -1
- package/types/components/RulesEngine/consequenceAdapters/inAppMessageConsequenceAdapter.d.ts +0 -12
- package/types/components/RulesEngine/consequenceAdapters/inAppMessageConsequenceAdapter.d.ts.map +0 -1
- package/types/components/RulesEngine/consequenceAdapters/schemaTypeConsequenceAdapter.d.ts +0 -7
- package/types/components/RulesEngine/consequenceAdapters/schemaTypeConsequenceAdapter.d.ts.map +0 -1
- package/types/components/RulesEngine/constants/index.d.ts +0 -23
- package/types/components/RulesEngine/constants/index.d.ts.map +0 -1
- package/types/components/RulesEngine/createApplyResponse.d.ts +0 -13
- package/types/components/RulesEngine/createApplyResponse.d.ts.map +0 -1
- package/types/components/RulesEngine/createConsequenceAdapter.d.ts +0 -3
- package/types/components/RulesEngine/createConsequenceAdapter.d.ts.map +0 -1
- package/types/components/RulesEngine/createContextProvider.d.ts +0 -9
- package/types/components/RulesEngine/createContextProvider.d.ts.map +0 -1
- package/types/components/RulesEngine/createDecisionProvider.d.ts +0 -9
- package/types/components/RulesEngine/createDecisionProvider.d.ts.map +0 -1
- package/types/components/RulesEngine/createEvaluableRulesetPayload.d.ts +0 -7
- package/types/components/RulesEngine/createEvaluableRulesetPayload.d.ts.map +0 -1
- package/types/components/RulesEngine/createEvaluateRulesetsCommand.d.ts +0 -13
- package/types/components/RulesEngine/createEvaluateRulesetsCommand.d.ts.map +0 -1
- package/types/components/RulesEngine/createEventRegistry.d.ts +0 -6
- package/types/components/RulesEngine/createEventRegistry.d.ts.map +0 -1
- package/types/components/RulesEngine/createOnResponseHandler.d.ts +0 -12
- package/types/components/RulesEngine/createOnResponseHandler.d.ts.map +0 -1
- package/types/components/RulesEngine/createSubscribeRulesetItems.d.ts +0 -17
- package/types/components/RulesEngine/createSubscribeRulesetItems.d.ts.map +0 -1
- package/types/components/RulesEngine/index.d.ts +0 -49
- package/types/components/RulesEngine/index.d.ts.map +0 -1
- package/types/components/RulesEngine/types.d.ts +0 -107
- package/types/components/RulesEngine/types.d.ts.map +0 -1
- package/types/components/RulesEngine/utils/createEventPruner.d.ts +0 -3
- package/types/components/RulesEngine/utils/createEventPruner.d.ts.map +0 -1
- package/types/components/RulesEngine/utils/extractPayloadsFromEventHistoryOperations.d.ts +0 -5
- package/types/components/RulesEngine/utils/extractPayloadsFromEventHistoryOperations.d.ts.map +0 -1
- package/types/components/RulesEngine/utils/generateEventHash.d.ts +0 -3
- package/types/components/RulesEngine/utils/generateEventHash.d.ts.map +0 -1
- package/types/components/RulesEngine/utils/getExpirationDate.d.ts +0 -3
- package/types/components/RulesEngine/utils/getExpirationDate.d.ts.map +0 -1
- package/types/components/RulesEngine/utils/getPropositionData.d.ts +0 -3
- package/types/components/RulesEngine/utils/getPropositionData.d.ts.map +0 -1
- package/types/components/RulesEngine/utils/hasExperienceData.d.ts +0 -3
- package/types/components/RulesEngine/utils/hasExperienceData.d.ts.map +0 -1
- package/types/components/RulesEngine/utils/index.d.ts +0 -7
- package/types/components/RulesEngine/utils/index.d.ts.map +0 -1
- package/types/components/RulesEngine/utils/storage.d.ts +0 -8
- package/types/components/RulesEngine/utils/storage.d.ts.map +0 -1
- package/types/components/StreamingMedia/configValidators.d.ts +0 -3
- package/types/components/StreamingMedia/configValidators.d.ts.map +0 -1
- package/types/components/StreamingMedia/constants/eventTypes.d.ts +0 -22
- package/types/components/StreamingMedia/constants/eventTypes.d.ts.map +0 -1
- package/types/components/StreamingMedia/constants/playbackState.d.ts +0 -7
- package/types/components/StreamingMedia/constants/playbackState.d.ts.map +0 -1
- package/types/components/StreamingMedia/createMediaEventManager.d.ts +0 -29
- package/types/components/StreamingMedia/createMediaEventManager.d.ts.map +0 -1
- package/types/components/StreamingMedia/createMediaRequest.d.ts +0 -6
- package/types/components/StreamingMedia/createMediaRequest.d.ts.map +0 -1
- package/types/components/StreamingMedia/createMediaResponseHandler.d.ts +0 -15
- package/types/components/StreamingMedia/createMediaResponseHandler.d.ts.map +0 -1
- package/types/components/StreamingMedia/createMediaSessionCacheManager.d.ts +0 -17
- package/types/components/StreamingMedia/createMediaSessionCacheManager.d.ts.map +0 -1
- package/types/components/StreamingMedia/createStreamingMediaComponent.d.ts +0 -25
- package/types/components/StreamingMedia/createStreamingMediaComponent.d.ts.map +0 -1
- package/types/components/StreamingMedia/createTrackMediaEvent.d.ts +0 -7
- package/types/components/StreamingMedia/createTrackMediaEvent.d.ts.map +0 -1
- package/types/components/StreamingMedia/createTrackMediaSession.d.ts +0 -8
- package/types/components/StreamingMedia/createTrackMediaSession.d.ts.map +0 -1
- package/types/components/StreamingMedia/index.d.ts +0 -31
- package/types/components/StreamingMedia/index.d.ts.map +0 -1
- package/types/components/StreamingMedia/validateMediaEventOptions.d.ts +0 -5
- package/types/components/StreamingMedia/validateMediaEventOptions.d.ts.map +0 -1
- package/types/components/StreamingMedia/validateMediaSessionOptions.d.ts +0 -5
- package/types/components/StreamingMedia/validateMediaSessionOptions.d.ts.map +0 -1
- package/types/constants/apiVersion.d.ts +0 -3
- package/types/constants/apiVersion.d.ts.map +0 -1
- package/types/constants/browser.d.ts +0 -8
- package/types/constants/browser.d.ts.map +0 -1
- package/types/constants/consentPurpose.d.ts +0 -2
- package/types/constants/consentPurpose.d.ts.map +0 -1
- package/types/constants/consentStatus.d.ts +0 -7
- package/types/constants/consentStatus.d.ts.map +0 -1
- package/types/constants/contentType.d.ts +0 -3
- package/types/constants/contentType.d.ts.map +0 -1
- package/types/constants/cookieNameKey.d.ts +0 -4
- package/types/constants/cookieNameKey.d.ts.map +0 -1
- package/types/constants/cookieNamePrefix.d.ts +0 -3
- package/types/constants/cookieNamePrefix.d.ts.map +0 -1
- package/types/constants/coreCommands.d.ts +0 -3
- package/types/constants/coreCommands.d.ts.map +0 -1
- package/types/constants/coreNamespace.d.ts +0 -3
- package/types/constants/coreNamespace.d.ts.map +0 -1
- package/types/constants/debugQueryParam.d.ts +0 -3
- package/types/constants/debugQueryParam.d.ts.map +0 -1
- package/types/constants/decisionProvider.d.ts +0 -4
- package/types/constants/decisionProvider.d.ts.map +0 -1
- package/types/constants/domain.d.ts +0 -3
- package/types/constants/domain.d.ts.map +0 -1
- package/types/constants/ecidNamespace.d.ts +0 -3
- package/types/constants/ecidNamespace.d.ts.map +0 -1
- package/types/constants/edgeBasePath.d.ts +0 -3
- package/types/constants/edgeBasePath.d.ts.map +0 -1
- package/types/constants/elementAttribute.d.ts +0 -2
- package/types/constants/elementAttribute.d.ts.map +0 -1
- package/types/constants/eventType.d.ts +0 -7
- package/types/constants/eventType.d.ts.map +0 -1
- package/types/constants/highEntropyUserAgentClientHints.d.ts +0 -3
- package/types/constants/highEntropyUserAgentClientHints.d.ts.map +0 -1
- package/types/constants/httpHeaderNames.d.ts +0 -3
- package/types/constants/httpHeaderNames.d.ts.map +0 -1
- package/types/constants/httpStatusCode.d.ts +0 -6
- package/types/constants/httpStatusCode.d.ts.map +0 -1
- package/types/constants/identityMapAuthenticatedState.d.ts +0 -4
- package/types/constants/identityMapAuthenticatedState.d.ts.map +0 -1
- package/types/constants/legacyCookies.d.ts +0 -4
- package/types/constants/legacyCookies.d.ts.map +0 -1
- package/types/constants/libraryName.d.ts +0 -3
- package/types/constants/libraryName.d.ts.map +0 -1
- package/types/constants/libraryVersion.d.ts +0 -3
- package/types/constants/libraryVersion.d.ts.map +0 -1
- package/types/constants/namespace.d.ts +0 -3
- package/types/constants/namespace.d.ts.map +0 -1
- package/types/constants/pageWideScope.d.ts +0 -3
- package/types/constants/pageWideScope.d.ts.map +0 -1
- package/types/constants/propositionEventType.d.ts +0 -10
- package/types/constants/propositionEventType.d.ts.map +0 -1
- package/types/constants/propositionInteractionType.d.ts +0 -5
- package/types/constants/propositionInteractionType.d.ts.map +0 -1
- package/types/constants/queryStringIdentityParam.d.ts +0 -3
- package/types/constants/queryStringIdentityParam.d.ts.map +0 -1
- package/types/constants/schema.d.ts +0 -12
- package/types/constants/schema.d.ts.map +0 -1
- package/types/constants/sessionDataKeys.d.ts +0 -2
- package/types/constants/sessionDataKeys.d.ts.map +0 -1
- package/types/constants/shadowSeparator.d.ts +0 -3
- package/types/constants/shadowSeparator.d.ts.map +0 -1
- package/types/constants/surface.d.ts +0 -5
- package/types/constants/surface.d.ts.map +0 -1
- package/types/constants/tagName.d.ts +0 -8
- package/types/constants/tagName.d.ts.map +0 -1
- package/types/core/buildAndValidateConfig.d.ts +0 -10
- package/types/core/buildAndValidateConfig.d.ts.map +0 -1
- package/types/core/componentCreators.d.ts +0 -12
- package/types/core/componentCreators.d.ts.map +0 -1
- package/types/core/config/createConfig.d.ts +0 -3
- package/types/core/config/createConfig.d.ts.map +0 -1
- package/types/core/config/createCoreConfigs.d.ts +0 -3
- package/types/core/config/createCoreConfigs.d.ts.map +0 -1
- package/types/core/consent/createConsent.d.ts +0 -7
- package/types/core/consent/createConsent.d.ts.map +0 -1
- package/types/core/consent/createConsentStateMachine.d.ts +0 -12
- package/types/core/consent/createConsentStateMachine.d.ts.map +0 -1
- package/types/core/consent/types.d.ts +0 -42
- package/types/core/consent/types.d.ts.map +0 -1
- package/types/core/createComponentRegistry.d.ts +0 -9
- package/types/core/createComponentRegistry.d.ts.map +0 -1
- package/types/core/createCookieTransfer.d.ts +0 -21
- package/types/core/createCookieTransfer.d.ts.map +0 -1
- package/types/core/createEvent.d.ts +0 -21
- package/types/core/createEvent.d.ts.map +0 -1
- package/types/core/createEventManager.d.ts +0 -32
- package/types/core/createEventManager.d.ts.map +0 -1
- package/types/core/createInstanceFunction.d.ts +0 -3
- package/types/core/createInstanceFunction.d.ts.map +0 -1
- package/types/core/createLifecycle.d.ts +0 -3
- package/types/core/createLifecycle.d.ts.map +0 -1
- package/types/core/createLogController.d.ts +0 -16
- package/types/core/createLogController.d.ts.map +0 -1
- package/types/core/createLogger.d.ts +0 -37
- package/types/core/createLogger.d.ts.map +0 -1
- package/types/core/edgeNetwork/handleRequestFailure.d.ts +0 -3
- package/types/core/edgeNetwork/handleRequestFailure.d.ts.map +0 -1
- package/types/core/edgeNetwork/injectApplyResponse.d.ts +0 -14
- package/types/core/edgeNetwork/injectApplyResponse.d.ts.map +0 -1
- package/types/core/edgeNetwork/injectExtractEdgeInfo.d.ts +0 -9
- package/types/core/edgeNetwork/injectExtractEdgeInfo.d.ts.map +0 -1
- package/types/core/edgeNetwork/injectGetLocationHint.d.ts +0 -6
- package/types/core/edgeNetwork/injectGetLocationHint.d.ts.map +0 -1
- package/types/core/edgeNetwork/injectProcessWarningsAndErrors.d.ts +0 -5
- package/types/core/edgeNetwork/injectProcessWarningsAndErrors.d.ts.map +0 -1
- package/types/core/edgeNetwork/injectSendEdgeNetworkRequest.d.ts +0 -18
- package/types/core/edgeNetwork/injectSendEdgeNetworkRequest.d.ts.map +0 -1
- package/types/core/edgeNetwork/mergeLifecycleResponses.d.ts +0 -3
- package/types/core/edgeNetwork/mergeLifecycleResponses.d.ts.map +0 -1
- package/types/core/edgeNetwork/types.d.ts +0 -12
- package/types/core/edgeNetwork/types.d.ts.map +0 -1
- package/types/core/getMonitors.d.ts +0 -4
- package/types/core/getMonitors.d.ts.map +0 -1
- package/types/core/identity/createIdentity.d.ts +0 -12
- package/types/core/identity/createIdentity.d.ts.map +0 -1
- package/types/core/identity/types.d.ts +0 -23
- package/types/core/identity/types.d.ts.map +0 -1
- package/types/core/index.d.ts +0 -14
- package/types/core/index.d.ts.map +0 -1
- package/types/core/initializeComponents.d.ts +0 -8
- package/types/core/initializeComponents.d.ts.map +0 -1
- package/types/core/injectCreateResponse.d.ts +0 -6
- package/types/core/injectCreateResponse.d.ts.map +0 -1
- package/types/core/injectExecuteCommand.d.ts +0 -9
- package/types/core/injectExecuteCommand.d.ts.map +0 -1
- package/types/core/injectHandleError.d.ts +0 -6
- package/types/core/injectHandleError.d.ts.map +0 -1
- package/types/core/injectShouldTransferCookie.d.ts +0 -6
- package/types/core/injectShouldTransferCookie.d.ts.map +0 -1
- package/types/core/network/getRequestRetryDelay.d.ts +0 -6
- package/types/core/network/getRequestRetryDelay.d.ts.map +0 -1
- package/types/core/network/injectSendNetworkRequest.d.ts +0 -14
- package/types/core/network/injectSendNetworkRequest.d.ts.map +0 -1
- package/types/core/network/isRequestRetryable.d.ts +0 -6
- package/types/core/network/isRequestRetryable.d.ts.map +0 -1
- package/types/core/network/requestMethods/injectSendBeaconRequest.d.ts +0 -7
- package/types/core/network/requestMethods/injectSendBeaconRequest.d.ts.map +0 -1
- package/types/core/network/requestMethods/injectSendFetchRequest.d.ts +0 -5
- package/types/core/network/requestMethods/injectSendFetchRequest.d.ts.map +0 -1
- package/types/core/requiredComponentCreators.d.ts +0 -5
- package/types/core/requiredComponentCreators.d.ts.map +0 -1
- package/types/core/types.d.ts +0 -216
- package/types/core/types.d.ts.map +0 -1
- package/types/core/validateCommandOptions.d.ts +0 -6
- package/types/core/validateCommandOptions.d.ts.map +0 -1
- package/types/index.d.ts +0 -33
- package/types/index.d.ts.map +0 -1
- package/types/serviceWorker.d.ts +0 -2
- package/types/serviceWorker.d.ts.map +0 -1
- package/types/standalone.d.ts +0 -2
- package/types/standalone.d.ts.map +0 -1
- package/types/utils/assignConcatArrayValues.d.ts +0 -3
- package/types/utils/assignConcatArrayValues.d.ts.map +0 -1
- package/types/utils/bytes.d.ts +0 -5
- package/types/utils/bytes.d.ts.map +0 -1
- package/types/utils/clamp.d.ts +0 -3
- package/types/utils/clamp.d.ts.map +0 -1
- package/types/utils/clone.d.ts +0 -3
- package/types/utils/clone.d.ts.map +0 -1
- package/types/utils/cookieJar.d.ts +0 -8
- package/types/utils/cookieJar.d.ts.map +0 -1
- package/types/utils/createCallbackAggregator.d.ts +0 -6
- package/types/utils/createCallbackAggregator.d.ts.map +0 -1
- package/types/utils/createCollect.d.ts +0 -14
- package/types/utils/createCollect.d.ts.map +0 -1
- package/types/utils/createDecodeKndctrCookie.d.ts +0 -11
- package/types/utils/createDecodeKndctrCookie.d.ts.map +0 -1
- package/types/utils/createLoggingCookieJar.d.ts +0 -8
- package/types/utils/createLoggingCookieJar.d.ts.map +0 -1
- package/types/utils/createMerger.d.ts +0 -3
- package/types/utils/createMerger.d.ts.map +0 -1
- package/types/utils/createSubscription.d.ts +0 -13
- package/types/utils/createSubscription.d.ts.map +0 -1
- package/types/utils/createTaskQueue.d.ts +0 -20
- package/types/utils/createTaskQueue.d.ts.map +0 -1
- package/types/utils/decodeUriComponentSafely.d.ts +0 -3
- package/types/utils/decodeUriComponentSafely.d.ts.map +0 -1
- package/types/utils/deduplicateArray.d.ts +0 -3
- package/types/utils/deduplicateArray.d.ts.map +0 -1
- package/types/utils/deepAssign.d.ts +0 -3
- package/types/utils/deepAssign.d.ts.map +0 -1
- package/types/utils/defer.d.ts +0 -5
- package/types/utils/defer.d.ts.map +0 -1
- package/types/utils/dom/appendNode.d.ts +0 -3
- package/types/utils/dom/appendNode.d.ts.map +0 -1
- package/types/utils/dom/awaitSelector.d.ts +0 -8
- package/types/utils/dom/awaitSelector.d.ts.map +0 -1
- package/types/utils/dom/createGetPageLocation.d.ts +0 -5
- package/types/utils/dom/createGetPageLocation.d.ts.map +0 -1
- package/types/utils/dom/createNode.d.ts +0 -3
- package/types/utils/dom/createNode.d.ts.map +0 -1
- package/types/utils/dom/index.d.ts +0 -10
- package/types/utils/dom/index.d.ts.map +0 -1
- package/types/utils/dom/isShadowSelector.d.ts +0 -3
- package/types/utils/dom/isShadowSelector.d.ts.map +0 -1
- package/types/utils/dom/loadScript.d.ts +0 -17
- package/types/utils/dom/loadScript.d.ts.map +0 -1
- package/types/utils/dom/matchesSelector.d.ts +0 -3
- package/types/utils/dom/matchesSelector.d.ts.map +0 -1
- package/types/utils/dom/querySelectorAll.d.ts +0 -3
- package/types/utils/dom/querySelectorAll.d.ts.map +0 -1
- package/types/utils/dom/removeNode.d.ts +0 -3
- package/types/utils/dom/removeNode.d.ts.map +0 -1
- package/types/utils/dom/selectNodes.d.ts +0 -3
- package/types/utils/dom/selectNodes.d.ts.map +0 -1
- package/types/utils/dom/selectNodesWithShadow.d.ts +0 -3
- package/types/utils/dom/selectNodesWithShadow.d.ts.map +0 -1
- package/types/utils/event.d.ts +0 -3
- package/types/utils/event.d.ts.map +0 -1
- package/types/utils/filterObject.d.ts +0 -14
- package/types/utils/filterObject.d.ts.map +0 -1
- package/types/utils/fireImage.d.ts +0 -3
- package/types/utils/fireImage.d.ts.map +0 -1
- package/types/utils/flattenArray.d.ts +0 -3
- package/types/utils/flattenArray.d.ts.map +0 -1
- package/types/utils/flattenObject.d.ts +0 -3
- package/types/utils/flattenObject.d.ts.map +0 -1
- package/types/utils/fnv1a32Hex.d.ts +0 -8
- package/types/utils/fnv1a32Hex.d.ts.map +0 -1
- package/types/utils/getApexDomain.d.ts +0 -3
- package/types/utils/getApexDomain.d.ts.map +0 -1
- package/types/utils/getLastArrayItems.d.ts +0 -3
- package/types/utils/getLastArrayItems.d.ts.map +0 -1
- package/types/utils/getNamespacedCookieName.d.ts +0 -3
- package/types/utils/getNamespacedCookieName.d.ts.map +0 -1
- package/types/utils/groupBy.d.ts +0 -3
- package/types/utils/groupBy.d.ts.map +0 -1
- package/types/utils/index.d.ts +0 -53
- package/types/utils/index.d.ts.map +0 -1
- package/types/utils/indexedDb.d.ts +0 -4
- package/types/utils/indexedDb.d.ts.map +0 -1
- package/types/utils/injectAreThirdPartyCookiesSupportedByDefault.d.ts +0 -5
- package/types/utils/injectAreThirdPartyCookiesSupportedByDefault.d.ts.map +0 -1
- package/types/utils/injectDoesIdentityCookieExist.d.ts +0 -5
- package/types/utils/injectDoesIdentityCookieExist.d.ts.map +0 -1
- package/types/utils/injectFireReferrerHideableImage.d.ts +0 -8
- package/types/utils/injectFireReferrerHideableImage.d.ts.map +0 -1
- package/types/utils/injectGetBrowser.d.ts +0 -5
- package/types/utils/injectGetBrowser.d.ts.map +0 -1
- package/types/utils/injectStorage.d.ts +0 -4
- package/types/utils/injectStorage.d.ts.map +0 -1
- package/types/utils/intersection.d.ts +0 -3
- package/types/utils/intersection.d.ts.map +0 -1
- package/types/utils/isBlankString.d.ts +0 -3
- package/types/utils/isBlankString.d.ts.map +0 -1
- package/types/utils/isBoolean.d.ts +0 -3
- package/types/utils/isBoolean.d.ts.map +0 -1
- package/types/utils/isEmptyObject.d.ts +0 -3
- package/types/utils/isEmptyObject.d.ts.map +0 -1
- package/types/utils/isFunction.d.ts +0 -3
- package/types/utils/isFunction.d.ts.map +0 -1
- package/types/utils/isInteger.d.ts +0 -3
- package/types/utils/isInteger.d.ts.map +0 -1
- package/types/utils/isNamespacedCookieName.d.ts +0 -3
- package/types/utils/isNamespacedCookieName.d.ts.map +0 -1
- package/types/utils/isNil.d.ts +0 -3
- package/types/utils/isNil.d.ts.map +0 -1
- package/types/utils/isNonEmptyArray.d.ts +0 -3
- package/types/utils/isNonEmptyArray.d.ts.map +0 -1
- package/types/utils/isNonEmptyString.d.ts +0 -3
- package/types/utils/isNonEmptyString.d.ts.map +0 -1
- package/types/utils/isNumber.d.ts +0 -3
- package/types/utils/isNumber.d.ts.map +0 -1
- package/types/utils/isObject.d.ts +0 -3
- package/types/utils/isObject.d.ts.map +0 -1
- package/types/utils/isString.d.ts +0 -3
- package/types/utils/isString.d.ts.map +0 -1
- package/types/utils/isUnique.d.ts +0 -3
- package/types/utils/isUnique.d.ts.map +0 -1
- package/types/utils/isValidRegExp.d.ts +0 -3
- package/types/utils/isValidRegExp.d.ts.map +0 -1
- package/types/utils/lazy.d.ts +0 -3
- package/types/utils/lazy.d.ts.map +0 -1
- package/types/utils/networkErrors.d.ts +0 -4
- package/types/utils/networkErrors.d.ts.map +0 -1
- package/types/utils/noop.d.ts +0 -3
- package/types/utils/noop.d.ts.map +0 -1
- package/types/utils/parseUrl.d.ts +0 -20
- package/types/utils/parseUrl.d.ts.map +0 -1
- package/types/utils/prepareConfigOverridesForEdge.d.ts +0 -3
- package/types/utils/prepareConfigOverridesForEdge.d.ts.map +0 -1
- package/types/utils/querystring.d.ts +0 -2
- package/types/utils/querystring.d.ts.map +0 -1
- package/types/utils/request/createAddIdentity.d.ts +0 -3
- package/types/utils/request/createAddIdentity.d.ts.map +0 -1
- package/types/utils/request/createDataCollectionRequest.d.ts +0 -6
- package/types/utils/request/createDataCollectionRequest.d.ts.map +0 -1
- package/types/utils/request/createDataCollectionRequestPayload.d.ts +0 -4
- package/types/utils/request/createDataCollectionRequestPayload.d.ts.map +0 -1
- package/types/utils/request/createGetAssuranceValidationTokenParams.d.ts +0 -6
- package/types/utils/request/createGetAssuranceValidationTokenParams.d.ts.map +0 -1
- package/types/utils/request/createHasIdentity.d.ts +0 -3
- package/types/utils/request/createHasIdentity.d.ts.map +0 -1
- package/types/utils/request/createRequest.d.ts +0 -15
- package/types/utils/request/createRequest.d.ts.map +0 -1
- package/types/utils/request/createRequestParams.d.ts +0 -17
- package/types/utils/request/createRequestParams.d.ts.map +0 -1
- package/types/utils/request/createRequestPayload.d.ts +0 -9
- package/types/utils/request/createRequestPayload.d.ts.map +0 -1
- package/types/utils/request/index.d.ts +0 -9
- package/types/utils/request/index.d.ts.map +0 -1
- package/types/utils/request/types.d.ts +0 -93
- package/types/utils/request/types.d.ts.map +0 -1
- package/types/utils/sanitizeOrgIdForCookieName.d.ts +0 -3
- package/types/utils/sanitizeOrgIdForCookieName.d.ts.map +0 -1
- package/types/utils/sortObjectKeysRecursively.d.ts +0 -3
- package/types/utils/sortObjectKeysRecursively.d.ts.map +0 -1
- package/types/utils/stackError.d.ts +0 -6
- package/types/utils/stackError.d.ts.map +0 -1
- package/types/utils/stringToBoolean.d.ts +0 -3
- package/types/utils/stringToBoolean.d.ts.map +0 -1
- package/types/utils/surfaceUtils.d.ts +0 -4
- package/types/utils/surfaceUtils.d.ts.map +0 -1
- package/types/utils/toArray.d.ts +0 -3
- package/types/utils/toArray.d.ts.map +0 -1
- package/types/utils/toError.d.ts +0 -3
- package/types/utils/toError.d.ts.map +0 -1
- package/types/utils/toISOStringLocal.d.ts +0 -3
- package/types/utils/toISOStringLocal.d.ts.map +0 -1
- package/types/utils/toInteger.d.ts +0 -3
- package/types/utils/toInteger.d.ts.map +0 -1
- package/types/utils/types.d.ts +0 -91
- package/types/utils/types.d.ts.map +0 -1
- package/types/utils/updateErrorMessage.d.ts +0 -6
- package/types/utils/updateErrorMessage.d.ts.map +0 -1
- package/types/utils/uuid.d.ts +0 -3
- package/types/utils/uuid.d.ts.map +0 -1
- package/types/utils/validateConfigOverride.d.ts +0 -3
- package/types/utils/validateConfigOverride.d.ts.map +0 -1
- package/types/utils/validateIdentityMap.d.ts +0 -3
- package/types/utils/validateIdentityMap.d.ts.map +0 -1
- package/types/utils/validation/booleanValidator.d.ts +0 -3
- package/types/utils/validation/booleanValidator.d.ts.map +0 -1
- package/types/utils/validation/callbackValidator.d.ts +0 -3
- package/types/utils/validation/callbackValidator.d.ts.map +0 -1
- package/types/utils/validation/createAnyOfValidator.d.ts +0 -3
- package/types/utils/validation/createAnyOfValidator.d.ts.map +0 -1
- package/types/utils/validation/createArrayOfValidator.d.ts +0 -3
- package/types/utils/validation/createArrayOfValidator.d.ts.map +0 -1
- package/types/utils/validation/createDefaultValidator.d.ts +0 -3
- package/types/utils/validation/createDefaultValidator.d.ts.map +0 -1
- package/types/utils/validation/createDeprecatedValidator.d.ts +0 -3
- package/types/utils/validation/createDeprecatedValidator.d.ts.map +0 -1
- package/types/utils/validation/createLiteralValidator.d.ts +0 -3
- package/types/utils/validation/createLiteralValidator.d.ts.map +0 -1
- package/types/utils/validation/createMapOfValuesValidator.d.ts +0 -3
- package/types/utils/validation/createMapOfValuesValidator.d.ts.map +0 -1
- package/types/utils/validation/createMaximumValidator.d.ts +0 -3
- package/types/utils/validation/createMaximumValidator.d.ts.map +0 -1
- package/types/utils/validation/createMinimumValidator.d.ts +0 -3
- package/types/utils/validation/createMinimumValidator.d.ts.map +0 -1
- package/types/utils/validation/createNoUnknownFieldsValidator.d.ts +0 -3
- package/types/utils/validation/createNoUnknownFieldsValidator.d.ts.map +0 -1
- package/types/utils/validation/createNonEmptyValidator.d.ts +0 -3
- package/types/utils/validation/createNonEmptyValidator.d.ts.map +0 -1
- package/types/utils/validation/createObjectOfValidator.d.ts +0 -3
- package/types/utils/validation/createObjectOfValidator.d.ts.map +0 -1
- package/types/utils/validation/createRenamedValidator.d.ts +0 -3
- package/types/utils/validation/createRenamedValidator.d.ts.map +0 -1
- package/types/utils/validation/createUniqueItemsValidator.d.ts +0 -3
- package/types/utils/validation/createUniqueItemsValidator.d.ts.map +0 -1
- package/types/utils/validation/createUniqueValidator.d.ts +0 -3
- package/types/utils/validation/createUniqueValidator.d.ts.map +0 -1
- package/types/utils/validation/domainValidator.d.ts +0 -3
- package/types/utils/validation/domainValidator.d.ts.map +0 -1
- package/types/utils/validation/index.d.ts +0 -13
- package/types/utils/validation/index.d.ts.map +0 -1
- package/types/utils/validation/integerValidator.d.ts +0 -3
- package/types/utils/validation/integerValidator.d.ts.map +0 -1
- package/types/utils/validation/matchesRegexpValidator.d.ts +0 -3
- package/types/utils/validation/matchesRegexpValidator.d.ts.map +0 -1
- package/types/utils/validation/numberValidator.d.ts +0 -3
- package/types/utils/validation/numberValidator.d.ts.map +0 -1
- package/types/utils/validation/regexpValidator.d.ts +0 -3
- package/types/utils/validation/regexpValidator.d.ts.map +0 -1
- package/types/utils/validation/requiredValidator.d.ts +0 -3
- package/types/utils/validation/requiredValidator.d.ts.map +0 -1
- package/types/utils/validation/stringValidator.d.ts +0 -3
- package/types/utils/validation/stringValidator.d.ts.map +0 -1
- package/types/utils/validation/utils.d.ts +0 -5
- package/types/utils/validation/utils.d.ts.map +0 -1
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright 2019 Adobe. All rights reserved.
|
|
3
|
+
This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
you may not use this file except in compliance with the License. You may obtain a copy
|
|
5
|
+
of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
6
|
+
|
|
7
|
+
Unless required by applicable law or agreed to in writing, software distributed under
|
|
8
|
+
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
|
|
9
|
+
OF ANY KIND, either express or implied. See the License for the specific language
|
|
10
|
+
governing permissions and limitations under the License.
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
/* eslint no-underscore-dangle: 0 */
|
|
14
|
+
/* eslint-disable func-names */
|
|
15
|
+
|
|
16
|
+
/** @import { WindowWithAlloy } from '../types.js' */
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* This is the code, once minified, that an Alloy consumer copies and pastes
|
|
20
|
+
* into their website's HTML. It sets up any global functions the consumer will
|
|
21
|
+
* use to interact with Alloy. It also provides a queuing mechanism whereby
|
|
22
|
+
* any function calls made by the consumer before the Alloy library file
|
|
23
|
+
* loads will be enqueued and later processed by Alloy once the Alloy library
|
|
24
|
+
* file has loaded. Because each call may be asynchronously processed, a promise
|
|
25
|
+
* will always be returned to the consumer any time the consumer attempts to
|
|
26
|
+
* execute a command.
|
|
27
|
+
*
|
|
28
|
+
* Along with this base code, a script tag (not shown here) will also be added
|
|
29
|
+
* to the consumer website's HTML that will load the Alloy library file.
|
|
30
|
+
*
|
|
31
|
+
* Take particular care to write well-minifiable code, as consumers are
|
|
32
|
+
* particularly sensitive to base code size.
|
|
33
|
+
*
|
|
34
|
+
* @param {WindowWithAlloy} window
|
|
35
|
+
* @param {string[]} instanceNames
|
|
36
|
+
*/
|
|
37
|
+
|
|
38
|
+
export default (window, instanceNames) => {
|
|
39
|
+
instanceNames.forEach(function (instanceName) {
|
|
40
|
+
if (!window[instanceName]) {
|
|
41
|
+
// __alloyNS stores a name of each "instance", or in other words, each
|
|
42
|
+
// global function created that the consumer will use. This array is
|
|
43
|
+
// what the Alloy library will consult once it is loaded to determine
|
|
44
|
+
// which global functions have been set up so that is can connect them to
|
|
45
|
+
// the library's command processing pipeline.
|
|
46
|
+
(window.__alloyNS = window.__alloyNS || []).push(instanceName);
|
|
47
|
+
window[instanceName] = function () {
|
|
48
|
+
var userProvidedArgs = arguments;
|
|
49
|
+
// Always return a promise, because the command may be executed
|
|
50
|
+
// asynchronously, especially if the Alloy library has not yet loaded.
|
|
51
|
+
return new Promise(function (resolve, reject) {
|
|
52
|
+
// Push required call information into the queue. Once the Alloy
|
|
53
|
+
// library is loaded, it will process this queue and resolve/reject
|
|
54
|
+
// the promise we just returned to the consumer. If the Alloy
|
|
55
|
+
// library has already loaded, then it will have already overridden
|
|
56
|
+
// q.push and will therefore process the call immediately.
|
|
57
|
+
window[instanceName].q.push([resolve, reject, userProvidedArgs]);
|
|
58
|
+
});
|
|
59
|
+
};
|
|
60
|
+
window[instanceName].q = [];
|
|
61
|
+
}
|
|
62
|
+
});
|
|
63
|
+
};
|
package/src/baseCode.js
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright 2020 Adobe. All rights reserved.
|
|
3
|
+
This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
you may not use this file except in compliance with the License. You may obtain a copy
|
|
5
|
+
of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
6
|
+
|
|
7
|
+
Unless required by applicable law or agreed to in writing, software distributed under
|
|
8
|
+
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
|
|
9
|
+
OF ANY KIND, either express or implied. See the License for the specific language
|
|
10
|
+
governing permissions and limitations under the License.
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
// This file is used by rollup to create a base code example
|
|
14
|
+
|
|
15
|
+
import baseCode from "./baseCode/index.js";
|
|
16
|
+
|
|
17
|
+
baseCode(window, ["alloy"]);
|
package/src/index.js
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright 2025 Adobe. All rights reserved.
|
|
3
|
+
This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
you may not use this file except in compliance with the License. You may obtain a copy
|
|
5
|
+
of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
6
|
+
|
|
7
|
+
Unless required by applicable law or agreed to in writing, software distributed under
|
|
8
|
+
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
|
|
9
|
+
OF ANY KIND, either express or implied. See the License for the specific language
|
|
10
|
+
governing permissions and limitations under the License.
|
|
11
|
+
*/
|
|
12
|
+
export { createInstance, createCustomInstance } from "@adobe/alloy-core";
|
|
13
|
+
export * as components from "@adobe/alloy-core/core/componentCreators.js";
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright 2025 Adobe. All rights reserved.
|
|
3
|
+
This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
you may not use this file except in compliance with the License. You may obtain a copy
|
|
5
|
+
of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
6
|
+
|
|
7
|
+
Unless required by applicable law or agreed to in writing, software distributed under
|
|
8
|
+
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
|
|
9
|
+
OF ANY KIND, either express or implied. See the License for the specific language
|
|
10
|
+
governing permissions and limitations under the License.
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
import createEventListeners from "@adobe/alloy-core/createEventListeners.js";
|
|
14
|
+
|
|
15
|
+
/* eslint-disable no-console */
|
|
16
|
+
|
|
17
|
+
// @ts-check
|
|
18
|
+
/// <reference lib="webworker" />
|
|
19
|
+
|
|
20
|
+
/** @import { ServiceWorkerLogger } from '@adobe/alloy-core/types.js' */
|
|
21
|
+
|
|
22
|
+
/** @type {ServiceWorkerGlobalScope} */
|
|
23
|
+
// @ts-ignore
|
|
24
|
+
const sw = self;
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* @type {ServiceWorkerLogger}
|
|
28
|
+
*/
|
|
29
|
+
const logger = {
|
|
30
|
+
namespace: "[alloy][pushNotificationWorker]",
|
|
31
|
+
info: (...args) => console.log(logger.namespace, ...args),
|
|
32
|
+
error: (...args) => console.error(logger.namespace, ...args),
|
|
33
|
+
};
|
|
34
|
+
|
|
35
|
+
const eventListeners = createEventListeners({
|
|
36
|
+
sw,
|
|
37
|
+
platform: {
|
|
38
|
+
logger,
|
|
39
|
+
fetch,
|
|
40
|
+
},
|
|
41
|
+
});
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* @listens install
|
|
45
|
+
*/
|
|
46
|
+
sw.addEventListener("install", () => {
|
|
47
|
+
sw.skipWaiting();
|
|
48
|
+
});
|
|
49
|
+
|
|
50
|
+
/**
|
|
51
|
+
* @listens activate
|
|
52
|
+
* @param {ExtendableEvent} event
|
|
53
|
+
*/
|
|
54
|
+
sw.addEventListener("activate", (event) => {
|
|
55
|
+
event.waitUntil(sw.clients.claim());
|
|
56
|
+
});
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* @listens push
|
|
60
|
+
* @param {PushEvent} event
|
|
61
|
+
* @returns {Promise<void>}
|
|
62
|
+
*/
|
|
63
|
+
sw.addEventListener("push", (event) =>
|
|
64
|
+
eventListeners.pushNotifications.onPush(event),
|
|
65
|
+
);
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
* @listens notificationclick
|
|
69
|
+
* @param {NotificationEvent} event
|
|
70
|
+
*/
|
|
71
|
+
sw.addEventListener("notificationclick", (event) =>
|
|
72
|
+
eventListeners.pushNotifications.onNotificationClick(event),
|
|
73
|
+
);
|
|
74
|
+
|
|
75
|
+
/**
|
|
76
|
+
* @listens notificationclose
|
|
77
|
+
* @param {NotificationEvent} event
|
|
78
|
+
*/
|
|
79
|
+
sw.addEventListener("notificationclose", (event) => {
|
|
80
|
+
eventListeners.pushNotifications.onNotificationClose(event);
|
|
81
|
+
});
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright 2025 Adobe. All rights reserved.
|
|
3
|
+
This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
you may not use this file except in compliance with the License. You may obtain a copy
|
|
5
|
+
of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
6
|
+
|
|
7
|
+
Unless required by applicable law or agreed to in writing, software distributed under
|
|
8
|
+
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
|
|
9
|
+
OF ANY KIND, either express or implied. See the License for the specific language
|
|
10
|
+
governing permissions and limitations under the License.
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
/** @import { WindowWithAlloy, AlloyQueueItem } from './types.js' */
|
|
14
|
+
|
|
15
|
+
import { createCustomInstance } from "./index.js";
|
|
16
|
+
import * as optionalComponents from "@adobe/alloy-core/core/componentCreators.js";
|
|
17
|
+
|
|
18
|
+
// This file is used by rollup to create the browser version that is uploaded to cdn
|
|
19
|
+
|
|
20
|
+
const initializeStandalone = ({ components }) => {
|
|
21
|
+
// eslint-disable-next-line no-underscore-dangle
|
|
22
|
+
const instanceNames = /** @type {WindowWithAlloy} */ (window).__alloyNS;
|
|
23
|
+
if (!instanceNames) {
|
|
24
|
+
return;
|
|
25
|
+
}
|
|
26
|
+
for (const name of instanceNames) {
|
|
27
|
+
const instance = createCustomInstance({ name, components });
|
|
28
|
+
const execute = (/** @type {AlloyQueueItem} */ item) => {
|
|
29
|
+
const [resolve, reject, [commandName, options]] = item;
|
|
30
|
+
return instance(commandName, options).then(resolve, reject);
|
|
31
|
+
};
|
|
32
|
+
const queue = window[name].q;
|
|
33
|
+
queue.push = execute;
|
|
34
|
+
queue.forEach(execute);
|
|
35
|
+
}
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
// If you change this line, check if the custom build script is still working.
|
|
39
|
+
// You might need to change the babel plugin in scripts/helpers/entryPointGeneratorBabelPlugin.js.
|
|
40
|
+
initializeStandalone({ components: Object.values(optionalComponents) });
|
package/src/types.js
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Copyright 2025 Adobe. All rights reserved.
|
|
3
|
+
This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
you may not use this file except in compliance with the License. You may obtain a copy
|
|
5
|
+
of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
6
|
+
|
|
7
|
+
Unless required by applicable law or agreed to in writing, software distributed under
|
|
8
|
+
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
|
|
9
|
+
OF ANY KIND, either express or implied. See the License for the specific language
|
|
10
|
+
governing permissions and limitations under the License.
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* @typedef {[(value: any) => any, (value:any) => any, [string, object?]]} AlloyQueueItem
|
|
15
|
+
* An array containing [resolve, reject, [commandName, options]]
|
|
16
|
+
*/
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* @typedef {Function & { q: AlloyQueueItem[] }} AlloyInstance
|
|
20
|
+
* A function that executes Alloy commands and returns a Promise,
|
|
21
|
+
* with a queue property for pre-initialization commands.
|
|
22
|
+
* @param {string} commandName
|
|
23
|
+
* @param {object} [options]
|
|
24
|
+
* @returns {Promise<any>}
|
|
25
|
+
*/
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* Window object extended with Alloy namespace and dynamic instance properties
|
|
29
|
+
* @typedef {Window & {
|
|
30
|
+
* __alloyNS?: string[],
|
|
31
|
+
* [key: string]: AlloyInstance | any
|
|
32
|
+
* }} WindowWithAlloy
|
|
33
|
+
*/
|
|
34
|
+
|
|
35
|
+
export const Types = {};
|
package/LICENSE
DELETED
|
@@ -1,201 +0,0 @@
|
|
|
1
|
-
Apache License
|
|
2
|
-
Version 2.0, January 2004
|
|
3
|
-
http://www.apache.org/licenses/
|
|
4
|
-
|
|
5
|
-
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
-
|
|
7
|
-
1. Definitions.
|
|
8
|
-
|
|
9
|
-
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
-
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
-
|
|
12
|
-
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
-
the copyright owner that is granting the License.
|
|
14
|
-
|
|
15
|
-
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
-
other entities that control, are controlled by, or are under common
|
|
17
|
-
control with that entity. For the purposes of this definition,
|
|
18
|
-
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
-
direction or management of such entity, whether by contract or
|
|
20
|
-
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
-
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
-
|
|
23
|
-
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
-
exercising permissions granted by this License.
|
|
25
|
-
|
|
26
|
-
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
-
including but not limited to software source code, documentation
|
|
28
|
-
source, and configuration files.
|
|
29
|
-
|
|
30
|
-
"Object" form shall mean any form resulting from mechanical
|
|
31
|
-
transformation or translation of a Source form, including but
|
|
32
|
-
not limited to compiled object code, generated documentation,
|
|
33
|
-
and conversions to other media types.
|
|
34
|
-
|
|
35
|
-
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
-
Object form, made available under the License, as indicated by a
|
|
37
|
-
copyright notice that is included in or attached to the work
|
|
38
|
-
(an example is provided in the Appendix below).
|
|
39
|
-
|
|
40
|
-
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
-
form, that is based on (or derived from) the Work and for which the
|
|
42
|
-
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
-
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
-
of this License, Derivative Works shall not include works that remain
|
|
45
|
-
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
-
the Work and Derivative Works thereof.
|
|
47
|
-
|
|
48
|
-
"Contribution" shall mean any work of authorship, including
|
|
49
|
-
the original version of the Work and any modifications or additions
|
|
50
|
-
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
-
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
-
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
-
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
-
means any form of electronic, verbal, or written communication sent
|
|
55
|
-
to the Licensor or its representatives, including but not limited to
|
|
56
|
-
communication on electronic mailing lists, source code control systems,
|
|
57
|
-
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
-
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
-
excluding communication that is conspicuously marked or otherwise
|
|
60
|
-
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
-
|
|
62
|
-
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
-
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
-
subsequently incorporated within the Work.
|
|
65
|
-
|
|
66
|
-
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
-
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
-
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
-
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
-
Work and such Derivative Works in Source or Object form.
|
|
72
|
-
|
|
73
|
-
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
-
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
-
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
-
(except as stated in this section) patent license to make, have made,
|
|
77
|
-
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
-
where such license applies only to those patent claims licensable
|
|
79
|
-
by such Contributor that are necessarily infringed by their
|
|
80
|
-
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
-
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
-
institute patent litigation against any entity (including a
|
|
83
|
-
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
-
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
-
or contributory patent infringement, then any patent licenses
|
|
86
|
-
granted to You under this License for that Work shall terminate
|
|
87
|
-
as of the date such litigation is filed.
|
|
88
|
-
|
|
89
|
-
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
-
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
-
modifications, and in Source or Object form, provided that You
|
|
92
|
-
meet the following conditions:
|
|
93
|
-
|
|
94
|
-
(a) You must give any other recipients of the Work or
|
|
95
|
-
Derivative Works a copy of this License; and
|
|
96
|
-
|
|
97
|
-
(b) You must cause any modified files to carry prominent notices
|
|
98
|
-
stating that You changed the files; and
|
|
99
|
-
|
|
100
|
-
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
-
that You distribute, all copyright, patent, trademark, and
|
|
102
|
-
attribution notices from the Source form of the Work,
|
|
103
|
-
excluding those notices that do not pertain to any part of
|
|
104
|
-
the Derivative Works; and
|
|
105
|
-
|
|
106
|
-
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
-
distribution, then any Derivative Works that You distribute must
|
|
108
|
-
include a readable copy of the attribution notices contained
|
|
109
|
-
within such NOTICE file, excluding those notices that do not
|
|
110
|
-
pertain to any part of the Derivative Works, in at least one
|
|
111
|
-
of the following places: within a NOTICE text file distributed
|
|
112
|
-
as part of the Derivative Works; within the Source form or
|
|
113
|
-
documentation, if provided along with the Derivative Works; or,
|
|
114
|
-
within a display generated by the Derivative Works, if and
|
|
115
|
-
wherever such third-party notices normally appear. The contents
|
|
116
|
-
of the NOTICE file are for informational purposes only and
|
|
117
|
-
do not modify the License. You may add Your own attribution
|
|
118
|
-
notices within Derivative Works that You distribute, alongside
|
|
119
|
-
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
-
that such additional attribution notices cannot be construed
|
|
121
|
-
as modifying the License.
|
|
122
|
-
|
|
123
|
-
You may add Your own copyright statement to Your modifications and
|
|
124
|
-
may provide additional or different license terms and conditions
|
|
125
|
-
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
-
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
-
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
-
the conditions stated in this License.
|
|
129
|
-
|
|
130
|
-
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
-
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
-
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
-
this License, without any additional terms or conditions.
|
|
134
|
-
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
-
the terms of any separate license agreement you may have executed
|
|
136
|
-
with Licensor regarding such Contributions.
|
|
137
|
-
|
|
138
|
-
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
-
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
-
except as required for reasonable and customary use in describing the
|
|
141
|
-
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
-
|
|
143
|
-
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
-
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
-
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
-
implied, including, without limitation, any warranties or conditions
|
|
148
|
-
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
-
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
-
appropriateness of using or redistributing the Work and assume any
|
|
151
|
-
risks associated with Your exercise of permissions under this License.
|
|
152
|
-
|
|
153
|
-
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
-
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
-
unless required by applicable law (such as deliberate and grossly
|
|
156
|
-
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
-
liable to You for damages, including any direct, indirect, special,
|
|
158
|
-
incidental, or consequential damages of any character arising as a
|
|
159
|
-
result of this License or out of the use or inability to use the
|
|
160
|
-
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
-
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
-
other commercial damages or losses), even if such Contributor
|
|
163
|
-
has been advised of the possibility of such damages.
|
|
164
|
-
|
|
165
|
-
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
-
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
-
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
-
or other liability obligations and/or rights consistent with this
|
|
169
|
-
License. However, in accepting such obligations, You may act only
|
|
170
|
-
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
-
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
-
defend, and hold each Contributor harmless for any liability
|
|
173
|
-
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
-
of your accepting any such warranty or additional liability.
|
|
175
|
-
|
|
176
|
-
END OF TERMS AND CONDITIONS
|
|
177
|
-
|
|
178
|
-
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
-
|
|
180
|
-
To apply the Apache License to your work, attach the following
|
|
181
|
-
boilerplate notice, with the fields enclosed by brackets "{}"
|
|
182
|
-
replaced with your own identifying information. (Don't include
|
|
183
|
-
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
-
comment syntax for the file format. We also recommend that a
|
|
185
|
-
file or class name and description of purpose be included on the
|
|
186
|
-
same "printed page" as the copyright notice for easier
|
|
187
|
-
identification within third-party archives.
|
|
188
|
-
|
|
189
|
-
Copyright {yyyy} {name of copyright owner}
|
|
190
|
-
|
|
191
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
-
you may not use this file except in compliance with the License.
|
|
193
|
-
You may obtain a copy of the License at
|
|
194
|
-
|
|
195
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
-
|
|
197
|
-
Unless required by applicable law or agreed to in writing, software
|
|
198
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
-
See the License for the specific language governing permissions and
|
|
201
|
-
limitations under the License.
|
package/README.md
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-

|
|
2
|
-

|
|
3
|
-

|
|
4
|
-
|
|
5
|
-
# Alloy
|
|
6
|
-
|
|
7
|
-
Alloy is the code name for the Adobe Experience Platform Web SDK. It allows for recording events into Adobe Experience Platform, syncing identities, personalizing content, and more.
|
|
8
|
-
|
|
9
|
-
For documentation on how to use Alloy, please see the [user documentation](https://experienceleague.adobe.com/en/docs/experience-platform/web-sdk/home).
|
|
10
|
-
|
|
11
|
-
## Organization
|
|
12
|
-
|
|
13
|
-
This repo contains multiple projects. Each one is in a subdirectory and has its own `package.json` file.
|
|
14
|
-
|
|
15
|
-
- [`sandboxes/`](./sandboxes) - Contains sample projects that demonstrate how to use Alloy in different scenarios.
|
|
16
|
-
- [`browser/` - `@adobe/alloy-sandbox-browser`](./sandboxes/browser) - the web browser sandbox
|
|
17
|
-
- [`packages/`](./packages)
|
|
18
|
-
- [`core/` - `@adobe/alloy-core`](./packages/core) - Contains the core "business logic" for interacting with the Adobe Experience Platform Edge Network.
|
|
19
|
-
|
|
20
|
-
## Contribution
|
|
21
|
-
|
|
22
|
-
Check out the [contribution guidelines](CONTRIBUTING.md) for quick start information, and head over to the [developer documentation](https://github.com/adobe/alloy/wiki) to understand the architecture and structure of the library.
|
package/libEs5/baseCode/index.js
DELETED
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
exports.default = void 0;
|
|
4
|
-
/*
|
|
5
|
-
Copyright 2019 Adobe. All rights reserved.
|
|
6
|
-
This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
7
|
-
you may not use this file except in compliance with the License. You may obtain a copy
|
|
8
|
-
of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
-
|
|
10
|
-
Unless required by applicable law or agreed to in writing, software distributed under
|
|
11
|
-
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
|
|
12
|
-
OF ANY KIND, either express or implied. See the License for the specific language
|
|
13
|
-
governing permissions and limitations under the License.
|
|
14
|
-
*/
|
|
15
|
-
/* eslint no-param-reassign: 0 */
|
|
16
|
-
/* eslint no-underscore-dangle: 0 */
|
|
17
|
-
/* eslint prefer-rest-params: 0 */
|
|
18
|
-
/* eslint no-var: 0 */
|
|
19
|
-
/* eslint-disable func-names */
|
|
20
|
-
/**
|
|
21
|
-
* This is the code, once minified, that an Alloy consumer copies and pastes
|
|
22
|
-
* into their website's HTML. It sets up any global functions the consumer will
|
|
23
|
-
* use to interact with Alloy. It also provides a queuing mechanism whereby
|
|
24
|
-
* any function calls made by the consumer before the Alloy library file
|
|
25
|
-
* loads will be enqueued and later processed by Alloy once the Alloy library
|
|
26
|
-
* file has loaded. Because each call may be asynchronously processed, a promise
|
|
27
|
-
* will always be returned to the consumer any time the consumer attempts to
|
|
28
|
-
* execute a command.
|
|
29
|
-
*
|
|
30
|
-
* Along with this base code, a script tag (not shown here) will also be added
|
|
31
|
-
* to the consumer website's HTML that will load the Alloy library file.
|
|
32
|
-
*
|
|
33
|
-
* Take particular care to write well-minifiable code, as consumers are
|
|
34
|
-
* particularly sensitive to base code size.
|
|
35
|
-
*/
|
|
36
|
-
var _default = (window, instanceNames) => {
|
|
37
|
-
instanceNames.forEach(function (instanceName) {
|
|
38
|
-
if (!window[instanceName]) {
|
|
39
|
-
// __alloyNS stores a name of each "instance", or in other words, each
|
|
40
|
-
// global function created that the consumer will use. This array is
|
|
41
|
-
// what the Alloy library will consult once it is loaded to determine
|
|
42
|
-
// which global functions have been set up so that is can connect them to
|
|
43
|
-
// the library's command processing pipeline.
|
|
44
|
-
(window.__alloyNS = window.__alloyNS || []).push(instanceName);
|
|
45
|
-
window[instanceName] = function () {
|
|
46
|
-
var userProvidedArgs = arguments;
|
|
47
|
-
// Always return a promise, because the command may be executed
|
|
48
|
-
// asynchronously, especially if the Alloy library has not yet loaded.
|
|
49
|
-
return new Promise(function (resolve, reject) {
|
|
50
|
-
// Push required call information into the queue. Once the Alloy
|
|
51
|
-
// library is loaded, it will process this queue and resolve/reject
|
|
52
|
-
// the promise we just returned to the consumer. If the Alloy
|
|
53
|
-
// library has already loaded, then it will have already overridden
|
|
54
|
-
// q.push and will therefore process the call immediately.
|
|
55
|
-
window[instanceName].q.push([resolve, reject, userProvidedArgs]);
|
|
56
|
-
});
|
|
57
|
-
};
|
|
58
|
-
window[instanceName].q = [];
|
|
59
|
-
}
|
|
60
|
-
});
|
|
61
|
-
};
|
|
62
|
-
exports.default = _default;
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
exports.default = void 0;
|
|
4
|
-
var _index = require("../../utils/index.js");
|
|
5
|
-
/*
|
|
6
|
-
Copyright 2022 Adobe. All rights reserved.
|
|
7
|
-
This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
8
|
-
you may not use this file except in compliance with the License. You may obtain a copy
|
|
9
|
-
of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
-
|
|
11
|
-
Unless required by applicable law or agreed to in writing, software distributed under
|
|
12
|
-
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
|
|
13
|
-
OF ANY KIND, either express or implied. See the License for the specific language
|
|
14
|
-
governing permissions and limitations under the License.
|
|
15
|
-
*/
|
|
16
|
-
|
|
17
|
-
const createClickHandler = ({
|
|
18
|
-
eventManager,
|
|
19
|
-
lifecycle,
|
|
20
|
-
handleError
|
|
21
|
-
}) => {
|
|
22
|
-
return clickEvent => {
|
|
23
|
-
// Ignore repropagated clicks from AppMeasurement
|
|
24
|
-
if (clickEvent.s_fe) {
|
|
25
|
-
return Promise.resolve();
|
|
26
|
-
}
|
|
27
|
-
// TODO: Consider safeguarding from the same object being clicked multiple times in rapid succession?
|
|
28
|
-
const clickedElement = "composedPath" in clickEvent && clickEvent.composedPath().length > 0 ? clickEvent.composedPath()[0] : clickEvent.target;
|
|
29
|
-
const event = eventManager.createEvent();
|
|
30
|
-
// this is to make sure a exit link personalization metric use send beacon
|
|
31
|
-
event.documentMayUnload();
|
|
32
|
-
return lifecycle.onClick({
|
|
33
|
-
event,
|
|
34
|
-
clickedElement
|
|
35
|
-
}).then(() => {
|
|
36
|
-
if (event.isEmpty()) {
|
|
37
|
-
return Promise.resolve();
|
|
38
|
-
}
|
|
39
|
-
return eventManager.sendEvent(event);
|
|
40
|
-
})
|
|
41
|
-
// eventManager.sendEvent() will return a promise resolved to an
|
|
42
|
-
// object and we want to avoid returning any value to the customer
|
|
43
|
-
.then(_index.noop).catch(error => {
|
|
44
|
-
handleError(error, "click collection");
|
|
45
|
-
});
|
|
46
|
-
};
|
|
47
|
-
};
|
|
48
|
-
var _default = ({
|
|
49
|
-
eventManager,
|
|
50
|
-
lifecycle,
|
|
51
|
-
handleError
|
|
52
|
-
}) => {
|
|
53
|
-
const clickHandler = createClickHandler({
|
|
54
|
-
eventManager,
|
|
55
|
-
lifecycle,
|
|
56
|
-
handleError
|
|
57
|
-
});
|
|
58
|
-
document.addEventListener("click", clickHandler, true);
|
|
59
|
-
};
|
|
60
|
-
exports.default = _default;
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
exports.downloadLinkQualifier = exports.default = exports.DEFAULT_DOWNLOAD_QUALIFIER = void 0;
|
|
4
|
-
var _index = require("../../utils/validation/index.js");
|
|
5
|
-
/*
|
|
6
|
-
Copyright 2019 Adobe. All rights reserved.
|
|
7
|
-
This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
8
|
-
you may not use this file except in compliance with the License. You may obtain a copy
|
|
9
|
-
of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
10
|
-
|
|
11
|
-
Unless required by applicable law or agreed to in writing, software distributed under
|
|
12
|
-
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
|
|
13
|
-
OF ANY KIND, either express or implied. See the License for the specific language
|
|
14
|
-
governing permissions and limitations under the License.
|
|
15
|
-
*/
|
|
16
|
-
|
|
17
|
-
const DEFAULT_DOWNLOAD_QUALIFIER = exports.DEFAULT_DOWNLOAD_QUALIFIER = "\\.(exe|zip|wav|mp3|mov|mpg|avi|wmv|pdf|doc|docx|xls|xlsx|ppt|pptx)$";
|
|
18
|
-
const downloadLinkQualifier = exports.downloadLinkQualifier = (0, _index.string)().regexp().default(DEFAULT_DOWNLOAD_QUALIFIER);
|
|
19
|
-
const validators = (0, _index.objectOf)({
|
|
20
|
-
clickCollectionEnabled: (0, _index.boolean)().default(true),
|
|
21
|
-
clickCollection: (0, _index.objectOf)({
|
|
22
|
-
internalLinkEnabled: (0, _index.boolean)().default(true),
|
|
23
|
-
externalLinkEnabled: (0, _index.boolean)().default(true),
|
|
24
|
-
downloadLinkEnabled: (0, _index.boolean)().default(true),
|
|
25
|
-
// TODO: Consider moving downloadLinkQualifier here.
|
|
26
|
-
sessionStorageEnabled: (0, _index.boolean)().default(false),
|
|
27
|
-
eventGroupingEnabled: (0, _index.boolean)().default(false),
|
|
28
|
-
filterClickProperties: (0, _index.callback)()
|
|
29
|
-
}).default({
|
|
30
|
-
internalLinkEnabled: true,
|
|
31
|
-
externalLinkEnabled: true,
|
|
32
|
-
downloadLinkEnabled: true,
|
|
33
|
-
sessionStorageEnabled: false,
|
|
34
|
-
eventGroupingEnabled: false
|
|
35
|
-
}),
|
|
36
|
-
downloadLinkQualifier,
|
|
37
|
-
onBeforeLinkClickSend: (0, _index.callback)().deprecated('The field "onBeforeLinkClickSend" has been deprecated. Use "clickCollection.filterClickDetails" instead.')
|
|
38
|
-
});
|
|
39
|
-
|
|
40
|
-
// Export both the validators and the default qualifier
|
|
41
|
-
var _default = exports.default = validators;
|