rudder-sdk-js 1.2.1 → 1.2.2

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 (3) hide show
  1. package/index.d.ts +2 -1
  2. package/index.js +3 -3
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -62,6 +62,7 @@ declare module "rudder-sdk-js" {
62
62
  [index: string]:
63
63
  | string
64
64
  | number
65
+ | boolean
65
66
  | apiObject
66
67
  | integrationOptions
67
68
  | undefined;
@@ -72,7 +73,7 @@ declare module "rudder-sdk-js" {
72
73
  * Use for parameters like properties, traits etc.
73
74
  */
74
75
  interface apiObject {
75
- [index: string]: string | number | apiObject;
76
+ [index: string]: string | number | boolean | apiObject;
76
77
  }
77
78
 
78
79
  /**
package/index.js CHANGED
@@ -3708,7 +3708,7 @@
3708
3708
  PRODUCT_REVIEWED: "Product Reviewed"
3709
3709
  }; // Enumeration for integrations supported
3710
3710
 
3711
- var CONFIG_URL = "https://api.rudderlabs.com/sourceConfig/?p=npm&v=1.2.1";
3711
+ var CONFIG_URL = "https://api.rudderlabs.com/sourceConfig/?p=npm&v=1.2.2";
3712
3712
  var MAX_WAIT_FOR_INTEGRATION_LOAD = 10000;
3713
3713
  var INTEGRATION_LOAD_CHECK_INTERVAL = 1000;
3714
3714
  /* module.exports = {
@@ -31961,7 +31961,7 @@
31961
31961
  this.build = "1.0.0";
31962
31962
  this.name = "RudderLabs JavaScript SDK";
31963
31963
  this.namespace = "com.rudderlabs.javascript";
31964
- this.version = "1.2.1";
31964
+ this.version = "1.2.2";
31965
31965
  };
31966
31966
 
31967
31967
  // Library information class
@@ -31969,7 +31969,7 @@
31969
31969
  _classCallCheck(this, RudderLibraryInfo);
31970
31970
 
31971
31971
  this.name = "RudderLabs JavaScript SDK";
31972
- this.version = "1.2.1";
31972
+ this.version = "1.2.2";
31973
31973
  }; // Operating System information class
31974
31974
 
31975
31975
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rudder-sdk-js",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "RudderStack Javascript SDK",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",