Skip to content

Commit

Permalink
update npm dist
Browse files Browse the repository at this point in the history
  • Loading branch information
sayan-mitra committed Jan 18, 2021
1 parent 51c2de6 commit d78cbfd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions dist/rudder-sdk-js/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,8 +229,11 @@ rudderanalytics.load("YOUR_WRITE_KEY", "DATA_PLANE_URI",
We will be adding similar callbacks for apis such as `track, page, identify` etc.

# [](https://github.com/rudderlabs/rudder-sdk-js/blob/master/README.md#autotrack)Autotrack

| **IMPORTANT**: We have deprecated the Autotrack feature for the RudderStack JavaScript SDK. If you still wish to use it for your project, refer to [this security checkpoints](https://github.com/rudderlabs/rudder-sdk-js-autotrack#security). |
|:------|


It may happen that the need arises to track most of user interactions with a web-app. It becomes hard for a developer to capture these DOM interactions and make track calls for all. The autotrack feature of Rudder SDK helps in tracking all user interactions like `click | change | submit` automatically. The data generated will be verbose and to make sense of the data, one can use `user transformations` from the config-plane to build use-cases like monitoring user journeys etc. For more information and payload structure, click [here](https://docs.rudderstack.com/sdk-integration-guide/getting-started-with-javascript-sdk/rudderstack-autotrack-feature).

To enable autotracking, make the load call as:
Expand Down
6 changes: 3 additions & 3 deletions dist/rudder-sdk-js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3220,7 +3220,7 @@
PRODUCT_REVIEWED: "Product Reviewed"
}; // Enumeration for integrations supported

var CONFIG_URL = "https://api.rudderlabs.com/sourceConfig/?p=npm&v=1.0.13";
var CONFIG_URL = "https://api.rudderlabs.com/sourceConfig/?p=npm&v=1.0.14";
var MAX_WAIT_FOR_INTEGRATION_LOAD = 10000;
var INTEGRATION_LOAD_CHECK_INTERVAL = 1000;
/* module.exports = {
Expand Down Expand Up @@ -16879,15 +16879,15 @@
this.build = "1.0.0";
this.name = "RudderLabs JavaScript SDK";
this.namespace = "com.rudderlabs.javascript";
this.version = "1.0.13";
this.version = "1.0.14";
};

// Library information class
var RudderLibraryInfo = function RudderLibraryInfo() {
_classCallCheck(this, RudderLibraryInfo);

this.name = "RudderLabs JavaScript SDK";
this.version = "1.0.13";
this.version = "1.0.14";
}; // Operating System information class


Expand Down
2 changes: 1 addition & 1 deletion dist/rudder-sdk-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rudder-sdk-js",
"version": "1.0.13",
"version": "1.0.14",
"description": "Rudder Javascript SDK",
"main": "index.js",
"types": "index.d.ts",
Expand Down

0 comments on commit d78cbfd

Please sign in to comment.