@snowplow/react-native-tracker 4.8.0 → 4.8.2

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.
Files changed (55) hide show
  1. package/dist/commonjs/event_store.js +47 -56
  2. package/dist/commonjs/event_store.js.map +1 -1
  3. package/dist/commonjs/package.json +1 -0
  4. package/dist/commonjs/plugins/app_install/index.js +12 -13
  5. package/dist/commonjs/plugins/app_install/index.js.map +1 -1
  6. package/dist/commonjs/plugins/app_lifecycle/index.js +11 -15
  7. package/dist/commonjs/plugins/app_lifecycle/index.js.map +1 -1
  8. package/dist/commonjs/plugins/platform_context/index.js +382 -387
  9. package/dist/commonjs/plugins/platform_context/index.js.map +1 -1
  10. package/dist/commonjs/plugins/session/index.js +34 -39
  11. package/dist/commonjs/plugins/session/index.js.map +1 -1
  12. package/dist/commonjs/tracker.js +32 -37
  13. package/dist/commonjs/tracker.js.map +1 -1
  14. package/dist/commonjs/types.js +76 -0
  15. package/dist/commonjs/types.js.map +1 -1
  16. package/dist/module/event_store.js +47 -56
  17. package/dist/module/event_store.js.map +1 -1
  18. package/dist/module/package.json +1 -0
  19. package/dist/module/plugins/app_install/index.js +12 -13
  20. package/dist/module/plugins/app_install/index.js.map +1 -1
  21. package/dist/module/plugins/app_lifecycle/index.js +11 -15
  22. package/dist/module/plugins/app_lifecycle/index.js.map +1 -1
  23. package/dist/module/plugins/platform_context/index.js +382 -387
  24. package/dist/module/plugins/platform_context/index.js.map +1 -1
  25. package/dist/module/plugins/session/index.js +33 -38
  26. package/dist/module/plugins/session/index.js.map +1 -1
  27. package/dist/module/tracker.js +32 -37
  28. package/dist/module/tracker.js.map +1 -1
  29. package/dist/module/types.js +76 -0
  30. package/dist/module/types.js.map +1 -1
  31. package/dist/typescript/module/src/event_store.d.ts +1 -1
  32. package/dist/typescript/module/src/event_store.d.ts.map +1 -1
  33. package/dist/typescript/module/src/events.d.ts +1 -1
  34. package/dist/typescript/module/src/events.d.ts.map +1 -1
  35. package/dist/typescript/module/src/index.d.ts +3 -3
  36. package/dist/typescript/module/src/index.d.ts.map +1 -1
  37. package/dist/typescript/module/src/plugins/app_context/index.d.ts +1 -1
  38. package/dist/typescript/module/src/plugins/app_context/index.d.ts.map +1 -1
  39. package/dist/typescript/module/src/plugins/app_install/index.d.ts +1 -1
  40. package/dist/typescript/module/src/plugins/app_install/index.d.ts.map +1 -1
  41. package/dist/typescript/module/src/plugins/app_lifecycle/index.d.ts +1 -1
  42. package/dist/typescript/module/src/plugins/app_lifecycle/index.d.ts.map +1 -1
  43. package/dist/typescript/module/src/plugins/deep_links/index.d.ts +1 -1
  44. package/dist/typescript/module/src/plugins/deep_links/index.d.ts.map +1 -1
  45. package/dist/typescript/module/src/plugins/platform_context/index.d.ts +1 -1
  46. package/dist/typescript/module/src/plugins/platform_context/index.d.ts.map +1 -1
  47. package/dist/typescript/module/src/plugins/session/index.d.ts +1 -1
  48. package/dist/typescript/module/src/plugins/session/index.d.ts.map +1 -1
  49. package/dist/typescript/module/src/subject.d.ts +1 -1
  50. package/dist/typescript/module/src/subject.d.ts.map +1 -1
  51. package/dist/typescript/module/src/tracker.d.ts +1 -1
  52. package/dist/typescript/module/src/tracker.d.ts.map +1 -1
  53. package/dist/typescript/module/src/web_view_interface.d.ts +1 -1
  54. package/dist/typescript/module/src/web_view_interface.d.ts.map +1 -1
  55. package/package.json +9 -10
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@snowplow/react-native-tracker",
3
- "version": "4.8.0",
3
+ "version": "4.8.2",
4
4
  "description": "React Native tracker for Snowplow",
5
5
  "keywords": [
6
6
  "snowplow",
@@ -40,7 +40,7 @@
40
40
  "dist"
41
41
  ],
42
42
  "peerDependencies": {
43
- "@react-native-async-storage/async-storage": "~2.0.0",
43
+ "@react-native-async-storage/async-storage": "^2.0.0",
44
44
  "react": "*",
45
45
  "react-native": "*",
46
46
  "react-native-get-random-values": "^1.11.0"
@@ -48,12 +48,12 @@
48
48
  "dependencies": {
49
49
  "tslib": "^2.3.1",
50
50
  "uuid": "^10.0.0",
51
- "@snowplow/tracker-core": "4.8.0",
52
- "@snowplow/browser-tracker-core": "4.8.0",
53
- "@snowplow/browser-plugin-screen-tracking": "4.8.0"
51
+ "@snowplow/tracker-core": "4.8.2",
52
+ "@snowplow/browser-plugin-screen-tracking": "4.8.2",
53
+ "@snowplow/browser-tracker-core": "4.8.2"
54
54
  },
55
55
  "devDependencies": {
56
- "@react-native-async-storage/async-storage": "~2.0.0",
56
+ "@react-native-async-storage/async-storage": "^2.0.0",
57
57
  "@typescript-eslint/eslint-plugin": "~5.15.0",
58
58
  "@typescript-eslint/parser": "~5.15.0",
59
59
  "eslint": "~8.11.0",
@@ -67,9 +67,9 @@
67
67
  "@types/react": "^18.2.44",
68
68
  "react-native": "0.74.5",
69
69
  "node-fetch": "~3.3.2",
70
- "react-native-builder-bob": "^0.30.3",
70
+ "react-native-builder-bob": "^0.42.1",
71
71
  "react-native-get-random-values": "^1.11.0",
72
- "@snowplow/browser-plugin-snowplow-ecommerce": "4.8.0"
72
+ "@snowplow/browser-plugin-snowplow-ecommerce": "4.8.2"
73
73
  },
74
74
  "resolutions": {
75
75
  "@types/react": "^18.2.44"
@@ -94,8 +94,7 @@
94
94
  [
95
95
  "typescript",
96
96
  {
97
- "project": "tsconfig.build.json",
98
- "esm": true
97
+ "project": "tsconfig.build.json"
99
98
  }
100
99
  ]
101
100
  ]