@adobe/alloy 2.19.0-beta.0 → 2.19.0-beta.10
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/libEs5/baseCode/index.js +2 -12
- package/libEs5/components/ActivityCollector/attachClickActivityCollector.js +9 -12
- package/libEs5/components/ActivityCollector/configValidators.js +1 -4
- package/libEs5/components/ActivityCollector/createGetLinkDetails.js +7 -17
- package/libEs5/components/ActivityCollector/createLinkClick.js +3 -8
- package/libEs5/components/ActivityCollector/getLinkName.js +8 -26
- package/libEs5/components/ActivityCollector/getLinkRegion.js +2 -16
- package/libEs5/components/ActivityCollector/index.js +8 -18
- package/libEs5/components/ActivityCollector/utils.js +3 -40
- package/libEs5/components/Audiences/index.js +2 -8
- package/libEs5/components/Audiences/injectProcessDestinations.js +20 -19
- package/libEs5/components/Audiences/injectProcessResponse.js +0 -5
- package/libEs5/components/Context/createComponent.js +0 -4
- package/libEs5/components/Context/implementationDetails.js +0 -5
- package/libEs5/components/Context/index.js +12 -19
- package/libEs5/components/Context/injectDevice.js +3 -20
- package/libEs5/components/Context/injectEnvironment.js +1 -8
- package/libEs5/components/Context/injectHighEntropyUserAgentHints.js +14 -21
- package/libEs5/components/Context/injectPlaceContext.js +2 -8
- package/libEs5/components/Context/injectTimestamp.js +0 -3
- package/libEs5/components/Context/injectWeb.js +0 -3
- package/libEs5/components/DataCollector/index.js +24 -45
- package/libEs5/components/DataCollector/validateApplyResponse.js +2 -5
- package/libEs5/components/DataCollector/validateUserEventOptions.js +6 -9
- package/libEs5/components/EventMerge/createComponent.js +0 -2
- package/libEs5/components/EventMerge/createEventMergeId.js +0 -3
- package/libEs5/components/EventMerge/index.js +1 -4
- package/libEs5/components/Identity/addEcidQueryToPayload.js +0 -3
- package/libEs5/components/Identity/addEcidToPayload.js +0 -3
- package/libEs5/components/Identity/appendIdentityToUrl/appendIdentityToUrlOptionsValidator.js +0 -5
- package/libEs5/components/Identity/appendIdentityToUrl/injectAppendIdentityToUrl.js +5 -19
- package/libEs5/components/Identity/configValidators.js +1 -2
- package/libEs5/components/Identity/constants/authState.js +1 -1
- package/libEs5/components/Identity/constants/defaultIdSyncTtlMinutes.js +0 -2
- package/libEs5/components/Identity/createComponent.js +16 -22
- package/libEs5/components/Identity/createLegacyIdentity.js +5 -19
- package/libEs5/components/Identity/getEcidFromResponse.js +0 -4
- package/libEs5/components/Identity/getIdentity/createGetIdentity.js +5 -9
- package/libEs5/components/Identity/getIdentity/createIdentityRequest.js +1 -4
- package/libEs5/components/Identity/getIdentity/createIdentityRequestPayload.js +0 -3
- package/libEs5/components/Identity/getIdentity/getIdentityOptionsValidator.js +0 -5
- package/libEs5/components/Identity/index.js +8 -29
- package/libEs5/components/Identity/injectAddLegacyEcidToPayload.js +1 -5
- package/libEs5/components/Identity/injectAddQueryStringIdentityToPayload.js +22 -28
- package/libEs5/components/Identity/injectAwaitIdentityCookie.js +7 -8
- package/libEs5/components/Identity/injectEnsureSingleIdentity.js +17 -20
- package/libEs5/components/Identity/injectHandleResponseForIdSyncs.js +0 -2
- package/libEs5/components/Identity/injectProcessIdSyncs.js +2 -7
- package/libEs5/components/Identity/injectSetDomainForInitialIdentityPayload.js +1 -4
- package/libEs5/components/Identity/visitorService/awaitVisitorOptIn.js +0 -3
- package/libEs5/components/Identity/visitorService/getVisitor.js +0 -3
- package/libEs5/components/Identity/visitorService/injectGetEcidFromVisitor.js +2 -7
- package/libEs5/components/LibraryInfo/index.js +13 -21
- package/libEs5/components/MachineLearning/index.js +1 -3
- package/libEs5/components/MachineLearning/processResponse.js +0 -2
- package/libEs5/components/Personalization/constants/eventType.js +1 -1
- package/libEs5/components/Personalization/constants/loggerMessage.js +0 -1
- package/libEs5/components/Personalization/constants/propositionEventType.js +1 -1
- package/libEs5/components/Personalization/constants/schema.js +1 -1
- package/libEs5/components/Personalization/constants/scopeType.js +7 -3
- package/libEs5/components/Personalization/constants/surface.js +1 -1
- package/libEs5/components/Personalization/createApplyPropositions.js +29 -40
- package/libEs5/components/Personalization/createClickStorage.js +22 -23
- package/libEs5/components/Personalization/createCollect.js +5 -15
- package/libEs5/components/Personalization/createComponent.js +43 -42
- package/libEs5/components/Personalization/createFetchDataHandler.js +41 -50
- package/libEs5/components/Personalization/createGetPageLocation.js +0 -2
- package/libEs5/components/Personalization/createOnClickHandler.js +9 -20
- package/libEs5/components/Personalization/createPersonalizationDetails.js +23 -35
- package/libEs5/components/Personalization/createSetTargetMigration.js +0 -5
- package/libEs5/components/Personalization/createViewCacheManager.js +13 -26
- package/libEs5/components/Personalization/createViewChangeHandler.js +3 -15
- package/libEs5/components/Personalization/dom-actions/action.js +3 -19
- package/libEs5/components/Personalization/dom-actions/addNonceToInlineStyleElements.js +1 -13
- package/libEs5/components/Personalization/dom-actions/appendHtml.js +0 -7
- package/libEs5/components/Personalization/dom-actions/clicks/collectClicks.js +46 -37
- package/libEs5/components/Personalization/dom-actions/createPreprocess.js +0 -4
- package/libEs5/components/Personalization/{utils/isPageWideScope.js → dom-actions/createRedirect.js} +10 -9
- package/libEs5/components/Personalization/dom-actions/dom/createFragment.js +0 -4
- package/libEs5/components/Personalization/dom-actions/dom/getAttribute.js +0 -2
- package/libEs5/components/Personalization/dom-actions/dom/getChildNodes.js +0 -5
- package/libEs5/components/Personalization/dom-actions/dom/getChildren.js +0 -5
- package/libEs5/components/Personalization/dom-actions/dom/getElementById.js +0 -3
- package/libEs5/components/Personalization/dom-actions/dom/getFirstChild.js +0 -2
- package/libEs5/components/Personalization/dom-actions/dom/getNextSibling.js +0 -2
- package/libEs5/components/Personalization/dom-actions/dom/getNonce.js +4 -10
- package/libEs5/components/Personalization/dom-actions/dom/getParent.js +0 -2
- package/libEs5/components/Personalization/dom-actions/dom/helperForEq.js +1 -6
- package/libEs5/components/Personalization/dom-actions/dom/index.js +0 -14
- package/libEs5/components/Personalization/dom-actions/dom/insertAfter.js +0 -6
- package/libEs5/components/Personalization/dom-actions/dom/insertBefore.js +0 -5
- package/libEs5/components/Personalization/dom-actions/dom/matchesSelectorWithEq.js +6 -11
- package/libEs5/components/Personalization/dom-actions/dom/removeAttribute.js +0 -2
- package/libEs5/components/Personalization/dom-actions/dom/selectNodesWithEq.js +16 -36
- package/libEs5/components/Personalization/dom-actions/dom/setAttribute.js +0 -2
- package/libEs5/components/Personalization/dom-actions/dom/setStyle.js +0 -4
- package/libEs5/components/Personalization/dom-actions/images.js +1 -11
- package/libEs5/components/Personalization/dom-actions/index.js +0 -1
- package/libEs5/components/Personalization/dom-actions/initDomActionsModules.js +0 -4
- package/libEs5/components/Personalization/dom-actions/insertHtmlAfter.js +0 -6
- package/libEs5/components/Personalization/dom-actions/insertHtmlBefore.js +0 -6
- package/libEs5/components/Personalization/dom-actions/prependHtml.js +4 -12
- package/libEs5/components/Personalization/dom-actions/rearrangeChildren.js +1 -6
- package/libEs5/components/Personalization/dom-actions/remapCustomCodeOffers.js +2 -8
- package/libEs5/components/Personalization/dom-actions/remapHeadOffers.js +2 -16
- package/libEs5/components/Personalization/dom-actions/replaceHtml.js +0 -4
- package/libEs5/components/Personalization/dom-actions/scripts.js +13 -35
- package/libEs5/components/Personalization/dom-actions/setAttributes.js +0 -3
- package/libEs5/components/Personalization/dom-actions/setHtml.js +1 -6
- package/libEs5/components/Personalization/dom-actions/setStyles.js +12 -8
- package/libEs5/components/Personalization/dom-actions/setText.js +0 -2
- package/libEs5/components/Personalization/dom-actions/swapImage.js +6 -9
- package/libEs5/components/Personalization/event.js +2 -10
- package/libEs5/components/Personalization/flicker/index.js +17 -31
- package/libEs5/components/Personalization/handlers/createProcessDomAction.js +23 -15
- package/libEs5/components/Personalization/handlers/createProcessHtmlContent.js +11 -10
- package/libEs5/components/Personalization/handlers/createProcessPropositions.js +8 -53
- package/libEs5/components/Personalization/handlers/createProcessRedirect.js +10 -9
- package/libEs5/components/Personalization/handlers/injectCreateProposition.js +32 -40
- package/libEs5/components/Personalization/handlers/processDefaultContent.js +0 -2
- package/libEs5/components/Personalization/index.js +25 -55
- package/libEs5/components/Personalization/utils/addRenderAttemptedToDecisions.js +1 -4
- package/libEs5/components/Personalization/utils/createAsyncArray.js +0 -3
- package/libEs5/components/Personalization/utils/isAuthoringModeEnabled.js +0 -2
- package/libEs5/components/Personalization/utils/surfaceUtils.js +1 -27
- package/libEs5/components/Personalization/validateApplyPropositionsOptions.js +2 -6
- package/libEs5/components/Privacy/computeConsentHash.js +11 -8
- package/libEs5/components/Privacy/createComponent.js +24 -26
- package/libEs5/components/Privacy/createConsentHashStore.js +14 -15
- package/libEs5/components/Privacy/createConsentRequest.js +1 -4
- package/libEs5/components/Privacy/createConsentRequestPayload.js +0 -5
- package/libEs5/components/Privacy/createStoredConsent.js +2 -6
- package/libEs5/components/Privacy/index.js +5 -15
- package/libEs5/components/Privacy/injectSendSetConsentRequest.js +7 -12
- package/libEs5/components/Privacy/parseConsentCookie.js +3 -13
- package/libEs5/components/Privacy/validateSetConsentOptions.js +0 -4
- package/libEs5/constants/apiVersion.js +0 -1
- package/libEs5/constants/browser.js +1 -1
- package/libEs5/constants/consentPurpose.js +1 -1
- package/libEs5/constants/consentStatus.js +1 -1
- package/libEs5/constants/cookieNameKey.js +1 -1
- package/libEs5/constants/cookieNamePrefix.js +0 -1
- package/libEs5/constants/coreCommands.js +1 -1
- package/libEs5/constants/debugQueryParam.js +0 -1
- package/libEs5/constants/domain.js +1 -1
- package/libEs5/constants/ecidNamespace.js +0 -1
- package/libEs5/constants/edgeBasePath.js +0 -1
- package/libEs5/constants/elementAttribute.js +1 -1
- package/libEs5/constants/highEntropyUserAgentClientHints.js +0 -1
- package/libEs5/constants/httpHeaderNames.js +1 -1
- package/libEs5/constants/httpStatusCode.js +1 -1
- package/libEs5/constants/identityMapAuthenticatedState.js +0 -1
- package/libEs5/constants/legacyCookies.js +1 -1
- package/libEs5/constants/libraryName.js +0 -1
- package/libEs5/constants/libraryVersion.js +1 -2
- package/libEs5/constants/namespace.js +0 -1
- package/libEs5/constants/pageWideScope.js +0 -1
- package/libEs5/constants/queryStringIdentityParam.js +0 -1
- package/libEs5/constants/shadowSeparator.js +0 -1
- package/libEs5/constants/tagName.js +1 -1
- package/libEs5/core/buildAndValidateConfig.js +21 -32
- package/libEs5/core/componentCreators.js +0 -12
- package/libEs5/core/config/createConfig.js +1 -3
- package/libEs5/core/config/createCoreConfigs.js +0 -7
- package/libEs5/core/consent/createConsent.js +1 -11
- package/libEs5/core/consent/createConsentStateMachine.js +1 -18
- package/libEs5/core/createComponentRegistry.js +4 -14
- package/libEs5/core/createCookieTransfer.js +9 -18
- package/libEs5/core/createEvent.js +25 -34
- package/libEs5/core/createEventManager.js +39 -53
- package/libEs5/core/createInstanceFunction.js +0 -2
- package/libEs5/core/createLifecycle.js +14 -14
- package/libEs5/core/createLogController.js +5 -17
- package/libEs5/core/createLogger.js +3 -17
- package/libEs5/core/edgeNetwork/handleRequestFailure.js +0 -3
- package/libEs5/core/edgeNetwork/injectApplyResponse.js +12 -18
- package/libEs5/core/edgeNetwork/injectExtractEdgeInfo.js +4 -8
- package/libEs5/core/edgeNetwork/injectGetLocationHint.js +1 -11
- package/libEs5/core/edgeNetwork/injectProcessWarningsAndErrors.js +6 -11
- package/libEs5/core/edgeNetwork/injectSendEdgeNetworkRequest.js +18 -26
- package/libEs5/core/edgeNetwork/mergeLifecycleResponses.js +11 -10
- package/libEs5/core/index.js +12 -54
- package/libEs5/core/initializeComponents.js +5 -10
- package/libEs5/core/injectCreateResponse.js +8 -16
- package/libEs5/core/injectExecuteCommand.js +8 -19
- package/libEs5/core/injectHandleError.js +4 -8
- package/libEs5/core/injectShouldTransferCookie.js +1 -5
- package/libEs5/core/network/getRequestRetryDelay.js +10 -17
- package/libEs5/core/network/injectSendNetworkRequest.js +20 -22
- package/libEs5/core/network/isRequestRetryable.js +5 -7
- package/libEs5/core/network/requestMethods/injectSendBeaconRequest.js +5 -8
- package/libEs5/core/network/requestMethods/injectSendFetchRequest.js +0 -2
- package/libEs5/core/network/requestMethods/injectSendXhrRequest.js +0 -5
- package/libEs5/core/validateCommandOptions.js +5 -9
- package/libEs5/index.js +7 -15
- package/libEs5/utils/areThirdPartyCookiesSupportedByDefault.js +1 -5
- package/libEs5/utils/assign.js +0 -2
- package/libEs5/utils/assignIf.js +0 -4
- package/libEs5/utils/clone.js +0 -3
- package/libEs5/utils/cookieJar.js +0 -2
- package/libEs5/utils/crc32.js +0 -8
- package/libEs5/utils/createCallbackAggregator.js +0 -4
- package/libEs5/utils/createLoggingCookieJar.js +1 -6
- package/libEs5/utils/createMerger.js +0 -4
- package/libEs5/utils/createTaskQueue.js +0 -7
- package/libEs5/utils/deduplicateArray.js +0 -5
- package/libEs5/utils/deepAssign.js +2 -10
- package/libEs5/utils/defer.js +0 -3
- package/libEs5/utils/dom/appendNode.js +0 -2
- package/libEs5/utils/dom/awaitSelector.js +1 -29
- package/libEs5/utils/dom/createNode.js +1 -5
- package/libEs5/utils/dom/index.js +0 -8
- package/libEs5/utils/dom/isShadowSelector.js +0 -3
- package/libEs5/utils/dom/matchesSelector.js +2 -5
- package/libEs5/utils/dom/querySelectorAll.js +3 -6
- package/libEs5/utils/dom/removeNode.js +0 -4
- package/libEs5/utils/dom/selectNodes.js +0 -8
- package/libEs5/utils/dom/selectNodesWithShadow.js +6 -20
- package/libEs5/utils/endsWith.js +0 -3
- package/libEs5/utils/filterObject.js +13 -17
- package/libEs5/utils/find.js +0 -5
- package/libEs5/utils/fireImage.js +2 -7
- package/libEs5/utils/flatMap.js +0 -2
- package/libEs5/utils/getApexDomain.js +4 -8
- package/libEs5/utils/getBrowser.js +11 -11
- package/libEs5/utils/getLastArrayItems.js +0 -3
- package/libEs5/utils/getNamespacedCookieName.js +0 -4
- package/libEs5/utils/groupBy.js +0 -5
- package/libEs5/utils/includes.js +0 -3
- package/libEs5/utils/index.js +0 -56
- package/libEs5/utils/injectDoesIdentityCookieExist.js +0 -6
- package/libEs5/utils/injectFireReferrerHideableImage.js +21 -29
- package/libEs5/utils/injectStorage.js +1 -7
- package/libEs5/utils/intersection.js +0 -4
- package/libEs5/utils/isBlankString.js +0 -4
- package/libEs5/utils/isBoolean.js +0 -3
- package/libEs5/utils/isEmptyObject.js +0 -4
- package/libEs5/utils/isFunction.js +0 -3
- package/libEs5/utils/isInteger.js +0 -4
- package/libEs5/utils/isNamespacedCookieName.js +0 -5
- package/libEs5/utils/isNil.js +0 -3
- package/libEs5/utils/isNonEmptyArray.js +0 -3
- package/libEs5/utils/isNonEmptyString.js +0 -4
- package/libEs5/utils/isNumber.js +0 -3
- package/libEs5/utils/isObject.js +11 -5
- package/libEs5/utils/isString.js +0 -3
- package/libEs5/utils/isUnique.js +0 -7
- package/libEs5/utils/isValidRegExp.js +0 -3
- package/libEs5/utils/memoize.js +0 -5
- package/libEs5/utils/noop.js +0 -3
- package/libEs5/utils/padStart.js +0 -6
- package/libEs5/utils/prepareConfigOverridesForEdge.js +13 -21
- package/libEs5/utils/querystring.js +0 -2
- package/libEs5/utils/request/createAddIdentity.js +0 -2
- package/libEs5/utils/request/createDataCollectionRequest.js +1 -6
- package/libEs5/utils/request/createDataCollectionRequestPayload.js +0 -8
- package/libEs5/utils/request/createGetAssuranceValidationTokenParams.js +2 -11
- package/libEs5/utils/request/createHasIdentity.js +0 -2
- package/libEs5/utils/request/createRequest.js +3 -6
- package/libEs5/utils/request/createRequestParams.js +4 -12
- package/libEs5/utils/request/createRequestPayload.js +2 -7
- package/libEs5/utils/request/index.js +0 -8
- package/libEs5/utils/sanitizeOrgIdForCookieName.js +0 -2
- package/libEs5/utils/stackError.js +1 -6
- package/libEs5/utils/startsWith.js +0 -3
- package/libEs5/utils/stringToBoolean.js +0 -3
- package/libEs5/utils/toArray.js +0 -4
- package/libEs5/utils/toError.js +0 -3
- package/libEs5/utils/toISOStringLocal.js +3 -7
- package/libEs5/utils/toInteger.js +2 -8
- package/libEs5/utils/updateErrorMessage.js +3 -5
- package/libEs5/utils/uuid.js +0 -2
- package/libEs5/utils/validateConfigOverride.js +0 -3
- package/libEs5/utils/validateIdentityMap.js +0 -4
- package/libEs5/utils/validation/booleanValidator.js +0 -4
- package/libEs5/utils/validation/callbackValidator.js +0 -4
- package/libEs5/utils/validation/createAnyOfValidator.js +0 -5
- package/libEs5/utils/validation/createArrayOfValidator.js +0 -6
- package/libEs5/utils/validation/createDefaultValidator.js +0 -3
- package/libEs5/utils/validation/createDeprecatedValidator.js +13 -21
- package/libEs5/utils/validation/createLiteralValidator.js +0 -3
- package/libEs5/utils/validation/createMapOfValuesValidator.js +0 -9
- package/libEs5/utils/validation/createMinimumValidator.js +0 -3
- package/libEs5/utils/validation/createNoUnknownFieldsValidator.js +0 -4
- package/libEs5/utils/validation/createNonEmptyValidator.js +0 -6
- package/libEs5/utils/validation/createObjectOfValidator.js +2 -10
- package/libEs5/utils/validation/createUniqueItemsValidator.js +0 -4
- package/libEs5/utils/validation/createUniqueValidator.js +0 -3
- package/libEs5/utils/validation/domainValidator.js +1 -4
- package/libEs5/utils/validation/index.js +76 -59
- package/libEs5/utils/validation/integerValidator.js +0 -4
- package/libEs5/utils/validation/numberValidator.js +0 -4
- package/libEs5/utils/validation/regexpValidator.js +0 -4
- package/libEs5/utils/validation/requiredValidator.js +0 -3
- package/libEs5/utils/validation/stringValidator.js +0 -4
- package/libEs5/utils/validation/utils.js +7 -21
- package/libEs5/utils/values.js +0 -3
- package/libEs6/baseCode/index.js +3 -8
- package/libEs6/components/ActivityCollector/attachClickActivityCollector.js +5 -6
- package/libEs6/components/ActivityCollector/configValidators.js +1 -0
- package/libEs6/components/ActivityCollector/createGetLinkDetails.js +1 -8
- package/libEs6/components/ActivityCollector/createLinkClick.js +0 -3
- package/libEs6/components/ActivityCollector/getLinkName.js +8 -23
- package/libEs6/components/ActivityCollector/getLinkRegion.js +2 -12
- package/libEs6/components/ActivityCollector/index.js +3 -6
- package/libEs6/components/ActivityCollector/utils.js +2 -29
- package/libEs6/components/Audiences/index.js +1 -2
- package/libEs6/components/Audiences/injectProcessDestinations.js +3 -6
- package/libEs6/components/Audiences/injectProcessResponse.js +1 -2
- package/libEs6/components/Context/createComponent.js +1 -2
- package/libEs6/components/Context/index.js +3 -3
- package/libEs6/components/Context/injectDevice.js +1 -16
- package/libEs6/components/Context/injectEnvironment.js +1 -4
- package/libEs6/components/Context/injectHighEntropyUserAgentHints.js +2 -5
- package/libEs6/components/Context/injectPlaceContext.js +2 -5
- package/libEs6/components/Context/injectTimestamp.js +1 -0
- package/libEs6/components/Context/injectWeb.js +1 -0
- package/libEs6/components/DataCollector/index.js +8 -25
- package/libEs6/components/DataCollector/validateApplyResponse.js +2 -2
- package/libEs6/components/DataCollector/validateUserEventOptions.js +7 -5
- package/libEs6/components/EventMerge/createComponent.js +1 -0
- package/libEs6/components/EventMerge/createEventMergeId.js +1 -0
- package/libEs6/components/EventMerge/index.js +1 -2
- package/libEs6/components/Identity/addEcidQueryToPayload.js +1 -0
- package/libEs6/components/Identity/addEcidToPayload.js +1 -0
- package/libEs6/components/Identity/appendIdentityToUrl/appendIdentityToUrlOptionsValidator.js +1 -1
- package/libEs6/components/Identity/appendIdentityToUrl/injectAppendIdentityToUrl.js +0 -4
- package/libEs6/components/Identity/configValidators.js +1 -0
- package/libEs6/components/Identity/constants/authState.js +1 -0
- package/libEs6/components/Identity/constants/defaultIdSyncTtlMinutes.js +1 -0
- package/libEs6/components/Identity/createComponent.js +5 -7
- package/libEs6/components/Identity/createLegacyIdentity.js +0 -10
- package/libEs6/components/Identity/getEcidFromResponse.js +1 -0
- package/libEs6/components/Identity/getIdentity/createGetIdentity.js +1 -0
- package/libEs6/components/Identity/getIdentity/createIdentityRequest.js +1 -3
- package/libEs6/components/Identity/getIdentity/createIdentityRequestPayload.js +1 -0
- package/libEs6/components/Identity/getIdentity/getIdentityOptionsValidator.js +1 -1
- package/libEs6/components/Identity/index.js +1 -2
- package/libEs6/components/Identity/injectAddLegacyEcidToPayload.js +1 -1
- package/libEs6/components/Identity/injectAddQueryStringIdentityToPayload.js +5 -7
- package/libEs6/components/Identity/injectAwaitIdentityCookie.js +6 -3
- package/libEs6/components/Identity/injectEnsureSingleIdentity.js +12 -11
- package/libEs6/components/Identity/injectHandleResponseForIdSyncs.js +1 -0
- package/libEs6/components/Identity/injectProcessIdSyncs.js +0 -4
- package/libEs6/components/Identity/injectSetDomainForInitialIdentityPayload.js +1 -0
- package/libEs6/components/Identity/visitorService/awaitVisitorOptIn.js +1 -0
- package/libEs6/components/Identity/visitorService/getVisitor.js +1 -0
- package/libEs6/components/Identity/visitorService/injectGetEcidFromVisitor.js +1 -2
- package/libEs6/components/LibraryInfo/index.js +3 -6
- package/libEs6/components/MachineLearning/index.js +1 -2
- package/libEs6/components/MachineLearning/processResponse.js +1 -0
- package/libEs6/components/Personalization/constants/eventType.js +1 -0
- package/libEs6/components/Personalization/constants/propositionEventType.js +1 -0
- package/libEs6/components/Personalization/constants/schema.js +1 -0
- package/libEs6/components/Personalization/constants/scopeType.js +4 -1
- package/libEs6/components/Personalization/constants/surface.js +1 -0
- package/libEs6/components/Personalization/createApplyPropositions.js +14 -14
- package/libEs6/components/Personalization/createClickStorage.js +19 -18
- package/libEs6/components/Personalization/createCollect.js +0 -5
- package/libEs6/components/Personalization/createComponent.js +23 -20
- package/libEs6/components/Personalization/createFetchDataHandler.js +13 -17
- package/libEs6/components/Personalization/createGetPageLocation.js +1 -0
- package/libEs6/components/Personalization/createOnClickHandler.js +6 -10
- package/libEs6/components/Personalization/createPersonalizationDetails.js +7 -28
- package/libEs6/components/Personalization/createSetTargetMigration.js +1 -1
- package/libEs6/components/Personalization/createViewCacheManager.js +11 -22
- package/libEs6/components/Personalization/createViewChangeHandler.js +1 -7
- package/libEs6/components/Personalization/dom-actions/action.js +1 -2
- package/libEs6/components/Personalization/dom-actions/addNonceToInlineStyleElements.js +1 -8
- package/libEs6/components/Personalization/dom-actions/appendHtml.js +1 -0
- package/libEs6/components/Personalization/dom-actions/clicks/collectClicks.js +30 -26
- package/libEs6/components/Personalization/dom-actions/createPreprocess.js +0 -1
- package/libEs6/components/Personalization/{utils/isPageWideScope.js → dom-actions/createRedirect.js} +8 -4
- package/libEs6/components/Personalization/dom-actions/dom/createFragment.js +1 -0
- package/libEs6/components/Personalization/dom-actions/dom/getAttribute.js +1 -0
- package/libEs6/components/Personalization/dom-actions/dom/getChildNodes.js +1 -2
- package/libEs6/components/Personalization/dom-actions/dom/getChildren.js +1 -2
- package/libEs6/components/Personalization/dom-actions/dom/getFirstChild.js +1 -0
- package/libEs6/components/Personalization/dom-actions/dom/getNextSibling.js +1 -0
- package/libEs6/components/Personalization/dom-actions/dom/getNonce.js +6 -5
- package/libEs6/components/Personalization/dom-actions/dom/getParent.js +1 -0
- package/libEs6/components/Personalization/dom-actions/dom/helperForEq.js +1 -0
- package/libEs6/components/Personalization/dom-actions/dom/index.js +1 -0
- package/libEs6/components/Personalization/dom-actions/dom/insertAfter.js +1 -2
- package/libEs6/components/Personalization/dom-actions/dom/insertBefore.js +1 -2
- package/libEs6/components/Personalization/dom-actions/dom/matchesSelectorWithEq.js +7 -6
- package/libEs6/components/Personalization/dom-actions/dom/removeAttribute.js +1 -0
- package/libEs6/components/Personalization/dom-actions/dom/selectNodesWithEq.js +6 -18
- package/libEs6/components/Personalization/dom-actions/dom/setAttribute.js +1 -0
- package/libEs6/components/Personalization/dom-actions/dom/setStyle.js +1 -2
- package/libEs6/components/Personalization/dom-actions/images.js +1 -1
- package/libEs6/components/Personalization/dom-actions/index.js +1 -0
- package/libEs6/components/Personalization/dom-actions/initDomActionsModules.js +1 -0
- package/libEs6/components/Personalization/dom-actions/insertHtmlAfter.js +1 -0
- package/libEs6/components/Personalization/dom-actions/insertHtmlBefore.js +1 -0
- package/libEs6/components/Personalization/dom-actions/prependHtml.js +5 -5
- package/libEs6/components/Personalization/dom-actions/rearrangeChildren.js +1 -2
- package/libEs6/components/Personalization/dom-actions/remapCustomCodeOffers.js +0 -3
- package/libEs6/components/Personalization/dom-actions/remapHeadOffers.js +1 -7
- package/libEs6/components/Personalization/dom-actions/replaceHtml.js +1 -0
- package/libEs6/components/Personalization/dom-actions/scripts.js +5 -16
- package/libEs6/components/Personalization/dom-actions/setAttributes.js +1 -0
- package/libEs6/components/Personalization/dom-actions/setHtml.js +1 -2
- package/libEs6/components/Personalization/dom-actions/setStyles.js +1 -0
- package/libEs6/components/Personalization/dom-actions/setText.js +1 -0
- package/libEs6/components/Personalization/dom-actions/swapImage.js +7 -4
- package/libEs6/components/Personalization/event.js +4 -4
- package/libEs6/components/Personalization/flicker/index.js +9 -12
- package/libEs6/components/Personalization/handlers/createProcessDomAction.js +17 -9
- package/libEs6/components/Personalization/handlers/createProcessHtmlContent.js +8 -5
- package/libEs6/components/Personalization/handlers/createProcessPropositions.js +3 -30
- package/libEs6/components/Personalization/handlers/createProcessRedirect.js +7 -4
- package/libEs6/components/Personalization/handlers/injectCreateProposition.js +17 -36
- package/libEs6/components/Personalization/index.js +9 -13
- package/libEs6/components/Personalization/utils/addRenderAttemptedToDecisions.js +1 -0
- package/libEs6/components/Personalization/utils/createAsyncArray.js +0 -2
- package/libEs6/components/Personalization/utils/isAuthoringModeEnabled.js +1 -0
- package/libEs6/components/Personalization/utils/surfaceUtils.js +1 -20
- package/libEs6/components/Personalization/validateApplyPropositionsOptions.js +0 -1
- package/libEs6/components/Privacy/computeConsentHash.js +3 -4
- package/libEs6/components/Privacy/createComponent.js +5 -10
- package/libEs6/components/Privacy/createConsentHashStore.js +0 -10
- package/libEs6/components/Privacy/createConsentRequest.js +1 -3
- package/libEs6/components/Privacy/createConsentRequestPayload.js +1 -2
- package/libEs6/components/Privacy/createStoredConsent.js +1 -2
- package/libEs6/components/Privacy/index.js +1 -2
- package/libEs6/components/Privacy/injectSendSetConsentRequest.js +3 -3
- package/libEs6/constants/browser.js +1 -0
- package/libEs6/constants/consentPurpose.js +1 -0
- package/libEs6/constants/consentStatus.js +1 -0
- package/libEs6/constants/cookieNameKey.js +1 -0
- package/libEs6/constants/cookieNamePrefix.js +1 -0
- package/libEs6/constants/coreCommands.js +1 -0
- package/libEs6/constants/debugQueryParam.js +1 -0
- package/libEs6/constants/domain.js +1 -0
- package/libEs6/constants/ecidNamespace.js +1 -0
- package/libEs6/constants/elementAttribute.js +1 -0
- package/libEs6/constants/highEntropyUserAgentClientHints.js +1 -0
- package/libEs6/constants/httpHeaderNames.js +1 -0
- package/libEs6/constants/httpStatusCode.js +1 -0
- package/libEs6/constants/legacyCookies.js +1 -0
- package/libEs6/constants/libraryName.js +1 -0
- package/libEs6/constants/libraryVersion.js +3 -1
- package/libEs6/constants/namespace.js +1 -0
- package/libEs6/constants/pageWideScope.js +1 -0
- package/libEs6/constants/queryStringIdentityParam.js +1 -0
- package/libEs6/constants/shadowSeparator.js +1 -0
- package/libEs6/constants/tagName.js +1 -0
- package/libEs6/core/buildAndValidateConfig.js +4 -10
- package/libEs6/core/componentCreators.js +3 -3
- package/libEs6/core/config/createConfig.js +1 -2
- package/libEs6/core/config/createCoreConfigs.js +1 -0
- package/libEs6/core/consent/createConsent.js +1 -9
- package/libEs6/core/consent/createConsentStateMachine.js +1 -20
- package/libEs6/core/createComponentRegistry.js +3 -15
- package/libEs6/core/createCookieTransfer.js +6 -12
- package/libEs6/core/createEvent.js +15 -37
- package/libEs6/core/createEventManager.js +14 -27
- package/libEs6/core/createInstanceFunction.js +1 -0
- package/libEs6/core/createLifecycle.js +14 -10
- package/libEs6/core/createLogController.js +1 -7
- package/libEs6/core/createLogger.js +1 -17
- package/libEs6/core/edgeNetwork/handleRequestFailure.js +0 -1
- package/libEs6/core/edgeNetwork/injectApplyResponse.js +2 -3
- package/libEs6/core/edgeNetwork/injectExtractEdgeInfo.js +5 -6
- package/libEs6/core/edgeNetwork/injectGetLocationHint.js +1 -5
- package/libEs6/core/edgeNetwork/injectProcessWarningsAndErrors.js +1 -2
- package/libEs6/core/edgeNetwork/injectSendEdgeNetworkRequest.js +5 -5
- package/libEs6/core/index.js +4 -10
- package/libEs6/core/initializeComponents.js +3 -4
- package/libEs6/core/injectCreateResponse.js +3 -7
- package/libEs6/core/injectExecuteCommand.js +5 -11
- package/libEs6/core/injectHandleError.js +4 -3
- package/libEs6/core/injectShouldTransferCookie.js +1 -0
- package/libEs6/core/network/getRequestRetryDelay.js +11 -13
- package/libEs6/core/network/injectSendNetworkRequest.js +3 -7
- package/libEs6/core/network/isRequestRetryable.js +4 -2
- package/libEs6/core/network/requestMethods/injectSendBeaconRequest.js +4 -6
- package/libEs6/core/network/requestMethods/injectSendFetchRequest.js +1 -2
- package/libEs6/core/network/requestMethods/injectSendXhrRequest.js +1 -5
- package/libEs6/core/validateCommandOptions.js +1 -2
- package/libEs6/index.js +5 -3
- package/libEs6/utils/areThirdPartyCookiesSupportedByDefault.js +4 -2
- package/libEs6/utils/assign.js +1 -0
- package/libEs6/utils/assignIf.js +1 -1
- package/libEs6/utils/cookieJar.js +1 -0
- package/libEs6/utils/crc32.js +0 -7
- package/libEs6/utils/createCallbackAggregator.js +0 -2
- package/libEs6/utils/createLoggingCookieJar.js +3 -3
- package/libEs6/utils/createMerger.js +2 -1
- package/libEs6/utils/createTaskQueue.js +0 -4
- package/libEs6/utils/deduplicateArray.js +0 -3
- package/libEs6/utils/deepAssign.js +2 -5
- package/libEs6/utils/dom/appendNode.js +1 -0
- package/libEs6/utils/dom/awaitSelector.js +1 -14
- package/libEs6/utils/dom/createNode.js +1 -2
- package/libEs6/utils/dom/index.js +1 -0
- package/libEs6/utils/dom/isShadowSelector.js +1 -0
- package/libEs6/utils/dom/matchesSelector.js +2 -2
- package/libEs6/utils/dom/querySelectorAll.js +3 -2
- package/libEs6/utils/dom/removeNode.js +1 -2
- package/libEs6/utils/dom/selectNodes.js +2 -2
- package/libEs6/utils/dom/selectNodesWithShadow.js +6 -16
- package/libEs6/utils/filterObject.js +8 -12
- package/libEs6/utils/find.js +0 -2
- package/libEs6/utils/fireImage.js +2 -1
- package/libEs6/utils/getApexDomain.js +4 -4
- package/libEs6/utils/getBrowser.js +1 -7
- package/libEs6/utils/getNamespacedCookieName.js +1 -0
- package/libEs6/utils/groupBy.js +0 -2
- package/libEs6/utils/index.js +1 -0
- package/libEs6/utils/injectDoesIdentityCookieExist.js +1 -1
- package/libEs6/utils/injectFireReferrerHideableImage.js +1 -4
- package/libEs6/utils/injectStorage.js +1 -5
- package/libEs6/utils/intersection.js +2 -1
- package/libEs6/utils/isBlankString.js +2 -1
- package/libEs6/utils/isEmptyObject.js +2 -1
- package/libEs6/utils/isInteger.js +2 -1
- package/libEs6/utils/isNamespacedCookieName.js +2 -1
- package/libEs6/utils/isNonEmptyString.js +2 -1
- package/libEs6/utils/isObject.js +2 -1
- package/libEs6/utils/isUnique.js +0 -5
- package/libEs6/utils/memoize.js +0 -2
- package/libEs6/utils/padStart.js +1 -4
- package/libEs6/utils/prepareConfigOverridesForEdge.js +5 -12
- package/libEs6/utils/querystring.js +1 -0
- package/libEs6/utils/request/createDataCollectionRequest.js +1 -3
- package/libEs6/utils/request/createDataCollectionRequestPayload.js +0 -3
- package/libEs6/utils/request/createGetAssuranceValidationTokenParams.js +1 -6
- package/libEs6/utils/request/createHasIdentity.js +1 -0
- package/libEs6/utils/request/createRequest.js +3 -9
- package/libEs6/utils/request/createRequestParams.js +0 -3
- package/libEs6/utils/request/createRequestPayload.js +4 -4
- package/libEs6/utils/request/index.js +1 -0
- package/libEs6/utils/sanitizeOrgIdForCookieName.js +1 -0
- package/libEs6/utils/stackError.js +2 -1
- package/libEs6/utils/toArray.js +1 -2
- package/libEs6/utils/toISOStringLocal.js +4 -3
- package/libEs6/utils/toInteger.js +4 -4
- package/libEs6/utils/updateErrorMessage.js +3 -1
- package/libEs6/utils/uuid.js +1 -0
- package/libEs6/utils/validateConfigOverride.js +1 -0
- package/libEs6/utils/validateIdentityMap.js +1 -0
- package/libEs6/utils/validation/booleanValidator.js +1 -0
- package/libEs6/utils/validation/createArrayOfValidator.js +0 -2
- package/libEs6/utils/validation/createDefaultValidator.js +1 -1
- package/libEs6/utils/validation/createDeprecatedValidator.js +0 -4
- package/libEs6/utils/validation/createMapOfValuesValidator.js +1 -4
- package/libEs6/utils/validation/createNoUnknownFieldsValidator.js +1 -2
- package/libEs6/utils/validation/createNonEmptyValidator.js +1 -1
- package/libEs6/utils/validation/createObjectOfValidator.js +3 -5
- package/libEs6/utils/validation/createUniqueValidator.js +1 -0
- package/libEs6/utils/validation/index.js +14 -32
- package/libEs6/utils/validation/integerValidator.js +1 -0
- package/libEs6/utils/validation/numberValidator.js +1 -0
- package/libEs6/utils/validation/regexpValidator.js +1 -0
- package/libEs6/utils/validation/requiredValidator.js +1 -1
- package/libEs6/utils/validation/utils.js +8 -12
- package/package.json +3 -3
- package/libEs5/components/Personalization/createPendingNotificationsHandler.js +0 -29
- package/libEs6/components/Personalization/createPendingNotificationsHandler.js +0 -22
|
@@ -1,29 +1,34 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
exports.default = void 0;
|
|
4
|
-
|
|
5
4
|
var _utils = require("../utils");
|
|
6
|
-
|
|
7
5
|
function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
|
|
8
|
-
|
|
9
6
|
function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
|
10
|
-
|
|
11
7
|
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
|
12
|
-
|
|
13
8
|
function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
|
|
14
|
-
|
|
15
9
|
function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
10
|
+
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; } /*
|
|
11
|
+
Copyright 2019 Adobe. All rights reserved.
|
|
12
|
+
This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
13
|
+
you may not use this file except in compliance with the License. You may obtain a copy
|
|
14
|
+
of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
15
|
+
|
|
16
|
+
Unless required by applicable law or agreed to in writing, software distributed under
|
|
17
|
+
the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
|
|
18
|
+
OF ANY KIND, either express or implied. See the License for the specific language
|
|
19
|
+
governing permissions and limitations under the License.
|
|
20
|
+
*/
|
|
19
21
|
var getXdmPropositions = function getXdmPropositions(xdm) {
|
|
20
|
-
return xdm &&
|
|
21
|
-
|
|
22
|
-
xdm._experience
|
|
23
|
-
|
|
22
|
+
return xdm &&
|
|
23
|
+
// eslint-disable-next-line no-underscore-dangle
|
|
24
|
+
xdm._experience &&
|
|
25
|
+
// eslint-disable-next-line no-underscore-dangle
|
|
26
|
+
xdm._experience.decisioning &&
|
|
27
|
+
// eslint-disable-next-line no-underscore-dangle
|
|
28
|
+
(0, _utils.isNonEmptyArray)(xdm._experience.decisioning.propositions) ?
|
|
29
|
+
// eslint-disable-next-line no-underscore-dangle
|
|
24
30
|
xdm._experience.decisioning.propositions : [];
|
|
25
31
|
};
|
|
26
|
-
|
|
27
32
|
var _default = function _default() {
|
|
28
33
|
var content = {};
|
|
29
34
|
var userXdm;
|
|
@@ -31,13 +36,11 @@ var _default = function _default() {
|
|
|
31
36
|
var _documentMayUnload = false;
|
|
32
37
|
var isFinalized = false;
|
|
33
38
|
var shouldSendEvent = true;
|
|
34
|
-
|
|
35
39
|
var throwIfEventFinalized = function throwIfEventFinalized(methodName) {
|
|
36
40
|
if (isFinalized) {
|
|
37
41
|
throw new Error(methodName + " cannot be called after event is finalized.");
|
|
38
42
|
}
|
|
39
43
|
};
|
|
40
|
-
|
|
41
44
|
var event = {
|
|
42
45
|
setUserXdm: function setUserXdm(value) {
|
|
43
46
|
throwIfEventFinalized("setUserXdm");
|
|
@@ -49,7 +52,6 @@ var _default = function _default() {
|
|
|
49
52
|
},
|
|
50
53
|
mergeXdm: function mergeXdm(xdm) {
|
|
51
54
|
throwIfEventFinalized("mergeXdm");
|
|
52
|
-
|
|
53
55
|
if (xdm) {
|
|
54
56
|
(0, _utils.deepAssign)(content, {
|
|
55
57
|
xdm: xdm
|
|
@@ -58,7 +60,6 @@ var _default = function _default() {
|
|
|
58
60
|
},
|
|
59
61
|
mergeMeta: function mergeMeta(meta) {
|
|
60
62
|
throwIfEventFinalized("mergeMeta");
|
|
61
|
-
|
|
62
63
|
if (meta) {
|
|
63
64
|
(0, _utils.deepAssign)(content, {
|
|
64
65
|
meta: meta
|
|
@@ -67,7 +68,6 @@ var _default = function _default() {
|
|
|
67
68
|
},
|
|
68
69
|
mergeQuery: function mergeQuery(query) {
|
|
69
70
|
throwIfEventFinalized("mergeQuery");
|
|
70
|
-
|
|
71
71
|
if (query) {
|
|
72
72
|
(0, _utils.deepAssign)(content, {
|
|
73
73
|
query: query
|
|
@@ -81,32 +81,28 @@ var _default = function _default() {
|
|
|
81
81
|
if (isFinalized) {
|
|
82
82
|
return;
|
|
83
83
|
}
|
|
84
|
-
|
|
85
84
|
var newPropositions = (0, _utils.deduplicateArray)([].concat(_toConsumableArray(getXdmPropositions(userXdm)), _toConsumableArray(getXdmPropositions(content.xdm))), function (a, b) {
|
|
86
85
|
return a === b || a.id && b.id && a.id === b.id && a.scope && b.scope && a.scope === b.scope;
|
|
87
86
|
});
|
|
88
|
-
|
|
89
87
|
if (userXdm) {
|
|
90
88
|
this.mergeXdm(userXdm);
|
|
91
89
|
}
|
|
92
|
-
|
|
93
90
|
if (newPropositions.length > 0) {
|
|
94
91
|
// eslint-disable-next-line no-underscore-dangle
|
|
95
92
|
content.xdm._experience.decisioning.propositions = newPropositions;
|
|
96
93
|
}
|
|
97
|
-
|
|
98
94
|
if (userData) {
|
|
99
95
|
content.data = userData;
|
|
100
|
-
}
|
|
101
|
-
|
|
96
|
+
}
|
|
102
97
|
|
|
98
|
+
// the event should already be considered finalized in case onBeforeEventSend throws an error
|
|
103
99
|
isFinalized = true;
|
|
104
|
-
|
|
105
100
|
if (onBeforeEventSend) {
|
|
106
101
|
// assume that the onBeforeEventSend callback will fail (in-case of an error)
|
|
107
|
-
shouldSendEvent = false;
|
|
108
|
-
// on the object passed to the callback
|
|
102
|
+
shouldSendEvent = false;
|
|
109
103
|
|
|
104
|
+
// this allows the user to replace the xdm and data properties
|
|
105
|
+
// on the object passed to the callback
|
|
110
106
|
var tempContent = {
|
|
111
107
|
xdm: content.xdm || {},
|
|
112
108
|
data: content.data || {}
|
|
@@ -115,11 +111,9 @@ var _default = function _default() {
|
|
|
115
111
|
shouldSendEvent = result !== false;
|
|
116
112
|
content.xdm = tempContent.xdm || {};
|
|
117
113
|
content.data = tempContent.data || {};
|
|
118
|
-
|
|
119
114
|
if ((0, _utils.isEmptyObject)(content.xdm)) {
|
|
120
115
|
delete content.xdm;
|
|
121
116
|
}
|
|
122
|
-
|
|
123
117
|
if ((0, _utils.isEmptyObject)(content.data)) {
|
|
124
118
|
delete content.data;
|
|
125
119
|
}
|
|
@@ -135,21 +129,18 @@ var _default = function _default() {
|
|
|
135
129
|
return shouldSendEvent;
|
|
136
130
|
},
|
|
137
131
|
getViewName: function getViewName() {
|
|
138
|
-
if (!userXdm || !userXdm.web || !userXdm.web.webPageDetails
|
|
132
|
+
if (!userXdm || !userXdm.web || !userXdm.web.webPageDetails) {
|
|
139
133
|
return undefined;
|
|
140
134
|
}
|
|
141
|
-
|
|
142
135
|
return userXdm.web.webPageDetails.viewName;
|
|
143
136
|
},
|
|
144
137
|
toJSON: function toJSON() {
|
|
145
138
|
if (!isFinalized) {
|
|
146
139
|
throw new Error("toJSON called before finalize");
|
|
147
140
|
}
|
|
148
|
-
|
|
149
141
|
return content;
|
|
150
142
|
}
|
|
151
143
|
};
|
|
152
144
|
return event;
|
|
153
145
|
};
|
|
154
|
-
|
|
155
146
|
exports.default = _default;
|
|
@@ -1,13 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
exports.default = void 0;
|
|
4
|
-
|
|
5
4
|
var _pageWideScope = require("../constants/pageWideScope");
|
|
6
|
-
|
|
7
5
|
var _utils = require("../utils");
|
|
8
|
-
|
|
9
6
|
var _request = require("../utils/request");
|
|
10
|
-
|
|
7
|
+
var _excluded = ["edgeConfigOverrides"];
|
|
11
8
|
/*
|
|
12
9
|
Copyright 2019 Adobe. All rights reserved.
|
|
13
10
|
This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
@@ -19,37 +16,34 @@ the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTA
|
|
|
19
16
|
OF ANY KIND, either express or implied. See the License for the specific language
|
|
20
17
|
governing permissions and limitations under the License.
|
|
21
18
|
*/
|
|
19
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
20
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
21
|
+
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
22
|
+
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
23
|
+
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
|
|
22
24
|
var EVENT_CANCELLATION_MESSAGE = "Event was canceled because the onBeforeEventSend callback returned false.";
|
|
23
|
-
|
|
24
25
|
var _default = function _default(_ref) {
|
|
25
26
|
var config = _ref.config,
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
27
|
+
logger = _ref.logger,
|
|
28
|
+
lifecycle = _ref.lifecycle,
|
|
29
|
+
consent = _ref.consent,
|
|
30
|
+
createEvent = _ref.createEvent,
|
|
31
|
+
createDataCollectionRequestPayload = _ref.createDataCollectionRequestPayload,
|
|
32
|
+
createDataCollectionRequest = _ref.createDataCollectionRequest,
|
|
33
|
+
sendEdgeNetworkRequest = _ref.sendEdgeNetworkRequest,
|
|
34
|
+
_applyResponse = _ref.applyResponse;
|
|
34
35
|
var onBeforeEventSend = config.onBeforeEventSend,
|
|
35
|
-
|
|
36
|
+
globalConfigOverrides = config.edgeConfigOverrides;
|
|
36
37
|
return {
|
|
37
38
|
createEvent: createEvent,
|
|
38
|
-
|
|
39
39
|
/**
|
|
40
|
-
* Sends an event. This includes running the event and payload through
|
|
41
|
-
*
|
|
42
|
-
*
|
|
43
|
-
* @param {Object} event This will be JSON stringified and used inside
|
|
44
|
-
*
|
|
45
|
-
* @param {Object} [options]
|
|
46
|
-
*
|
|
47
|
-
* @param {Array} [options.decisionScopes] Note: this option will soon
|
|
48
|
-
* be deprecated, please use *personalization.decisionScopes* instead
|
|
49
|
-
* @param {Object} [options.personalization]
|
|
50
|
-
* @param {Object} [options.serverState]
|
|
51
|
-
* This will be passed to components
|
|
52
|
-
* so they can take appropriate action.
|
|
40
|
+
* Sends an event. This includes running the event and payload through the
|
|
41
|
+
* appropriate lifecycle hooks, sending the request to the server, and
|
|
42
|
+
* handling the response.
|
|
43
|
+
* @param {Object} event This will be JSON stringified and used inside the
|
|
44
|
+
* request payload.
|
|
45
|
+
* @param {Object} [options] Options to pass on to the onBeforeEvent
|
|
46
|
+
* lifecycle method
|
|
53
47
|
* @param {Object} [options.edgeConfigOverrides] Settings that take
|
|
54
48
|
* precedence over the global datastream configuration, including which
|
|
55
49
|
* datastream to use.
|
|
@@ -57,11 +51,8 @@ var _default = function _default(_ref) {
|
|
|
57
51
|
*/
|
|
58
52
|
sendEvent: function sendEvent(event) {
|
|
59
53
|
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
60
|
-
var
|
|
61
|
-
|
|
62
|
-
decisionScopes = options.decisionScopes,
|
|
63
|
-
localConfigOverrides = options.edgeConfigOverrides,
|
|
64
|
-
personalization = options.personalization;
|
|
54
|
+
var localConfigOverrides = options.edgeConfigOverrides,
|
|
55
|
+
otherOptions = _objectWithoutProperties(options, _excluded);
|
|
65
56
|
var requestParams = (0, _request.createRequestParams)({
|
|
66
57
|
payload: createDataCollectionRequestPayload(),
|
|
67
58
|
localConfigOverrides: localConfigOverrides,
|
|
@@ -70,14 +61,11 @@ var _default = function _default(_ref) {
|
|
|
70
61
|
var request = createDataCollectionRequest(requestParams);
|
|
71
62
|
var onResponseCallbackAggregator = (0, _utils.createCallbackAggregator)();
|
|
72
63
|
var onRequestFailureCallbackAggregator = (0, _utils.createCallbackAggregator)();
|
|
73
|
-
return lifecycle.onBeforeEvent({
|
|
64
|
+
return lifecycle.onBeforeEvent(_objectSpread(_objectSpread({}, otherOptions), {}, {
|
|
74
65
|
event: event,
|
|
75
|
-
renderDecisions: renderDecisions,
|
|
76
|
-
decisionScopes: decisionScopes,
|
|
77
|
-
personalization: personalization,
|
|
78
66
|
onResponse: onResponseCallbackAggregator.add,
|
|
79
67
|
onRequestFailure: onRequestFailureCallbackAggregator.add
|
|
80
|
-
}).then(function () {
|
|
68
|
+
})).then(function () {
|
|
81
69
|
requestParams.payload.addEvent(event);
|
|
82
70
|
return consent.awaitConsent();
|
|
83
71
|
}).then(function () {
|
|
@@ -88,25 +76,24 @@ var _default = function _default(_ref) {
|
|
|
88
76
|
var throwError = function throwError() {
|
|
89
77
|
throw error;
|
|
90
78
|
};
|
|
91
|
-
|
|
92
79
|
onRequestFailureCallbackAggregator.add(lifecycle.onRequestFailure);
|
|
93
80
|
return onRequestFailureCallbackAggregator.call({
|
|
94
81
|
error: error
|
|
95
82
|
}).then(throwError, throwError);
|
|
96
|
-
}
|
|
97
|
-
|
|
83
|
+
}
|
|
98
84
|
|
|
85
|
+
// if the callback returns false, the event should not be sent
|
|
99
86
|
if (!event.shouldSend()) {
|
|
100
87
|
onRequestFailureCallbackAggregator.add(lifecycle.onRequestFailure);
|
|
101
88
|
logger.info(EVENT_CANCELLATION_MESSAGE);
|
|
102
89
|
var error = new Error(EVENT_CANCELLATION_MESSAGE);
|
|
103
90
|
return onRequestFailureCallbackAggregator.call({
|
|
104
91
|
error: error
|
|
105
|
-
}).then(function () {
|
|
92
|
+
}).then(function () {
|
|
93
|
+
// Ensure the promise gets resolved with undefined instead
|
|
106
94
|
// of an array of return values from the callbacks.
|
|
107
95
|
});
|
|
108
96
|
}
|
|
109
|
-
|
|
110
97
|
return sendEdgeNetworkRequest({
|
|
111
98
|
request: request,
|
|
112
99
|
runOnResponseCallbacks: onResponseCallbackAggregator.call,
|
|
@@ -116,15 +103,15 @@ var _default = function _default(_ref) {
|
|
|
116
103
|
},
|
|
117
104
|
applyResponse: function applyResponse(event) {
|
|
118
105
|
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
119
|
-
var _options$
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
106
|
+
var _options$renderDecisi = options.renderDecisions,
|
|
107
|
+
renderDecisions = _options$renderDecisi === void 0 ? false : _options$renderDecisi,
|
|
108
|
+
_options$responseHead = options.responseHeaders,
|
|
109
|
+
responseHeaders = _options$responseHead === void 0 ? {} : _options$responseHead,
|
|
110
|
+
_options$responseBody = options.responseBody,
|
|
111
|
+
responseBody = _options$responseBody === void 0 ? {
|
|
112
|
+
handle: []
|
|
113
|
+
} : _options$responseBody,
|
|
114
|
+
personalization = options.personalization;
|
|
128
115
|
var payload = createDataCollectionRequestPayload();
|
|
129
116
|
var request = createDataCollectionRequest({
|
|
130
117
|
payload: payload
|
|
@@ -149,5 +136,4 @@ var _default = function _default(_ref) {
|
|
|
149
136
|
}
|
|
150
137
|
};
|
|
151
138
|
};
|
|
152
|
-
|
|
153
139
|
exports.default = _default;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
exports.default = void 0;
|
|
4
|
-
|
|
5
4
|
/*
|
|
6
5
|
Copyright 2019 Adobe. All rights reserved.
|
|
7
6
|
This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
@@ -26,5 +25,4 @@ var _default = function _default(executeCommand) {
|
|
|
26
25
|
executeCommand(commandName, options).then(resolve, reject);
|
|
27
26
|
};
|
|
28
27
|
};
|
|
29
|
-
|
|
30
28
|
exports.default = _default;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
exports.default = void 0;
|
|
4
|
-
|
|
5
4
|
/*
|
|
6
5
|
Copyright 2019 Adobe. All rights reserved.
|
|
7
6
|
This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
@@ -13,27 +12,32 @@ the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTA
|
|
|
13
12
|
OF ANY KIND, either express or implied. See the License for the specific language
|
|
14
13
|
governing permissions and limitations under the License.
|
|
15
14
|
*/
|
|
15
|
+
|
|
16
16
|
// TO-DOCUMENT: Lifecycle hooks and their params.
|
|
17
|
-
var hookNames = [
|
|
18
|
-
|
|
19
|
-
"
|
|
20
|
-
|
|
17
|
+
var hookNames = [
|
|
18
|
+
// Called after all components have been registered.
|
|
19
|
+
"onComponentsRegistered",
|
|
20
|
+
// Called before an event is sent on a data collection request
|
|
21
|
+
"onBeforeEvent",
|
|
22
|
+
// Called before each request is made to the edge.
|
|
23
|
+
"onBeforeRequest",
|
|
24
|
+
// Called after each response is returned from the edge with a successful
|
|
21
25
|
// status code
|
|
22
|
-
"onResponse",
|
|
26
|
+
"onResponse",
|
|
27
|
+
// Called after a network request to the edge fails. Either the request
|
|
23
28
|
// didn't make it to the edge, didn't make it to Konductor, or Konductor
|
|
24
29
|
// failed to return a regularly-structured response. (In this case { error }
|
|
25
30
|
// is passed as the parameter)
|
|
26
31
|
// Also called when the respone returns a 400 or 500 error. (In this case
|
|
27
32
|
// { response } is passed as the parameter)
|
|
28
|
-
"onRequestFailure",
|
|
33
|
+
"onRequestFailure",
|
|
34
|
+
// A user clicked on an element.
|
|
29
35
|
"onClick"];
|
|
30
|
-
|
|
31
36
|
var createHook = function createHook(componentRegistry, hookName) {
|
|
32
37
|
return function () {
|
|
33
38
|
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
34
39
|
args[_key] = arguments[_key];
|
|
35
40
|
}
|
|
36
|
-
|
|
37
41
|
return Promise.all(componentRegistry.getLifecycleCallbacks(hookName).map(function (callback) {
|
|
38
42
|
return new Promise(function (resolve) {
|
|
39
43
|
resolve(callback.apply(void 0, args));
|
|
@@ -41,6 +45,7 @@ var createHook = function createHook(componentRegistry, hookName) {
|
|
|
41
45
|
}));
|
|
42
46
|
};
|
|
43
47
|
};
|
|
48
|
+
|
|
44
49
|
/**
|
|
45
50
|
* This ensures that if a component's lifecycle method X
|
|
46
51
|
* attempts to execute lifecycle method Y, that all X methods on all components
|
|
@@ -48,25 +53,20 @@ var createHook = function createHook(componentRegistry, hookName) {
|
|
|
48
53
|
* this by kicking the call to the Y method to the next JavaScript tick.
|
|
49
54
|
* @returns {function}
|
|
50
55
|
*/
|
|
51
|
-
|
|
52
|
-
|
|
53
56
|
var guardHook = function guardHook(fn) {
|
|
54
57
|
return function () {
|
|
55
58
|
for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {
|
|
56
59
|
args[_key2] = arguments[_key2];
|
|
57
60
|
}
|
|
58
|
-
|
|
59
61
|
return Promise.resolve().then(function () {
|
|
60
62
|
return fn.apply(void 0, args);
|
|
61
63
|
});
|
|
62
64
|
};
|
|
63
65
|
};
|
|
64
|
-
|
|
65
66
|
var _default = function _default(componentRegistry) {
|
|
66
67
|
return hookNames.reduce(function (memo, hookName) {
|
|
67
68
|
memo[hookName] = guardHook(createHook(componentRegistry, hookName));
|
|
68
69
|
return memo;
|
|
69
70
|
}, {});
|
|
70
71
|
};
|
|
71
|
-
|
|
72
72
|
exports.default = _default;
|
|
@@ -1,11 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
exports.default = void 0;
|
|
4
|
-
|
|
5
4
|
var _utils = require("../utils");
|
|
6
|
-
|
|
7
5
|
var _debugQueryParam = require("../constants/debugQueryParam");
|
|
8
|
-
|
|
9
6
|
/*
|
|
10
7
|
Copyright 2019 Adobe. All rights reserved.
|
|
11
8
|
This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
@@ -19,43 +16,35 @@ governing permissions and limitations under the License.
|
|
|
19
16
|
*/
|
|
20
17
|
var _default = function _default(_ref) {
|
|
21
18
|
var console = _ref.console,
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
19
|
+
locationSearch = _ref.locationSearch,
|
|
20
|
+
createLogger = _ref.createLogger,
|
|
21
|
+
instanceName = _ref.instanceName,
|
|
22
|
+
createNamespacedStorage = _ref.createNamespacedStorage,
|
|
23
|
+
getMonitors = _ref.getMonitors;
|
|
28
24
|
var parsedQueryString = _utils.queryString.parse(locationSearch);
|
|
29
|
-
|
|
30
25
|
var storage = createNamespacedStorage("instance." + instanceName + ".");
|
|
31
26
|
var debugSessionValue = storage.session.getItem("debug");
|
|
32
27
|
var debugEnabled = debugSessionValue === "true";
|
|
33
28
|
var debugEnabledWritableFromConfig = debugSessionValue === null;
|
|
34
|
-
|
|
35
29
|
var getDebugEnabled = function getDebugEnabled() {
|
|
36
30
|
return debugEnabled;
|
|
37
31
|
};
|
|
38
|
-
|
|
39
32
|
var setDebugEnabled = function setDebugEnabled(value, _ref2) {
|
|
40
33
|
var fromConfig = _ref2.fromConfig;
|
|
41
|
-
|
|
42
34
|
if (!fromConfig || debugEnabledWritableFromConfig) {
|
|
43
35
|
debugEnabled = value;
|
|
44
36
|
}
|
|
45
|
-
|
|
46
37
|
if (!fromConfig) {
|
|
47
38
|
// Web storage only allows strings, so we explicitly convert to string.
|
|
48
39
|
storage.session.setItem("debug", value.toString());
|
|
49
40
|
debugEnabledWritableFromConfig = false;
|
|
50
41
|
}
|
|
51
42
|
};
|
|
52
|
-
|
|
53
43
|
if (parsedQueryString[_debugQueryParam.default] !== undefined) {
|
|
54
44
|
setDebugEnabled((0, _utils.stringToBoolean)(parsedQueryString[_debugQueryParam.default]), {
|
|
55
45
|
fromConfig: false
|
|
56
46
|
});
|
|
57
47
|
}
|
|
58
|
-
|
|
59
48
|
return {
|
|
60
49
|
setDebugEnabled: setDebugEnabled,
|
|
61
50
|
logger: createLogger({
|
|
@@ -79,5 +68,4 @@ var _default = function _default(_ref) {
|
|
|
79
68
|
}
|
|
80
69
|
};
|
|
81
70
|
};
|
|
82
|
-
|
|
83
71
|
exports.default = _default;
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
exports.default = void 0;
|
|
4
|
-
|
|
5
4
|
var _utils = require("../utils");
|
|
6
|
-
|
|
7
5
|
/*
|
|
8
6
|
Copyright 2019 Adobe. All rights reserved.
|
|
9
7
|
This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
@@ -17,18 +15,15 @@ governing permissions and limitations under the License.
|
|
|
17
15
|
*/
|
|
18
16
|
var _default = function _default(_ref) {
|
|
19
17
|
var getDebugEnabled = _ref.getDebugEnabled,
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
18
|
+
console = _ref.console,
|
|
19
|
+
getMonitors = _ref.getMonitors,
|
|
20
|
+
context = _ref.context;
|
|
23
21
|
var prefix = "[" + context.instanceName + "]";
|
|
24
|
-
|
|
25
22
|
if (context.componentName) {
|
|
26
23
|
prefix += " [" + context.componentName + "]";
|
|
27
24
|
}
|
|
28
|
-
|
|
29
25
|
var notifyMonitors = function notifyMonitors(method, data) {
|
|
30
26
|
var monitors = getMonitors();
|
|
31
|
-
|
|
32
27
|
if (monitors.length > 0) {
|
|
33
28
|
var dataWithContext = (0, _utils.assign)({}, context, data);
|
|
34
29
|
monitors.forEach(function (monitor) {
|
|
@@ -38,27 +33,22 @@ var _default = function _default(_ref) {
|
|
|
38
33
|
});
|
|
39
34
|
}
|
|
40
35
|
};
|
|
41
|
-
|
|
42
36
|
var log = function log(level) {
|
|
43
37
|
for (var _len = arguments.length, rest = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
|
|
44
38
|
rest[_key - 1] = arguments[_key];
|
|
45
39
|
}
|
|
46
|
-
|
|
47
40
|
notifyMonitors("onBeforeLog", {
|
|
48
41
|
level: level,
|
|
49
42
|
arguments: rest
|
|
50
43
|
});
|
|
51
|
-
|
|
52
44
|
if (getDebugEnabled()) {
|
|
53
45
|
console[level].apply(console, [prefix].concat(rest));
|
|
54
46
|
}
|
|
55
47
|
};
|
|
56
|
-
|
|
57
48
|
return {
|
|
58
49
|
get enabled() {
|
|
59
50
|
return getMonitors().length > 0 || getDebugEnabled();
|
|
60
51
|
},
|
|
61
|
-
|
|
62
52
|
logOnInstanceCreated: function logOnInstanceCreated(data) {
|
|
63
53
|
notifyMonitors("onInstanceCreated", data);
|
|
64
54
|
log("info", "Instance initialized.");
|
|
@@ -92,7 +82,6 @@ var _default = function _default(_ref) {
|
|
|
92
82
|
notifyMonitors("onNetworkError", data);
|
|
93
83
|
log("error", "Request " + data.requestId + ": Network request failed.", data.error);
|
|
94
84
|
},
|
|
95
|
-
|
|
96
85
|
/**
|
|
97
86
|
* Outputs informational message to the web console. In some
|
|
98
87
|
* browsers a small "i" icon is displayed next to these items
|
|
@@ -100,13 +89,11 @@ var _default = function _default(_ref) {
|
|
|
100
89
|
* @param {...*} arg Any argument to be logged.
|
|
101
90
|
*/
|
|
102
91
|
info: log.bind(null, "info"),
|
|
103
|
-
|
|
104
92
|
/**
|
|
105
93
|
* Outputs a warning message to the web console.
|
|
106
94
|
* @param {...*} arg Any argument to be logged.
|
|
107
95
|
*/
|
|
108
96
|
warn: log.bind(null, "warn"),
|
|
109
|
-
|
|
110
97
|
/**
|
|
111
98
|
* Outputs an error message to the web console.
|
|
112
99
|
* @param {...*} arg Any argument to be logged.
|
|
@@ -114,5 +101,4 @@ var _default = function _default(_ref) {
|
|
|
114
101
|
error: log.bind(null, "error")
|
|
115
102
|
};
|
|
116
103
|
};
|
|
117
|
-
|
|
118
104
|
exports.default = _default;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
exports.default = void 0;
|
|
4
|
-
|
|
5
4
|
/*
|
|
6
5
|
Copyright 2023 Adobe. All rights reserved.
|
|
7
6
|
This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
@@ -21,11 +20,9 @@ var _default = function _default(onRequestFailureCallbackAggregator) {
|
|
|
21
20
|
var throwError = function throwError() {
|
|
22
21
|
throw error;
|
|
23
22
|
};
|
|
24
|
-
|
|
25
23
|
return onRequestFailureCallbackAggregator.call({
|
|
26
24
|
error: error
|
|
27
25
|
}).then(throwError, throwError);
|
|
28
26
|
};
|
|
29
27
|
};
|
|
30
|
-
|
|
31
28
|
exports.default = _default;
|
|
@@ -1,13 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
exports.default = void 0;
|
|
4
|
-
|
|
5
4
|
var _utils = require("../../utils");
|
|
6
|
-
|
|
7
5
|
var _mergeLifecycleResponses = require("./mergeLifecycleResponses");
|
|
8
|
-
|
|
9
6
|
var _handleRequestFailure = require("./handleRequestFailure");
|
|
10
|
-
|
|
11
7
|
/*
|
|
12
8
|
Copyright 2023 Adobe. All rights reserved.
|
|
13
9
|
This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
@@ -19,32 +15,30 @@ the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTA
|
|
|
19
15
|
OF ANY KIND, either express or implied. See the License for the specific language
|
|
20
16
|
governing permissions and limitations under the License.
|
|
21
17
|
*/
|
|
22
|
-
var HTTP_STATUS_OK = 200;
|
|
23
18
|
|
|
19
|
+
var HTTP_STATUS_OK = 200;
|
|
24
20
|
var _default = function _default(_ref) {
|
|
25
21
|
var cookieTransfer = _ref.cookieTransfer,
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
22
|
+
lifecycle = _ref.lifecycle,
|
|
23
|
+
createResponse = _ref.createResponse,
|
|
24
|
+
processWarningsAndErrors = _ref.processWarningsAndErrors;
|
|
29
25
|
return function (_ref2) {
|
|
30
26
|
var request = _ref2.request,
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
27
|
+
responseHeaders = _ref2.responseHeaders,
|
|
28
|
+
responseBody = _ref2.responseBody,
|
|
29
|
+
_ref2$runOnResponseCa = _ref2.runOnResponseCallbacks,
|
|
30
|
+
runOnResponseCallbacks = _ref2$runOnResponseCa === void 0 ? _utils.noop : _ref2$runOnResponseCa,
|
|
31
|
+
_ref2$runOnRequestFai = _ref2.runOnRequestFailureCallbacks,
|
|
32
|
+
runOnRequestFailureCallbacks = _ref2$runOnRequestFai === void 0 ? _utils.noop : _ref2$runOnRequestFai;
|
|
37
33
|
var onResponseCallbackAggregator = (0, _utils.createCallbackAggregator)();
|
|
38
34
|
onResponseCallbackAggregator.add(lifecycle.onResponse);
|
|
39
35
|
onResponseCallbackAggregator.add(runOnResponseCallbacks);
|
|
40
36
|
var onRequestFailureCallbackAggregator = (0, _utils.createCallbackAggregator)();
|
|
41
37
|
onRequestFailureCallbackAggregator.add(lifecycle.onRequestFailure);
|
|
42
38
|
onRequestFailureCallbackAggregator.add(runOnRequestFailureCallbacks);
|
|
43
|
-
|
|
44
39
|
var getHeader = function getHeader(key) {
|
|
45
40
|
return responseHeaders[key];
|
|
46
41
|
};
|
|
47
|
-
|
|
48
42
|
return lifecycle.onBeforeRequest({
|
|
49
43
|
request: request,
|
|
50
44
|
onResponse: onResponseCallbackAggregator.add,
|
|
@@ -60,8 +54,9 @@ var _default = function _default(_ref) {
|
|
|
60
54
|
var response = createResponse({
|
|
61
55
|
content: responseBody,
|
|
62
56
|
getHeader: getHeader
|
|
63
|
-
});
|
|
57
|
+
});
|
|
64
58
|
|
|
59
|
+
// This will clobber any cookies set via HTTP from the server. So care should be given to remove any state:store handles if that is not desirable
|
|
65
60
|
cookieTransfer.responseToCookies(response);
|
|
66
61
|
return onResponseCallbackAggregator.call({
|
|
67
62
|
response: response
|
|
@@ -69,5 +64,4 @@ var _default = function _default(_ref) {
|
|
|
69
64
|
});
|
|
70
65
|
};
|
|
71
66
|
};
|
|
72
|
-
|
|
73
67
|
exports.default = _default;
|