@snowplow/react-native-tracker 4.8.1 → 4.8.3
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/dist/commonjs/event_store.js +47 -56
- package/dist/commonjs/event_store.js.map +1 -1
- package/dist/commonjs/package.json +1 -0
- package/dist/commonjs/plugins/app_install/index.js +12 -13
- package/dist/commonjs/plugins/app_install/index.js.map +1 -1
- package/dist/commonjs/plugins/app_lifecycle/index.js +11 -15
- package/dist/commonjs/plugins/app_lifecycle/index.js.map +1 -1
- package/dist/commonjs/plugins/platform_context/index.js +382 -387
- package/dist/commonjs/plugins/platform_context/index.js.map +1 -1
- package/dist/commonjs/plugins/session/index.js +34 -39
- package/dist/commonjs/plugins/session/index.js.map +1 -1
- package/dist/commonjs/tracker.js +32 -37
- package/dist/commonjs/tracker.js.map +1 -1
- package/dist/commonjs/types.js +76 -0
- package/dist/commonjs/types.js.map +1 -1
- package/dist/module/event_store.js +47 -56
- package/dist/module/event_store.js.map +1 -1
- package/dist/module/package.json +1 -0
- package/dist/module/plugins/app_install/index.js +12 -13
- package/dist/module/plugins/app_install/index.js.map +1 -1
- package/dist/module/plugins/app_lifecycle/index.js +11 -15
- package/dist/module/plugins/app_lifecycle/index.js.map +1 -1
- package/dist/module/plugins/platform_context/index.js +382 -387
- package/dist/module/plugins/platform_context/index.js.map +1 -1
- package/dist/module/plugins/session/index.js +33 -38
- package/dist/module/plugins/session/index.js.map +1 -1
- package/dist/module/tracker.js +32 -37
- package/dist/module/tracker.js.map +1 -1
- package/dist/module/types.js +76 -0
- package/dist/module/types.js.map +1 -1
- package/dist/typescript/module/src/event_store.d.ts +1 -1
- package/dist/typescript/module/src/event_store.d.ts.map +1 -1
- package/dist/typescript/module/src/events.d.ts +1 -1
- package/dist/typescript/module/src/events.d.ts.map +1 -1
- package/dist/typescript/module/src/index.d.ts +3 -3
- package/dist/typescript/module/src/index.d.ts.map +1 -1
- package/dist/typescript/module/src/plugins/app_context/index.d.ts +1 -1
- package/dist/typescript/module/src/plugins/app_context/index.d.ts.map +1 -1
- package/dist/typescript/module/src/plugins/app_install/index.d.ts +1 -1
- package/dist/typescript/module/src/plugins/app_install/index.d.ts.map +1 -1
- package/dist/typescript/module/src/plugins/app_lifecycle/index.d.ts +1 -1
- package/dist/typescript/module/src/plugins/app_lifecycle/index.d.ts.map +1 -1
- package/dist/typescript/module/src/plugins/deep_links/index.d.ts +1 -1
- package/dist/typescript/module/src/plugins/deep_links/index.d.ts.map +1 -1
- package/dist/typescript/module/src/plugins/platform_context/index.d.ts +1 -1
- package/dist/typescript/module/src/plugins/platform_context/index.d.ts.map +1 -1
- package/dist/typescript/module/src/plugins/session/index.d.ts +1 -1
- package/dist/typescript/module/src/plugins/session/index.d.ts.map +1 -1
- package/dist/typescript/module/src/subject.d.ts +1 -1
- package/dist/typescript/module/src/subject.d.ts.map +1 -1
- package/dist/typescript/module/src/tracker.d.ts +1 -1
- package/dist/typescript/module/src/tracker.d.ts.map +1 -1
- package/dist/typescript/module/src/web_view_interface.d.ts +1 -1
- package/dist/typescript/module/src/web_view_interface.d.ts.map +1 -1
- package/package.json +8 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@snowplow/react-native-tracker",
|
|
3
|
-
"version": "4.8.
|
|
3
|
+
"version": "4.8.3",
|
|
4
4
|
"description": "React Native tracker for Snowplow",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"snowplow",
|
|
@@ -47,10 +47,10 @@
|
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"tslib": "^2.3.1",
|
|
50
|
-
"uuid": "^
|
|
51
|
-
"@snowplow/
|
|
52
|
-
"@snowplow/browser-
|
|
53
|
-
"@snowplow/
|
|
50
|
+
"uuid": "^11.1.1",
|
|
51
|
+
"@snowplow/tracker-core": "4.8.3",
|
|
52
|
+
"@snowplow/browser-tracker-core": "4.8.3",
|
|
53
|
+
"@snowplow/browser-plugin-screen-tracking": "4.8.3"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@react-native-async-storage/async-storage": "^2.0.0",
|
|
@@ -60,16 +60,15 @@
|
|
|
60
60
|
"typescript": "~4.6.2",
|
|
61
61
|
"@types/jest": "~28.1.1",
|
|
62
62
|
"@types/node": "~14.6.0",
|
|
63
|
-
"@types/uuid": "^10.0.0",
|
|
64
63
|
"jest": "~28.1.3",
|
|
65
64
|
"react": "18.2.0",
|
|
66
65
|
"ts-jest": "~28.0.8",
|
|
67
66
|
"@types/react": "^18.2.44",
|
|
68
67
|
"react-native": "0.74.5",
|
|
69
68
|
"node-fetch": "~3.3.2",
|
|
70
|
-
"react-native-builder-bob": "^0.
|
|
69
|
+
"react-native-builder-bob": "^0.42.1",
|
|
71
70
|
"react-native-get-random-values": "^1.11.0",
|
|
72
|
-
"@snowplow/browser-plugin-snowplow-ecommerce": "4.8.
|
|
71
|
+
"@snowplow/browser-plugin-snowplow-ecommerce": "4.8.3"
|
|
73
72
|
},
|
|
74
73
|
"resolutions": {
|
|
75
74
|
"@types/react": "^18.2.44"
|
|
@@ -94,8 +93,7 @@
|
|
|
94
93
|
[
|
|
95
94
|
"typescript",
|
|
96
95
|
{
|
|
97
|
-
"project": "tsconfig.build.json"
|
|
98
|
-
"esm": true
|
|
96
|
+
"project": "tsconfig.build.json"
|
|
99
97
|
}
|
|
100
98
|
]
|
|
101
99
|
]
|