utneque 1.0.0
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/.editorconfig +10 -0
- package/.eslintrc.isomorphic.js +26 -0
- package/.eslintrc.js +86 -0
- package/.gitattributes +1 -0
- package/.github/workflows/ci.yml +33 -0
- package/.github/workflows/deploy-browser-cdn-candidate.yml +51 -0
- package/.github/workflows/deploy-releases.yml +178 -0
- package/.nvmrc +1 -0
- package/.prettierrc +7 -0
- package/.vscode/extensions.json +3 -0
- package/.vscode/launch.json +81 -0
- package/.vscode/settings.json +41 -0
- package/.yarn/plugins/@yarnpkg/plugin-constraints.cjs +52 -0
- package/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs +546 -0
- package/.yarn/plugins/@yarnpkg/plugin-typescript.cjs +9 -0
- package/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs +28 -0
- package/.yarn/releases/yarn-3.4.1.cjs +873 -0
- package/.yarnrc.yml +15 -0
- package/jest.config.js +18 -0
- package/package.json +59 -0
- package/packages/browser/.eslintrc.js +9 -0
- package/packages/browser/.lintstagedrc.js +1 -0
- package/packages/browser/ARCHITECTURE.md +48 -0
- package/packages/browser/LICENSE.MD +45 -0
- package/packages/browser/Makefile +64 -0
- package/packages/browser/README.md +227 -0
- package/packages/browser/e2e-tests/local-server.ts +28 -0
- package/packages/browser/e2e-tests/performance/ajs-perf-browser.test.ts +75 -0
- package/packages/browser/jest.config.js +15 -0
- package/packages/browser/jest.setup.js +10 -0
- package/packages/browser/package.json +106 -0
- package/packages/browser/qa/README.md +41 -0
- package/packages/browser/qa/__fixtures__/snippets.ts +148 -0
- package/packages/browser/qa/__tests__/backwards-compatibility.test.ts +180 -0
- package/packages/browser/qa/__tests__/destinations.test.ts +101 -0
- package/packages/browser/qa/__tests__/smoke.test.ts +170 -0
- package/packages/browser/qa/lib/benchmark.ts +36 -0
- package/packages/browser/qa/lib/browser.ts +28 -0
- package/packages/browser/qa/lib/jest-reporter.js +57 -0
- package/packages/browser/qa/lib/runner.ts +142 -0
- package/packages/browser/qa/lib/schema.ts +59 -0
- package/packages/browser/qa/lib/server.ts +54 -0
- package/packages/browser/qa/lib/stats.ts +52 -0
- package/packages/browser/scripts/build-prep.sh +7 -0
- package/packages/browser/scripts/ci.sh +15 -0
- package/packages/browser/scripts/release.js +121 -0
- package/packages/browser/scripts/release.sh +9 -0
- package/packages/browser/scripts/run.sh +8 -0
- package/packages/browser/src/browser/__tests__/analytics-lazy-init.integration.test.ts +51 -0
- package/packages/browser/src/browser/__tests__/analytics-pre-init.integration.test.ts +440 -0
- package/packages/browser/src/browser/__tests__/anon-id-and-reset.integration.test.ts +73 -0
- package/packages/browser/src/browser/__tests__/cdn.test.ts +53 -0
- package/packages/browser/src/browser/__tests__/csp-detection.test.ts +140 -0
- package/packages/browser/src/browser/__tests__/inspector.integration.test.ts +121 -0
- package/packages/browser/src/browser/__tests__/integration.test.ts +1213 -0
- package/packages/browser/src/browser/__tests__/integrations.integration.test.ts +260 -0
- package/packages/browser/src/browser/__tests__/page-enrichment.integration.test.ts +216 -0
- package/packages/browser/src/browser/__tests__/query-string.integration.test.ts +116 -0
- package/packages/browser/src/browser/__tests__/standalone-analytics.test.ts +303 -0
- package/packages/browser/src/browser/__tests__/standalone-errors.test.ts +136 -0
- package/packages/browser/src/browser/__tests__/standalone.test.ts +97 -0
- package/packages/browser/src/browser/__tests__/typedef-tests/analytics-browser.ts +150 -0
- package/packages/browser/src/browser/__tests__/update-cdn-settings.test.ts +71 -0
- package/packages/browser/src/browser/browser-umd.ts +19 -0
- package/packages/browser/src/browser/index.ts +486 -0
- package/packages/browser/src/browser/standalone-analytics.ts +62 -0
- package/packages/browser/src/browser/standalone-interface.ts +11 -0
- package/packages/browser/src/browser/standalone.ts +92 -0
- package/packages/browser/src/core/__tests__/track-form.test.ts +193 -0
- package/packages/browser/src/core/__tests__/track-link.test.ts +252 -0
- package/packages/browser/src/core/analytics/__tests__/integration.test.ts +334 -0
- package/packages/browser/src/core/analytics/__tests__/test-plugins.ts +94 -0
- package/packages/browser/src/core/analytics/index.ts +672 -0
- package/packages/browser/src/core/analytics/interfaces.ts +100 -0
- package/packages/browser/src/core/arguments-resolver/__tests__/index.test.ts +524 -0
- package/packages/browser/src/core/arguments-resolver/index.ts +200 -0
- package/packages/browser/src/core/auto-track.ts +152 -0
- package/packages/browser/src/core/buffer/__tests__/index.test.ts +455 -0
- package/packages/browser/src/core/buffer/index.ts +371 -0
- package/packages/browser/src/core/callback/index.ts +1 -0
- package/packages/browser/src/core/connection/__tests__/index.test.ts +25 -0
- package/packages/browser/src/core/connection/index.ts +13 -0
- package/packages/browser/src/core/constants/index.ts +1 -0
- package/packages/browser/src/core/context/__tests__/index.test.ts +201 -0
- package/packages/browser/src/core/context/index.ts +21 -0
- package/packages/browser/src/core/environment/index.ts +7 -0
- package/packages/browser/src/core/events/__tests__/index.test.ts +450 -0
- package/packages/browser/src/core/events/index.ts +280 -0
- package/packages/browser/src/core/events/interfaces.ts +36 -0
- package/packages/browser/src/core/inspector/index.ts +14 -0
- package/packages/browser/src/core/page/__tests__/index.test.ts +130 -0
- package/packages/browser/src/core/page/add-page-context.ts +33 -0
- package/packages/browser/src/core/page/get-page-context.ts +140 -0
- package/packages/browser/src/core/page/index.ts +2 -0
- package/packages/browser/src/core/plugin/index.ts +12 -0
- package/packages/browser/src/core/query-string/__tests__/gracefulDecodeURIComponent.test.ts +17 -0
- package/packages/browser/src/core/query-string/__tests__/index.test.ts +149 -0
- package/packages/browser/src/core/query-string/__tests__/pickPrefix.test.ts +31 -0
- package/packages/browser/src/core/query-string/__tests__/useQueryString.test.ts +60 -0
- package/packages/browser/src/core/query-string/gracefulDecodeURIComponent.ts +16 -0
- package/packages/browser/src/core/query-string/index.ts +64 -0
- package/packages/browser/src/core/query-string/pickPrefix.ts +20 -0
- package/packages/browser/src/core/queue/__tests__/event-queue.test.ts +82 -0
- package/packages/browser/src/core/queue/event-queue.ts +22 -0
- package/packages/browser/src/core/session/__tests__/index.test.ts +41 -0
- package/packages/browser/src/core/session/index.ts +107 -0
- package/packages/browser/src/core/stats/__tests__/index.test.ts +15 -0
- package/packages/browser/src/core/stats/__tests__/remote-metrics.test.ts +189 -0
- package/packages/browser/src/core/stats/index.ts +15 -0
- package/packages/browser/src/core/stats/remote-metrics.ts +144 -0
- package/packages/browser/src/core/storage/__tests__/cookieStorage.test.ts +58 -0
- package/packages/browser/src/core/storage/__tests__/localStorage.test.ts +70 -0
- package/packages/browser/src/core/storage/__tests__/test-helpers.ts +26 -0
- package/packages/browser/src/core/storage/__tests__/universalStorage.test.ts +167 -0
- package/packages/browser/src/core/storage/cookieStorage.ts +80 -0
- package/packages/browser/src/core/storage/index.ts +64 -0
- package/packages/browser/src/core/storage/localStorage.ts +45 -0
- package/packages/browser/src/core/storage/memoryStorage.ts +22 -0
- package/packages/browser/src/core/storage/settings.ts +23 -0
- package/packages/browser/src/core/storage/types.ts +49 -0
- package/packages/browser/src/core/storage/universalStorage.ts +78 -0
- package/packages/browser/src/core/user/__tests__/index.test.ts +922 -0
- package/packages/browser/src/core/user/__tests__/migrate.test.ts +101 -0
- package/packages/browser/src/core/user/__tests__/session.test.ts +136 -0
- package/packages/browser/src/core/user/__tests__/tld.test.ts +36 -0
- package/packages/browser/src/core/user/index.ts +399 -0
- package/packages/browser/src/core/user/migrate.ts +126 -0
- package/packages/browser/src/core/user/tld.ts +65 -0
- package/packages/browser/src/core/user/vendor/crypto-es/LICENSE +53 -0
- package/packages/browser/src/core/user/vendor/crypto-es/lib/aes.ts +302 -0
- package/packages/browser/src/core/user/vendor/crypto-es/lib/cipher-core.ts +922 -0
- package/packages/browser/src/core/user/vendor/crypto-es/lib/core.ts +806 -0
- package/packages/browser/src/core/user/vendor/crypto-es/lib/enc-base64.ts +110 -0
- package/packages/browser/src/core/user/vendor/crypto-es/lib/evpkdf.ts +110 -0
- package/packages/browser/src/core/user/vendor/crypto-es/lib/md5.ts +238 -0
- package/packages/browser/src/core/user/vendor/readme.md +7 -0
- package/packages/browser/src/generated/__tests__/version.test.ts +18 -0
- package/packages/browser/src/generated/version.ts +2 -0
- package/packages/browser/src/index.ts +13 -0
- package/packages/browser/src/lib/__tests__/embedded-write-key.test.ts +15 -0
- package/packages/browser/src/lib/__tests__/fetch.test.ts +35 -0
- package/packages/browser/src/lib/__tests__/get-process-env.test.ts +5 -0
- package/packages/browser/src/lib/__tests__/group-by.test.ts +96 -0
- package/packages/browser/src/lib/__tests__/is-plan-event-enabled.test.ts +36 -0
- package/packages/browser/src/lib/__tests__/is-thenable.test.ts +39 -0
- package/packages/browser/src/lib/__tests__/merged-options.test.ts +123 -0
- package/packages/browser/src/lib/__tests__/on-page-change.test.ts +74 -0
- package/packages/browser/src/lib/__tests__/parse-cdn.test.ts +88 -0
- package/packages/browser/src/lib/__tests__/pick.test.ts +34 -0
- package/packages/browser/src/lib/__tests__/pick.typedef.ts +39 -0
- package/packages/browser/src/lib/bind-all.ts +19 -0
- package/packages/browser/src/lib/browser-polyfill.ts +23 -0
- package/packages/browser/src/lib/client-hints/__tests__/index.test.ts +66 -0
- package/packages/browser/src/lib/client-hints/index.ts +16 -0
- package/packages/browser/src/lib/client-hints/interfaces.ts +42 -0
- package/packages/browser/src/lib/create-deferred.ts +16 -0
- package/packages/browser/src/lib/csp-detection.ts +8 -0
- package/packages/browser/src/lib/embedded-write-key.ts +24 -0
- package/packages/browser/src/lib/fetch.ts +10 -0
- package/packages/browser/src/lib/get-global.ts +16 -0
- package/packages/browser/src/lib/get-process-env.ts +11 -0
- package/packages/browser/src/lib/global-analytics-helper.ts +31 -0
- package/packages/browser/src/lib/group-by.ts +30 -0
- package/packages/browser/src/lib/is-plan-event-enabled.ts +20 -0
- package/packages/browser/src/lib/is-thenable.ts +9 -0
- package/packages/browser/src/lib/load-script.ts +66 -0
- package/packages/browser/src/lib/merged-options.ts +46 -0
- package/packages/browser/src/lib/on-page-change.ts +29 -0
- package/packages/browser/src/lib/p-while.ts +12 -0
- package/packages/browser/src/lib/parse-cdn.ts +56 -0
- package/packages/browser/src/lib/pick.ts +28 -0
- package/packages/browser/src/lib/priority-queue/__tests__/backoff.test.ts +23 -0
- package/packages/browser/src/lib/priority-queue/__tests__/index.test.ts +158 -0
- package/packages/browser/src/lib/priority-queue/__tests__/persisted.test.ts +228 -0
- package/packages/browser/src/lib/priority-queue/backoff.ts +24 -0
- package/packages/browser/src/lib/priority-queue/index.ts +6 -0
- package/packages/browser/src/lib/priority-queue/persisted.ts +127 -0
- package/packages/browser/src/lib/sleep.ts +4 -0
- package/packages/browser/src/lib/to-facade.ts +53 -0
- package/packages/browser/src/lib/version-type.ts +10 -0
- package/packages/browser/src/node/__tests__/node-integration.test.ts +19 -0
- package/packages/browser/src/node/index.ts +36 -0
- package/packages/browser/src/node/node.browser.ts +7 -0
- package/packages/browser/src/plugins/ajs-destination/__tests__/index.test.ts +834 -0
- package/packages/browser/src/plugins/ajs-destination/index.ts +392 -0
- package/packages/browser/src/plugins/ajs-destination/loader.ts +129 -0
- package/packages/browser/src/plugins/ajs-destination/types.ts +44 -0
- package/packages/browser/src/plugins/ajs-destination/utils.ts +32 -0
- package/packages/browser/src/plugins/analytics-node/__tests__/index.test.ts +69 -0
- package/packages/browser/src/plugins/analytics-node/index.ts +67 -0
- package/packages/browser/src/plugins/env-enrichment/__tests__/index.test.ts +421 -0
- package/packages/browser/src/plugins/env-enrichment/index.ts +208 -0
- package/packages/browser/src/plugins/hightouchio/__tests__/batched-dispatcher.test.ts +299 -0
- package/packages/browser/src/plugins/hightouchio/__tests__/index.test.ts +317 -0
- package/packages/browser/src/plugins/hightouchio/__tests__/normalize.test.ts +181 -0
- package/packages/browser/src/plugins/hightouchio/__tests__/retries.test.ts +82 -0
- package/packages/browser/src/plugins/hightouchio/batched-dispatcher.ts +127 -0
- package/packages/browser/src/plugins/hightouchio/fetch-dispatcher.ts +27 -0
- package/packages/browser/src/plugins/hightouchio/index.ts +147 -0
- package/packages/browser/src/plugins/hightouchio/normalize.ts +71 -0
- package/packages/browser/src/plugins/hightouchio/schedule-flush.ts +58 -0
- package/packages/browser/src/plugins/legacy-video-plugins/__tests__/index.test.ts +48 -0
- package/packages/browser/src/plugins/legacy-video-plugins/index.ts +16 -0
- package/packages/browser/src/plugins/middleware/__tests__/index.test.ts +268 -0
- package/packages/browser/src/plugins/middleware/index.ts +131 -0
- package/packages/browser/src/plugins/remote-loader/__tests__/index.test.ts +943 -0
- package/packages/browser/src/plugins/remote-loader/index.ts +256 -0
- package/packages/browser/src/plugins/remote-middleware/__tests__/index.test.ts +116 -0
- package/packages/browser/src/plugins/remote-middleware/index.ts +44 -0
- package/packages/browser/src/plugins/routing-middleware/__tests__/index.test.ts +64 -0
- package/packages/browser/src/plugins/routing-middleware/index.ts +37 -0
- package/packages/browser/src/plugins/schema-filter/__tests__/index.test.ts +520 -0
- package/packages/browser/src/plugins/schema-filter/index.ts +90 -0
- package/packages/browser/src/plugins/validation/__tests__/index.test.ts +78 -0
- package/packages/browser/src/plugins/validation/index.ts +44 -0
- package/packages/browser/src/test-helpers/browser-storage.ts +75 -0
- package/packages/browser/src/test-helpers/factories.ts +18 -0
- package/packages/browser/src/test-helpers/fetch-parse.ts +8 -0
- package/packages/browser/src/test-helpers/fixtures/cdn-settings.ts +301 -0
- package/packages/browser/src/test-helpers/fixtures/classic-destination.ts +25 -0
- package/packages/browser/src/test-helpers/fixtures/client-hints.ts +28 -0
- package/packages/browser/src/test-helpers/fixtures/create-fetch-method.ts +30 -0
- package/packages/browser/src/test-helpers/fixtures/index.ts +4 -0
- package/packages/browser/src/test-helpers/fixtures/page-context.ts +11 -0
- package/packages/browser/src/test-helpers/test-writekeys.ts +5 -0
- package/packages/browser/src/test-helpers/type-assertions.ts +11 -0
- package/packages/browser/src/tester/__fixtures__/hightouch-snippet.ts +64 -0
- package/packages/browser/src/tester/__fixtures__/index.html +8 -0
- package/packages/browser/src/tester/ajs-perf.ts +30 -0
- package/packages/browser/src/tester/ajs-tester.ts +119 -0
- package/packages/browser/src/tester/server.js +16 -0
- package/packages/browser/tsconfig.build.json +9 -0
- package/packages/browser/tsconfig.json +13 -0
- package/packages/browser/webpack.config.js +106 -0
- package/packages/config/package.json +10 -0
- package/packages/config/src/index.js +4 -0
- package/packages/config/src/jest/config.js +50 -0
- package/packages/config/src/jest/get-module-map.js +34 -0
- package/packages/config/src/lint-staged/config.js +4 -0
- package/packages/config-webpack/package.json +20 -0
- package/packages/config-webpack/webpack.config.common.js +75 -0
- package/packages/consent/consent-tools/.eslintrc.js +7 -0
- package/packages/consent/consent-tools/.lintstagedrc.js +1 -0
- package/packages/consent/consent-tools/LICENSE +45 -0
- package/packages/consent/consent-tools/README.md +104 -0
- package/packages/consent/consent-tools/jest.config.js +6 -0
- package/packages/consent/consent-tools/jest.setup.js +4 -0
- package/packages/consent/consent-tools/package.json +48 -0
- package/packages/consent/consent-tools/src/domain/__tests__/assertions/integrations-assertions.ts +37 -0
- package/packages/consent/consent-tools/src/domain/__tests__/consent-stamping.test.ts +45 -0
- package/packages/consent/consent-tools/src/domain/__tests__/create-wrapper.test.ts +816 -0
- package/packages/consent/consent-tools/src/domain/__tests__/typedef-tests.ts +21 -0
- package/packages/consent/consent-tools/src/domain/consent-changed.ts +51 -0
- package/packages/consent/consent-tools/src/domain/consent-stamping.ts +19 -0
- package/packages/consent/consent-tools/src/domain/create-wrapper.ts +238 -0
- package/packages/consent/consent-tools/src/domain/get-initialized-analytics.ts +25 -0
- package/packages/consent/consent-tools/src/domain/load-cancellation.ts +31 -0
- package/packages/consent/consent-tools/src/domain/validation/__tests__/options-validators.test.ts +77 -0
- package/packages/consent/consent-tools/src/domain/validation/__tests__/validation-error.test.ts +15 -0
- package/packages/consent/consent-tools/src/domain/validation/common-validators.ts +19 -0
- package/packages/consent/consent-tools/src/domain/validation/index.ts +1 -0
- package/packages/consent/consent-tools/src/domain/validation/options-validators.ts +74 -0
- package/packages/consent/consent-tools/src/domain/validation/validation-error.ts +11 -0
- package/packages/consent/consent-tools/src/index.ts +16 -0
- package/packages/consent/consent-tools/src/types/errors.ts +14 -0
- package/packages/consent/consent-tools/src/types/index.ts +3 -0
- package/packages/consent/consent-tools/src/types/settings.ts +121 -0
- package/packages/consent/consent-tools/src/types/wrapper.ts +107 -0
- package/packages/consent/consent-tools/src/utils/index.ts +4 -0
- package/packages/consent/consent-tools/src/utils/pick.ts +18 -0
- package/packages/consent/consent-tools/src/utils/pipe.ts +14 -0
- package/packages/consent/consent-tools/src/utils/resolve-when.ts +32 -0
- package/packages/consent/consent-tools/src/utils/uniq.ts +4 -0
- package/packages/consent/consent-tools/tsconfig.build.json +9 -0
- package/packages/consent/consent-tools/tsconfig.json +12 -0
- package/packages/consent/consent-wrapper-onetrust/.eslintrc.js +7 -0
- package/packages/consent/consent-wrapper-onetrust/.lintstagedrc.js +1 -0
- package/packages/consent/consent-wrapper-onetrust/LICENSE +45 -0
- package/packages/consent/consent-wrapper-onetrust/README.md +125 -0
- package/packages/consent/consent-wrapper-onetrust/img/onetrust-cat-id.jpg +0 -0
- package/packages/consent/consent-wrapper-onetrust/img/onetrust-popup.jpg +0 -0
- package/packages/consent/consent-wrapper-onetrust/jest.config.js +6 -0
- package/packages/consent/consent-wrapper-onetrust/jest.setup.js +4 -0
- package/packages/consent/consent-wrapper-onetrust/package.json +60 -0
- package/packages/consent/consent-wrapper-onetrust/src/domain/__tests__/wrapper.test.ts +151 -0
- package/packages/consent/consent-wrapper-onetrust/src/domain/wrapper.ts +61 -0
- package/packages/consent/consent-wrapper-onetrust/src/index.ts +6 -0
- package/packages/consent/consent-wrapper-onetrust/src/index.umd.ts +11 -0
- package/packages/consent/consent-wrapper-onetrust/src/lib/__tests__/onetrust-api.test.ts +181 -0
- package/packages/consent/consent-wrapper-onetrust/src/lib/onetrust-api.ts +155 -0
- package/packages/consent/consent-wrapper-onetrust/src/lib/validation/index.ts +1 -0
- package/packages/consent/consent-wrapper-onetrust/src/lib/validation/onetrust-api-error.ts +11 -0
- package/packages/consent/consent-wrapper-onetrust/src/test-helpers/mocks.ts +23 -0
- package/packages/consent/consent-wrapper-onetrust/src/test-helpers/onetrust-globals.d.ts +11 -0
- package/packages/consent/consent-wrapper-onetrust/src/test-helpers/utils.ts +3 -0
- package/packages/consent/consent-wrapper-onetrust/tsconfig.build.json +9 -0
- package/packages/consent/consent-wrapper-onetrust/tsconfig.json +11 -0
- package/packages/consent/consent-wrapper-onetrust/webpack.config.js +25 -0
- package/packages/core/.eslintrc.js +4 -0
- package/packages/core/.lintstagedrc.js +1 -0
- package/packages/core/LICENSE.MD +45 -0
- package/packages/core/README.md +3 -0
- package/packages/core/jest.config.js +5 -0
- package/packages/core/jest.setup.js +10 -0
- package/packages/core/package.json +40 -0
- package/packages/core/src/analytics/__tests__/dispatch.test.ts +95 -0
- package/packages/core/src/analytics/dispatch.ts +58 -0
- package/packages/core/src/analytics/index.ts +11 -0
- package/packages/core/src/callback/__tests__/index.test.ts +85 -0
- package/packages/core/src/callback/index.ts +51 -0
- package/packages/core/src/context/index.ts +123 -0
- package/packages/core/src/emitter/__tests__/emitter.test.ts +74 -0
- package/packages/core/src/emitter/index.ts +65 -0
- package/packages/core/src/emitter/interface.ts +31 -0
- package/packages/core/src/events/__tests__/index.test.ts +394 -0
- package/packages/core/src/events/index.ts +280 -0
- package/packages/core/src/events/interfaces.ts +475 -0
- package/packages/core/src/index.ts +19 -0
- package/packages/core/src/logger/__tests__/index.test.ts +66 -0
- package/packages/core/src/logger/index.ts +74 -0
- package/packages/core/src/plugins/index.ts +43 -0
- package/packages/core/src/priority-queue/__tests__/backoff.test.ts +23 -0
- package/packages/core/src/priority-queue/__tests__/index.test.ts +158 -0
- package/packages/core/src/priority-queue/backoff.ts +24 -0
- package/packages/core/src/priority-queue/index.ts +103 -0
- package/packages/core/src/queue/__tests__/event-queue.test.ts +678 -0
- package/packages/core/src/queue/__tests__/extension-flushing.test.ts +416 -0
- package/packages/core/src/queue/delivery.ts +73 -0
- package/packages/core/src/queue/event-queue.ts +318 -0
- package/packages/core/src/stats/__tests__/index.test.ts +103 -0
- package/packages/core/src/stats/index.ts +88 -0
- package/packages/core/src/task/__tests__/task-group.test.ts +26 -0
- package/packages/core/src/task/task-group.ts +31 -0
- package/packages/core/src/user/index.ts +7 -0
- package/packages/core/src/utils/__tests__/group-by.test.ts +96 -0
- package/packages/core/src/utils/__tests__/is-plain-object.test.ts +27 -0
- package/packages/core/src/utils/__tests__/is-thenable.test.ts +39 -0
- package/packages/core/src/utils/bind-all.ts +19 -0
- package/packages/core/src/utils/get-global.ts +17 -0
- package/packages/core/src/utils/group-by.ts +30 -0
- package/packages/core/src/utils/has-properties.ts +7 -0
- package/packages/core/src/utils/is-plain-object.ts +26 -0
- package/packages/core/src/utils/is-thenable.ts +9 -0
- package/packages/core/src/utils/p-while.ts +12 -0
- package/packages/core/src/utils/pick.ts +8 -0
- package/packages/core/src/utils/ts-helpers.ts +13 -0
- package/packages/core/src/validation/__tests__/assertions.test.ts +155 -0
- package/packages/core/src/validation/assertions.ts +72 -0
- package/packages/core/src/validation/errors.ts +8 -0
- package/packages/core/src/validation/helpers.ts +23 -0
- package/packages/core/test-helpers/index.ts +2 -0
- package/packages/core/test-helpers/test-ctx.ts +7 -0
- package/packages/core/test-helpers/test-event-queue.ts +7 -0
- package/packages/core/tsconfig.build.json +9 -0
- package/packages/core/tsconfig.json +11 -0
- package/packages/node/.eslintrc.js +7 -0
- package/packages/node/.lintstagedrc.js +1 -0
- package/packages/node/LICENSE +45 -0
- package/packages/node/README.md +138 -0
- package/packages/node/jest.config.js +5 -0
- package/packages/node/jest.setup.js +4 -0
- package/packages/node/package.json +50 -0
- package/packages/node/scripts/version.sh +11 -0
- package/packages/node/src/__tests__/callback.test.ts +47 -0
- package/packages/node/src/__tests__/disable.integration.test.ts +42 -0
- package/packages/node/src/__tests__/emitter.integration.test.ts +45 -0
- package/packages/node/src/__tests__/graceful-shutdown-integration.test.ts +244 -0
- package/packages/node/src/__tests__/http-client.integration.test.ts +69 -0
- package/packages/node/src/__tests__/http-integration.test.ts +362 -0
- package/packages/node/src/__tests__/integration.test.ts +357 -0
- package/packages/node/src/__tests__/plugins.test.ts +16 -0
- package/packages/node/src/__tests__/settings.test.ts +9 -0
- package/packages/node/src/__tests__/test-helpers/assert-shape/http-request-event.ts +13 -0
- package/packages/node/src/__tests__/test-helpers/assert-shape/index.ts +2 -0
- package/packages/node/src/__tests__/test-helpers/assert-shape/segment-http-api.ts +43 -0
- package/packages/node/src/__tests__/test-helpers/create-test-analytics.ts +42 -0
- package/packages/node/src/__tests__/test-helpers/factories.ts +17 -0
- package/packages/node/src/__tests__/test-helpers/is-valid-date.ts +6 -0
- package/packages/node/src/__tests__/test-helpers/resolve-ctx.ts +19 -0
- package/packages/node/src/__tests__/test-helpers/resolve-emitter.ts +11 -0
- package/packages/node/src/__tests__/test-helpers/sleep.ts +3 -0
- package/packages/node/src/__tests__/test-helpers/test-plugin.ts +16 -0
- package/packages/node/src/__tests__/typedef-tests.ts +120 -0
- package/packages/node/src/app/analytics-node.ts +299 -0
- package/packages/node/src/app/context.ts +11 -0
- package/packages/node/src/app/dispatch-emit.ts +42 -0
- package/packages/node/src/app/emitter.ts +23 -0
- package/packages/node/src/app/event-factory.ts +20 -0
- package/packages/node/src/app/event-queue.ts +23 -0
- package/packages/node/src/app/settings.ts +49 -0
- package/packages/node/src/app/types/index.ts +3 -0
- package/packages/node/src/app/types/params.ts +76 -0
- package/packages/node/src/app/types/plugin.ts +5 -0
- package/packages/node/src/app/types/segment-event.ts +7 -0
- package/packages/node/src/generated/version.ts +2 -0
- package/packages/node/src/index.ts +26 -0
- package/packages/node/src/lib/__tests__/abort.test.ts +54 -0
- package/packages/node/src/lib/__tests__/create-url.test.ts +35 -0
- package/packages/node/src/lib/__tests__/env.test.ts +52 -0
- package/packages/node/src/lib/__tests__/get-message-id.test.ts +21 -0
- package/packages/node/src/lib/abort.ts +77 -0
- package/packages/node/src/lib/base-64-encode.ts +8 -0
- package/packages/node/src/lib/create-url.ts +11 -0
- package/packages/node/src/lib/env.ts +45 -0
- package/packages/node/src/lib/extract-promise-parts.ts +21 -0
- package/packages/node/src/lib/fetch.ts +16 -0
- package/packages/node/src/lib/get-message-id.ts +10 -0
- package/packages/node/src/lib/http-client.ts +95 -0
- package/packages/node/src/lib/uuid.ts +1 -0
- package/packages/node/src/plugins/segmentio/__tests__/methods.test.ts +223 -0
- package/packages/node/src/plugins/segmentio/__tests__/publisher.test.ts +411 -0
- package/packages/node/src/plugins/segmentio/context-batch.ts +71 -0
- package/packages/node/src/plugins/segmentio/index.ts +66 -0
- package/packages/node/src/plugins/segmentio/publisher.ts +265 -0
- package/packages/node/tsconfig.build.json +9 -0
- package/packages/node/tsconfig.json +10 -0
- package/packages/test-helpers/.eslintrc.js +7 -0
- package/packages/test-helpers/.lintstagedrc.js +1 -0
- package/packages/test-helpers/jest.config.js +3 -0
- package/packages/test-helpers/package.json +26 -0
- package/packages/test-helpers/src/analytics/cdn-settings-builder.ts +79 -0
- package/packages/test-helpers/src/analytics/index.ts +1 -0
- package/packages/test-helpers/src/index.ts +2 -0
- package/packages/test-helpers/src/utils/index.ts +1 -0
- package/packages/test-helpers/src/utils/sleep.ts +4 -0
- package/packages/test-helpers/tsconfig.build.json +9 -0
- package/packages/test-helpers/tsconfig.json +11 -0
- package/tsconfig.json +21 -0
- package/turbo.json +39 -0
- package/typings/get-monorepo-packages.d.ts +9 -0
- package/typings/spawn.d.ts +10 -0
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
import { LoadContext } from '../domain/load-cancellation'
|
|
2
|
+
import type {
|
|
3
|
+
Categories,
|
|
4
|
+
IntegrationCategoryMappings,
|
|
5
|
+
CDNSettingsRemotePlugin,
|
|
6
|
+
} from './wrapper'
|
|
7
|
+
|
|
8
|
+
export type RegisterOnConsentChangedFunction = (
|
|
9
|
+
categoriesChangedCb: (categories: Categories) => void
|
|
10
|
+
) => void
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Consent wrapper function configuration
|
|
14
|
+
*/
|
|
15
|
+
export interface CreateWrapperSettings {
|
|
16
|
+
/**
|
|
17
|
+
* Wait until this function resolves/returns before loading analytics.
|
|
18
|
+
* This function should return a list of initial categories.
|
|
19
|
+
* If this function returns `undefined`, `getCategories()` function will be called to get initial categories.
|
|
20
|
+
**/
|
|
21
|
+
shouldLoad?: (
|
|
22
|
+
context: LoadContext
|
|
23
|
+
) => Categories | void | Promise<Categories | void>
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* Fetch the categories which stamp every event. Called each time a new Hightouch event is dispatched.
|
|
27
|
+
* @example
|
|
28
|
+
* ```ts
|
|
29
|
+
* () => ({ "Advertising": true, "Analytics": false })
|
|
30
|
+
* ```
|
|
31
|
+
**/
|
|
32
|
+
getCategories: () => Categories | Promise<Categories>
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* Function to register a listener for consent changes to programatically send a "Hightouch Consent Preference" event to Hightouch when consent preferences change.
|
|
36
|
+
*
|
|
37
|
+
* #### Note: The callback requires the categories to be in the shape of { "C0001": true, "C0002": false }, so some normalization may be needed.
|
|
38
|
+
* @example
|
|
39
|
+
* ```ts
|
|
40
|
+
* async (categoriesChangedCb) => {
|
|
41
|
+
* await resolveWhen(() => window.MyCMP !== undefined, 500)
|
|
42
|
+
* window.MyCMP.OnConsentChanged((event.detail) => categoriesChangedCb(normalizeCategories(event.detail))
|
|
43
|
+
* }
|
|
44
|
+
*
|
|
45
|
+
* /* event payload
|
|
46
|
+
* {
|
|
47
|
+
* "type": "track",
|
|
48
|
+
* "event": "Hightouch Consent Preference",
|
|
49
|
+
* "context": {
|
|
50
|
+
* "consent": {
|
|
51
|
+
* "version": 2,
|
|
52
|
+
* "categoryPreferences" : {
|
|
53
|
+
* "C0001": true,
|
|
54
|
+
* "C0002": false,
|
|
55
|
+
* }
|
|
56
|
+
* }
|
|
57
|
+
* ..
|
|
58
|
+
* ```
|
|
59
|
+
*/
|
|
60
|
+
registerOnConsentChanged?: RegisterOnConsentChangedFunction
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* This permanently disables any consent requirement (i.e device mode gating, event pref stamping).
|
|
64
|
+
* Called on wrapper initialization. **shouldLoad will never be called**
|
|
65
|
+
**/
|
|
66
|
+
shouldDisableConsentRequirement?: () => boolean | Promise<boolean>
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* Disable the HtEvents SDK completely. htevents.load() will have no effect.
|
|
70
|
+
* .track / .identify etc calls should not throw any errors, but analytics settings will never be fetched and no events will be sent to Hightouch.
|
|
71
|
+
* Called on wrapper initialization. This can be useful in dev environments (e.g. 'devMode').
|
|
72
|
+
* **shouldLoad will never be called**
|
|
73
|
+
**/
|
|
74
|
+
shouldDisableHightouch?: () => boolean | Promise<boolean>
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
* Object that maps `integrationName -> categories`. Typically, this is not needed, as this data comes from the CDN and is attached to each integration.
|
|
78
|
+
* However, it may be desirable to hardcode these mappings (e.g, for testing).
|
|
79
|
+
* @example
|
|
80
|
+
* {"Braze Web Mode (Actions)": ["Advertising", "Analytics"]
|
|
81
|
+
*/
|
|
82
|
+
integrationCategoryMappings?: IntegrationCategoryMappings
|
|
83
|
+
|
|
84
|
+
/**
|
|
85
|
+
* Predicate function to override default logic around whether or not to load an integration. By default, consent requires a user to have all categories enabled for a given integration.
|
|
86
|
+
* @example
|
|
87
|
+
* ```ts
|
|
88
|
+
* // Always disable a particular plugin
|
|
89
|
+
* const shouldEnableIntegration = (integrationCategories, categories, { creationName }) => {
|
|
90
|
+
* if (creationName === 'FullStory') return false
|
|
91
|
+
* if (!integrationCategories.length) return true
|
|
92
|
+
* return integrationCategories.every((c) => categories[c])
|
|
93
|
+
* }
|
|
94
|
+
* ```
|
|
95
|
+
*/
|
|
96
|
+
shouldEnableIntegration?: (
|
|
97
|
+
integrationCategories: string[],
|
|
98
|
+
categories: Categories,
|
|
99
|
+
integrationInfo: Pick<CDNSettingsRemotePlugin, 'creationName'>
|
|
100
|
+
) => boolean
|
|
101
|
+
|
|
102
|
+
/**
|
|
103
|
+
* Prune consent categories from the `context.consent.categoryPreferences` payload if that category is not mapped to any integration in your Hightouch.io source.
|
|
104
|
+
* This is helpful if you want to save on bytes sent to Hightouch and do need the complete list of CMP's categories for debugging or other reasons.
|
|
105
|
+
* By default, all consent categories returned by `getCategories()` are sent to Hightouch.
|
|
106
|
+
* @default false
|
|
107
|
+
* ### Example Behavior
|
|
108
|
+
* You have the following categories mappings defined:
|
|
109
|
+
* ```
|
|
110
|
+
* FullStory -> 'CAT002',
|
|
111
|
+
* Braze -> 'CAT003'
|
|
112
|
+
* ```
|
|
113
|
+
* ```ts
|
|
114
|
+
* // pruneUnmappedCategories = false (default)
|
|
115
|
+
* { CAT0001: true, CAT0002: true, CAT0003: true }
|
|
116
|
+
* // pruneUnmappedCategories = true
|
|
117
|
+
* { CAT0002: true, CAT0003: true } // pruneUnmappedCategories = true
|
|
118
|
+
* ```
|
|
119
|
+
*/
|
|
120
|
+
pruneUnmappedCategories?: boolean
|
|
121
|
+
}
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
import type { CreateWrapperSettings } from './settings'
|
|
2
|
+
|
|
3
|
+
export interface HtEventsBrowserSettings {
|
|
4
|
+
writeKey: string
|
|
5
|
+
cdnURL?: string
|
|
6
|
+
cdnSettings?: CDNSettings
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* 2nd arg to HtEventsBrowser.load / analytics
|
|
11
|
+
*/
|
|
12
|
+
export interface InitOptions {
|
|
13
|
+
updateCDNSettings(cdnSettings: CDNSettings): CDNSettings
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
/**
|
|
17
|
+
* This interface is a stub of the actual HtEvents instance.
|
|
18
|
+
* This can be either:
|
|
19
|
+
* - window.htevents (i.e `HtEventsSnippet`)
|
|
20
|
+
* - the instance returned by `HtEventsBrowser.load({...})`
|
|
21
|
+
* - the instance created by `new HtEventsBrowser(...)`
|
|
22
|
+
*/
|
|
23
|
+
export interface AnyAnalytics {
|
|
24
|
+
addSourceMiddleware(...args: any[]): any
|
|
25
|
+
on(event: 'initialize', callback: (cdnSettings: CDNSettings) => void): void
|
|
26
|
+
track(event: string, properties?: unknown, ...args: any[]): void
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* This interface is meant to be compatible with both the snippet (`window.htevents.load`)
|
|
30
|
+
* and the npm lib (`HtEventsBrowser.load`)
|
|
31
|
+
*/
|
|
32
|
+
load(
|
|
33
|
+
writeKeyOrSettings: HtEventsBrowserSettings | string,
|
|
34
|
+
options?: InitOptions
|
|
35
|
+
): void
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* This function modifies an analytics instance to add consent management.
|
|
40
|
+
* This is an analytics instance (either window.htevents, new HtEventsBrowser(), or the instance returned by `HtEventsBrowser.load({...})`
|
|
41
|
+
**/
|
|
42
|
+
// Why type this as 'object' rather than 'AnyAnalytics'? IMO, the chance of a false positive is much higher than the chance that someone will pass in an object that is not an analytics instance.
|
|
43
|
+
// We have an assertion function that throws an error if the analytics instance is not compatible.
|
|
44
|
+
export type Wrapper<Analytics extends AnyAnalytics> = (
|
|
45
|
+
analyticsInstance: Analytics
|
|
46
|
+
) => Analytics
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Create a function which wraps analytics instances to add consent management.
|
|
50
|
+
*/
|
|
51
|
+
export type CreateWrapper<Analytics extends AnyAnalytics> = (
|
|
52
|
+
settings: CreateWrapperSettings
|
|
53
|
+
) => Wrapper<Analytics>
|
|
54
|
+
|
|
55
|
+
export interface Categories {
|
|
56
|
+
[category: string]: boolean
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
export interface IntegrationCategoryMappings {
|
|
60
|
+
[integrationName: string]: string[]
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
export interface CDNSettings {
|
|
64
|
+
integrations: CDNSettingsIntegrations
|
|
65
|
+
remotePlugins?: CDNSettingsRemotePlugin[]
|
|
66
|
+
consentSettings?: {
|
|
67
|
+
// all unique categories keys
|
|
68
|
+
allCategories: string[]
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
*CDN Settings Integrations object.
|
|
74
|
+
* @example
|
|
75
|
+
* { "Fullstory": {...}, "Braze Web Mode (Actions)": {...}}
|
|
76
|
+
*/
|
|
77
|
+
export interface CDNSettingsIntegrations {
|
|
78
|
+
[integrationName: string]: { [key: string]: any }
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
export interface CDNSettingsRemotePlugin {
|
|
82
|
+
/** The creation name of the remote plugin
|
|
83
|
+
* @example 'Actions Amplitude',
|
|
84
|
+
*/
|
|
85
|
+
creationName: string
|
|
86
|
+
/** The name of the remote plugin
|
|
87
|
+
* @example 'Amplitude (Actions)'
|
|
88
|
+
*/
|
|
89
|
+
name: string
|
|
90
|
+
/** The url of the javascript file to load
|
|
91
|
+
* @example https://cdn.hightouch-events.com/next-integrations/actions/amplitude-plugins/67621cf169443c119b.js
|
|
92
|
+
*/
|
|
93
|
+
url: string
|
|
94
|
+
/** The UMD/global name the plugin uses. Plugins are expected to exist here with the `PluginFactory` method signature
|
|
95
|
+
* @example 'amplitude-pluginsDestination',
|
|
96
|
+
*/
|
|
97
|
+
libraryName: string
|
|
98
|
+
/** The settings related to this plugin.
|
|
99
|
+
* @example
|
|
100
|
+
* ```js
|
|
101
|
+
* versionSettings: { componentTypes: [] },
|
|
102
|
+
* subscriptions: [{ id: 'nEx215jtwHt4kJmFXSmHMd', name: 'Browser Session Tracking'...}]
|
|
103
|
+
* ```
|
|
104
|
+
*/
|
|
105
|
+
// using "any" here because otherwise this conflict with the JSONValue type inside of analytics-next, and we're not sharing types ATM.
|
|
106
|
+
settings: any
|
|
107
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @example
|
|
3
|
+
* pick({ a: 1, b: 2, c: 3 }, ['a', 'c']) => { a: 1, c: 3 }
|
|
4
|
+
*/
|
|
5
|
+
export const pick = <
|
|
6
|
+
Obj extends Record<string, unknown>,
|
|
7
|
+
Key extends keyof Obj
|
|
8
|
+
>(
|
|
9
|
+
obj: Obj,
|
|
10
|
+
keys: Key[]
|
|
11
|
+
): Pick<Obj, Key> => {
|
|
12
|
+
return keys.reduce((acc, k) => {
|
|
13
|
+
if (k in obj) {
|
|
14
|
+
acc[k] = obj[k]
|
|
15
|
+
}
|
|
16
|
+
return acc
|
|
17
|
+
}, {} as Pick<Obj, Key>)
|
|
18
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Everyday variadic pipe function (reverse of 'compose')
|
|
3
|
+
* @example pipe(fn1, fn2, fn3)(value) // fn3(fn2(fn1(value)))
|
|
4
|
+
*/
|
|
5
|
+
export const pipe = <T extends any[], U>(
|
|
6
|
+
fn: (...args: T) => U,
|
|
7
|
+
...fns: ((a: U) => U)[]
|
|
8
|
+
) => {
|
|
9
|
+
const piped = fns.reduce(
|
|
10
|
+
(prevFn, nextFn) => (value: U) => nextFn(prevFn(value)),
|
|
11
|
+
(value) => value
|
|
12
|
+
)
|
|
13
|
+
return (...args: T) => piped(fn(...args))
|
|
14
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
*
|
|
3
|
+
* @param condition - predicate function that, if true, will cause the promise to resolve.
|
|
4
|
+
* @param delayMs - The frequency, in milliseconds (thousandths of a second), to check the condition.
|
|
5
|
+
* @example
|
|
6
|
+
* ```ts
|
|
7
|
+
* // check 'readyState' every 500ms
|
|
8
|
+
* await resolveWhen(() => document.readyState === 'complete', 500)
|
|
9
|
+
* ```
|
|
10
|
+
*/
|
|
11
|
+
export async function resolveWhen(
|
|
12
|
+
condition: () => boolean,
|
|
13
|
+
delayMs: number
|
|
14
|
+
): Promise<void> {
|
|
15
|
+
return new Promise((resolve, _reject) => {
|
|
16
|
+
if (condition()) {
|
|
17
|
+
resolve()
|
|
18
|
+
return
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
const check = () =>
|
|
22
|
+
setTimeout(() => {
|
|
23
|
+
if (condition()) {
|
|
24
|
+
resolve()
|
|
25
|
+
} else {
|
|
26
|
+
check()
|
|
27
|
+
}
|
|
28
|
+
}, delayMs)
|
|
29
|
+
|
|
30
|
+
check()
|
|
31
|
+
})
|
|
32
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"extends": "../../../tsconfig.json",
|
|
3
|
+
"exclude": ["node_modules", "dist"],
|
|
4
|
+
"compilerOptions": {
|
|
5
|
+
"module": "ESNext", // es6 modules
|
|
6
|
+
"target": "ES2020", // don't down-compile *too much* -- if users are using webpack, they can always transpile this library themselves
|
|
7
|
+
"lib": ["ES2020", "DOM", "DOM.Iterable"], // assume that consumers will be polyfilling at least down to es2020
|
|
8
|
+
"moduleResolution": "node",
|
|
9
|
+
"resolveJsonModule": true,
|
|
10
|
+
"isolatedModules": true // ensure we are friendly to build systems
|
|
11
|
+
}
|
|
12
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require("@internal/config").lintStagedConfig
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright © 2023 Hightouch
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
|
+
THE SOFTWARE.
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
The MIT License (MIT)
|
|
26
|
+
|
|
27
|
+
Copyright © 2023 Segment
|
|
28
|
+
|
|
29
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
30
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
31
|
+
in the Software without restriction, including without limitation the rights
|
|
32
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
33
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
34
|
+
furnished to do so, subject to the following conditions:
|
|
35
|
+
|
|
36
|
+
The above copyright notice and this permission notice shall be included in
|
|
37
|
+
all copies or substantial portions of the Software.
|
|
38
|
+
|
|
39
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
40
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
41
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
42
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
43
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
44
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
45
|
+
THE SOFTWARE.
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
# @ht-sdks/events-sdk-js-consent-wrapper-onetrust
|
|
2
|
+
|
|
3
|
+
### Try our Playground! [Next.js CodeSandbox](https://codesandbox.io/p/sandbox/focused-bhaskara-jysqr5) 🚀
|
|
4
|
+
|
|
5
|
+
<img src="img/onetrust-popup.jpg" width="500" />
|
|
6
|
+
|
|
7
|
+
# Quick Start
|
|
8
|
+
|
|
9
|
+
## Configure OneTrust + hightouch
|
|
10
|
+
|
|
11
|
+
### Ensure that the OneTrust Banner SDK is loaded first
|
|
12
|
+
|
|
13
|
+
```html
|
|
14
|
+
<head>
|
|
15
|
+
<!-- This should be included before the hightouch snippet -->
|
|
16
|
+
<script
|
|
17
|
+
src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js"
|
|
18
|
+
type="text/javascript"
|
|
19
|
+
charset="UTF-8"
|
|
20
|
+
data-domain-script="0000-0000-000-test"
|
|
21
|
+
></script>
|
|
22
|
+
</head>
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
### Ensure that consent is enabled and that you have created your Integration -> Consent Category Mappings
|
|
26
|
+
|
|
27
|
+
- Ensure that your integrations in the hightouch UI have consent enabled, and that they map to your Consent Category IDs (also called Cookie Group IDs or Cookie Consent IDs).
|
|
28
|
+
The IDs look like "C0001", "C0002"and are configurable in OneTrust
|
|
29
|
+

|
|
30
|
+
|
|
31
|
+
- Debugging: this library expects the [OneTrust Banner SDK](https://community.cookiepro.com/s/article/UUID-d8291f61-aa31-813a-ef16-3f6dec73d643?language=en_US) to be available in order interact with OneTrust. This library derives the group IDs that are active for the current user from the `window.OneTrustActiveGroups` object provided by the OneTrust SDK. [Read this for more information [community.cookiepro.com]](https://community.cookiepro.com/s/article/UUID-66bcaaf1-c7ca-5f32-6760-c75a1337c226?language=en_US).
|
|
32
|
+
|
|
33
|
+
## For `npm` library users
|
|
34
|
+
|
|
35
|
+
1. Install the package
|
|
36
|
+
|
|
37
|
+
```sh
|
|
38
|
+
# npm
|
|
39
|
+
npm install @ht-sdks/events-sdk-js-consent-wrapper-onetrust
|
|
40
|
+
|
|
41
|
+
# yarn
|
|
42
|
+
yarn add @ht-sdks/events-sdk-js-consent-wrapper-onetrust
|
|
43
|
+
|
|
44
|
+
# pnpm
|
|
45
|
+
pnpm add @ht-sdks/events-sdk-js-consent-wrapper-onetrust
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
2. Initialize alongside analytics
|
|
49
|
+
|
|
50
|
+
```ts
|
|
51
|
+
import { withOneTrust } from '@ht-sdks/events-sdk-js-consent-wrapper-onetrust'
|
|
52
|
+
import { HtEventsBrowser } from '@ht-sdks/events-sdk-js-browser'
|
|
53
|
+
|
|
54
|
+
export const analytics = new HtEventsBrowser()
|
|
55
|
+
|
|
56
|
+
withOneTrust(analytics).load({ writeKey: '<MY_WRITE_KEY'> })
|
|
57
|
+
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
## For snippet users (window.htevents)
|
|
61
|
+
|
|
62
|
+
1. In your head
|
|
63
|
+
|
|
64
|
+
```html
|
|
65
|
+
<head>
|
|
66
|
+
<!-- Add OneTrust -->
|
|
67
|
+
<script
|
|
68
|
+
src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js"
|
|
69
|
+
type="text/javascript"
|
|
70
|
+
charset="UTF-8"
|
|
71
|
+
data-domain-script="YOUR-DOMAIN-SCRIPT-ID"
|
|
72
|
+
></script>
|
|
73
|
+
|
|
74
|
+
<!-- Add OneTrust Consent Wrapper -->
|
|
75
|
+
<script src="https://cdn.jsdelivr.net/npm/@ht-sdks/events-sdk-js-consent-wrapper-onetrust@latest/dist/umd/analytics-onetrust.umd.js"></script>
|
|
76
|
+
|
|
77
|
+
<!--
|
|
78
|
+
Add / Modify hightouch Analytics Snippet
|
|
79
|
+
* Find and replace: analytics.load('<MY_WRITE_KEY'>) -> withOneTrust(analytics).load('<MY_WRITE_KEY'>)
|
|
80
|
+
-->
|
|
81
|
+
<script>
|
|
82
|
+
!function(){var htevents=window.htevents...
|
|
83
|
+
....
|
|
84
|
+
withOneTrust(htevents).load('<MY_WRITE_KEY'>) // replace analytics.load()
|
|
85
|
+
....
|
|
86
|
+
</script>
|
|
87
|
+
</head>
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
#### ⚠️ Reminder: _you must modify_ `analytics.load('....')` from the original hightouch snippet. See markup comment in example above.
|
|
91
|
+
|
|
92
|
+
## Other examples:
|
|
93
|
+
|
|
94
|
+
> Note: Playgrounds are meant for experimentation / testing, and as such, may be a bit overly complicated.
|
|
95
|
+
> We recommend you try to follcaow the documentation for best practice.
|
|
96
|
+
|
|
97
|
+
- [Standalone playground](/examples/standalone-playground/pages/index-consent.html)
|
|
98
|
+
|
|
99
|
+
## Environments
|
|
100
|
+
|
|
101
|
+
### Build Artifacts
|
|
102
|
+
|
|
103
|
+
- We build three versions of the library:
|
|
104
|
+
|
|
105
|
+
1. `cjs` (CommonJS modules) - for npm library users
|
|
106
|
+
2. `esm` (es6 modules) - for npm library users
|
|
107
|
+
3. `umd` (bundle) - for snippet users (typically)
|
|
108
|
+
|
|
109
|
+
### Browser Support
|
|
110
|
+
|
|
111
|
+
- `cjs/esm` - Support modern JS syntax (ES2020). These are our npm library users, so we expect them to transpile this module themselves using something like babel/webpack if they need extra legacy browser support.
|
|
112
|
+
|
|
113
|
+
- `umd` - Support back to IE11, but **do not** polyfill . See our docs on [supported browsers](https://hightouch.com/docs/connections/sources/catalog/libraries/website/javascript/supported-browsers).
|
|
114
|
+
|
|
115
|
+
In order to get full ie11 support, you are expected to bring your own polyfills. e.g. adding the following to your script tag:
|
|
116
|
+
|
|
117
|
+
```html
|
|
118
|
+
<script src="https://cdnjs.cloudflare.com/ajax/libs/babel-polyfill/7.7.0/polyfill.min.js"></script>
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
or
|
|
122
|
+
|
|
123
|
+
```html
|
|
124
|
+
<script src="https://polyfill.io/v3/polyfill.min.js?features=es5,es2015,es2016,es2017,es2018,es2019,es2020&flags=gated"></script>
|
|
125
|
+
```
|
|
Binary file
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ht-sdks/events-sdk-js-consent-wrapper-onetrust",
|
|
3
|
+
"version": "0.3.1",
|
|
4
|
+
"keywords": [],
|
|
5
|
+
"main": "./dist/cjs/index.js",
|
|
6
|
+
"module": "./dist/esm/index.js",
|
|
7
|
+
"types": "./dist/types/index.d.ts",
|
|
8
|
+
"sideEffects": [
|
|
9
|
+
"./dist/umd/analytics-onetrust.umd.js"
|
|
10
|
+
],
|
|
11
|
+
"jsdeliver": "./dist/umd/analytics-onetrust.umd.js",
|
|
12
|
+
"unpkg": "./dist/umd/analytics-onetrust.umd.js",
|
|
13
|
+
"files": [
|
|
14
|
+
"LICENSE",
|
|
15
|
+
"dist/",
|
|
16
|
+
"src/",
|
|
17
|
+
"!**/__tests__/**",
|
|
18
|
+
"!**/test-helpers/**",
|
|
19
|
+
"!*.tsbuildinfo"
|
|
20
|
+
],
|
|
21
|
+
"scripts": {
|
|
22
|
+
".": "yarn run -T turbo run --filter=@ht-sdks/events-sdk-js-consent-wrapper-onetrust...",
|
|
23
|
+
"test": "yarn jest",
|
|
24
|
+
"lint": "yarn concurrently 'yarn:eslint .' 'yarn:tsc --noEmit'",
|
|
25
|
+
"build": "rm -rf dist && yarn concurrently 'yarn:build:*'",
|
|
26
|
+
"build:esm": "yarn tsc -p tsconfig.build.json",
|
|
27
|
+
"build:cjs": "yarn tsc -p tsconfig.build.json --outDir ./dist/cjs --module commonjs",
|
|
28
|
+
"build:bundle": "NODE_ENV=production yarn run webpack",
|
|
29
|
+
"build:bundle-dev": "NODE_ENV=development yarn run webpack",
|
|
30
|
+
"watch": "yarn concurrently 'yarn build:bundle-dev --watch' 'yarn build:esm --watch'",
|
|
31
|
+
"watch:test": "yarn test --watch",
|
|
32
|
+
"tsc": "yarn run -T tsc",
|
|
33
|
+
"eslint": "yarn run -T eslint",
|
|
34
|
+
"concurrently": "yarn run -T concurrently --raw",
|
|
35
|
+
"jest": "yarn run -T jest",
|
|
36
|
+
"webpack": "yarn run -T webpack"
|
|
37
|
+
},
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@ht-sdks/events-sdk-js-consent-tools": "0.2.1"
|
|
40
|
+
},
|
|
41
|
+
"peerDependencies": {
|
|
42
|
+
"@ht-sdks/events-sdk-js-browser": "^1.0.0"
|
|
43
|
+
},
|
|
44
|
+
"peerDependenciesMeta": {
|
|
45
|
+
"@ht-sdks/events-sdk-js-browser": {
|
|
46
|
+
"optional": true
|
|
47
|
+
}
|
|
48
|
+
},
|
|
49
|
+
"packageManager": "yarn@3.4.1",
|
|
50
|
+
"license": "MIT",
|
|
51
|
+
"repository": {
|
|
52
|
+
"directory": "packages/consent/consent-wrapper-onetrust",
|
|
53
|
+
"type": "git",
|
|
54
|
+
"url": "https://github.com/ht-sdks/events-sdk-js-mono"
|
|
55
|
+
},
|
|
56
|
+
"devDependencies": {
|
|
57
|
+
"@internal/config-webpack": "workspace:^",
|
|
58
|
+
"@internal/test-helpers": "workspace:^"
|
|
59
|
+
}
|
|
60
|
+
}
|