castled-js-sdk 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- package/.env.example +8 -0
- package/.eslintignore +15 -0
- package/.eslintrc.json +41 -0
- package/.github/ISSUE_TEMPLATE/bug_report.md +50 -0
- package/.github/ISSUE_TEMPLATE/feature_request.md +19 -0
- package/.github/pull_request_template.md +22 -0
- package/.github/workflows/build-and-quality-checks.yml +50 -0
- package/.github/workflows/deploy-beta.yml +55 -0
- package/.github/workflows/deploy-cdn.yml +113 -0
- package/.github/workflows/deploy-npm.yml +80 -0
- package/.github/workflows/deploy-sanity-suite.yml +46 -0
- package/.github/workflows/test.yml +39 -0
- package/.husky/commit-msg +4 -0
- package/.husky/pre-commit +4 -0
- package/.nvmrc +1 -0
- package/.prettierignore +10 -0
- package/.prettierrc +7 -0
- package/.size-limit.js +30 -0
- package/.versionrc +12 -0
- package/LICENSE +67 -0
- package/README.md +102 -22
- package/__mocks__/BraveBrowser.js +9 -0
- package/__mocks__/fixtures.js +130 -0
- package/__mocks__/msw.handlers.js +34 -0
- package/__mocks__/msw.server.js +6 -0
- package/__tests__/camelcase.test.js +29 -0
- package/__tests__/data-residency.test.js +238 -0
- package/__tests__/features/core/metrics/errorReporting/ErrorReportingService.test.js +80 -0
- package/__tests__/integrations/BingAds/__mocks__/data.js +17 -0
- package/__tests__/integrations/BingAds/browser.test.js +148 -0
- package/__tests__/integrations/BingAds/utils.test.js +138 -0
- package/__tests__/integrations/Braze/Braze.test.js +462 -0
- package/__tests__/integrations/FacebookPixel/FacebookPixel.test.js +347 -0
- package/__tests__/integrations/FacebookPixel/utils.test.js +688 -0
- package/__tests__/integrations/Fullstory/fullstory.test.js +147 -0
- package/__tests__/integrations/GA4/__mocks__/data.js +1480 -0
- package/__tests__/integrations/GA4/browser.test.js +94 -0
- package/__tests__/integrations/GA4/utils.test.js +337 -0
- package/__tests__/integrations/GoogleAds/__mocks__/data.js +235 -0
- package/__tests__/integrations/GoogleAds/browser.test.js +202 -0
- package/__tests__/integrations/GoogleAds/utils.test.js +110 -0
- package/__tests__/integrations/LaunchDarkly/__mocks__/data.js +61 -0
- package/__tests__/integrations/LaunchDarkly/browser.test.js +148 -0
- package/__tests__/integrations/LaunchDarkly/utils.test.js +36 -0
- package/__tests__/integrations/Lemnisk/lemnisk.test.js +156 -0
- package/__tests__/integrations/Mixpanel/browser.test.js +60 -0
- package/__tests__/integrations/PinterestTag/__mocks__/data.js +24 -0
- package/__tests__/integrations/PinterestTag/utils.test.js +19 -0
- package/__tests__/integrations/TikTokAds/tiktokads.test.js +231 -0
- package/__tests__/ketchConsent.test.js +49 -0
- package/__tests__/oneTrustCookieConsent.test.js +89 -0
- package/__tests__/script.test.js +167 -0
- package/__tests__/service-worker/__mocks__/fixtures.js +79 -0
- package/__tests__/service-worker/__mocks__/msw.server.js +12 -0
- package/__tests__/service-worker/index.test.js +109 -0
- package/__tests__/transformationHandler.test.js +169 -0
- package/__tests__/utils/IntegrationsData.test.js +105 -0
- package/__tests__/utils/ObjectUtils.test.js +227 -0
- package/__tests__/utils/cdnPaths.test.js +63 -0
- package/__tests__/utils/clientHint.test.js +87 -0
- package/__tests__/utils/commonUtils.test.js +271 -0
- package/__tests__/utils/errorHandler.test.js +60 -0
- package/__tests__/utils/eventProcessorUtils.test.js +266 -0
- package/__tests__/utils/navigator.test.js +38 -0
- package/__tests__/utils/preProcessQueue.test.js +78 -0
- package/__tests__/utils/screenDetails.test.js +19 -0
- package/__tests__/utils/utils.test.js +348 -0
- package/assets/integrations/AdobeAnalytics/adobe-analytics-heartbeat.js +12384 -0
- package/assets/integrations/AdobeAnalytics/adobe-analytics-js.js +5046 -0
- package/babel.config.json +34 -0
- package/commitlint.config.js +3 -0
- package/examples/SampleEventsTest.Html +133 -0
- package/examples/TC/TC_001.js +4 -0
- package/examples/TC/TC_002.js +4 -0
- package/examples/TC/TC_003.js +4 -0
- package/examples/TC/TC_004.js +4 -0
- package/examples/TC/TC_005.js +4 -0
- package/examples/chrome-extension/USAGE.md +131 -0
- package/examples/chrome-extension/background-script/LICENSE +21 -0
- package/examples/chrome-extension/background-script/README.md +101 -0
- package/examples/chrome-extension/background-script/foreground.js +7 -0
- package/examples/chrome-extension/background-script/logo/logo-128.png +0 -0
- package/examples/chrome-extension/background-script/logo/logo-16.png +0 -0
- package/examples/chrome-extension/background-script/logo/logo-48.png +0 -0
- package/examples/chrome-extension/background-script/logo/logo.svg +138 -0
- package/examples/chrome-extension/background-script/manifest.json +37 -0
- package/examples/chrome-extension/background-script/popup/popup.css +11 -0
- package/examples/chrome-extension/background-script/popup/popup.html +11 -0
- package/examples/chrome-extension/background-script/rudderAnalytics.js +5345 -0
- package/examples/chrome-extension/background-script/service-worker.js +32 -0
- package/examples/chrome-extension/background-script/settings/settings.css +8 -0
- package/examples/chrome-extension/background-script/settings/settings.html +12 -0
- package/examples/chrome-extension/background-script-websockets/LICENSE +21 -0
- package/examples/chrome-extension/background-script-websockets/README.md +101 -0
- package/examples/chrome-extension/background-script-websockets/foreground.js +7 -0
- package/examples/chrome-extension/background-script-websockets/logo/logo-128.png +0 -0
- package/examples/chrome-extension/background-script-websockets/logo/logo-16.png +0 -0
- package/examples/chrome-extension/background-script-websockets/logo/logo-48.png +0 -0
- package/examples/chrome-extension/background-script-websockets/logo/logo.svg +138 -0
- package/examples/chrome-extension/background-script-websockets/manifest.json +37 -0
- package/examples/chrome-extension/background-script-websockets/popup/popup.css +11 -0
- package/examples/chrome-extension/background-script-websockets/popup/popup.html +11 -0
- package/{service-worker/index.es.js → examples/chrome-extension/background-script-websockets/rudderAnalytics.js} +1283 -1274
- package/examples/chrome-extension/background-script-websockets/service-worker.js +60 -0
- package/examples/chrome-extension/background-script-websockets/settings/settings.css +8 -0
- package/examples/chrome-extension/background-script-websockets/settings/settings.html +12 -0
- package/examples/chrome-extension/content-script/LICENSE +21 -0
- package/examples/chrome-extension/content-script/README.md +101 -0
- package/examples/chrome-extension/content-script/foreground.js +65 -0
- package/examples/chrome-extension/content-script/logo/logo-128.png +0 -0
- package/examples/chrome-extension/content-script/logo/logo-16.png +0 -0
- package/examples/chrome-extension/content-script/logo/logo-48.png +0 -0
- package/examples/chrome-extension/content-script/logo/logo.svg +138 -0
- package/examples/chrome-extension/content-script/manifest.json +39 -0
- package/examples/chrome-extension/content-script/popup/popup.css +11 -0
- package/examples/chrome-extension/content-script/popup/popup.html +11 -0
- package/examples/chrome-extension/content-script/service-worker-utils.js +17 -0
- package/examples/chrome-extension/content-script/service-worker.js +12 -0
- package/examples/chrome-extension/content-script/settings/settings.css +8 -0
- package/examples/chrome-extension/content-script/settings/settings.html +12 -0
- package/examples/chrome-extension/websocket-server/server.mjs +19 -0
- package/examples/html/autotrack-test.html +96 -0
- package/examples/html/ecomm_test.html +358 -0
- package/examples/html/script-test.html +968 -0
- package/examples/html/segment.html +177 -0
- package/examples/html/test_poster.jpg +0 -0
- package/examples/umd/index.js +11 -0
- package/examples/umd/package.json +42 -0
- package/examples/umd/rollup.config.js +36 -0
- package/examples/umd/tests/test.html +5 -0
- package/examples/v1.1/tc1.html +139 -0
- package/examples/v1.1/tc2.1.html +140 -0
- package/examples/v1.1/tc2.2.html +139 -0
- package/examples/v1.1/tc2.3.html +143 -0
- package/examples/v1.1/tc3.1.html +139 -0
- package/examples/v1.1/tc3.2.html +142 -0
- package/examples/v1.1/tc3.3.html +142 -0
- package/examples/v1.1/tc3.4.html +144 -0
- package/examples/v1.1/tc3.5.html +142 -0
- package/examples/v1.1/tc4.html +142 -0
- package/examples/v1.1/tc5.html +150 -0
- package/github-release.config.js +5 -0
- package/jest/jest.global-setup.js +3 -0
- package/jest/jest.polyfills.js +10 -0
- package/jest/jest.setup-dom.js +49 -0
- package/jest.config.js +196 -0
- package/package.json +198 -39
- package/packages/npm/README.md +125 -0
- package/packages/npm/package.json +50 -0
- package/patches/@segment+localstorage-retry+1.3.0.patch +73 -0
- package/patches/@segment+top-domain+3.0.1.patch +34 -0
- package/public/index.html +136 -0
- package/public/list_integration_sdks.html +390 -0
- package/rollup-configs/rollup.integrations.config.js +29 -0
- package/rollup-configs/rollup.sdk.browser.js +32 -0
- package/rollup-configs/rollup.sdk.npm.js +43 -0
- package/rollup-configs/rollup.utilities.js +120 -0
- package/rollup-configs/rollup.worker.config.js +37 -0
- package/sanity-suite/.babelrc +33 -0
- package/sanity-suite/.env.example +6 -0
- package/sanity-suite/__mocks__/alias1.json +137 -0
- package/sanity-suite/__mocks__/alias2.json +97 -0
- package/sanity-suite/__mocks__/alias5.json +103 -0
- package/sanity-suite/__mocks__/alias6.json +137 -0
- package/sanity-suite/__mocks__/group1.json +120 -0
- package/sanity-suite/__mocks__/group2.json +86 -0
- package/sanity-suite/__mocks__/group4.json +101 -0
- package/sanity-suite/__mocks__/group5.json +67 -0
- package/sanity-suite/__mocks__/group6.json +66 -0
- package/sanity-suite/__mocks__/identify1.json +136 -0
- package/sanity-suite/__mocks__/identify2.json +102 -0
- package/sanity-suite/__mocks__/identify3.json +99 -0
- package/sanity-suite/__mocks__/identify4.json +65 -0
- package/sanity-suite/__mocks__/identify5.json +102 -0
- package/sanity-suite/__mocks__/identify6.json +103 -0
- package/sanity-suite/__mocks__/identify7.json +102 -0
- package/sanity-suite/__mocks__/identify8.json +103 -0
- package/sanity-suite/__mocks__/page1.json +119 -0
- package/sanity-suite/__mocks__/page2.json +86 -0
- package/sanity-suite/__mocks__/page4.json +112 -0
- package/sanity-suite/__mocks__/page5.json +79 -0
- package/sanity-suite/__mocks__/page6.json +77 -0
- package/sanity-suite/__mocks__/page7.json +77 -0
- package/sanity-suite/__mocks__/page8.json +75 -0
- package/sanity-suite/__mocks__/page9.json +155 -0
- package/sanity-suite/__mocks__/sourceConfig1.json +988 -0
- package/sanity-suite/__mocks__/track1.json +150 -0
- package/sanity-suite/__mocks__/track2.json +118 -0
- package/sanity-suite/__mocks__/track4.json +134 -0
- package/sanity-suite/__mocks__/track5.json +102 -0
- package/sanity-suite/__mocks__/track6.json +81 -0
- package/sanity-suite/__mocks__/track7.json +81 -0
- package/sanity-suite/package-lock.json +7951 -0
- package/sanity-suite/package.json +67 -0
- package/sanity-suite/public/eventFiltering/index-cdn.html +112 -0
- package/sanity-suite/public/eventFiltering/index-local.html +109 -0
- package/sanity-suite/public/eventFiltering/index-npm.html +92 -0
- package/sanity-suite/public/index-cdn.html +112 -0
- package/sanity-suite/public/index-local.html +109 -0
- package/sanity-suite/public/index-npm.html +92 -0
- package/sanity-suite/public/preloadBuffer/index-cdn.html +112 -0
- package/sanity-suite/public/preloadBuffer/index-local.html +109 -0
- package/sanity-suite/public/preloadBuffer/index-npm.html +92 -0
- package/sanity-suite/rollup.config.js +199 -0
- package/sanity-suite/src/index-npm.js +65 -0
- package/sanity-suite/src/index.js +5 -0
- package/sanity-suite/src/testBook/ResultAssertions.js +51 -0
- package/sanity-suite/src/testBook/TestBook.js +345 -0
- package/sanity-suite/src/testBook/ignoredProperties.js +150 -0
- package/sanity-suite/src/testBook/index.js +11 -0
- package/sanity-suite/src/testBookSuites/alias.js +287 -0
- package/sanity-suite/src/testBookSuites/group.js +240 -0
- package/sanity-suite/src/testBookSuites/identify.js +455 -0
- package/sanity-suite/src/testBookSuites/index.js +31 -0
- package/sanity-suite/src/testBookSuites/page.js +258 -0
- package/sanity-suite/src/testBookSuites/sourceConfig.js +84 -0
- package/sanity-suite/src/testBookSuites/track.js +451 -0
- package/scripts/integrationBuildScript.js +77 -0
- package/scripts/run_tests.sh +6 -0
- package/src/core/analytics.js +1668 -0
- package/src/features/core/cookieConsent/CookieConsentFactory.js +32 -0
- package/src/features/core/cookieConsent/OneTrust/browser.js +102 -0
- package/src/features/core/cookieConsent/OneTrust/index.js +3 -0
- package/src/features/core/cookieConsent/ketch/browser.js +114 -0
- package/src/features/core/cookieConsent/ketch/index.js +1 -0
- package/src/features/core/deviceModeTransformation/transformationHandler.js +189 -0
- package/src/features/core/deviceModeTransformation/util.js +23 -0
- package/src/features/core/metrics/errorReporting/ErrorReportingService.js +116 -0
- package/src/features/core/metrics/errorReporting/providers/Bugsnag.js +240 -0
- package/src/features/core/session/index.js +207 -0
- package/src/integrations/ActiveCampaign/browser.js +52 -0
- package/src/integrations/ActiveCampaign/constants.js +14 -0
- package/src/integrations/ActiveCampaign/index.js +3 -0
- package/src/integrations/ActiveCampaign/nativeSdkLoader.js +24 -0
- package/src/integrations/AdobeAnalytics/browser.js +276 -0
- package/src/integrations/AdobeAnalytics/constants.js +14 -0
- package/src/integrations/AdobeAnalytics/eCommHandle.js +56 -0
- package/src/integrations/AdobeAnalytics/heartbeatHandle.js +266 -0
- package/src/integrations/AdobeAnalytics/index.js +1 -0
- package/src/integrations/AdobeAnalytics/util.js +678 -0
- package/src/integrations/Adroll/browser.js +125 -0
- package/src/integrations/Adroll/constants.js +10 -0
- package/src/integrations/Adroll/index.js +1 -0
- package/src/integrations/Adroll/util.js +48 -0
- package/src/integrations/Amplitude/browser.js +352 -0
- package/src/integrations/Amplitude/constants.js +9 -0
- package/src/integrations/Amplitude/index.js +1 -0
- package/src/integrations/Amplitude/nativeSdkLoader.js +112 -0
- package/src/integrations/Amplitude/test/test_amplitude.html +157 -0
- package/src/integrations/Amplitude/utils.js +25 -0
- package/src/integrations/Appcues/browser.js +79 -0
- package/src/integrations/Appcues/constants.js +9 -0
- package/src/integrations/Appcues/index.js +1 -0
- package/src/integrations/Axeptio/browser.js +61 -0
- package/src/integrations/Axeptio/constants.js +8 -0
- package/src/integrations/Axeptio/index.js +1 -0
- package/src/integrations/Axeptio/nativeSdkLoader.js +14 -0
- package/src/integrations/Axeptio/utils.js +16 -0
- package/src/integrations/BingAds/browser.js +79 -0
- package/src/integrations/BingAds/constants.js +12 -0
- package/src/integrations/BingAds/index.js +1 -0
- package/src/integrations/BingAds/nativeSdkLoader.js +30 -0
- package/src/integrations/BingAds/utils.js +101 -0
- package/src/integrations/Braze/browser.js +284 -0
- package/src/integrations/Braze/constants.js +11 -0
- package/src/integrations/Braze/index.js +1 -0
- package/src/integrations/Braze/nativeSdkLoader.js +35 -0
- package/src/integrations/Braze/utils.js +51 -0
- package/src/integrations/Bugsnag/browser.js +60 -0
- package/src/integrations/Bugsnag/constants.js +8 -0
- package/src/integrations/Bugsnag/index.js +1 -0
- package/src/integrations/Chartbeat/browser.js +148 -0
- package/src/integrations/Chartbeat/constants.js +10 -0
- package/src/integrations/Chartbeat/index.js +1 -0
- package/src/integrations/Chartbeat/nativeSdkLoader.js +7 -0
- package/src/integrations/Clevertap/browser.js +206 -0
- package/src/integrations/Clevertap/constants.js +8 -0
- package/src/integrations/Clevertap/index.js +1 -0
- package/src/integrations/Comscore/browser.js +130 -0
- package/src/integrations/Comscore/constants.js +11 -0
- package/src/integrations/Comscore/index.js +1 -0
- package/src/integrations/Comscore/nativeSdkLoader.js +10 -0
- package/src/integrations/ConvertFlow/browser.js +59 -0
- package/src/integrations/ConvertFlow/constants.js +15 -0
- package/src/integrations/ConvertFlow/index.js +1 -0
- package/src/integrations/ConvertFlow/utils.js +107 -0
- package/src/integrations/Criteo/browser.js +155 -0
- package/src/integrations/Criteo/constants.js +11 -0
- package/src/integrations/Criteo/index.js +1 -0
- package/src/integrations/Criteo/utils.js +343 -0
- package/src/integrations/CustomerIO/browser.js +74 -0
- package/src/integrations/CustomerIO/constants.js +10 -0
- package/src/integrations/CustomerIO/index.js +1 -0
- package/src/integrations/CustomerIO/nativeSdkLoader.js +31 -0
- package/src/integrations/DCMFloodlight/browser.js +240 -0
- package/src/integrations/DCMFloodlight/constants.js +15 -0
- package/src/integrations/DCMFloodlight/index.js +1 -0
- package/src/integrations/DCMFloodlight/utils.js +336 -0
- package/src/integrations/Drip/browser.js +169 -0
- package/src/integrations/Drip/constants.js +8 -0
- package/src/integrations/Drip/index.js +1 -0
- package/src/integrations/Drip/nativeSdkLoader.js +10 -0
- package/src/integrations/Drip/utils.js +29 -0
- package/src/integrations/Engage/browser.js +124 -0
- package/src/integrations/Engage/constants.js +16 -0
- package/src/integrations/Engage/index.js +1 -0
- package/src/integrations/Engage/nativeSdkLoader.js +25 -0
- package/src/integrations/Engage/utils.js +69 -0
- package/src/integrations/FacebookPixel/browser.js +313 -0
- package/src/integrations/FacebookPixel/constants.js +77 -0
- package/src/integrations/FacebookPixel/index.js +1 -0
- package/src/integrations/FacebookPixel/utils.js +310 -0
- package/src/integrations/Fullstory/browser.js +169 -0
- package/src/integrations/Fullstory/constants.js +13 -0
- package/src/integrations/Fullstory/index.js +1 -0
- package/src/integrations/Fullstory/nativeSdkLoader.js +69 -0
- package/src/integrations/GA/browser.js +816 -0
- package/src/integrations/GA/constants.js +10 -0
- package/src/integrations/GA/index.js +1 -0
- package/src/integrations/GA/index.test.js +184 -0
- package/src/integrations/GA360/browser.js +58 -0
- package/src/integrations/GA360/constants.js +14 -0
- package/src/integrations/GA360/index.js +1 -0
- package/src/integrations/GA4/browser.js +264 -0
- package/src/integrations/GA4/config.js +296 -0
- package/src/integrations/GA4/constants.js +15 -0
- package/src/integrations/GA4/index.js +1 -0
- package/src/integrations/GA4/utils.js +329 -0
- package/src/integrations/GoogleAds/browser.js +212 -0
- package/src/integrations/GoogleAds/constants.js +11 -0
- package/src/integrations/GoogleAds/index.js +1 -0
- package/src/integrations/GoogleAds/nativeSdkLoader.js +26 -0
- package/src/integrations/GoogleAds/utils.js +117 -0
- package/src/integrations/GoogleOptimize/browser.js +79 -0
- package/src/integrations/GoogleOptimize/constants.js +13 -0
- package/src/integrations/GoogleOptimize/index.js +1 -0
- package/src/integrations/GoogleTagManager/browser.js +95 -0
- package/src/integrations/GoogleTagManager/constants.js +10 -0
- package/src/integrations/GoogleTagManager/index.js +1 -0
- package/src/integrations/GoogleTagManager/nativeSdkLoader.js +21 -0
- package/src/integrations/Heap/browser.js +67 -0
- package/src/integrations/Heap/constants.js +9 -0
- package/src/integrations/Heap/index.js +1 -0
- package/src/integrations/Heap/nativeSdkLoader.js +40 -0
- package/src/integrations/Heap/util.js +23 -0
- package/src/integrations/Hotjar/browser.js +86 -0
- package/src/integrations/Hotjar/constants.js +10 -0
- package/src/integrations/Hotjar/index.js +1 -0
- package/src/integrations/Hotjar/nativeSdkLoader.js +21 -0
- package/src/integrations/HubSpot/browser.js +96 -0
- package/src/integrations/HubSpot/constants.js +11 -0
- package/src/integrations/HubSpot/index.js +1 -0
- package/src/integrations/INTERCOM/browser.js +107 -0
- package/src/integrations/INTERCOM/constants.js +8 -0
- package/src/integrations/INTERCOM/index.js +1 -0
- package/src/integrations/INTERCOM/nativeSdkLoader.js +46 -0
- package/src/integrations/INTERCOM/utils.js +68 -0
- package/src/integrations/Iterable/browser.js +185 -0
- package/src/integrations/Iterable/constants.js +8 -0
- package/src/integrations/Iterable/index.js +1 -0
- package/src/integrations/Iterable/utils.js +111 -0
- package/src/integrations/June/browser.js +98 -0
- package/src/integrations/June/constants.js +8 -0
- package/src/integrations/June/index.js +1 -0
- package/src/integrations/Keen/browser.js +153 -0
- package/src/integrations/Keen/constants.js +10 -0
- package/src/integrations/Keen/index.js +1 -0
- package/src/integrations/Kissmetrics/browser.js +254 -0
- package/src/integrations/Kissmetrics/constants.js +8 -0
- package/src/integrations/Kissmetrics/index.js +1 -0
- package/src/integrations/Kissmetrics/nativeSdkLoader.js +23 -0
- package/src/integrations/Klaviyo/browser.js +195 -0
- package/src/integrations/Klaviyo/constants.js +8 -0
- package/src/integrations/Klaviyo/index.js +1 -0
- package/src/integrations/Klaviyo/util.js +91 -0
- package/src/integrations/LaunchDarkly/browser.js +74 -0
- package/src/integrations/LaunchDarkly/constants.js +11 -0
- package/src/integrations/LaunchDarkly/index.js +1 -0
- package/src/integrations/LaunchDarkly/utils.js +24 -0
- package/src/integrations/Lemnisk/browser.js +85 -0
- package/src/integrations/Lemnisk/constants.js +13 -0
- package/src/integrations/Lemnisk/index.js +1 -0
- package/src/integrations/Lemnisk/nativeSdkLoader.js +34 -0
- package/src/integrations/LinkedInInsightTag/browser.js +71 -0
- package/src/integrations/LinkedInInsightTag/constants.js +16 -0
- package/src/integrations/LinkedInInsightTag/index.js +1 -0
- package/src/integrations/LiveChat/browser.js +82 -0
- package/src/integrations/LiveChat/constants.js +12 -0
- package/src/integrations/LiveChat/index.js +1 -0
- package/src/integrations/LiveChat/nativeSdkLoader.js +40 -0
- package/src/integrations/LiveChat/util.js +71 -0
- package/src/integrations/Lotame/LotameStorage.js +21 -0
- package/src/integrations/Lotame/browser.js +172 -0
- package/src/integrations/Lotame/constants.js +8 -0
- package/src/integrations/Lotame/index.js +1 -0
- package/src/integrations/Lytics/browser.js +87 -0
- package/src/integrations/Lytics/constants.js +8 -0
- package/src/integrations/Lytics/index.js +1 -0
- package/src/integrations/Lytics/nativeSdkLoader.js +77 -0
- package/src/integrations/Lytics/test/script-test-lytics.html +250 -0
- package/src/integrations/Matomo/browser.js +188 -0
- package/src/integrations/Matomo/constants.js +8 -0
- package/src/integrations/Matomo/index.js +1 -0
- package/src/integrations/Matomo/nativeSdkLoader.js +20 -0
- package/src/integrations/Matomo/util.js +417 -0
- package/src/integrations/MicrosoftClarity/browser.js +70 -0
- package/src/integrations/MicrosoftClarity/constants.js +14 -0
- package/src/integrations/MicrosoftClarity/index.js +1 -0
- package/src/integrations/MicrosoftClarity/nativeSdkLoader.js +22 -0
- package/src/integrations/Mixpanel/browser.js +326 -0
- package/src/integrations/Mixpanel/constants.js +11 -0
- package/src/integrations/Mixpanel/index.js +1 -0
- package/src/integrations/Mixpanel/nativeSdkLoader.js +71 -0
- package/src/integrations/Mixpanel/util.js +178 -0
- package/src/integrations/MoEngage/browser.js +133 -0
- package/src/integrations/MoEngage/constants.js +12 -0
- package/src/integrations/MoEngage/index.js +1 -0
- package/src/integrations/MoEngage/nativeSdkLoader.js +66 -0
- package/src/integrations/MoEngage/test/script-test-moengage.html +216 -0
- package/src/integrations/Mouseflow/browser.js +98 -0
- package/src/integrations/Mouseflow/constants.js +14 -0
- package/src/integrations/Mouseflow/index.js +1 -0
- package/src/integrations/Mouseflow/utils.js +27 -0
- package/src/integrations/Olark/browser.js +94 -0
- package/src/integrations/Olark/constants.js +8 -0
- package/src/integrations/Olark/index.js +1 -0
- package/src/integrations/Olark/nativeSdkLoader.js +31 -0
- package/src/integrations/Olark/utils.js +51 -0
- package/src/integrations/Optimizely/browser.js +230 -0
- package/src/integrations/Optimizely/constants.js +8 -0
- package/src/integrations/Optimizely/index.js +1 -0
- package/src/integrations/Optimizely/utils.js +23 -0
- package/src/integrations/Pendo/browser.js +119 -0
- package/src/integrations/Pendo/constants.js +8 -0
- package/src/integrations/Pendo/index.js +1 -0
- package/src/integrations/Pendo/nativeSdkLoader.js +32 -0
- package/src/integrations/PinterestTag/browser.js +241 -0
- package/src/integrations/PinterestTag/constants.js +19 -0
- package/src/integrations/PinterestTag/index.js +1 -0
- package/src/integrations/PinterestTag/nativeSdkLoader.js +19 -0
- package/src/integrations/PinterestTag/propertyMappingConfig.js +57 -0
- package/src/integrations/PinterestTag/test/input.js +180 -0
- package/src/integrations/PinterestTag/test/output.js +129 -0
- package/src/integrations/PinterestTag/utils.js +47 -0
- package/src/integrations/Podsights/browser.js +178 -0
- package/src/integrations/Podsights/constants.js +206 -0
- package/src/integrations/Podsights/index.js +1 -0
- package/src/integrations/Podsights/utils.js +65 -0
- package/src/integrations/PostAffiliatePro/browser.js +133 -0
- package/src/integrations/PostAffiliatePro/constants.js +13 -0
- package/src/integrations/PostAffiliatePro/index.js +1 -0
- package/src/integrations/PostAffiliatePro/utils.js +40 -0
- package/src/integrations/Posthog/browser.js +154 -0
- package/src/integrations/Posthog/constants.js +12 -0
- package/src/integrations/Posthog/index.js +1 -0
- package/src/integrations/Posthog/nativeSdkLoader.js +48 -0
- package/src/integrations/Posthog/test/test_posthog.html +77 -0
- package/src/integrations/Posthog/utils.js +36 -0
- package/src/integrations/ProfitWell/browser.js +72 -0
- package/src/integrations/ProfitWell/constants.js +12 -0
- package/src/integrations/ProfitWell/index.js +1 -0
- package/src/integrations/ProfitWell/nativeSdkLoader.js +25 -0
- package/src/integrations/Qualaroo/browser.js +116 -0
- package/src/integrations/Qualaroo/constants.js +8 -0
- package/src/integrations/Qualaroo/index.js +1 -0
- package/src/integrations/Qualaroo/utils.js +83 -0
- package/src/integrations/Qualtrics/browser.js +89 -0
- package/src/integrations/Qualtrics/constants.js +8 -0
- package/src/integrations/Qualtrics/index.js +1 -0
- package/src/integrations/Qualtrics/nativeSdkLoader.js +79 -0
- package/src/integrations/QuantumMetric/browser.js +63 -0
- package/src/integrations/QuantumMetric/constants.js +13 -0
- package/src/integrations/QuantumMetric/index.js +1 -0
- package/src/integrations/QuoraPixel/browser.js +64 -0
- package/src/integrations/QuoraPixel/constants.js +15 -0
- package/src/integrations/QuoraPixel/index.js +1 -0
- package/src/integrations/QuoraPixel/nativeSdkLoader.js +21 -0
- package/src/integrations/RedditPixel/browser.js +98 -0
- package/src/integrations/RedditPixel/constants.js +13 -0
- package/src/integrations/RedditPixel/index.js +1 -0
- package/src/integrations/RedditPixel/nativeSdkLoader.js +21 -0
- package/src/integrations/Refiner/browser.js +119 -0
- package/src/integrations/Refiner/constants.js +8 -0
- package/src/integrations/Refiner/index.js +1 -0
- package/src/integrations/Refiner/nativeSdkLoader.js +20 -0
- package/src/integrations/Refiner/utils.js +44 -0
- package/src/integrations/Rockerbox/browser.js +89 -0
- package/src/integrations/Rockerbox/constants.js +12 -0
- package/src/integrations/Rockerbox/index.js +1 -0
- package/src/integrations/Rockerbox/nativeSdkLoader.js +32 -0
- package/src/integrations/RollBar/browser.js +92 -0
- package/src/integrations/RollBar/constants.js +13 -0
- package/src/integrations/RollBar/index.js +1 -0
- package/src/integrations/RollBar/nativeSdkLoader.js +383 -0
- package/src/integrations/Satismeter/browser.js +94 -0
- package/src/integrations/Satismeter/constants.js +9 -0
- package/src/integrations/Satismeter/index.js +1 -0
- package/src/integrations/Satismeter/nativeSdkLoader.js +23 -0
- package/src/integrations/Satismeter/util.js +54 -0
- package/src/integrations/Sendinblue/browser.js +111 -0
- package/src/integrations/Sendinblue/constants.js +25 -0
- package/src/integrations/Sendinblue/index.js +1 -0
- package/src/integrations/Sendinblue/nativeSdkLoader.js +36 -0
- package/src/integrations/Sendinblue/utils.js +112 -0
- package/src/integrations/Sentry/browser.js +118 -0
- package/src/integrations/Sentry/constants.js +8 -0
- package/src/integrations/Sentry/index.js +1 -0
- package/src/integrations/Sentry/utils.js +80 -0
- package/src/integrations/Shynet/browser.js +97 -0
- package/src/integrations/Shynet/constants.js +15 -0
- package/src/integrations/Shynet/index.js +1 -0
- package/src/integrations/SnapEngage/browser.js +75 -0
- package/src/integrations/SnapEngage/constants.js +12 -0
- package/src/integrations/SnapEngage/index.js +1 -0
- package/src/integrations/SnapEngage/nativeSdkLoader.js +24 -0
- package/src/integrations/SnapEngage/util.js +63 -0
- package/src/integrations/SnapPixel/browser.js +232 -0
- package/src/integrations/SnapPixel/constants.js +13 -0
- package/src/integrations/SnapPixel/index.js +1 -0
- package/src/integrations/SnapPixel/nativeSdkLoader.js +20 -0
- package/src/integrations/SnapPixel/util.js +211 -0
- package/src/integrations/TVSquared/browser.js +96 -0
- package/src/integrations/TVSquared/constants.js +14 -0
- package/src/integrations/TVSquared/index.js +1 -0
- package/src/integrations/TVSquared/utils.js +40 -0
- package/src/integrations/TiktokAds/browser.js +103 -0
- package/src/integrations/TiktokAds/constants.js +86 -0
- package/src/integrations/TiktokAds/index.js +1 -0
- package/src/integrations/TiktokAds/nativeSdkLoader.js +52 -0
- package/src/integrations/TiktokAds/util.js +71 -0
- package/src/integrations/VWO/browser.js +131 -0
- package/src/integrations/VWO/constants.js +13 -0
- package/src/integrations/VWO/index.js +1 -0
- package/src/integrations/VWO/nativeSdkLoader.js +64 -0
- package/src/integrations/Vero/browser.js +165 -0
- package/src/integrations/Vero/constants.js +8 -0
- package/src/integrations/Vero/index.js +1 -0
- package/src/integrations/Woopra/browser.js +83 -0
- package/src/integrations/Woopra/constants.js +8 -0
- package/src/integrations/Woopra/index.js +1 -0
- package/src/integrations/Woopra/nativeSdkLoader.js +43 -0
- package/src/integrations/YandexMetrica/browser.js +143 -0
- package/src/integrations/YandexMetrica/constants.js +10 -0
- package/src/integrations/YandexMetrica/index.js +1 -0
- package/src/integrations/YandexMetrica/nativeSdkLoader.js +35 -0
- package/src/integrations/YandexMetrica/utils.js +138 -0
- package/src/integrations/index.js +155 -0
- package/src/service-worker/index.js +466 -0
- package/src/utils/EventRepository.js +78 -0
- package/src/utils/HtElement.js +33 -0
- package/src/utils/HtElementBuilder.js +29 -0
- package/src/utils/IntegrationsData.js +61 -0
- package/src/utils/JSFileLoader.js +66 -0
- package/src/utils/ObjectUtils.js +68 -0
- package/src/utils/PreProcessQueue.js +66 -0
- package/src/utils/RudderApp.js +9 -0
- package/src/utils/RudderContext.js +21 -0
- package/src/utils/RudderInfo.js +41 -0
- package/src/utils/RudderMessage.js +28 -0
- package/src/utils/ScriptLoader.js +53 -0
- package/src/utils/beaconQueue.js +133 -0
- package/src/utils/camelcase.js +48 -0
- package/src/utils/cdnPaths.js +43 -0
- package/src/utils/clientHint.js +28 -0
- package/src/utils/client_server_name.js +78 -0
- package/src/utils/commonUtils.js +207 -0
- package/src/utils/config_to_integration_names.js +80 -0
- package/src/utils/constants.js +82 -0
- package/src/utils/errorHandler.js +88 -0
- package/src/utils/eventProcessorUtils.js +53 -0
- package/src/utils/integration_cname.js +156 -0
- package/src/utils/linker/base64decoder.js +31 -0
- package/src/utils/linker/crc32.js +42 -0
- package/src/utils/linker/index.js +134 -0
- package/src/utils/linker/userLib.js +20 -0
- package/src/utils/logUtil.js +51 -0
- package/src/utils/logger.js +106 -0
- package/src/utils/navigator.js +32 -0
- package/src/utils/notifyError.js +16 -0
- package/src/utils/pageProperties.js +74 -0
- package/src/utils/screenDetails.js +23 -0
- package/src/utils/storage/cookie.js +93 -0
- package/src/utils/storage/index.js +3 -0
- package/src/utils/storage/storage.js +459 -0
- package/src/utils/storage/store.js +72 -0
- package/src/utils/storage/v3DecryptionUtils.js +19 -0
- package/src/utils/utils.js +966 -0
- package/src/utils/xhrModule.js +111 -0
- package/stats/AdobeAnalytics.html +4044 -0
- package/stats/Adroll.html +4044 -0
- package/stats/Amplitude.html +4044 -0
- package/stats/Appcues.html +4044 -0
- package/stats/BingAds.html +4044 -0
- package/stats/Braze.html +4044 -0
- package/stats/Bugsnag.html +4044 -0
- package/stats/Chartbeat.html +4044 -0
- package/stats/Clevertap.html +4044 -0
- package/stats/Comscore.html +4044 -0
- package/stats/ConvertFlow.html +4044 -0
- package/stats/Criteo.html +4044 -0
- package/stats/CustomerIO.html +4044 -0
- package/stats/DCMFloodlight.html +4044 -0
- package/stats/Drip.html +4044 -0
- package/stats/Engage.html +4044 -0
- package/stats/FacebookPixel.html +4044 -0
- package/stats/Fullstory.html +4044 -0
- package/stats/GA.html +4044 -0
- package/stats/GA360.html +4044 -0
- package/stats/GA4.html +4044 -0
- package/stats/GoogleAds.html +4044 -0
- package/stats/GoogleOptimize.html +4044 -0
- package/stats/GoogleTagManager.html +4044 -0
- package/stats/Heap.html +4044 -0
- package/stats/Hotjar.html +4044 -0
- package/stats/HubSpot.html +4044 -0
- package/stats/INTERCOM.html +4044 -0
- package/stats/Iterable.html +4044 -0
- package/stats/June.html +4044 -0
- package/stats/Keen.html +4044 -0
- package/stats/Kissmetrics.html +4044 -0
- package/stats/Klaviyo.html +4044 -0
- package/stats/LaunchDarkly.html +4044 -0
- package/stats/LinkedInInsightTag.html +4044 -0
- package/stats/LiveChat.html +4044 -0
- package/stats/Lotame.html +4044 -0
- package/stats/Lytics.html +4044 -0
- package/stats/Matomo.html +4044 -0
- package/stats/Mixpanel.html +4044 -0
- package/stats/MoEngage.html +4044 -0
- package/stats/Mouseflow.html +4044 -0
- package/stats/Optimizely.html +4044 -0
- package/stats/Pendo.html +4044 -0
- package/stats/PinterestTag.html +4044 -0
- package/stats/Podsights.html +4044 -0
- package/stats/PostAffiliatePro.html +4044 -0
- package/stats/Posthog.html +4044 -0
- package/stats/ProfitWell.html +4044 -0
- package/stats/Qualaroo.html +4044 -0
- package/stats/Qualtrics.html +4044 -0
- package/stats/QuantumMetric.html +4044 -0
- package/stats/QuoraPixel.html +4044 -0
- package/stats/RedditPixel.html +4044 -0
- package/stats/Refiner.html +4044 -0
- package/stats/Rockerbox.html +4044 -0
- package/stats/RollBar.html +4044 -0
- package/stats/Sentry.html +4044 -0
- package/stats/Shynet.html +4044 -0
- package/stats/SnapEngage.html +4044 -0
- package/stats/SnapPixel.html +4044 -0
- package/stats/TVSquared.html +4044 -0
- package/stats/VWO.html +4044 -0
- package/stats/Vero.html +4044 -0
- package/stats/Woopra.html +4044 -0
- package/stats/YandexMetrica.html +4044 -0
- package/stats/rudder-analytics.html +4044 -0
- package/index.es.js +0 -1
- package/index.js +0 -1
- package/service-worker/index.js +0 -5346
- /package/{index.d.ts → packages/npm/index.d.ts} +0 -0
- /package/{service-worker → src/service-worker}/index.d.ts +0 -0
@@ -0,0 +1,1480 @@
|
|
1
|
+
const mapping = [
|
2
|
+
{
|
3
|
+
sourceKeys: 'properties.product_id',
|
4
|
+
destinationKey: 'item_id',
|
5
|
+
},
|
6
|
+
{
|
7
|
+
sourceKeys: 'properties.price',
|
8
|
+
destinationKey: 'price',
|
9
|
+
},
|
10
|
+
];
|
11
|
+
|
12
|
+
const productInfo1 = {
|
13
|
+
product_id: '123',
|
14
|
+
sku: 'G-14',
|
15
|
+
name: 'Cards',
|
16
|
+
price: 14.99,
|
17
|
+
position: 1,
|
18
|
+
category: 'Games',
|
19
|
+
url: 'https://www.website.com/product/path',
|
20
|
+
image_url: 'https://www.website.com/product/path.jpg',
|
21
|
+
};
|
22
|
+
|
23
|
+
const productInfo2 = {
|
24
|
+
currency: 'INR',
|
25
|
+
product_id: '345',
|
26
|
+
sku: 'G-32',
|
27
|
+
name: 'UNO',
|
28
|
+
price: 3.99,
|
29
|
+
position: 2,
|
30
|
+
category: 'Games',
|
31
|
+
};
|
32
|
+
|
33
|
+
const inputProductsArray = [productInfo1, productInfo2];
|
34
|
+
|
35
|
+
const outputProductsArray = [
|
36
|
+
{
|
37
|
+
image_url: 'https://www.website.com/product/path.jpg',
|
38
|
+
index: 1,
|
39
|
+
item_category: 'Games',
|
40
|
+
item_id: '123',
|
41
|
+
item_name: 'Cards',
|
42
|
+
price: 14.99,
|
43
|
+
sku: 'G-14',
|
44
|
+
url: 'https://www.website.com/product/path',
|
45
|
+
},
|
46
|
+
{
|
47
|
+
currency: 'INR',
|
48
|
+
index: 2,
|
49
|
+
item_category: 'Games',
|
50
|
+
item_id: '345',
|
51
|
+
item_name: 'UNO',
|
52
|
+
price: 3.99,
|
53
|
+
sku: 'G-32',
|
54
|
+
},
|
55
|
+
];
|
56
|
+
|
57
|
+
const expectedItemsArray = [
|
58
|
+
{
|
59
|
+
index: 1,
|
60
|
+
item_category: 'Games',
|
61
|
+
item_id: '123',
|
62
|
+
item_name: 'Cards',
|
63
|
+
price: 14.99,
|
64
|
+
},
|
65
|
+
{
|
66
|
+
index: 2,
|
67
|
+
item_category: 'Games',
|
68
|
+
item_id: '345',
|
69
|
+
item_name: 'UNO',
|
70
|
+
price: 3.99,
|
71
|
+
},
|
72
|
+
];
|
73
|
+
|
74
|
+
const identifyEvents = [
|
75
|
+
{
|
76
|
+
description: 'Event with userId and traits',
|
77
|
+
input: {
|
78
|
+
message: {
|
79
|
+
userId: 'user@1',
|
80
|
+
context: {
|
81
|
+
traits: {
|
82
|
+
age: 40,
|
83
|
+
userInterest: 'high',
|
84
|
+
source: 'RudderStack',
|
85
|
+
},
|
86
|
+
},
|
87
|
+
integrations: {},
|
88
|
+
},
|
89
|
+
},
|
90
|
+
output: {
|
91
|
+
userId: {
|
92
|
+
user_id: 'user@1',
|
93
|
+
},
|
94
|
+
traits: {
|
95
|
+
age: 40,
|
96
|
+
userInterest: 'high',
|
97
|
+
source: 'RudderStack',
|
98
|
+
},
|
99
|
+
},
|
100
|
+
},
|
101
|
+
];
|
102
|
+
|
103
|
+
const trackEvents = [
|
104
|
+
{
|
105
|
+
description: 'Product Search event',
|
106
|
+
input: {
|
107
|
+
message: {
|
108
|
+
event: 'Products Searched',
|
109
|
+
properties: {
|
110
|
+
query: 't-shirts',
|
111
|
+
brand: 'H&M',
|
112
|
+
},
|
113
|
+
integrations: {},
|
114
|
+
},
|
115
|
+
},
|
116
|
+
output: {
|
117
|
+
event: 'search',
|
118
|
+
params: { brand: 'H&M', search_term: 't-shirts', send_to: 'G-123456' },
|
119
|
+
},
|
120
|
+
},
|
121
|
+
{
|
122
|
+
description: 'Product List Viewed event',
|
123
|
+
input: {
|
124
|
+
message: {
|
125
|
+
event: 'Product List Viewed',
|
126
|
+
properties: {
|
127
|
+
list_id: 'list1',
|
128
|
+
category: "What's New",
|
129
|
+
users: {},
|
130
|
+
products: [
|
131
|
+
{
|
132
|
+
product_id: '223344ffdds3ff3',
|
133
|
+
sku: '12345',
|
134
|
+
name: 'Just Another Game',
|
135
|
+
price: 22,
|
136
|
+
rating: '',
|
137
|
+
categories: [],
|
138
|
+
position: 2,
|
139
|
+
category: 'Games and Entertainment',
|
140
|
+
url: 'https://www.myecommercewebsite.com/product',
|
141
|
+
image_url: 'https://www.myecommercewebsite.com/product/path.jpg',
|
142
|
+
},
|
143
|
+
{
|
144
|
+
product_id: '343344ff5567ff3',
|
145
|
+
sku: '12346',
|
146
|
+
name: 'Wrestling Trump Cards',
|
147
|
+
price: 4,
|
148
|
+
rating: '',
|
149
|
+
categories: [],
|
150
|
+
position: 21,
|
151
|
+
category: 'Card Games',
|
152
|
+
},
|
153
|
+
],
|
154
|
+
},
|
155
|
+
integrations: {},
|
156
|
+
},
|
157
|
+
},
|
158
|
+
output: {
|
159
|
+
event: 'view_item_list',
|
160
|
+
params: {
|
161
|
+
item_list_id: 'list1',
|
162
|
+
item_list_name: "What's New",
|
163
|
+
items: [
|
164
|
+
{
|
165
|
+
image_url: 'https://www.myecommercewebsite.com/product/path.jpg',
|
166
|
+
index: 2,
|
167
|
+
item_category: 'Games and Entertainment',
|
168
|
+
item_id: '223344ffdds3ff3',
|
169
|
+
item_name: 'Just Another Game',
|
170
|
+
price: 22,
|
171
|
+
sku: '12345',
|
172
|
+
url: 'https://www.myecommercewebsite.com/product',
|
173
|
+
},
|
174
|
+
{
|
175
|
+
index: 21,
|
176
|
+
item_category: 'Card Games',
|
177
|
+
item_id: '343344ff5567ff3',
|
178
|
+
item_name: 'Wrestling Trump Cards',
|
179
|
+
price: 4,
|
180
|
+
sku: '12346',
|
181
|
+
},
|
182
|
+
],
|
183
|
+
send_to: 'G-123456',
|
184
|
+
},
|
185
|
+
},
|
186
|
+
},
|
187
|
+
{
|
188
|
+
description: 'Product List Filtered',
|
189
|
+
input: {
|
190
|
+
message: {
|
191
|
+
event: 'Product List Filtered',
|
192
|
+
properties: {
|
193
|
+
list_id: 'list1',
|
194
|
+
category: "What's New",
|
195
|
+
products: {
|
196
|
+
list_id: 'dealoftheday',
|
197
|
+
filters: [
|
198
|
+
{
|
199
|
+
type: 'department',
|
200
|
+
value: 'health',
|
201
|
+
},
|
202
|
+
{
|
203
|
+
type: 'price',
|
204
|
+
value: 'under-$75',
|
205
|
+
},
|
206
|
+
],
|
207
|
+
sorts: [
|
208
|
+
{
|
209
|
+
type: 'price',
|
210
|
+
value: 'asc',
|
211
|
+
},
|
212
|
+
],
|
213
|
+
products: [
|
214
|
+
{
|
215
|
+
product_id: '5034221345ffcd672315011',
|
216
|
+
sku: '12345',
|
217
|
+
name: 'Whey Protein',
|
218
|
+
price: 55.45,
|
219
|
+
position: 1,
|
220
|
+
category: 'health',
|
221
|
+
url: 'https://www.myecommercewebsite.com/product/product1123',
|
222
|
+
image_url: 'https://www.example.com/product/1123.jpg',
|
223
|
+
},
|
224
|
+
{
|
225
|
+
product_id: '121244455323232326677232',
|
226
|
+
sku: '345667',
|
227
|
+
name: 'Boost',
|
228
|
+
price: 47.85,
|
229
|
+
position: 12,
|
230
|
+
category: 'health',
|
231
|
+
},
|
232
|
+
],
|
233
|
+
},
|
234
|
+
},
|
235
|
+
integrations: {},
|
236
|
+
},
|
237
|
+
},
|
238
|
+
output: {
|
239
|
+
event: 'Product_List_Filtered',
|
240
|
+
params: {
|
241
|
+
category: "What's New",
|
242
|
+
list_id: 'list1',
|
243
|
+
products_filters_0_type: 'department',
|
244
|
+
products_filters_0_value: 'health',
|
245
|
+
products_filters_1_type: 'price',
|
246
|
+
products_filters_1_value: 'under-$75',
|
247
|
+
products_list_id: 'dealoftheday',
|
248
|
+
products_products_0_category: 'health',
|
249
|
+
products_products_0_image_url: 'https://www.example.com/product/1123.jpg',
|
250
|
+
products_products_0_name: 'Whey Protein',
|
251
|
+
products_products_0_position: 1,
|
252
|
+
products_products_0_price: 55.45,
|
253
|
+
products_products_0_product_id: '5034221345ffcd672315011',
|
254
|
+
products_products_0_sku: '12345',
|
255
|
+
products_products_0_url: 'https://www.myecommercewebsite.com/product/product1123',
|
256
|
+
products_products_1_category: 'health',
|
257
|
+
products_products_1_name: 'Boost',
|
258
|
+
products_products_1_position: 12,
|
259
|
+
products_products_1_price: 47.85,
|
260
|
+
products_products_1_product_id: '121244455323232326677232',
|
261
|
+
products_products_1_sku: '345667',
|
262
|
+
products_sorts_0_type: 'price',
|
263
|
+
products_sorts_0_value: 'asc',
|
264
|
+
send_to: 'G-123456',
|
265
|
+
},
|
266
|
+
},
|
267
|
+
},
|
268
|
+
{
|
269
|
+
description: 'Promotion Viewed event',
|
270
|
+
input: {
|
271
|
+
message: {
|
272
|
+
event: 'Promotion Viewed',
|
273
|
+
properties: {
|
274
|
+
promotion_id: 'promo1',
|
275
|
+
creative: 'banner1',
|
276
|
+
name: 'sale',
|
277
|
+
position: 'home_top',
|
278
|
+
},
|
279
|
+
integrations: {},
|
280
|
+
},
|
281
|
+
},
|
282
|
+
output: {
|
283
|
+
event: 'view_promotion',
|
284
|
+
params: {
|
285
|
+
creative_name: 'banner1',
|
286
|
+
creative_slot: 'home_top',
|
287
|
+
promotion_id: 'promo1',
|
288
|
+
promotion_name: 'sale',
|
289
|
+
send_to: 'G-123456',
|
290
|
+
},
|
291
|
+
},
|
292
|
+
},
|
293
|
+
{
|
294
|
+
description: 'Promotion Clicked event',
|
295
|
+
input: {
|
296
|
+
message: {
|
297
|
+
event: 'Promotion Clicked',
|
298
|
+
properties: {
|
299
|
+
promotion_id: 'promo1',
|
300
|
+
creative: 'banner1',
|
301
|
+
name: 'sale',
|
302
|
+
position: 'home_top',
|
303
|
+
},
|
304
|
+
integrations: {},
|
305
|
+
},
|
306
|
+
},
|
307
|
+
output: {
|
308
|
+
event: 'select_promotion',
|
309
|
+
params: {
|
310
|
+
creative_name: 'banner1',
|
311
|
+
creative_slot: 'home_top',
|
312
|
+
promotion_id: 'promo1',
|
313
|
+
promotion_name: 'sale',
|
314
|
+
send_to: 'G-123456',
|
315
|
+
},
|
316
|
+
},
|
317
|
+
},
|
318
|
+
{
|
319
|
+
description: 'Product Clicked event',
|
320
|
+
input: {
|
321
|
+
message: {
|
322
|
+
event: 'Product Clicked',
|
323
|
+
properties: {
|
324
|
+
product_id: '123',
|
325
|
+
sku: 'F15',
|
326
|
+
category: 'Games',
|
327
|
+
name: 'Game',
|
328
|
+
brand: 'Gamepro',
|
329
|
+
variant: '111',
|
330
|
+
price: 13.49,
|
331
|
+
quantity: 11,
|
332
|
+
coupon: 'DISC21',
|
333
|
+
position: 1,
|
334
|
+
url: 'https://www.website.com/product/path',
|
335
|
+
image_url: 'https://www.website.com/product/path.webp',
|
336
|
+
},
|
337
|
+
integrations: {},
|
338
|
+
},
|
339
|
+
},
|
340
|
+
output: {
|
341
|
+
event: 'select_item',
|
342
|
+
params: {
|
343
|
+
image_url: 'https://www.website.com/product/path.webp',
|
344
|
+
item_list_name: 'Games',
|
345
|
+
items: [
|
346
|
+
{
|
347
|
+
coupon: 'DISC21',
|
348
|
+
index: 1,
|
349
|
+
item_brand: 'Gamepro',
|
350
|
+
item_category: 'Games',
|
351
|
+
item_id: '123',
|
352
|
+
item_name: 'Game',
|
353
|
+
item_variant: '111',
|
354
|
+
price: 13.49,
|
355
|
+
quantity: 11,
|
356
|
+
},
|
357
|
+
],
|
358
|
+
sku: 'F15',
|
359
|
+
url: 'https://www.website.com/product/path',
|
360
|
+
send_to: 'G-123456',
|
361
|
+
},
|
362
|
+
},
|
363
|
+
},
|
364
|
+
{
|
365
|
+
description: 'Product Viewed event',
|
366
|
+
input: {
|
367
|
+
message: {
|
368
|
+
userId: '1234',
|
369
|
+
event: 'Product Viewed',
|
370
|
+
properties: {
|
371
|
+
product_id: '123',
|
372
|
+
sku: 'F15',
|
373
|
+
category: 'Games',
|
374
|
+
name: 'Game',
|
375
|
+
brand: 'Gamepro',
|
376
|
+
variant: '111',
|
377
|
+
price: 13.49,
|
378
|
+
quantity: 11,
|
379
|
+
coupon: 'DISC21',
|
380
|
+
currency: 'USD',
|
381
|
+
position: 1,
|
382
|
+
url: 'https://www.website.com/product/path',
|
383
|
+
image_url: 'https://www.website.com/product/path.webp',
|
384
|
+
},
|
385
|
+
},
|
386
|
+
},
|
387
|
+
output: {
|
388
|
+
event: 'view_item',
|
389
|
+
params: {
|
390
|
+
image_url: 'https://www.website.com/product/path.webp',
|
391
|
+
currency: 'USD',
|
392
|
+
value: 13.49,
|
393
|
+
items: [
|
394
|
+
{
|
395
|
+
coupon: 'DISC21',
|
396
|
+
index: 1,
|
397
|
+
item_brand: 'Gamepro',
|
398
|
+
item_category: 'Games',
|
399
|
+
item_id: '123',
|
400
|
+
item_name: 'Game',
|
401
|
+
item_variant: '111',
|
402
|
+
price: 13.49,
|
403
|
+
quantity: 11,
|
404
|
+
},
|
405
|
+
],
|
406
|
+
sku: 'F15',
|
407
|
+
url: 'https://www.website.com/product/path',
|
408
|
+
user_id: '1234',
|
409
|
+
send_to: 'G-123456',
|
410
|
+
},
|
411
|
+
},
|
412
|
+
},
|
413
|
+
{
|
414
|
+
description: 'Product Added event',
|
415
|
+
input: {
|
416
|
+
message: {
|
417
|
+
event: 'Product Added',
|
418
|
+
properties: {
|
419
|
+
product_id: '123',
|
420
|
+
sku: 'F15',
|
421
|
+
category: 'Games',
|
422
|
+
name: 'Game',
|
423
|
+
brand: 'Gamepro',
|
424
|
+
variant: '111',
|
425
|
+
price: 13.49,
|
426
|
+
quantity: 11,
|
427
|
+
coupon: 'DISC21',
|
428
|
+
position: 1,
|
429
|
+
url: 'https://www.website.com/product/path',
|
430
|
+
image_url: 'https://www.website.com/product/path.webp',
|
431
|
+
},
|
432
|
+
},
|
433
|
+
},
|
434
|
+
output: {
|
435
|
+
event: 'add_to_cart',
|
436
|
+
params: {
|
437
|
+
image_url: 'https://www.website.com/product/path.webp',
|
438
|
+
currency: 'USD',
|
439
|
+
value: 148.39,
|
440
|
+
items: [
|
441
|
+
{
|
442
|
+
coupon: 'DISC21',
|
443
|
+
index: 1,
|
444
|
+
item_brand: 'Gamepro',
|
445
|
+
item_category: 'Games',
|
446
|
+
item_id: '123',
|
447
|
+
item_name: 'Game',
|
448
|
+
item_variant: '111',
|
449
|
+
price: 13.49,
|
450
|
+
quantity: 11,
|
451
|
+
},
|
452
|
+
],
|
453
|
+
sku: 'F15',
|
454
|
+
url: 'https://www.website.com/product/path',
|
455
|
+
send_to: 'G-123456',
|
456
|
+
},
|
457
|
+
},
|
458
|
+
},
|
459
|
+
{
|
460
|
+
description: 'Product Removed event',
|
461
|
+
input: {
|
462
|
+
message: {
|
463
|
+
event: 'Product Removed',
|
464
|
+
properties: {
|
465
|
+
product_id: '123',
|
466
|
+
sku: 'F15',
|
467
|
+
category: 'Games',
|
468
|
+
name: 'Game',
|
469
|
+
brand: 'Gamepro',
|
470
|
+
variant: '111',
|
471
|
+
price: 13.49,
|
472
|
+
quantity: 11,
|
473
|
+
coupon: 'DISC21',
|
474
|
+
position: 1,
|
475
|
+
url: 'https://www.website.com/product/path',
|
476
|
+
image_url: 'https://www.website.com/product/path.webp',
|
477
|
+
},
|
478
|
+
},
|
479
|
+
},
|
480
|
+
output: {
|
481
|
+
event: 'remove_from_cart',
|
482
|
+
params: {
|
483
|
+
image_url: 'https://www.website.com/product/path.webp',
|
484
|
+
currency: 'USD',
|
485
|
+
value: 148.39,
|
486
|
+
items: [
|
487
|
+
{
|
488
|
+
coupon: 'DISC21',
|
489
|
+
index: 1,
|
490
|
+
item_brand: 'Gamepro',
|
491
|
+
item_category: 'Games',
|
492
|
+
item_id: '123',
|
493
|
+
item_name: 'Game',
|
494
|
+
item_variant: '111',
|
495
|
+
price: 13.49,
|
496
|
+
quantity: 11,
|
497
|
+
},
|
498
|
+
],
|
499
|
+
sku: 'F15',
|
500
|
+
url: 'https://www.website.com/product/path',
|
501
|
+
send_to: 'G-123456',
|
502
|
+
},
|
503
|
+
},
|
504
|
+
},
|
505
|
+
{
|
506
|
+
description: 'Cart Viewed event',
|
507
|
+
input: {
|
508
|
+
message: {
|
509
|
+
event: 'Cart Viewed',
|
510
|
+
properties: {
|
511
|
+
cart_id: '12345',
|
512
|
+
total: 21,
|
513
|
+
products: [
|
514
|
+
{
|
515
|
+
product_id: '123',
|
516
|
+
sku: 'G-14',
|
517
|
+
name: 'Cards',
|
518
|
+
price: 14.99,
|
519
|
+
position: 1,
|
520
|
+
category: 'Games',
|
521
|
+
url: 'https://www.website.com/product/path',
|
522
|
+
image_url: 'https://www.website.com/product/path.jpg',
|
523
|
+
},
|
524
|
+
{
|
525
|
+
product_id: '345',
|
526
|
+
sku: 'G-32',
|
527
|
+
name: 'UNO',
|
528
|
+
price: 3.99,
|
529
|
+
position: 2,
|
530
|
+
category: 'Games',
|
531
|
+
},
|
532
|
+
],
|
533
|
+
},
|
534
|
+
},
|
535
|
+
},
|
536
|
+
output: {
|
537
|
+
event: 'view_cart',
|
538
|
+
params: {
|
539
|
+
cart_id: '12345',
|
540
|
+
currency: 'USD',
|
541
|
+
value: 21,
|
542
|
+
items: [
|
543
|
+
{
|
544
|
+
index: 1,
|
545
|
+
image_url: 'https://www.website.com/product/path.jpg',
|
546
|
+
item_category: 'Games',
|
547
|
+
item_id: '123',
|
548
|
+
item_name: 'Cards',
|
549
|
+
price: 14.99,
|
550
|
+
sku: 'G-14',
|
551
|
+
url: 'https://www.website.com/product/path',
|
552
|
+
},
|
553
|
+
{
|
554
|
+
index: 2,
|
555
|
+
item_category: 'Games',
|
556
|
+
item_id: '345',
|
557
|
+
item_name: 'UNO',
|
558
|
+
price: 3.99,
|
559
|
+
sku: 'G-32',
|
560
|
+
},
|
561
|
+
],
|
562
|
+
send_to: 'G-123456',
|
563
|
+
},
|
564
|
+
},
|
565
|
+
},
|
566
|
+
{
|
567
|
+
description: 'Checkout Started event',
|
568
|
+
input: {
|
569
|
+
message: {
|
570
|
+
event: 'Checkout Started',
|
571
|
+
properties: {
|
572
|
+
order_id: '1234',
|
573
|
+
affiliation: 'Apple Store',
|
574
|
+
value: 20,
|
575
|
+
revenue: 15.0,
|
576
|
+
shipping: 4,
|
577
|
+
tax: 1,
|
578
|
+
discount: 1.5,
|
579
|
+
coupon: 'ImagePro',
|
580
|
+
currency: 'USD',
|
581
|
+
products: [
|
582
|
+
{
|
583
|
+
product_id: '123',
|
584
|
+
sku: 'G-32',
|
585
|
+
name: 'Monopoly',
|
586
|
+
price: 14,
|
587
|
+
quantity: 1,
|
588
|
+
category: 'Games',
|
589
|
+
url: 'https://www.website.com/product/path',
|
590
|
+
image_url: 'https://www.website.com/product/path.jpg',
|
591
|
+
},
|
592
|
+
{
|
593
|
+
product_id: '345',
|
594
|
+
sku: 'F-32',
|
595
|
+
name: 'UNO',
|
596
|
+
price: 3.45,
|
597
|
+
quantity: 2,
|
598
|
+
category: 'Games',
|
599
|
+
},
|
600
|
+
],
|
601
|
+
},
|
602
|
+
},
|
603
|
+
},
|
604
|
+
output: {
|
605
|
+
event: 'begin_checkout',
|
606
|
+
params: {
|
607
|
+
currency: 'USD',
|
608
|
+
affiliation: 'Apple Store',
|
609
|
+
coupon: 'ImagePro',
|
610
|
+
value: 20,
|
611
|
+
order_id: '1234',
|
612
|
+
shipping: 4,
|
613
|
+
tax: 1,
|
614
|
+
discount: 1.5,
|
615
|
+
items: [
|
616
|
+
{
|
617
|
+
image_url: 'https://www.website.com/product/path.jpg',
|
618
|
+
item_category: 'Games',
|
619
|
+
item_id: '123',
|
620
|
+
item_name: 'Monopoly',
|
621
|
+
price: 14,
|
622
|
+
sku: 'G-32',
|
623
|
+
quantity: 1,
|
624
|
+
url: 'https://www.website.com/product/path',
|
625
|
+
},
|
626
|
+
{
|
627
|
+
item_category: 'Games',
|
628
|
+
item_id: '345',
|
629
|
+
item_name: 'UNO',
|
630
|
+
price: 3.45,
|
631
|
+
quantity: 2,
|
632
|
+
sku: 'F-32',
|
633
|
+
},
|
634
|
+
],
|
635
|
+
send_to: 'G-123456',
|
636
|
+
},
|
637
|
+
},
|
638
|
+
},
|
639
|
+
{
|
640
|
+
description: 'Checkout Step Viewed event',
|
641
|
+
input: {
|
642
|
+
message: {
|
643
|
+
event: 'Checkout Step Viewed',
|
644
|
+
properties: {
|
645
|
+
checkout_id: '123',
|
646
|
+
step: 1,
|
647
|
+
shipping_method: 'DHL',
|
648
|
+
payment_method: 'Mastercard',
|
649
|
+
},
|
650
|
+
},
|
651
|
+
},
|
652
|
+
output: {
|
653
|
+
event: 'Checkout_Step_Viewed',
|
654
|
+
params: {
|
655
|
+
checkout_id: '123',
|
656
|
+
step: 1,
|
657
|
+
shipping_method: 'DHL',
|
658
|
+
payment_method: 'Mastercard',
|
659
|
+
send_to: 'G-123456',
|
660
|
+
},
|
661
|
+
},
|
662
|
+
},
|
663
|
+
{
|
664
|
+
description: 'Checkout Step Completed event',
|
665
|
+
input: {
|
666
|
+
message: {
|
667
|
+
event: 'Checkout Step Completed',
|
668
|
+
properties: {
|
669
|
+
total: 13,
|
670
|
+
checkout_id: '123',
|
671
|
+
step: 1,
|
672
|
+
shipping_method: 'DHL',
|
673
|
+
payment_method: 'Mastercard',
|
674
|
+
},
|
675
|
+
},
|
676
|
+
},
|
677
|
+
output: {
|
678
|
+
event: 'add_shipping_info',
|
679
|
+
params: {
|
680
|
+
currency: 'USD',
|
681
|
+
checkout_id: '123',
|
682
|
+
step: 1,
|
683
|
+
shipping_tier: 'DHL',
|
684
|
+
payment_method: 'Mastercard',
|
685
|
+
value: 13,
|
686
|
+
send_to: 'G-123456',
|
687
|
+
},
|
688
|
+
},
|
689
|
+
},
|
690
|
+
{
|
691
|
+
description: 'Payment Info Entered event',
|
692
|
+
input: {
|
693
|
+
message: {
|
694
|
+
event: 'Payment Info Entered',
|
695
|
+
properties: {
|
696
|
+
total: 10,
|
697
|
+
checkout_id: '12344',
|
698
|
+
order_id: '123',
|
699
|
+
},
|
700
|
+
},
|
701
|
+
},
|
702
|
+
output: {
|
703
|
+
event: 'add_payment_info',
|
704
|
+
params: {
|
705
|
+
currency: 'USD',
|
706
|
+
checkout_id: '12344',
|
707
|
+
order_id: '123',
|
708
|
+
value: 10,
|
709
|
+
send_to: 'G-123456',
|
710
|
+
},
|
711
|
+
},
|
712
|
+
},
|
713
|
+
{
|
714
|
+
description: 'Order Updated event',
|
715
|
+
input: {
|
716
|
+
message: {
|
717
|
+
event: 'Order Updated',
|
718
|
+
properties: {
|
719
|
+
order_id: '1234',
|
720
|
+
affiliation: 'Apple Store',
|
721
|
+
value: 20,
|
722
|
+
revenue: 15.0,
|
723
|
+
shipping: 22,
|
724
|
+
tax: 1,
|
725
|
+
discount: 1.5,
|
726
|
+
coupon: 'ImagePro',
|
727
|
+
currency: 'USD',
|
728
|
+
products: [
|
729
|
+
{
|
730
|
+
product_id: '123',
|
731
|
+
sku: 'G-32',
|
732
|
+
name: 'Monopoly',
|
733
|
+
price: 14,
|
734
|
+
quantity: 1,
|
735
|
+
category: 'Games',
|
736
|
+
url: 'https://www.website.com/product/path',
|
737
|
+
image_url: 'https://www.website.com/product/path.jpg',
|
738
|
+
},
|
739
|
+
{
|
740
|
+
product_id: '345',
|
741
|
+
sku: 'F-32',
|
742
|
+
name: 'UNO',
|
743
|
+
price: 3.45,
|
744
|
+
quantity: 2,
|
745
|
+
category: 'Games',
|
746
|
+
},
|
747
|
+
],
|
748
|
+
},
|
749
|
+
},
|
750
|
+
},
|
751
|
+
output: {
|
752
|
+
event: 'Order_Updated',
|
753
|
+
params: {
|
754
|
+
affiliation: 'Apple Store',
|
755
|
+
coupon: 'ImagePro',
|
756
|
+
currency: 'USD',
|
757
|
+
discount: 1.5,
|
758
|
+
order_id: '1234',
|
759
|
+
products_0_category: 'Games',
|
760
|
+
products_0_image_url: 'https://www.website.com/product/path.jpg',
|
761
|
+
products_0_name: 'Monopoly',
|
762
|
+
products_0_price: 14,
|
763
|
+
products_0_product_id: '123',
|
764
|
+
products_0_quantity: 1,
|
765
|
+
products_0_sku: 'G-32',
|
766
|
+
products_0_url: 'https://www.website.com/product/path',
|
767
|
+
products_1_category: 'Games',
|
768
|
+
products_1_name: 'UNO',
|
769
|
+
products_1_price: 3.45,
|
770
|
+
products_1_product_id: '345',
|
771
|
+
products_1_quantity: 2,
|
772
|
+
products_1_sku: 'F-32',
|
773
|
+
revenue: 15,
|
774
|
+
send_to: 'G-123456',
|
775
|
+
shipping: 22,
|
776
|
+
tax: 1,
|
777
|
+
value: 20,
|
778
|
+
},
|
779
|
+
},
|
780
|
+
},
|
781
|
+
{
|
782
|
+
description: 'Order Completed event',
|
783
|
+
input: {
|
784
|
+
message: {
|
785
|
+
event: 'Order Completed',
|
786
|
+
properties: {
|
787
|
+
checkout_id: '12345',
|
788
|
+
order_id: '1234',
|
789
|
+
affiliation: 'Apple Store',
|
790
|
+
total: 20,
|
791
|
+
revenue: 15.0,
|
792
|
+
shipping: 4,
|
793
|
+
tax: 1,
|
794
|
+
discount: 1.5,
|
795
|
+
coupon: 'ImagePro',
|
796
|
+
currency: 'USD',
|
797
|
+
products: [
|
798
|
+
{
|
799
|
+
product_id: '123',
|
800
|
+
sku: 'G-32',
|
801
|
+
name: 'Monopoly',
|
802
|
+
price: 14,
|
803
|
+
quantity: 1,
|
804
|
+
category: 'Games',
|
805
|
+
url: 'https://www.website.com/product/path',
|
806
|
+
image_url: 'https://www.website.com/product/path.jpg',
|
807
|
+
},
|
808
|
+
{
|
809
|
+
product_id: '345',
|
810
|
+
sku: 'F-32',
|
811
|
+
name: 'UNO',
|
812
|
+
price: 3.45,
|
813
|
+
quantity: 2,
|
814
|
+
category: 'Games',
|
815
|
+
},
|
816
|
+
],
|
817
|
+
},
|
818
|
+
},
|
819
|
+
},
|
820
|
+
output: {
|
821
|
+
event: 'purchase',
|
822
|
+
params: {
|
823
|
+
affiliation: 'Apple Store',
|
824
|
+
checkout_id: '12345',
|
825
|
+
coupon: 'ImagePro',
|
826
|
+
currency: 'USD',
|
827
|
+
discount: 1.5,
|
828
|
+
items: [
|
829
|
+
{
|
830
|
+
image_url: 'https://www.website.com/product/path.jpg',
|
831
|
+
item_category: 'Games',
|
832
|
+
item_id: '123',
|
833
|
+
item_name: 'Monopoly',
|
834
|
+
price: 14,
|
835
|
+
quantity: 1,
|
836
|
+
sku: 'G-32',
|
837
|
+
url: 'https://www.website.com/product/path',
|
838
|
+
},
|
839
|
+
{
|
840
|
+
item_category: 'Games',
|
841
|
+
item_id: '345',
|
842
|
+
item_name: 'UNO',
|
843
|
+
price: 3.45,
|
844
|
+
quantity: 2,
|
845
|
+
sku: 'F-32',
|
846
|
+
},
|
847
|
+
],
|
848
|
+
send_to: 'G-123456',
|
849
|
+
shipping: 4,
|
850
|
+
tax: 1,
|
851
|
+
transaction_id: '1234',
|
852
|
+
value: 20,
|
853
|
+
},
|
854
|
+
},
|
855
|
+
},
|
856
|
+
{
|
857
|
+
description: 'Order Refunded event',
|
858
|
+
input: {
|
859
|
+
message: {
|
860
|
+
event: 'Order Refunded',
|
861
|
+
properties: {
|
862
|
+
order_id: '1234',
|
863
|
+
total: 20,
|
864
|
+
currency: 'USD',
|
865
|
+
products: [
|
866
|
+
{
|
867
|
+
product_id: '123',
|
868
|
+
sku: 'G-32',
|
869
|
+
name: 'Monopoly',
|
870
|
+
price: 17,
|
871
|
+
quantity: 1,
|
872
|
+
category: 'Games',
|
873
|
+
url: 'https://www.website.com/product/path',
|
874
|
+
image_url: 'https://www.website.com/product/path.jpg',
|
875
|
+
},
|
876
|
+
{
|
877
|
+
product_id: '345',
|
878
|
+
sku: 'F-32',
|
879
|
+
name: 'UNO',
|
880
|
+
price: 3,
|
881
|
+
quantity: 1,
|
882
|
+
category: 'Games',
|
883
|
+
},
|
884
|
+
],
|
885
|
+
},
|
886
|
+
},
|
887
|
+
},
|
888
|
+
output: {
|
889
|
+
event: 'refund',
|
890
|
+
params: {
|
891
|
+
currency: 'USD',
|
892
|
+
items: [
|
893
|
+
{
|
894
|
+
image_url: 'https://www.website.com/product/path.jpg',
|
895
|
+
item_category: 'Games',
|
896
|
+
item_id: '123',
|
897
|
+
item_name: 'Monopoly',
|
898
|
+
price: 17,
|
899
|
+
quantity: 1,
|
900
|
+
sku: 'G-32',
|
901
|
+
url: 'https://www.website.com/product/path',
|
902
|
+
},
|
903
|
+
{
|
904
|
+
item_category: 'Games',
|
905
|
+
item_id: '345',
|
906
|
+
item_name: 'UNO',
|
907
|
+
price: 3,
|
908
|
+
quantity: 1,
|
909
|
+
sku: 'F-32',
|
910
|
+
},
|
911
|
+
],
|
912
|
+
send_to: 'G-123456',
|
913
|
+
transaction_id: '1234',
|
914
|
+
value: 20,
|
915
|
+
},
|
916
|
+
},
|
917
|
+
},
|
918
|
+
{
|
919
|
+
description: 'Order Cancelled event',
|
920
|
+
input: {
|
921
|
+
message: {
|
922
|
+
event: 'Order Cancelled',
|
923
|
+
properties: {
|
924
|
+
order_id: '1234',
|
925
|
+
affiliation: 'Apple Store',
|
926
|
+
total: 20,
|
927
|
+
revenue: 15.0,
|
928
|
+
shipping: 4,
|
929
|
+
tax: 1,
|
930
|
+
discount: 1.5,
|
931
|
+
coupon: 'ImagePro',
|
932
|
+
currency: 'USD',
|
933
|
+
products: [
|
934
|
+
{
|
935
|
+
product_id: '123',
|
936
|
+
sku: 'G-32',
|
937
|
+
name: 'Monopoly',
|
938
|
+
price: 14,
|
939
|
+
quantity: 1,
|
940
|
+
category: 'Games',
|
941
|
+
url: 'https://www.website.com/product/path',
|
942
|
+
image_url: 'https://www.website.com/product/path.jpg',
|
943
|
+
},
|
944
|
+
{
|
945
|
+
product_id: '345',
|
946
|
+
sku: 'F-32',
|
947
|
+
name: 'UNO',
|
948
|
+
price: 3.45,
|
949
|
+
quantity: 2,
|
950
|
+
category: 'Games',
|
951
|
+
},
|
952
|
+
],
|
953
|
+
},
|
954
|
+
},
|
955
|
+
},
|
956
|
+
output: {
|
957
|
+
event: 'Order_Cancelled',
|
958
|
+
params: {
|
959
|
+
discount: 1.5,
|
960
|
+
order_id: '1234',
|
961
|
+
products_0_category: 'Games',
|
962
|
+
products_0_image_url: 'https://www.website.com/product/path.jpg',
|
963
|
+
products_0_name: 'Monopoly',
|
964
|
+
products_0_price: 14,
|
965
|
+
products_0_product_id: '123',
|
966
|
+
products_0_quantity: 1,
|
967
|
+
products_0_sku: 'G-32',
|
968
|
+
products_0_url: 'https://www.website.com/product/path',
|
969
|
+
products_1_category: 'Games',
|
970
|
+
products_1_name: 'UNO',
|
971
|
+
products_1_price: 3.45,
|
972
|
+
products_1_product_id: '345',
|
973
|
+
products_1_quantity: 2,
|
974
|
+
products_1_sku: 'F-32',
|
975
|
+
revenue: 15,
|
976
|
+
send_to: 'G-123456',
|
977
|
+
shipping: 4,
|
978
|
+
tax: 1,
|
979
|
+
total: 20,
|
980
|
+
affiliation: 'Apple Store',
|
981
|
+
coupon: 'ImagePro',
|
982
|
+
currency: 'USD',
|
983
|
+
},
|
984
|
+
},
|
985
|
+
},
|
986
|
+
{
|
987
|
+
description: 'Coupon Entered event',
|
988
|
+
input: {
|
989
|
+
message: {
|
990
|
+
event: 'Coupon Entered',
|
991
|
+
properties: {
|
992
|
+
order_id: '12345',
|
993
|
+
cart_id: '1222111',
|
994
|
+
coupon_id: 'disc20',
|
995
|
+
},
|
996
|
+
},
|
997
|
+
},
|
998
|
+
output: {
|
999
|
+
event: 'Coupon_Entered',
|
1000
|
+
params: {
|
1001
|
+
cart_id: '1222111',
|
1002
|
+
coupon_id: 'disc20',
|
1003
|
+
order_id: '12345',
|
1004
|
+
send_to: 'G-123456',
|
1005
|
+
},
|
1006
|
+
},
|
1007
|
+
},
|
1008
|
+
{
|
1009
|
+
description: 'Coupon Applied event',
|
1010
|
+
input: {
|
1011
|
+
message: {
|
1012
|
+
event: 'Coupon Applied',
|
1013
|
+
properties: {
|
1014
|
+
order_id: '1223455',
|
1015
|
+
cart_id: '123566',
|
1016
|
+
coupon_id: '23321',
|
1017
|
+
coupon_name: 'Disc21',
|
1018
|
+
discount: 21.0,
|
1019
|
+
},
|
1020
|
+
},
|
1021
|
+
},
|
1022
|
+
output: {
|
1023
|
+
event: 'Coupon_Applied',
|
1024
|
+
params: {
|
1025
|
+
cart_id: '123566',
|
1026
|
+
coupon_id: '23321',
|
1027
|
+
coupon_name: 'Disc21',
|
1028
|
+
discount: 21,
|
1029
|
+
order_id: '1223455',
|
1030
|
+
send_to: 'G-123456',
|
1031
|
+
},
|
1032
|
+
},
|
1033
|
+
},
|
1034
|
+
{
|
1035
|
+
description: 'Coupon Denied event',
|
1036
|
+
input: {
|
1037
|
+
message: {
|
1038
|
+
event: 'Coupon Denied',
|
1039
|
+
properties: {
|
1040
|
+
order_id: '123',
|
1041
|
+
cart_id: '1211',
|
1042
|
+
coupon: 'Disc21',
|
1043
|
+
reason: 'Coupon expired',
|
1044
|
+
},
|
1045
|
+
},
|
1046
|
+
},
|
1047
|
+
output: {
|
1048
|
+
event: 'Coupon_Denied',
|
1049
|
+
params: {
|
1050
|
+
cart_id: '1211',
|
1051
|
+
coupon: 'Disc21',
|
1052
|
+
order_id: '123',
|
1053
|
+
reason: 'Coupon expired',
|
1054
|
+
send_to: 'G-123456',
|
1055
|
+
},
|
1056
|
+
},
|
1057
|
+
},
|
1058
|
+
{
|
1059
|
+
description: 'Coupon Removed event',
|
1060
|
+
input: {
|
1061
|
+
message: {
|
1062
|
+
event: 'Coupon Removed',
|
1063
|
+
properties: {
|
1064
|
+
order_id: '1211',
|
1065
|
+
cart_id: '124',
|
1066
|
+
coupon_id: 'Dis123',
|
1067
|
+
coupon_name: 'Disc20',
|
1068
|
+
discount: 20.0,
|
1069
|
+
},
|
1070
|
+
},
|
1071
|
+
},
|
1072
|
+
output: {
|
1073
|
+
event: 'Coupon_Removed',
|
1074
|
+
params: {
|
1075
|
+
cart_id: '124',
|
1076
|
+
coupon_id: 'Dis123',
|
1077
|
+
coupon_name: 'Disc20',
|
1078
|
+
discount: 20,
|
1079
|
+
order_id: '1211',
|
1080
|
+
send_to: 'G-123456',
|
1081
|
+
},
|
1082
|
+
},
|
1083
|
+
},
|
1084
|
+
{
|
1085
|
+
description: 'Product Added to Wishlist event',
|
1086
|
+
input: {
|
1087
|
+
message: {
|
1088
|
+
event: 'Product Added to Wishlist',
|
1089
|
+
properties: {
|
1090
|
+
wishlist_id: '12345',
|
1091
|
+
wishlist_name: 'Games',
|
1092
|
+
product_id: '235564423234',
|
1093
|
+
sku: 'F-17',
|
1094
|
+
category: 'Games',
|
1095
|
+
name: 'Cards',
|
1096
|
+
brand: 'Imagepro',
|
1097
|
+
variant: '123',
|
1098
|
+
price: 8.99,
|
1099
|
+
quantity: 1,
|
1100
|
+
coupon: 'COUPON',
|
1101
|
+
position: 1,
|
1102
|
+
url: 'https://www.site.com/product/path',
|
1103
|
+
image_url: 'https://www.site.com/product/path.jpg',
|
1104
|
+
},
|
1105
|
+
},
|
1106
|
+
},
|
1107
|
+
output: {
|
1108
|
+
event: 'add_to_wishlist',
|
1109
|
+
params: {
|
1110
|
+
currency: 'USD',
|
1111
|
+
image_url: 'https://www.site.com/product/path.jpg',
|
1112
|
+
items: [
|
1113
|
+
{
|
1114
|
+
coupon: 'COUPON',
|
1115
|
+
index: 1,
|
1116
|
+
item_brand: 'Imagepro',
|
1117
|
+
item_category: 'Games',
|
1118
|
+
item_id: '235564423234',
|
1119
|
+
item_name: 'Cards',
|
1120
|
+
item_variant: '123',
|
1121
|
+
price: 8.99,
|
1122
|
+
quantity: 1,
|
1123
|
+
},
|
1124
|
+
],
|
1125
|
+
send_to: 'G-123456',
|
1126
|
+
sku: 'F-17',
|
1127
|
+
url: 'https://www.site.com/product/path',
|
1128
|
+
value: 8.99,
|
1129
|
+
wishlist_id: '12345',
|
1130
|
+
wishlist_name: 'Games',
|
1131
|
+
},
|
1132
|
+
},
|
1133
|
+
},
|
1134
|
+
{
|
1135
|
+
description: 'Product Removed from Wishlist event',
|
1136
|
+
input: {
|
1137
|
+
message: {
|
1138
|
+
event: 'Product Removed from Wishlist',
|
1139
|
+
properties: {
|
1140
|
+
wishlist_id: '12345',
|
1141
|
+
wishlist_name: 'Games',
|
1142
|
+
product_id: '235564423234',
|
1143
|
+
sku: 'F-17',
|
1144
|
+
category: 'Games',
|
1145
|
+
name: 'Cards',
|
1146
|
+
brand: 'Imagepro',
|
1147
|
+
variant: '123',
|
1148
|
+
price: 8.99,
|
1149
|
+
quantity: 1,
|
1150
|
+
coupon: 'COUPON',
|
1151
|
+
position: 1,
|
1152
|
+
url: 'https://www.site.com/product/path',
|
1153
|
+
image_url: 'https://www.site.com/product/path.jpg',
|
1154
|
+
},
|
1155
|
+
},
|
1156
|
+
},
|
1157
|
+
output: {
|
1158
|
+
event: 'Product_Removed_from_Wishlist',
|
1159
|
+
params: {
|
1160
|
+
brand: 'Imagepro',
|
1161
|
+
category: 'Games',
|
1162
|
+
coupon: 'COUPON',
|
1163
|
+
image_url: 'https://www.site.com/product/path.jpg',
|
1164
|
+
name: 'Cards',
|
1165
|
+
position: 1,
|
1166
|
+
product_id: '235564423234',
|
1167
|
+
price: 8.99,
|
1168
|
+
quantity: 1,
|
1169
|
+
send_to: 'G-123456',
|
1170
|
+
sku: 'F-17',
|
1171
|
+
url: 'https://www.site.com/product/path',
|
1172
|
+
variant: '123',
|
1173
|
+
wishlist_id: '12345',
|
1174
|
+
wishlist_name: 'Games',
|
1175
|
+
},
|
1176
|
+
},
|
1177
|
+
},
|
1178
|
+
{
|
1179
|
+
description: 'Wishlist Product Added to Cart event',
|
1180
|
+
input: {
|
1181
|
+
message: {
|
1182
|
+
event: 'Wishlist Product Added to Cart',
|
1183
|
+
properties: {
|
1184
|
+
wishlist_id: '12345',
|
1185
|
+
wishlist_name: 'Games',
|
1186
|
+
product_id: '235564423234',
|
1187
|
+
sku: 'F-17',
|
1188
|
+
category: 'Games',
|
1189
|
+
name: 'Cards',
|
1190
|
+
brand: 'Imagepro',
|
1191
|
+
variant: '123',
|
1192
|
+
price: 8.99,
|
1193
|
+
quantity: 1,
|
1194
|
+
coupon: 'COUPON',
|
1195
|
+
position: 1,
|
1196
|
+
url: 'https://www.site.com/product/path',
|
1197
|
+
image_url: 'https://www.site.com/product/path.jpg',
|
1198
|
+
},
|
1199
|
+
},
|
1200
|
+
},
|
1201
|
+
output: {
|
1202
|
+
event: 'Wishlist_Product_Added_to_Cart',
|
1203
|
+
params: {
|
1204
|
+
brand: 'Imagepro',
|
1205
|
+
category: 'Games',
|
1206
|
+
coupon: 'COUPON',
|
1207
|
+
image_url: 'https://www.site.com/product/path.jpg',
|
1208
|
+
name: 'Cards',
|
1209
|
+
position: 1,
|
1210
|
+
product_id: '235564423234',
|
1211
|
+
price: 8.99,
|
1212
|
+
quantity: 1,
|
1213
|
+
send_to: 'G-123456',
|
1214
|
+
sku: 'F-17',
|
1215
|
+
url: 'https://www.site.com/product/path',
|
1216
|
+
variant: '123',
|
1217
|
+
wishlist_id: '12345',
|
1218
|
+
wishlist_name: 'Games',
|
1219
|
+
},
|
1220
|
+
},
|
1221
|
+
},
|
1222
|
+
{
|
1223
|
+
description: 'Product Shared event',
|
1224
|
+
input: {
|
1225
|
+
message: {
|
1226
|
+
event: 'Product Shared',
|
1227
|
+
properties: {
|
1228
|
+
share_via: 'SMS',
|
1229
|
+
share_message: 'Check this',
|
1230
|
+
recipient: 'name@friendsemail.com',
|
1231
|
+
product_id: '12345872254426',
|
1232
|
+
sku: 'F-13',
|
1233
|
+
category: 'Games',
|
1234
|
+
name: 'Cards',
|
1235
|
+
brand: 'Maples',
|
1236
|
+
variant: '150s',
|
1237
|
+
price: 15.99,
|
1238
|
+
url: 'https://www.myecommercewebsite.com/product/prod',
|
1239
|
+
image_url: 'https://www.myecommercewebsite.com/product/prod.jpg',
|
1240
|
+
},
|
1241
|
+
},
|
1242
|
+
},
|
1243
|
+
output: {
|
1244
|
+
event: 'share',
|
1245
|
+
params: {
|
1246
|
+
brand: 'Maples',
|
1247
|
+
category: 'Games',
|
1248
|
+
image_url: 'https://www.myecommercewebsite.com/product/prod.jpg',
|
1249
|
+
item_id: '12345872254426',
|
1250
|
+
method: 'SMS',
|
1251
|
+
name: 'Cards',
|
1252
|
+
price: 15.99,
|
1253
|
+
recipient: 'name@friendsemail.com',
|
1254
|
+
send_to: 'G-123456',
|
1255
|
+
share_message: 'Check this',
|
1256
|
+
url: 'https://www.myecommercewebsite.com/product/prod',
|
1257
|
+
variant: '150s',
|
1258
|
+
},
|
1259
|
+
},
|
1260
|
+
},
|
1261
|
+
{
|
1262
|
+
description: 'Cart Shared event',
|
1263
|
+
input: {
|
1264
|
+
message: {
|
1265
|
+
event: 'Cart Shared',
|
1266
|
+
properties: {
|
1267
|
+
share_via: 'SMS',
|
1268
|
+
share_message: 'Check this',
|
1269
|
+
recipient: 'friend@friendsemail.com',
|
1270
|
+
cart_id: '1234df2ddss',
|
1271
|
+
products: [{ product_id: '125' }, { product_id: '297' }],
|
1272
|
+
},
|
1273
|
+
},
|
1274
|
+
},
|
1275
|
+
output: {
|
1276
|
+
event: 'share',
|
1277
|
+
params: {
|
1278
|
+
item_id: '1234df2ddss',
|
1279
|
+
method: 'SMS',
|
1280
|
+
recipient: 'friend@friendsemail.com',
|
1281
|
+
send_to: 'G-123456',
|
1282
|
+
share_message: 'Check this',
|
1283
|
+
},
|
1284
|
+
},
|
1285
|
+
},
|
1286
|
+
{
|
1287
|
+
description: 'Product Reviewed event',
|
1288
|
+
input: {
|
1289
|
+
message: {
|
1290
|
+
event: 'Product Reviewed',
|
1291
|
+
properties: {
|
1292
|
+
product_id: '12345',
|
1293
|
+
review_id: 'review12',
|
1294
|
+
review_body: 'Good product, delivered in excellent condition',
|
1295
|
+
rating: '5',
|
1296
|
+
categories: {},
|
1297
|
+
},
|
1298
|
+
},
|
1299
|
+
},
|
1300
|
+
output: {
|
1301
|
+
event: 'Product_Reviewed',
|
1302
|
+
params: {
|
1303
|
+
product_id: '12345',
|
1304
|
+
rating: '5',
|
1305
|
+
review_body: 'Good product, delivered in excellent condition',
|
1306
|
+
review_id: 'review12',
|
1307
|
+
send_to: 'G-123456',
|
1308
|
+
},
|
1309
|
+
},
|
1310
|
+
},
|
1311
|
+
{
|
1312
|
+
description: 'Order Completed event with products as an object',
|
1313
|
+
input: {
|
1314
|
+
message: {
|
1315
|
+
event: 'Order Completed',
|
1316
|
+
properties: {
|
1317
|
+
checkout_id: '12345',
|
1318
|
+
order_id: '1234',
|
1319
|
+
affiliation: 'Apple Store',
|
1320
|
+
total: 20,
|
1321
|
+
revenue: 15.0,
|
1322
|
+
shipping: 4,
|
1323
|
+
tax: 1,
|
1324
|
+
discount: 1.5,
|
1325
|
+
coupon: 'ImagePro',
|
1326
|
+
currency: 'USD',
|
1327
|
+
users: [],
|
1328
|
+
products: {
|
1329
|
+
product_id: '123',
|
1330
|
+
sku: 'G-32',
|
1331
|
+
name: 'Monopoly',
|
1332
|
+
price: 14,
|
1333
|
+
rating: '',
|
1334
|
+
quantity: 1,
|
1335
|
+
category: 'Games',
|
1336
|
+
url: 'https://www.website.com/product/path',
|
1337
|
+
image_url: 'https://www.website.com/product/path.jpg',
|
1338
|
+
},
|
1339
|
+
},
|
1340
|
+
},
|
1341
|
+
},
|
1342
|
+
output: {
|
1343
|
+
event: 'purchase',
|
1344
|
+
params: {
|
1345
|
+
affiliation: 'Apple Store',
|
1346
|
+
checkout_id: '12345',
|
1347
|
+
coupon: 'ImagePro',
|
1348
|
+
currency: 'USD',
|
1349
|
+
discount: 1.5,
|
1350
|
+
items: [
|
1351
|
+
{
|
1352
|
+
image_url: 'https://www.website.com/product/path.jpg',
|
1353
|
+
item_category: 'Games',
|
1354
|
+
item_id: '123',
|
1355
|
+
item_name: 'Monopoly',
|
1356
|
+
price: 14,
|
1357
|
+
quantity: 1,
|
1358
|
+
sku: 'G-32',
|
1359
|
+
url: 'https://www.website.com/product/path',
|
1360
|
+
},
|
1361
|
+
],
|
1362
|
+
send_to: 'G-123456',
|
1363
|
+
shipping: 4,
|
1364
|
+
tax: 1,
|
1365
|
+
transaction_id: '1234',
|
1366
|
+
value: 20,
|
1367
|
+
},
|
1368
|
+
},
|
1369
|
+
},
|
1370
|
+
];
|
1371
|
+
|
1372
|
+
const pageEvents = [
|
1373
|
+
{
|
1374
|
+
description: 'Call with properties',
|
1375
|
+
input: {
|
1376
|
+
message: {
|
1377
|
+
channel: 'web',
|
1378
|
+
name: 'Contact Us',
|
1379
|
+
context: {
|
1380
|
+
app: {
|
1381
|
+
build: '1.0.0',
|
1382
|
+
name: 'Events SDK JavaScript',
|
1383
|
+
namespace: 'com.hightouch.javascript',
|
1384
|
+
version: '1.0.5',
|
1385
|
+
},
|
1386
|
+
ip: '0.0.0.0',
|
1387
|
+
library: {
|
1388
|
+
name: 'Events SDK JavaScript',
|
1389
|
+
version: '1.0.5',
|
1390
|
+
},
|
1391
|
+
locale: 'en-GB',
|
1392
|
+
screen: {
|
1393
|
+
density: 2,
|
1394
|
+
},
|
1395
|
+
traits: {
|
1396
|
+
email: 'abc@gmail.com',
|
1397
|
+
},
|
1398
|
+
page: {
|
1399
|
+
path: '/destinations/mixpanel',
|
1400
|
+
url: 'https://docs.rudderstack.com/destinations/mixpanel',
|
1401
|
+
category: 'destination',
|
1402
|
+
initial_referrer: 'https://docs.rudderstack.com',
|
1403
|
+
initial_referring_domain: 'docs.rudderstack.com',
|
1404
|
+
},
|
1405
|
+
userAgent:
|
1406
|
+
'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.117 Safari/537.36',
|
1407
|
+
},
|
1408
|
+
integrations: {
|
1409
|
+
All: true,
|
1410
|
+
},
|
1411
|
+
properties: {
|
1412
|
+
path: '/destinations/mixpanel',
|
1413
|
+
url: 'https://docs.rudderstack.com/destinations/mixpanel',
|
1414
|
+
category: 'destination',
|
1415
|
+
initial_referrer: 'https://docs.rudderstack.com',
|
1416
|
+
initial_referring_domain: 'docs.rudderstack.com',
|
1417
|
+
},
|
1418
|
+
type: 'page',
|
1419
|
+
userId: 'user@10',
|
1420
|
+
},
|
1421
|
+
},
|
1422
|
+
output: {
|
1423
|
+
event: 'page_view',
|
1424
|
+
params: {
|
1425
|
+
path: '/destinations/mixpanel',
|
1426
|
+
url: 'https://docs.rudderstack.com/destinations/mixpanel',
|
1427
|
+
category: 'destination',
|
1428
|
+
initial_referrer: 'https://docs.rudderstack.com',
|
1429
|
+
initial_referring_domain: 'docs.rudderstack.com',
|
1430
|
+
send_to: 'G-123456',
|
1431
|
+
user_id: 'user@10',
|
1432
|
+
},
|
1433
|
+
},
|
1434
|
+
},
|
1435
|
+
];
|
1436
|
+
|
1437
|
+
const groupEvents = [
|
1438
|
+
{
|
1439
|
+
description: 'Call with traits',
|
1440
|
+
input: {
|
1441
|
+
message: {
|
1442
|
+
userId: 'user@1',
|
1443
|
+
context: {
|
1444
|
+
library: {
|
1445
|
+
name: 'events-php',
|
1446
|
+
version: '2.0.1',
|
1447
|
+
consumer: 'LibCurl',
|
1448
|
+
},
|
1449
|
+
},
|
1450
|
+
traits: {
|
1451
|
+
companySize: 100,
|
1452
|
+
companyName: 'RudderStack',
|
1453
|
+
},
|
1454
|
+
type: 'group',
|
1455
|
+
groupId: 'group@1',
|
1456
|
+
},
|
1457
|
+
},
|
1458
|
+
output: {
|
1459
|
+
event: 'join_group',
|
1460
|
+
params: {
|
1461
|
+
companySize: 100,
|
1462
|
+
group_id: 'group@1',
|
1463
|
+
send_to: 'G-123456',
|
1464
|
+
companyName: 'RudderStack',
|
1465
|
+
user_id: 'user@1',
|
1466
|
+
},
|
1467
|
+
},
|
1468
|
+
},
|
1469
|
+
];
|
1470
|
+
|
1471
|
+
export {
|
1472
|
+
mapping,
|
1473
|
+
pageEvents,
|
1474
|
+
groupEvents,
|
1475
|
+
trackEvents,
|
1476
|
+
identifyEvents,
|
1477
|
+
expectedItemsArray,
|
1478
|
+
inputProductsArray,
|
1479
|
+
outputProductsArray,
|
1480
|
+
};
|