rudder-sdk-js 1.2.4 → 1.2.5
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/index.d.ts +7 -1
- package/index.js +3 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
@@ -64,6 +64,7 @@ declare module "rudder-sdk-js" {
|
|
64
64
|
| number
|
65
65
|
| boolean
|
66
66
|
| apiObject
|
67
|
+
| (string | number | boolean | apiObject)[]
|
67
68
|
| integrationOptions
|
68
69
|
| undefined;
|
69
70
|
}
|
@@ -73,7 +74,12 @@ declare module "rudder-sdk-js" {
|
|
73
74
|
* Use for parameters like properties, traits etc.
|
74
75
|
*/
|
75
76
|
interface apiObject {
|
76
|
-
[index: string]:
|
77
|
+
[index: string]:
|
78
|
+
| string
|
79
|
+
| number
|
80
|
+
| boolean
|
81
|
+
| apiObject
|
82
|
+
| (string | number | boolean | apiObject)[];
|
77
83
|
}
|
78
84
|
|
79
85
|
/**
|
package/index.js
CHANGED
@@ -5555,7 +5555,7 @@
|
|
5555
5555
|
PRODUCT_REVIEWED: "Product Reviewed"
|
5556
5556
|
}; // Enumeration for integrations supported
|
5557
5557
|
|
5558
|
-
var CONFIG_URL = "https://api.rudderlabs.com/sourceConfig/?p=npm&v=1.2.
|
5558
|
+
var CONFIG_URL = "https://api.rudderlabs.com/sourceConfig/?p=npm&v=1.2.5";
|
5559
5559
|
var MAX_WAIT_FOR_INTEGRATION_LOAD = 10000;
|
5560
5560
|
var INTEGRATION_LOAD_CHECK_INTERVAL = 1000;
|
5561
5561
|
/* module.exports = {
|
@@ -33812,7 +33812,7 @@
|
|
33812
33812
|
this.build = "1.0.0";
|
33813
33813
|
this.name = "RudderLabs JavaScript SDK";
|
33814
33814
|
this.namespace = "com.rudderlabs.javascript";
|
33815
|
-
this.version = "1.2.
|
33815
|
+
this.version = "1.2.5";
|
33816
33816
|
};
|
33817
33817
|
|
33818
33818
|
// Library information class
|
@@ -33820,7 +33820,7 @@
|
|
33820
33820
|
_classCallCheck(this, RudderLibraryInfo);
|
33821
33821
|
|
33822
33822
|
this.name = "RudderLabs JavaScript SDK";
|
33823
|
-
this.version = "1.2.
|
33823
|
+
this.version = "1.2.5";
|
33824
33824
|
}; // Operating System information class
|
33825
33825
|
|
33826
33826
|
|