rudder-sdk-js 2.4.2 → 2.4.3

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/index.js +4 -4
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -4829,7 +4829,7 @@
4829
4829
 
4830
4830
  // Reserved Keywords for properties/traits
4831
4831
  var ReservedPropertyKeywords = ["anonymous_id", "id", "sent_at", "received_at", "timestamp", "original_timestamp", "event_text", "event"]; // ECommerce Parameter Names Enumeration
4832
- var CONFIG_URL = "https://api.rudderlabs.com/sourceConfig/?p=npm&v=2.4.2";
4832
+ var CONFIG_URL = "https://api.rudderlabs.com/sourceConfig/?p=npm&v=2.4.3";
4833
4833
  var CDN_INT_DIR = "js-integrations";
4834
4834
  var DEST_SDK_BASE_URL = "https://cdn.rudderlabs.com/v1.1/".concat(CDN_INT_DIR);
4835
4835
  var MAX_WAIT_FOR_INTEGRATION_LOAD = 10000;
@@ -11045,7 +11045,7 @@
11045
11045
  // fetch it from cookie
11046
11046
 
11047
11047
 
11048
- if (!anonId && Cookie.IsCookieSupported()) {
11048
+ if (!anonId && Cookie.isSupportAvailable) {
11049
11049
  anonId = Cookie.get(anonymousIdKeyMap[key]);
11050
11050
  }
11051
11051
 
@@ -11535,7 +11535,7 @@
11535
11535
  this.build = "1.0.0";
11536
11536
  this.name = "RudderLabs JavaScript SDK";
11537
11537
  this.namespace = "com.rudderlabs.javascript";
11538
- this.version = "2.4.2";
11538
+ this.version = "2.4.3";
11539
11539
  });
11540
11540
 
11541
11541
  /* eslint-disable max-classes-per-file */
@@ -11544,7 +11544,7 @@
11544
11544
  _classCallCheck(this, RudderLibraryInfo);
11545
11545
 
11546
11546
  this.name = "RudderLabs JavaScript SDK";
11547
- this.version = "2.4.2";
11547
+ this.version = "2.4.3";
11548
11548
  }); // Operating System information class
11549
11549
 
11550
11550
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rudder-sdk-js",
3
- "version": "2.4.2",
3
+ "version": "2.4.3",
4
4
  "description": "RudderStack Javascript SDK",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",