@adobe/alloy 2.30.1-beta.2 → 2.30.1-beta.20
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/components/Advertising/handlers/onBeforeSendEventHandler.js +8 -2
- package/libEs5/components/Advertising/handlers/viewThroughHandler.js +8 -2
- package/libEs5/components/Advertising/identities/collectSurferId.js +8 -1
- package/libEs5/components/BrandConcierge/constants.js +16 -0
- package/libEs5/components/BrandConcierge/createBuildEndpointUrl.js +33 -0
- package/libEs5/components/BrandConcierge/createConversationServiceRequest.js +35 -0
- package/libEs5/components/BrandConcierge/createSendConversationEvent.js +146 -0
- package/libEs5/components/BrandConcierge/createSendConversationServiceRequest.js +85 -0
- package/libEs5/components/BrandConcierge/createStreamParser.js +96 -0
- package/libEs5/components/BrandConcierge/createTimeoutWrapper.js +52 -0
- package/libEs5/components/BrandConcierge/index.js +104 -0
- package/libEs5/components/BrandConcierge/utils.js +33 -0
- package/libEs5/components/BrandConcierge/validateMessage.js +41 -0
- package/libEs5/components/Consent/types.js +12 -0
- package/libEs5/components/Context/createComponent.js +1 -2
- package/libEs5/components/Context/implementationDetails.js +7 -9
- package/libEs5/components/Context/index.js +4 -1
- package/libEs5/components/Context/injectDevice.js +2 -2
- package/libEs5/components/Context/injectEnvironment.js +2 -2
- package/libEs5/components/Context/injectHighEntropyUserAgentHints.js +2 -2
- package/libEs5/components/Context/injectOneTimeAnalyticsReferrer.js +49 -0
- package/libEs5/components/Context/injectPlaceContext.js +2 -2
- package/libEs5/components/Context/injectTimestamp.js +2 -3
- package/libEs5/components/Context/injectWeb.js +9 -11
- package/libEs5/components/EventMerge/createEventMergeId.js +1 -1
- package/libEs5/components/Personalization/createComponent.js +3 -1
- package/libEs5/components/Personalization/createFetchDataHandler.js +4 -3
- package/libEs5/components/Personalization/createNotificationHandler.js +5 -3
- package/libEs5/components/Personalization/createOnDecisionHandler.js +4 -3
- package/libEs5/components/Personalization/createPersonalizationDetails.js +1 -1
- package/libEs5/components/Personalization/dom-actions/initDomActionsModules.js +1 -1
- package/libEs5/components/Personalization/handlers/createProcessInAppMessage.js +2 -1
- package/libEs5/components/Personalization/handlers/createProcessRedirect.js +2 -1
- package/libEs5/components/Personalization/handlers/injectCreateProposition.js +4 -1
- package/libEs5/components/Personalization/in-app-message-actions/actions/displayIframeContent.js +4 -2
- package/libEs5/components/Personalization/index.js +2 -2
- package/libEs5/components/PushNotifications/request/makeSendServiceWorkerTrackingData.js +1 -1
- package/libEs5/components/PushNotifications/types.js +12 -0
- package/libEs5/components/RulesEngine/createApplyResponse.js +3 -1
- package/libEs5/components/RulesEngine/types.js +12 -0
- package/libEs5/constants/libraryVersion.js +1 -1
- package/libEs5/constants/surface.js +19 -0
- package/libEs5/core/componentCreators.js +8 -1
- package/libEs5/core/consent/types.js +12 -0
- package/libEs5/core/createEvent.js +3 -0
- package/libEs5/core/edgeNetwork/types.js +12 -0
- package/libEs5/core/identity/types.js +12 -0
- package/libEs5/core/index.js +5 -1
- package/libEs5/core/types.js +12 -0
- package/libEs5/utils/createCollect.js +4 -2
- package/libEs5/utils/deepAssign.js +5 -0
- package/libEs5/utils/dom/createGetPageLocation.js +20 -0
- package/libEs5/utils/index.js +8 -1
- package/libEs5/utils/request/createRequest.js +5 -1
- package/libEs5/utils/request/types.js +12 -0
- package/libEs5/utils/surfaceUtils.js +82 -0
- package/libEs5/utils/types.js +12 -0
- package/libEs5/utils/uuid.js +1 -0
- package/libEs6/components/Advertising/handlers/onBeforeSendEventHandler.js +8 -2
- package/libEs6/components/Advertising/handlers/viewThroughHandler.js +8 -2
- package/libEs6/components/Advertising/identities/collectSurferId.js +8 -1
- package/libEs6/components/BrandConcierge/constants.js +13 -0
- package/libEs6/components/BrandConcierge/createBuildEndpointUrl.js +30 -0
- package/libEs6/components/BrandConcierge/createConversationServiceRequest.js +31 -0
- package/libEs6/components/BrandConcierge/createSendConversationEvent.js +142 -0
- package/libEs6/components/BrandConcierge/createSendConversationServiceRequest.js +81 -0
- package/libEs6/components/BrandConcierge/createStreamParser.js +92 -0
- package/libEs6/components/BrandConcierge/createTimeoutWrapper.js +49 -0
- package/libEs6/components/BrandConcierge/index.js +100 -0
- package/libEs6/components/BrandConcierge/utils.js +27 -0
- package/libEs6/components/BrandConcierge/validateMessage.js +37 -0
- package/libEs6/components/Consent/types.js +12 -0
- package/libEs6/components/Context/createComponent.js +1 -2
- package/libEs6/components/Context/implementationDetails.js +7 -9
- package/libEs6/components/Context/index.js +4 -1
- package/libEs6/components/Context/injectDevice.js +3 -3
- package/libEs6/components/Context/injectEnvironment.js +3 -3
- package/libEs6/components/Context/injectHighEntropyUserAgentHints.js +3 -3
- package/libEs6/components/Context/injectOneTimeAnalyticsReferrer.js +46 -0
- package/libEs6/components/Context/injectPlaceContext.js +3 -3
- package/libEs6/components/Context/injectTimestamp.js +2 -3
- package/libEs6/components/Context/injectWeb.js +9 -11
- package/libEs6/components/EventMerge/createEventMergeId.js +1 -1
- package/libEs6/components/Personalization/createComponent.js +3 -1
- package/libEs6/components/Personalization/createFetchDataHandler.js +4 -3
- package/libEs6/components/Personalization/createNotificationHandler.js +5 -3
- package/libEs6/components/Personalization/createOnDecisionHandler.js +4 -3
- package/libEs6/components/Personalization/createPersonalizationDetails.js +1 -1
- package/libEs6/components/Personalization/dom-actions/initDomActionsModules.js +1 -1
- package/libEs6/components/Personalization/handlers/createProcessInAppMessage.js +2 -1
- package/libEs6/components/Personalization/handlers/createProcessRedirect.js +2 -1
- package/libEs6/components/Personalization/handlers/injectCreateProposition.js +4 -1
- package/libEs6/components/Personalization/in-app-message-actions/actions/displayIframeContent.js +4 -2
- package/libEs6/components/Personalization/index.js +2 -2
- package/libEs6/components/PushNotifications/request/makeSendServiceWorkerTrackingData.js +1 -1
- package/libEs6/components/PushNotifications/types.js +12 -0
- package/libEs6/components/RulesEngine/createApplyResponse.js +3 -1
- package/libEs6/components/RulesEngine/types.js +12 -0
- package/libEs6/constants/libraryVersion.js +1 -1
- package/libEs6/constants/surface.js +16 -0
- package/libEs6/core/componentCreators.js +2 -1
- package/libEs6/core/consent/types.js +12 -0
- package/libEs6/core/createEvent.js +3 -0
- package/libEs6/core/edgeNetwork/types.js +12 -0
- package/libEs6/core/identity/types.js +12 -0
- package/libEs6/core/index.js +5 -1
- package/libEs6/core/types.js +12 -0
- package/libEs6/utils/createCollect.js +4 -2
- package/libEs6/utils/deepAssign.js +6 -0
- package/libEs6/utils/dom/createGetPageLocation.js +17 -0
- package/libEs6/utils/index.js +2 -1
- package/libEs6/utils/request/createRequest.js +5 -1
- package/libEs6/utils/request/types.js +12 -0
- package/libEs6/utils/surfaceUtils.js +76 -0
- package/libEs6/utils/types.js +12 -0
- package/libEs6/utils/uuid.js +1 -0
- package/package.json +16 -19
- package/scripts/helpers/path.js +12 -0
- package/scripts/helpers/versionBabelPlugin.js +12 -0
- package/types/components/Advertising/handlers/onBeforeSendEventHandler.d.ts.map +1 -1
- package/types/components/Advertising/handlers/viewThroughHandler.d.ts.map +1 -1
- package/types/components/Advertising/identities/collectSurferId.d.ts.map +1 -1
- package/types/components/BrandConcierge/constants.d.ts +3 -0
- package/types/components/BrandConcierge/constants.d.ts.map +1 -0
- package/types/components/BrandConcierge/createBuildEndpointUrl.d.ts +9 -0
- package/types/components/BrandConcierge/createBuildEndpointUrl.d.ts.map +1 -0
- package/types/components/BrandConcierge/createConversationServiceRequest.d.ts +7 -0
- package/types/components/BrandConcierge/createConversationServiceRequest.d.ts.map +1 -0
- package/types/components/BrandConcierge/createSendConversationEvent.d.ts +15 -0
- package/types/components/BrandConcierge/createSendConversationEvent.d.ts.map +1 -0
- package/types/components/BrandConcierge/createSendConversationServiceRequest.d.ts +11 -0
- package/types/components/BrandConcierge/createSendConversationServiceRequest.d.ts.map +1 -0
- package/types/components/BrandConcierge/createStreamParser.d.ts +3 -0
- package/types/components/BrandConcierge/createStreamParser.d.ts.map +1 -0
- package/types/components/BrandConcierge/createTimeoutWrapper.d.ts +3 -0
- package/types/components/BrandConcierge/createTimeoutWrapper.d.ts.map +1 -0
- package/types/components/BrandConcierge/index.d.ts +31 -0
- package/types/components/BrandConcierge/index.d.ts.map +1 -0
- package/types/components/BrandConcierge/utils.d.ts +6 -0
- package/types/components/BrandConcierge/utils.d.ts.map +1 -0
- package/types/components/BrandConcierge/validateMessage.d.ts +5 -0
- package/types/components/BrandConcierge/validateMessage.d.ts.map +1 -0
- package/types/components/Consent/types.d.ts.map +1 -1
- package/types/components/Context/createComponent.d.ts +1 -1
- package/types/components/Context/createComponent.d.ts.map +1 -1
- package/types/components/Context/implementationDetails.d.ts +1 -1
- package/types/components/Context/implementationDetails.d.ts.map +1 -1
- package/types/components/Context/index.d.ts +1 -1
- package/types/components/Context/index.d.ts.map +1 -1
- package/types/components/Context/injectDevice.d.ts +1 -1
- package/types/components/Context/injectDevice.d.ts.map +1 -1
- package/types/components/Context/injectEnvironment.d.ts +1 -1
- package/types/components/Context/injectEnvironment.d.ts.map +1 -1
- package/types/components/Context/injectHighEntropyUserAgentHints.d.ts +1 -1
- package/types/components/Context/injectHighEntropyUserAgentHints.d.ts.map +1 -1
- package/types/components/Context/injectOneTimeAnalyticsReferrer.d.ts +3 -0
- package/types/components/Context/injectOneTimeAnalyticsReferrer.d.ts.map +1 -0
- package/types/components/Context/injectPlaceContext.d.ts +1 -1
- package/types/components/Context/injectPlaceContext.d.ts.map +1 -1
- package/types/components/Context/injectTimestamp.d.ts +1 -1
- package/types/components/Context/injectTimestamp.d.ts.map +1 -1
- package/types/components/Context/injectWeb.d.ts +1 -1
- package/types/components/Context/injectWeb.d.ts.map +1 -1
- package/types/components/Personalization/createComponent.d.ts.map +1 -1
- package/types/components/Personalization/createFetchDataHandler.d.ts +2 -1
- package/types/components/Personalization/createFetchDataHandler.d.ts.map +1 -1
- package/types/components/Personalization/createNotificationHandler.d.ts +1 -1
- package/types/components/Personalization/createNotificationHandler.d.ts.map +1 -1
- package/types/components/Personalization/createOnDecisionHandler.d.ts +2 -1
- package/types/components/Personalization/createOnDecisionHandler.d.ts.map +1 -1
- package/types/components/Personalization/createPersonalizationDetails.d.ts.map +1 -1
- package/types/components/Personalization/handlers/createProcessInAppMessage.d.ts.map +1 -1
- package/types/components/Personalization/handlers/createProcessRedirect.d.ts.map +1 -1
- package/types/components/Personalization/handlers/injectCreateProposition.d.ts +2 -1
- package/types/components/Personalization/handlers/injectCreateProposition.d.ts.map +1 -1
- package/types/components/Personalization/in-app-message-actions/actions/displayIframeContent.d.ts.map +1 -1
- package/types/components/Personalization/index.d.ts.map +1 -1
- package/types/components/PushNotifications/types.d.ts.map +1 -1
- package/types/components/RulesEngine/createApplyResponse.d.ts.map +1 -1
- package/types/components/RulesEngine/index.d.ts.map +1 -1
- package/types/components/RulesEngine/types.d.ts.map +1 -1
- package/types/constants/surface.d.ts +5 -0
- package/types/constants/surface.d.ts.map +1 -0
- package/types/core/componentCreators.d.ts +1 -0
- package/types/core/consent/types.d.ts.map +1 -1
- package/types/core/createEvent.d.ts +1 -0
- package/types/core/createEvent.d.ts.map +1 -1
- package/types/core/edgeNetwork/types.d.ts.map +1 -1
- package/types/core/identity/types.d.ts.map +1 -1
- package/types/core/index.d.ts.map +1 -1
- package/types/core/types.d.ts.map +1 -1
- package/types/utils/createCollect.d.ts +2 -1
- package/types/utils/createCollect.d.ts.map +1 -1
- package/types/utils/deepAssign.d.ts.map +1 -1
- package/types/utils/dom/createGetPageLocation.d.ts +5 -0
- package/types/utils/dom/createGetPageLocation.d.ts.map +1 -0
- package/types/utils/index.d.ts +1 -0
- package/types/utils/request/createRequest.d.ts.map +1 -1
- package/types/utils/request/types.d.ts.map +1 -1
- package/types/utils/surfaceUtils.d.ts +4 -0
- package/types/utils/surfaceUtils.d.ts.map +1 -0
- package/types/utils/types.d.ts.map +1 -1
- package/types/utils/uuid.d.ts.map +1 -1
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
exports.default = void 0;
|
|
4
|
+
var _index = require("../../utils/validation/index.js");
|
|
5
|
+
/*
|
|
6
|
+
Copyright 2025 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
|
+
var _default = ({
|
|
17
|
+
options
|
|
18
|
+
}) => {
|
|
19
|
+
const brandConciergeEventValidator = (0, _index.anyOf)([(0, _index.objectOf)({
|
|
20
|
+
message: (0, _index.string)().required()
|
|
21
|
+
}), (0, _index.objectOf)({
|
|
22
|
+
xdm: (0, _index.objectOf)({
|
|
23
|
+
interactionId: (0, _index.string)(),
|
|
24
|
+
conversationId: (0, _index.string)(),
|
|
25
|
+
conversation: (0, _index.objectOf)({
|
|
26
|
+
feedback: (0, _index.objectOf)({
|
|
27
|
+
classification: (0, _index.string)(),
|
|
28
|
+
comment: (0, _index.string)(),
|
|
29
|
+
reasons: (0, _index.arrayOf)((0, _index.string)())
|
|
30
|
+
})
|
|
31
|
+
})
|
|
32
|
+
})
|
|
33
|
+
}).required(), (0, _index.objectOf)({
|
|
34
|
+
data: (0, _index.objectOf)({
|
|
35
|
+
type: (0, _index.string)().required(),
|
|
36
|
+
payload: (0, _index.objectOf)({})
|
|
37
|
+
}).required()
|
|
38
|
+
})]);
|
|
39
|
+
return brandConciergeEventValidator(options);
|
|
40
|
+
};
|
|
41
|
+
exports.default = _default;
|
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
exports.Types = void 0;
|
|
4
|
+
/*
|
|
5
|
+
Copyright 2025 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
|
+
|
|
4
16
|
/**
|
|
5
17
|
* Request payload object with methods for merging different types of data.
|
|
6
18
|
*
|
|
@@ -27,8 +27,7 @@ var _default = (config, logger, optionalContexts, requiredContexts) => {
|
|
|
27
27
|
onBeforeEvent({
|
|
28
28
|
event
|
|
29
29
|
}) {
|
|
30
|
-
|
|
31
|
-
return Promise.all(contexts.map(context => Promise.resolve(context(xdm, logger)))).then(() => event.mergeXdm(xdm));
|
|
30
|
+
return Promise.all(contexts.map(context => Promise.resolve(context(event, logger))));
|
|
32
31
|
}
|
|
33
32
|
}
|
|
34
33
|
};
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
exports.default = void 0;
|
|
4
|
-
var _index = require("../../utils/index.js");
|
|
5
4
|
var _libraryName = require("../../constants/libraryName.js");
|
|
6
5
|
var _libraryVersion = require("../../constants/libraryVersion.js");
|
|
7
6
|
/*
|
|
@@ -15,14 +14,13 @@ the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTA
|
|
|
15
14
|
OF ANY KIND, either express or implied. See the License for the specific language
|
|
16
15
|
governing permissions and limitations under the License.
|
|
17
16
|
*/
|
|
18
|
-
var _default =
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
implementationDetails
|
|
17
|
+
var _default = event => {
|
|
18
|
+
event.mergeXdm({
|
|
19
|
+
implementationDetails: {
|
|
20
|
+
name: _libraryName.default,
|
|
21
|
+
version: _libraryVersion.default,
|
|
22
|
+
environment: "browser"
|
|
23
|
+
}
|
|
26
24
|
});
|
|
27
25
|
};
|
|
28
26
|
exports.default = _default;
|
|
@@ -9,6 +9,7 @@ var _injectTimestamp = require("./injectTimestamp.js");
|
|
|
9
9
|
var _implementationDetails = require("./implementationDetails.js");
|
|
10
10
|
var _createComponent = require("./createComponent.js");
|
|
11
11
|
var _injectHighEntropyUserAgentHints = require("./injectHighEntropyUserAgentHints.js");
|
|
12
|
+
var _injectOneTimeAnalyticsReferrer = require("./injectOneTimeAnalyticsReferrer.js");
|
|
12
13
|
var _index = require("../../utils/validation/index.js");
|
|
13
14
|
/*
|
|
14
15
|
Copyright 2019 Adobe. All rights reserved.
|
|
@@ -28,6 +29,7 @@ const environment = (0, _injectEnvironment.default)(window);
|
|
|
28
29
|
const placeContext = (0, _injectPlaceContext.default)(() => new Date());
|
|
29
30
|
const timestamp = (0, _injectTimestamp.default)(() => new Date());
|
|
30
31
|
const highEntropyUserAgentHints = (0, _injectHighEntropyUserAgentHints.default)(navigator);
|
|
32
|
+
const oneTimeAnalyticsReferrer = (0, _injectOneTimeAnalyticsReferrer.default)(window);
|
|
31
33
|
const defaultEnabledContexts = {
|
|
32
34
|
web,
|
|
33
35
|
device,
|
|
@@ -35,7 +37,8 @@ const defaultEnabledContexts = {
|
|
|
35
37
|
placeContext
|
|
36
38
|
};
|
|
37
39
|
const defaultDisabledContexts = {
|
|
38
|
-
highEntropyUserAgentHints
|
|
40
|
+
highEntropyUserAgentHints,
|
|
41
|
+
oneTimeAnalyticsReferrer
|
|
39
42
|
};
|
|
40
43
|
const optionalContexts = {
|
|
41
44
|
...defaultEnabledContexts,
|
|
@@ -44,7 +44,7 @@ const getScreenOrientationViaMediaQuery = window => {
|
|
|
44
44
|
return null;
|
|
45
45
|
};
|
|
46
46
|
var _default = window => {
|
|
47
|
-
return
|
|
47
|
+
return event => {
|
|
48
48
|
const {
|
|
49
49
|
screen: {
|
|
50
50
|
width,
|
|
@@ -65,7 +65,7 @@ var _default = window => {
|
|
|
65
65
|
device.screenOrientation = orientation;
|
|
66
66
|
}
|
|
67
67
|
if (Object.keys(device).length > 0) {
|
|
68
|
-
|
|
68
|
+
event.mergeXdm({
|
|
69
69
|
device
|
|
70
70
|
});
|
|
71
71
|
}
|
|
@@ -14,7 +14,7 @@ OF ANY KIND, either express or implied. See the License for the specific languag
|
|
|
14
14
|
governing permissions and limitations under the License.
|
|
15
15
|
*/
|
|
16
16
|
var _default = window => {
|
|
17
|
-
return
|
|
17
|
+
return event => {
|
|
18
18
|
const {
|
|
19
19
|
document: {
|
|
20
20
|
documentElement: {
|
|
@@ -37,7 +37,7 @@ var _default = window => {
|
|
|
37
37
|
environment.browserDetails = environment.browserDetails || {};
|
|
38
38
|
environment.browserDetails.viewportHeight = viewportHeight;
|
|
39
39
|
}
|
|
40
|
-
|
|
40
|
+
event.mergeXdm({
|
|
41
41
|
environment
|
|
42
42
|
});
|
|
43
43
|
};
|
|
@@ -22,7 +22,7 @@ var _default = navigator => {
|
|
|
22
22
|
if (!browserSupportsUserAgentClientHints(navigator)) {
|
|
23
23
|
return _index.noop;
|
|
24
24
|
}
|
|
25
|
-
return (
|
|
25
|
+
return (event, logger) => {
|
|
26
26
|
try {
|
|
27
27
|
// eslint-disable-next-line compat/compat -- userAgentData support is checked before calling
|
|
28
28
|
return navigator.userAgentData.getHighEntropyValues(_highEntropyUserAgentClientHints.default.map(hint => hint[0])).then(hints => {
|
|
@@ -33,7 +33,7 @@ var _default = navigator => {
|
|
|
33
33
|
userAgentClientHints[hintName] = hints[hintName];
|
|
34
34
|
}
|
|
35
35
|
});
|
|
36
|
-
|
|
36
|
+
event.mergeXdm({
|
|
37
37
|
environment: {
|
|
38
38
|
browserDetails: {
|
|
39
39
|
userAgentClientHints
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
exports.default = void 0;
|
|
4
|
+
/*
|
|
5
|
+
Copyright 2025 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
|
+
var _default = window => {
|
|
16
|
+
let lastReferrerSent = null;
|
|
17
|
+
return event => {
|
|
18
|
+
const content = event.getContent();
|
|
19
|
+
const eventType = content.xdm?.eventType;
|
|
20
|
+
if (eventType === "decisioning.propositionFetch") {
|
|
21
|
+
return;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
// Allow customers to explicitly set the referrer (for SPA view changes)
|
|
25
|
+
// Otherwise, use document.referrer
|
|
26
|
+
// eslint-disable-next-line no-underscore-dangle
|
|
27
|
+
const explicitReferrer = content.data?.__adobe?.analytics?.referrer;
|
|
28
|
+
const currentReferrer = explicitReferrer !== undefined ? explicitReferrer : window.document.referrer;
|
|
29
|
+
if (currentReferrer === lastReferrerSent) {
|
|
30
|
+
event.mergeData({
|
|
31
|
+
__adobe: {
|
|
32
|
+
analytics: {
|
|
33
|
+
referrer: ""
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
});
|
|
37
|
+
return;
|
|
38
|
+
}
|
|
39
|
+
event.mergeData({
|
|
40
|
+
__adobe: {
|
|
41
|
+
analytics: {
|
|
42
|
+
referrer: currentReferrer
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
});
|
|
46
|
+
lastReferrerSent = currentReferrer;
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
exports.default = _default;
|
|
@@ -14,7 +14,7 @@ OF ANY KIND, either express or implied. See the License for the specific languag
|
|
|
14
14
|
governing permissions and limitations under the License.
|
|
15
15
|
*/
|
|
16
16
|
var _default = dateProvider => {
|
|
17
|
-
return
|
|
17
|
+
return event => {
|
|
18
18
|
const date = dateProvider();
|
|
19
19
|
const placeContext = {};
|
|
20
20
|
const localTimezoneOffset = (0, _index.toInteger)(date.getTimezoneOffset());
|
|
@@ -25,7 +25,7 @@ var _default = dateProvider => {
|
|
|
25
25
|
if (localTimezoneOffset === undefined || Math.abs(localTimezoneOffset) < 6000) {
|
|
26
26
|
placeContext.localTime = (0, _index.toISOStringLocal)(date);
|
|
27
27
|
}
|
|
28
|
-
|
|
28
|
+
event.mergeXdm({
|
|
29
29
|
placeContext
|
|
30
30
|
});
|
|
31
31
|
};
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
exports.default = void 0;
|
|
4
|
-
var _index = require("../../utils/index.js");
|
|
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");
|
|
@@ -14,9 +13,9 @@ OF ANY KIND, either express or implied. See the License for the specific languag
|
|
|
14
13
|
governing permissions and limitations under the License.
|
|
15
14
|
*/
|
|
16
15
|
var _default = dateProvider => {
|
|
17
|
-
return
|
|
16
|
+
return event => {
|
|
18
17
|
const timestamp = dateProvider().toISOString();
|
|
19
|
-
|
|
18
|
+
event.mergeXdm({
|
|
20
19
|
timestamp
|
|
21
20
|
});
|
|
22
21
|
};
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
exports.default = void 0;
|
|
4
|
-
var _index = require("../../utils/index.js");
|
|
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");
|
|
@@ -14,17 +13,16 @@ OF ANY KIND, either express or implied. See the License for the specific languag
|
|
|
14
13
|
governing permissions and limitations under the License.
|
|
15
14
|
*/
|
|
16
15
|
var _default = window => {
|
|
17
|
-
return
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
16
|
+
return event => {
|
|
17
|
+
event.mergeXdm({
|
|
18
|
+
web: {
|
|
19
|
+
webPageDetails: {
|
|
20
|
+
URL: window.location.href || window.location
|
|
21
|
+
},
|
|
22
|
+
webReferrer: {
|
|
23
|
+
URL: window.document.referrer
|
|
24
|
+
}
|
|
24
25
|
}
|
|
25
|
-
};
|
|
26
|
-
(0, _index.deepAssign)(xdm, {
|
|
27
|
-
web
|
|
28
26
|
});
|
|
29
27
|
};
|
|
30
28
|
};
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
exports.default = void 0;
|
|
4
4
|
var _index = require("../../utils/index.js");
|
|
5
5
|
/*
|
|
6
|
-
Copyright
|
|
6
|
+
Copyright 2025 Adobe. All rights reserved.
|
|
7
7
|
This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
8
8
|
you may not use this file except in compliance with the License. You may obtain a copy
|
|
9
9
|
of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
@@ -84,11 +84,13 @@ var _default = ({
|
|
|
84
84
|
if (personalizationDetails.shouldFetchData()) {
|
|
85
85
|
const cacheUpdate = viewCache.createCacheUpdate(personalizationDetails.getViewName());
|
|
86
86
|
onRequestFailure(() => cacheUpdate.cancel());
|
|
87
|
+
const identityMap = event.getUserIdentityMap();
|
|
87
88
|
fetchDataHandler({
|
|
88
89
|
cacheUpdate,
|
|
89
90
|
personalizationDetails,
|
|
90
91
|
event,
|
|
91
|
-
onResponse
|
|
92
|
+
onResponse,
|
|
93
|
+
identityMap
|
|
92
94
|
});
|
|
93
95
|
} else if (personalizationDetails.shouldUseCachedData()) {
|
|
94
96
|
decisionsMetaPromises.push(viewChangeHandler({
|
|
@@ -31,7 +31,8 @@ var _default = ({
|
|
|
31
31
|
cacheUpdate,
|
|
32
32
|
personalizationDetails,
|
|
33
33
|
event,
|
|
34
|
-
onResponse
|
|
34
|
+
onResponse,
|
|
35
|
+
identityMap
|
|
35
36
|
}) => {
|
|
36
37
|
const {
|
|
37
38
|
state,
|
|
@@ -48,7 +49,7 @@ var _default = ({
|
|
|
48
49
|
|
|
49
50
|
// This needs to be called before the response so that future sendEvent calls
|
|
50
51
|
// can know to wait until this request is complete for pending display notifications.
|
|
51
|
-
const handleNotifications = notificationHandler(personalizationDetails.isRenderDecisions(), personalizationDetails.isSendDisplayEvent(), personalizationDetails.getViewName());
|
|
52
|
+
const handleNotifications = notificationHandler(personalizationDetails.isRenderDecisions(), personalizationDetails.isSendDisplayEvent(), personalizationDetails.getViewName(), identityMap);
|
|
52
53
|
onResponse(({
|
|
53
54
|
response
|
|
54
55
|
}) => {
|
|
@@ -63,7 +64,7 @@ var _default = ({
|
|
|
63
64
|
}
|
|
64
65
|
});
|
|
65
66
|
}
|
|
66
|
-
const propositions = handles.map(handle => createProposition(handle));
|
|
67
|
+
const propositions = handles.map(handle => createProposition(handle, true, false, identityMap));
|
|
67
68
|
const {
|
|
68
69
|
page: pagePropositions = [],
|
|
69
70
|
view: viewPropositions = [],
|
|
@@ -16,7 +16,7 @@ OF ANY KIND, either express or implied. See the License for the specific languag
|
|
|
16
16
|
governing permissions and limitations under the License.
|
|
17
17
|
*/
|
|
18
18
|
var _default = (collect, renderedPropositions) => {
|
|
19
|
-
return (isRenderDecisions, isSendDisplayEvent, viewName) => {
|
|
19
|
+
return (isRenderDecisions, isSendDisplayEvent, viewName, identityMap) => {
|
|
20
20
|
if (!isRenderDecisions) {
|
|
21
21
|
// If we aren't rendering anything, then we don't need to sendDisplayEvents.
|
|
22
22
|
return () => undefined;
|
|
@@ -30,7 +30,8 @@ var _default = (collect, renderedPropositions) => {
|
|
|
30
30
|
if ((0, _isNonEmptyArray.default)(decisionsMetaDisplay)) {
|
|
31
31
|
collect({
|
|
32
32
|
decisionsMeta: decisionsMetaDisplay,
|
|
33
|
-
viewName
|
|
33
|
+
viewName,
|
|
34
|
+
identityMap
|
|
34
35
|
});
|
|
35
36
|
}
|
|
36
37
|
if ((0, _isNonEmptyArray.default)(decisionsMetaSuppressed)) {
|
|
@@ -40,7 +41,8 @@ var _default = (collect, renderedPropositions) => {
|
|
|
40
41
|
propositionAction: {
|
|
41
42
|
reason: "Conflict"
|
|
42
43
|
},
|
|
43
|
-
viewName
|
|
44
|
+
viewName,
|
|
45
|
+
identityMap
|
|
44
46
|
});
|
|
45
47
|
}
|
|
46
48
|
};
|
|
@@ -40,7 +40,8 @@ var _default = ({
|
|
|
40
40
|
renderDecisions,
|
|
41
41
|
propositions,
|
|
42
42
|
event,
|
|
43
|
-
personalization = {}
|
|
43
|
+
personalization = {},
|
|
44
|
+
identityMap
|
|
44
45
|
}) => {
|
|
45
46
|
if (!renderDecisions) {
|
|
46
47
|
return Promise.resolve();
|
|
@@ -50,12 +51,12 @@ var _default = ({
|
|
|
50
51
|
} = personalization;
|
|
51
52
|
const viewName = event ? event.getViewName() : undefined;
|
|
52
53
|
const shouldSuppressDisplay = createShouldSuppressDisplay();
|
|
53
|
-
const propositionsToExecute = propositions.map(proposition => createProposition(proposition, true, shouldSuppressDisplay(proposition)));
|
|
54
|
+
const propositionsToExecute = propositions.map(proposition => createProposition(proposition, true, shouldSuppressDisplay(proposition), identityMap));
|
|
54
55
|
const {
|
|
55
56
|
render,
|
|
56
57
|
returnedPropositions
|
|
57
58
|
} = processPropositions(propositionsToExecute);
|
|
58
|
-
const handleNotifications = notificationHandler(renderDecisions, sendDisplayEvent, viewName);
|
|
59
|
+
const handleNotifications = notificationHandler(renderDecisions, sendDisplayEvent, viewName, identityMap);
|
|
59
60
|
const propositionsById = propositionsToExecute.reduce((tot, proposition) => {
|
|
60
61
|
tot[proposition.getId()] = proposition;
|
|
61
62
|
return tot;
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
exports.default = void 0;
|
|
4
4
|
var _index = require("../../utils/index.js");
|
|
5
|
-
var _surfaceUtils = require("./utils/surfaceUtils.js");
|
|
6
5
|
var _pageWideScope = require("../../constants/pageWideScope.js");
|
|
7
6
|
var _schema = require("../../constants/schema.js");
|
|
7
|
+
var _surfaceUtils = require("../../utils/surfaceUtils.js");
|
|
8
8
|
/*
|
|
9
9
|
Copyright 2020 Adobe. All rights reserved.
|
|
10
10
|
This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
@@ -49,7 +49,7 @@ const DOM_ACTION_COLLECT_INTERACTIONS = exports.DOM_ACTION_COLLECT_INTERACTIONS
|
|
|
49
49
|
var _default = () => {
|
|
50
50
|
return {
|
|
51
51
|
[DOM_ACTION_SET_HTML]: (0, _action.createAction)(_setHtml.default, true),
|
|
52
|
-
[DOM_ACTION_CUSTOM_CODE]: (0, _action.createAction)(_prependHtml.default),
|
|
52
|
+
[DOM_ACTION_CUSTOM_CODE]: (0, _action.createAction)(_prependHtml.default, true),
|
|
53
53
|
[DOM_ACTION_SET_TEXT]: (0, _action.createAction)(_setText.default, true),
|
|
54
54
|
[DOM_ACTION_SET_ATTRIBUTE]: (0, _action.createAction)(_setAttributes.default, true),
|
|
55
55
|
[DOM_ACTION_SET_IMAGE_SOURCE]: (0, _action.createAction)(_swapImage.default, true),
|
|
@@ -31,7 +31,8 @@ var _default = ({
|
|
|
31
31
|
(0, _index.hideElements)(REDIRECT_HIDING_ELEMENT);
|
|
32
32
|
return collect({
|
|
33
33
|
decisionsMeta: [item.getProposition().getNotification()],
|
|
34
|
-
documentMayUnload: true
|
|
34
|
+
documentMayUnload: true,
|
|
35
|
+
identityMap: item.getProposition().getIdentityMap()
|
|
35
36
|
}).then(() => {
|
|
36
37
|
logger.logOnContentRendering({
|
|
37
38
|
status: "rendering-redirect",
|
|
@@ -59,7 +59,7 @@ var _default = ({
|
|
|
59
59
|
}
|
|
60
60
|
};
|
|
61
61
|
};
|
|
62
|
-
return (payload, visibleInReturnedItems = true, shouldSuppressDisplay = false) => {
|
|
62
|
+
return (payload, visibleInReturnedItems = true, shouldSuppressDisplay = false, identityMap = undefined) => {
|
|
63
63
|
const {
|
|
64
64
|
id,
|
|
65
65
|
scope,
|
|
@@ -97,6 +97,9 @@ var _default = ({
|
|
|
97
97
|
getId() {
|
|
98
98
|
return id;
|
|
99
99
|
},
|
|
100
|
+
getIdentityMap() {
|
|
101
|
+
return identityMap;
|
|
102
|
+
},
|
|
100
103
|
toJSON() {
|
|
101
104
|
return payload;
|
|
102
105
|
},
|
package/libEs5/components/Personalization/in-app-message-actions/actions/displayIframeContent.js
CHANGED
|
@@ -279,7 +279,8 @@ exports.displayHTMLContentInIframe = displayHTMLContentInIframe;
|
|
|
279
279
|
var _default = (settings, collect) => {
|
|
280
280
|
return new Promise(resolve => {
|
|
281
281
|
const {
|
|
282
|
-
meta
|
|
282
|
+
meta,
|
|
283
|
+
identityMap
|
|
283
284
|
} = settings;
|
|
284
285
|
displayHTMLContentInIframe(settings, (action, propositionAction) => {
|
|
285
286
|
const propositionEventTypes = {};
|
|
@@ -291,7 +292,8 @@ var _default = (settings, collect) => {
|
|
|
291
292
|
decisionsMeta: [meta],
|
|
292
293
|
propositionAction,
|
|
293
294
|
eventType: _eventType.INTERACT,
|
|
294
|
-
propositionEventTypes: Object.keys(propositionEventTypes)
|
|
295
|
+
propositionEventTypes: Object.keys(propositionEventTypes),
|
|
296
|
+
identityMap
|
|
295
297
|
});
|
|
296
298
|
});
|
|
297
299
|
resolve({
|
|
@@ -25,7 +25,7 @@ var _injectCreateProposition = require("./handlers/injectCreateProposition.js");
|
|
|
25
25
|
var _createAsyncArray = require("./utils/createAsyncArray.js");
|
|
26
26
|
var schema = require("../../constants/schema.js");
|
|
27
27
|
var _processDefaultContent = require("./handlers/processDefaultContent.js");
|
|
28
|
-
var _surfaceUtils = require("
|
|
28
|
+
var _surfaceUtils = require("../../utils/surfaceUtils.js");
|
|
29
29
|
var _createProcessDomAction = require("./handlers/createProcessDomAction.js");
|
|
30
30
|
var _createProcessHtmlContent = require("./handlers/createProcessHtmlContent.js");
|
|
31
31
|
var _createProcessRedirect = require("./handlers/createProcessRedirect.js");
|
|
@@ -40,7 +40,7 @@ var _collectInteractions = require("./dom-actions/clicks/collectInteractions.js"
|
|
|
40
40
|
var _propositionInteractionType = require("../../constants/propositionInteractionType.js");
|
|
41
41
|
var _decisionProvider = require("../../constants/decisionProvider.js");
|
|
42
42
|
/*
|
|
43
|
-
Copyright
|
|
43
|
+
Copyright 2025 Adobe. All rights reserved.
|
|
44
44
|
This file is licensed to you under the Apache License, Version 2.0 (the "License");
|
|
45
45
|
you may not use this file except in compliance with the License. You may obtain a copy
|
|
46
46
|
of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
@@ -81,7 +81,7 @@ var _default = async ({
|
|
|
81
81
|
throw new Error("Cannot send tracking call. " + field.errorField + " is missing.");
|
|
82
82
|
}
|
|
83
83
|
}
|
|
84
|
-
const url = "https://" + edgeDomain + "/" + edgeBasePath + "/v1/interact?configId=" + datastreamId;
|
|
84
|
+
const url = "https://" + edgeDomain + "/" + edgeBasePath + "/v1/interact?configId=" + datastreamId + "&requestId=" + (0, _uuid.default)();
|
|
85
85
|
|
|
86
86
|
/** @type {TrackingDataPayload} */
|
|
87
87
|
const payload = {
|
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
exports.Types = void 0;
|
|
4
|
+
/*
|
|
5
|
+
Copyright 2025 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
|
+
|
|
4
16
|
/** @import { Identity } from '../../utils/request/types.js' */
|
|
5
17
|
|
|
6
18
|
/**
|
|
@@ -28,11 +28,13 @@ var _default = ({
|
|
|
28
28
|
// We extract them and add the events to the event registry.
|
|
29
29
|
const eventPayloads = (0, _extractPayloadsFromEventHistoryOperations.default)(propositions);
|
|
30
30
|
eventRegistry.addEventPayloads(eventPayloads);
|
|
31
|
+
const identityMap = event?.getUserIdentityMap();
|
|
31
32
|
lifecycle.onDecision({
|
|
32
33
|
renderDecisions,
|
|
33
34
|
propositions,
|
|
34
35
|
event,
|
|
35
|
-
personalization
|
|
36
|
+
personalization,
|
|
37
|
+
identityMap
|
|
36
38
|
});
|
|
37
39
|
}
|
|
38
40
|
return {
|
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
exports.Types = void 0;
|
|
4
|
+
/*
|
|
5
|
+
Copyright 2025 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
|
+
|
|
4
16
|
/**
|
|
5
17
|
* @typedef {Record<string, EventRecord>} EventRegistry
|
|
6
18
|
*/
|
|
@@ -14,4 +14,4 @@ governing permissions and limitations under the License.
|
|
|
14
14
|
*/
|
|
15
15
|
// The __VERSION__ keyword will be replace at alloy build time with the package.json version.
|
|
16
16
|
// see babel-plugin-version
|
|
17
|
-
var _default = exports.default = "2.30.1-beta.
|
|
17
|
+
var _default = exports.default = "2.30.1-beta.20";
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
exports.WEBAPP = exports.WEB = exports.SURFACE_TYPE_DELIMITER = exports.FRAGMENT_DELIMITER = void 0;
|
|
4
|
+
/*
|
|
5
|
+
Copyright 2022 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
|
+
|
|
16
|
+
const WEB = exports.WEB = "web";
|
|
17
|
+
const WEBAPP = exports.WEBAPP = "webapp";
|
|
18
|
+
const SURFACE_TYPE_DELIMITER = exports.SURFACE_TYPE_DELIMITER = "://";
|
|
19
|
+
const FRAGMENT_DELIMITER = exports.FRAGMENT_DELIMITER = "#";
|
|
@@ -18,6 +18,12 @@ Object.defineProperty(exports, "audiences", {
|
|
|
18
18
|
return _index2.default;
|
|
19
19
|
}
|
|
20
20
|
});
|
|
21
|
+
Object.defineProperty(exports, "brandConcierge", {
|
|
22
|
+
enumerable: true,
|
|
23
|
+
get: function () {
|
|
24
|
+
return _index1.default;
|
|
25
|
+
}
|
|
26
|
+
});
|
|
21
27
|
Object.defineProperty(exports, "consent", {
|
|
22
28
|
enumerable: true,
|
|
23
29
|
get: function () {
|
|
@@ -69,4 +75,5 @@ var _index6 = require("../components/Personalization/index.js");
|
|
|
69
75
|
var _index7 = require("../components/RulesEngine/index.js");
|
|
70
76
|
var _index8 = require("../components/StreamingMedia/index.js");
|
|
71
77
|
var _index9 = require("../components/Advertising/index.js");
|
|
72
|
-
var _index0 = require("../components/PushNotifications/index.js");
|
|
78
|
+
var _index0 = require("../components/PushNotifications/index.js");
|
|
79
|
+
var _index1 = require("../components/BrandConcierge/index.js");
|