apps-sdk 1.0.71 → 1.0.73

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apps-sdk",
3
- "version": "1.0.71",
3
+ "version": "1.0.73",
4
4
  "description": "Apps SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -97,6 +97,16 @@ class PayWall extends React.Component {
97
97
  });
98
98
  }
99
99
 
100
+ eventTrackAction = (data) => {
101
+ config.DEBUG_MODE && console.debug('eventTrackAction', data);
102
+ Networking.sendEvent('action', data.eventName, data || {});
103
+ }
104
+
105
+ eventTrackScene = (data) => {
106
+ config.DEBUG_MODE && console.debug('eventTrackScene', data);
107
+ Networking.sendEvent('scene', data.eventName, data || {});
108
+ }
109
+
100
110
  hideSpinner = () => {
101
111
  const event = {
102
112
  event: 'hideLoader',