@eventvisor/module-ga4 0.8.0 → 0.9.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/CHANGELOG.md +11 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/lib/index.d.ts +1 -1
- package/package.json +3 -3
- package/src/index.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [0.9.0](https://github.com/eventvisor/eventvisor/compare/v0.8.0...v0.9.0) (2025-11-01)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* New Relic Browser module ([#26](https://github.com/eventvisor/eventvisor/issues/26)) ([d6ad9ed](https://github.com/eventvisor/eventvisor/commit/d6ad9edd4fd895f48070fffad4ac3f8967671229))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [0.8.0](https://github.com/eventvisor/eventvisor/compare/v0.7.0...v0.8.0) (2025-10-28)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @eventvisor/module-ga4
|
package/dist/index.d.ts
CHANGED
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","mappings":"CAAA,SAA2CA,EAAMC,GAC1B,iBAAZC,SAA0C,iBAAXC,OACxCA,OAAOD,QAAUD,IACQ,mBAAXG,QAAyBA,OAAOC,IAC9CD,OAAO,GAAIH,GACe,iBAAZC,QACdA,QAAkC,yBAAID,IAEtCD,EAA+B,yBAAIC,GACpC,CATD,CASGK,KAAM,I,uBCNLC,EAAsB,CAAC,E,miDCW3B,2BAAgCC,GAAhC,gBAAgC,IAAAA,IAAAA,EAAA,IACtB,MAAiBA,EAAO,KAEhC,MAAO,CACLC,UAHU,IAAG,QAAK,EAKlBC,UAAW,2CAAO,G,IAAEC,EAAS,YAAEC,EAAO,U,iCAEpCC,KAAK,QAAoBF,EAd1BG,QAAQ,WAAY,OACpBA,QAAQ,iBAAkB,IAC1BA,QAAQ,OAAQ,KAChBC,cAWsCH,G,SAG3C,C,GDrBoB,KAAK,EAAGL,G","sources":["webpack://EventvisorGA4Integration/webpack/universalModuleDefinition","webpack://EventvisorGA4Integration/webpack/startup","webpack://EventvisorGA4Integration/./src/index.ts"],"sourcesContent":["(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory();\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"EventvisorGA4Integration\"] = factory();\n\telse\n\t\troot[\"EventvisorGA4Integration\"] = factory();\n})(this, () => {\nreturn ","// startup\n// Load entry module and return exports\n// This entry module is referenced by other modules so it can't be inlined\nvar __webpack_exports__ = {};\n__webpack_modules__[166](0, __webpack_exports__);\n","import { Module } from \"@eventvisor/sdk\";\n\nexport type GA4ModuleOptions = {\n name?: string;\n};\n\nfunction underscore(str: string): string {\n return str\n .replace(/([A-Z])/g, \"_$1\")\n .replace(/[^a-zA-Z0-9_]/g, \"\")\n .replace(/\\s+/g, \"_\")\n .toLowerCase();\n}\n\nexport function createGA4Module(options: GA4ModuleOptions = {}): Module {\n const { name = \"ga4\" } = options;\n\n return {\n name,\n\n transport: async ({ eventName, payload }) => {\n // @ts-expect-error gtag is loaded from GA4 script\n gtag(\"event\", underscore(eventName), payload);\n },\n };\n}\n"],"names":["root","factory","exports","module","define","amd","this","__webpack_exports__","options","name","transport","eventName","payload","gtag","replace","toLowerCase"],"sourceRoot":""}
|
|
1
|
+
{"version":3,"file":"index.js","mappings":"CAAA,SAA2CA,EAAMC,GAC1B,iBAAZC,SAA0C,iBAAXC,OACxCA,OAAOD,QAAUD,IACQ,mBAAXG,QAAyBA,OAAOC,IAC9CD,OAAO,GAAIH,GACe,iBAAZC,QACdA,QAAkC,yBAAID,IAEtCD,EAA+B,yBAAIC,GACpC,CATD,CASGK,KAAM,I,uBCNLC,EAAsB,CAAC,E,miDCW3B,2BAAgCC,GAAhC,gBAAgC,IAAAA,IAAAA,EAAA,IACtB,MAAiBA,EAAO,KAEhC,MAAO,CACLC,UAHU,IAAG,QAAK,EAKlBC,UAAW,2CAAO,G,IAAEC,EAAS,YAAEC,EAAO,U,iCAEpCC,KAAK,QAAoBF,EAd1BG,QAAQ,WAAY,OACpBA,QAAQ,iBAAkB,IAC1BA,QAAQ,OAAQ,KAChBC,cAWsCH,G,SAG3C,C,GDrBoB,KAAK,EAAGL,G","sources":["webpack://EventvisorGA4Integration/webpack/universalModuleDefinition","webpack://EventvisorGA4Integration/webpack/startup","webpack://EventvisorGA4Integration/./src/index.ts"],"sourcesContent":["(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory();\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"EventvisorGA4Integration\"] = factory();\n\telse\n\t\troot[\"EventvisorGA4Integration\"] = factory();\n})(this, () => {\nreturn ","// startup\n// Load entry module and return exports\n// This entry module is referenced by other modules so it can't be inlined\nvar __webpack_exports__ = {};\n__webpack_modules__[166](0, __webpack_exports__);\n","import type { Module } from \"@eventvisor/sdk\";\n\nexport type GA4ModuleOptions = {\n name?: string;\n};\n\nfunction underscore(str: string): string {\n return str\n .replace(/([A-Z])/g, \"_$1\")\n .replace(/[^a-zA-Z0-9_]/g, \"\")\n .replace(/\\s+/g, \"_\")\n .toLowerCase();\n}\n\nexport function createGA4Module(options: GA4ModuleOptions = {}): Module {\n const { name = \"ga4\" } = options;\n\n return {\n name,\n\n transport: async ({ eventName, payload }) => {\n // @ts-expect-error gtag is loaded from GA4 script\n gtag(\"event\", underscore(eventName), payload);\n },\n };\n}\n"],"names":["root","factory","exports","module","define","amd","this","__webpack_exports__","options","name","transport","eventName","payload","gtag","replace","toLowerCase"],"sourceRoot":""}
|
package/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","mappings":"AACA,IAAIA,EAAsB,CCA1BA,EAAwB,CAACC,EAASC,KACjC,IAAI,IAAIC,KAAOD,EACXF,EAAoBI,EAAEF,EAAYC,KAASH,EAAoBI,EAAEH,EAASE,IAC5EE,OAAOC,eAAeL,EAASE,EAAK,CAAEI,YAAY,EAAMC,IAAKN,EAAWC,MCJ3EH,EAAwB,CAACS,EAAKC,IAAUL,OAAOM,UAAUC,eAAeC,KAAKJ,EAAKC,I,4TCc3E,SAASI,EAAgBC,EAA4B,CAAC,GAC3D,MAAM,KAAEC,EAAO,OAAUD,EAEzB,MAAO,CACLC,OAEAC,UAAW,GAAkC,EAAD,2BAA1B,UAAEC,EAAS,QAAEC,IAE7BC,KAAK,QAAoBF,EAd1BG,QAAQ,WAAY,OACpBA,QAAQ,iBAAkB,IAC1BA,QAAQ,OAAQ,KAChBC,cAWsCH,EACvC,GAEJ,C","sources":["webpack://@eventvisor/module-ga4/webpack/bootstrap","webpack://@eventvisor/module-ga4/webpack/runtime/define property getters","webpack://@eventvisor/module-ga4/webpack/runtime/hasOwnProperty shorthand","webpack://@eventvisor/module-ga4/./src/index.ts"],"sourcesContent":["// The require scope\nvar __webpack_require__ = {};\n\n","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","import { Module } from \"@eventvisor/sdk\";\n\nexport type GA4ModuleOptions = {\n name?: string;\n};\n\nfunction underscore(str: string): string {\n return str\n .replace(/([A-Z])/g, \"_$1\")\n .replace(/[^a-zA-Z0-9_]/g, \"\")\n .replace(/\\s+/g, \"_\")\n .toLowerCase();\n}\n\nexport function createGA4Module(options: GA4ModuleOptions = {}): Module {\n const { name = \"ga4\" } = options;\n\n return {\n name,\n\n transport: async ({ eventName, payload }) => {\n // @ts-expect-error gtag is loaded from GA4 script\n gtag(\"event\", underscore(eventName), payload);\n },\n };\n}\n"],"names":["__webpack_require__","exports","definition","key","o","Object","defineProperty","enumerable","get","obj","prop","prototype","hasOwnProperty","call","createGA4Module","options","name","transport","eventName","payload","gtag","replace","toLowerCase"],"sourceRoot":""}
|
|
1
|
+
{"version":3,"file":"index.mjs","mappings":"AACA,IAAIA,EAAsB,CCA1BA,EAAwB,CAACC,EAASC,KACjC,IAAI,IAAIC,KAAOD,EACXF,EAAoBI,EAAEF,EAAYC,KAASH,EAAoBI,EAAEH,EAASE,IAC5EE,OAAOC,eAAeL,EAASE,EAAK,CAAEI,YAAY,EAAMC,IAAKN,EAAWC,MCJ3EH,EAAwB,CAACS,EAAKC,IAAUL,OAAOM,UAAUC,eAAeC,KAAKJ,EAAKC,I,4TCc3E,SAASI,EAAgBC,EAA4B,CAAC,GAC3D,MAAM,KAAEC,EAAO,OAAUD,EAEzB,MAAO,CACLC,OAEAC,UAAW,GAAkC,EAAD,2BAA1B,UAAEC,EAAS,QAAEC,IAE7BC,KAAK,QAAoBF,EAd1BG,QAAQ,WAAY,OACpBA,QAAQ,iBAAkB,IAC1BA,QAAQ,OAAQ,KAChBC,cAWsCH,EACvC,GAEJ,C","sources":["webpack://@eventvisor/module-ga4/webpack/bootstrap","webpack://@eventvisor/module-ga4/webpack/runtime/define property getters","webpack://@eventvisor/module-ga4/webpack/runtime/hasOwnProperty shorthand","webpack://@eventvisor/module-ga4/./src/index.ts"],"sourcesContent":["// The require scope\nvar __webpack_require__ = {};\n\n","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","import type { Module } from \"@eventvisor/sdk\";\n\nexport type GA4ModuleOptions = {\n name?: string;\n};\n\nfunction underscore(str: string): string {\n return str\n .replace(/([A-Z])/g, \"_$1\")\n .replace(/[^a-zA-Z0-9_]/g, \"\")\n .replace(/\\s+/g, \"_\")\n .toLowerCase();\n}\n\nexport function createGA4Module(options: GA4ModuleOptions = {}): Module {\n const { name = \"ga4\" } = options;\n\n return {\n name,\n\n transport: async ({ eventName, payload }) => {\n // @ts-expect-error gtag is loaded from GA4 script\n gtag(\"event\", underscore(eventName), payload);\n },\n };\n}\n"],"names":["__webpack_require__","exports","definition","key","o","Object","defineProperty","enumerable","get","obj","prop","prototype","hasOwnProperty","call","createGA4Module","options","name","transport","eventName","payload","gtag","replace","toLowerCase"],"sourceRoot":""}
|
package/lib/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eventvisor/module-ga4",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "Eventvisor GA4 module",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"url": "https://github.com/eventvisor/eventvisor/issues"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@eventvisor/sdk": "0.
|
|
41
|
+
"@eventvisor/sdk": "0.9.0"
|
|
42
42
|
},
|
|
43
43
|
"license": "MIT",
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "3db931cbbadad1db56a99caabf9424c288f8f8d3"
|
|
45
45
|
}
|
package/src/index.ts
CHANGED