@salesforcedevs/docs-components 1.3.150-alpha5 → 1.3.150-alpha6
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/package.json
CHANGED
|
@@ -219,7 +219,10 @@ export default class AmfReference extends LightningElement {
|
|
|
219
219
|
|
|
220
220
|
private logCoveoPageView() {
|
|
221
221
|
if (this.coveoOrganizationId) {
|
|
222
|
-
console.log(
|
|
222
|
+
console.log(
|
|
223
|
+
"log coveo page view with token ",
|
|
224
|
+
this.coveoAnalyticsToken
|
|
225
|
+
);
|
|
223
226
|
const ua = new CoveoAnalyticsClient({
|
|
224
227
|
token: this.coveoAnalyticsToken,
|
|
225
228
|
endpoint: `https://${"fullsalesforce"}.analytics.org.coveo.com`
|
|
@@ -453,7 +453,10 @@ export default class DocXmlContent extends LightningElementWithState<{
|
|
|
453
453
|
}
|
|
454
454
|
|
|
455
455
|
if (this.coveoOrganizationId) {
|
|
456
|
-
console.log(
|
|
456
|
+
console.log(
|
|
457
|
+
"log coveo page view with token ",
|
|
458
|
+
this.coveoAnalyticsToken
|
|
459
|
+
);
|
|
457
460
|
const ua = new CoveoAnalyticsClient({
|
|
458
461
|
token: this.coveoAnalyticsToken,
|
|
459
462
|
endpoint: `https://${this.coveoOrganizationId}.analytics.org.coveo.com`
|