@athoscommerce/snap-tracker 1.1.4 → 1.1.5
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/README.md +3 -6
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,13 +1,10 @@
|
|
|
1
1
|
# Snap Tracker
|
|
2
2
|
|
|
3
|
-
The Snap Tracker is a core service available on each controller via `controller.tracker`. It is responsible for sending beacon events. Its class directly extends the [beacon.js](https://github.com/
|
|
3
|
+
The Snap Tracker is a core service available on each controller via `controller.tracker`. It is responsible for sending beacon events. Its class directly extends the [beacon.js](https://github.com/AthosCommerce/beacon.js) `Beacon` class, therefore all methods and properties of the Beacon class are available on the Tracker class.
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
## Snap Integration Usage
|
|
7
7
|
See [Integration Tracking](https://github.com/athoscommerce/snap/tree/main/docs/SNAP_TRACKING.md) for how and where to implement tracking events.
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
<!-- ## `events` methods -->
|
|
12
|
-
<!-- See [beacon.js Tracking Events](https://github.com/searchspring/beacon.js) for a list of available events. -->
|
|
13
|
-
|
|
9
|
+
## `events` methods
|
|
10
|
+
See [beacon.js Tracking Events](https://github.com/athoscommerce/beacon.js?tab=readme-ov-file#tracking-events) for a list of available events.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@athoscommerce/snap-tracker",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.5",
|
|
4
4
|
"description": "Snap Tracker",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@athoscommerce/beacon": "1.1.0",
|
|
27
|
-
"@athoscommerce/snap-store-mobx": "1.1.
|
|
28
|
-
"@athoscommerce/snap-toolbox": "1.1.
|
|
27
|
+
"@athoscommerce/snap-store-mobx": "1.1.5",
|
|
28
|
+
"@athoscommerce/snap-toolbox": "1.1.5",
|
|
29
29
|
"@types/uuid": "8.3.4",
|
|
30
30
|
"deepmerge": "4.3.1",
|
|
31
31
|
"uuid": "9.0.1"
|
|
@@ -34,5 +34,5 @@
|
|
|
34
34
|
"files": [
|
|
35
35
|
"dist/**/*"
|
|
36
36
|
],
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "d387e3b28569ad8d5f40c3e2f28509e73c8b32d0"
|
|
38
38
|
}
|