core-outline 0.0.8 → 0.0.9

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 (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -19,20 +19,20 @@ var session_details = core.sessionDetails()
19
19
  "session_id":"<session_id>",
20
20
  }
21
21
  """
22
- ## Tracking user actions
23
- # Update current page
22
+ # Tracking user actions
23
+ ### Update current page
24
24
 
25
25
  Use this function when a user enters a page:
26
26
 
27
27
  core.updatePage(session_details.session_id, <current_page_name>)
28
28
 
29
- # To register a made purchase
29
+ ### Register a made purchase
30
30
 
31
31
  Add this function to an onclick listener for when a user completes a transaction
32
32
 
33
33
  core.targetReached(session_details.session_id)
34
34
 
35
- # To register an action item click
35
+ ### Register an action item click
36
36
 
37
37
  This function is to be used when a user clicks on one of the recommended actions items
38
38
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "core-outline",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "description": "NPM package for react",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.es.js",