@applicaster/zapp-react-dom-app 14.0.0-rc.34 → 14.0.0-rc.35

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.
@@ -63,7 +63,8 @@ async function gatherData(uuid) {
63
63
  ...NativeModules?.QuickBrickCommunicationModule,
64
64
  // Device data retrieved from native device apis
65
65
  ...deviceData,
66
- uuid: uuid || uuidv4(),
66
+ uuid: uuid || uuidv4(), // Created on first session, persisted in local thereafter
67
+ sessionId: uuidv4(), // Created on every session
67
68
  locale: `{language=${languageLocale}, country=${countryLocale}}`,
68
69
  };
69
70
 
@@ -37,6 +37,7 @@ export const desiredKeysMap = {
37
37
  osVersion: "osVersion",
38
38
  platform: "platform",
39
39
  quickBrickVersion: "quickBrickVersion",
40
+ sessionId: "sessionId",
40
41
  sdkVersion: "sdk_version",
41
42
  store: "store",
42
43
  timeZoneOffset: "timeZoneOffset",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applicaster/zapp-react-dom-app",
3
- "version": "14.0.0-rc.34",
3
+ "version": "14.0.0-rc.35",
4
4
  "description": "Zapp App Component for Applicaster's Quick Brick React Native App",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -22,11 +22,11 @@
22
22
  },
23
23
  "homepage": "https://github.com/applicaster/zapp-react-dom-app#readme",
24
24
  "dependencies": {
25
- "@applicaster/zapp-react-dom-ui-components": "14.0.0-rc.34",
26
- "@applicaster/zapp-react-native-bridge": "14.0.0-rc.34",
27
- "@applicaster/zapp-react-native-redux": "14.0.0-rc.34",
28
- "@applicaster/zapp-react-native-ui-components": "14.0.0-rc.34",
29
- "@applicaster/zapp-react-native-utils": "14.0.0-rc.34",
25
+ "@applicaster/zapp-react-dom-ui-components": "14.0.0-rc.35",
26
+ "@applicaster/zapp-react-native-bridge": "14.0.0-rc.35",
27
+ "@applicaster/zapp-react-native-redux": "14.0.0-rc.35",
28
+ "@applicaster/zapp-react-native-ui-components": "14.0.0-rc.35",
29
+ "@applicaster/zapp-react-native-utils": "14.0.0-rc.35",
30
30
  "abortcontroller-polyfill": "^1.7.5",
31
31
  "typeface-montserrat": "^0.0.54",
32
32
  "video.js": "7.14.3",