authscape 1.0.695 → 1.0.696
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/index.js +6 -0
- package/package.json +1 -1
- package/src/services/PrivateLabelPageModule.js +10 -0
package/index.js
CHANGED
|
@@ -9200,6 +9200,12 @@ function _PrivateLabelPageModule() {
|
|
|
9200
9200
|
if (dataResponse.companyName != null) {
|
|
9201
9201
|
data.companyName = dataResponse.companyName;
|
|
9202
9202
|
}
|
|
9203
|
+
if (dataResponse.googleAnalytics4Code != null) {
|
|
9204
|
+
data.googleAnalytics4Code = dataResponse.googleAnalytics4Code;
|
|
9205
|
+
}
|
|
9206
|
+
if (dataResponse.microsoftClarityCode != null) {
|
|
9207
|
+
data.microsoftClarityCode = dataResponse.microsoftClarityCode;
|
|
9208
|
+
}
|
|
9203
9209
|
|
|
9204
9210
|
// check for redirect
|
|
9205
9211
|
if (dataResponse.redirectTrafficToCanonical) {
|
package/package.json
CHANGED
|
@@ -38,6 +38,16 @@ export async function PrivateLabelPageModule(apiUri, host, resolvedUrl) {
|
|
|
38
38
|
data.companyName = dataResponse.companyName;
|
|
39
39
|
}
|
|
40
40
|
|
|
41
|
+
if (dataResponse.googleAnalytics4Code != null)
|
|
42
|
+
{
|
|
43
|
+
data.googleAnalytics4Code = dataResponse.googleAnalytics4Code;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
if (dataResponse.microsoftClarityCode != null)
|
|
47
|
+
{
|
|
48
|
+
data.microsoftClarityCode = dataResponse.microsoftClarityCode;
|
|
49
|
+
}
|
|
50
|
+
|
|
41
51
|
// check for redirect
|
|
42
52
|
if (dataResponse.redirectTrafficToCanonical)
|
|
43
53
|
{
|