@splitsoftware/splitio 10.19.1 → 10.19.2-rc.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.
|
@@ -1 +1 @@
|
|
|
1
|
-
export var packageVersion = '10.19.
|
|
1
|
+
export var packageVersion = '10.19.2-rc.2';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@splitsoftware/splitio",
|
|
3
|
-
"version": "10.19.
|
|
3
|
+
"version": "10.19.2-rc.2",
|
|
4
4
|
"description": "Split SDK",
|
|
5
5
|
"files": [
|
|
6
6
|
"README.md",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"node": ">=6"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@splitsoftware/splitio-commons": "1.4.
|
|
35
|
+
"@splitsoftware/splitio-commons": "1.4.2-rc.3",
|
|
36
36
|
"@types/google.analytics": "0.0.40",
|
|
37
37
|
"@types/ioredis": "^4.28.0",
|
|
38
38
|
"ioredis": "^4.28.0",
|
package/src/.DS_Store
ADDED
|
Binary file
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const packageVersion = '10.19.
|
|
1
|
+
export const packageVersion = '10.19.2-rc.2';
|
|
Binary file
|
package/types/splitio.d.ts
CHANGED
|
@@ -1545,9 +1545,9 @@ declare namespace SplitIO {
|
|
|
1545
1545
|
* Get the data of a split in SplitView format.
|
|
1546
1546
|
* @function split
|
|
1547
1547
|
* @param {string} splitName The name of the split we wan't to get info of.
|
|
1548
|
-
* @returns {SplitView} The SplitIO.SplitView of the given split.
|
|
1548
|
+
* @returns {SplitView | null} The SplitIO.SplitView of the given split or null if the split is not found.
|
|
1549
1549
|
*/
|
|
1550
|
-
split(splitName: string): SplitView;
|
|
1550
|
+
split(splitName: string): SplitView | null;
|
|
1551
1551
|
}
|
|
1552
1552
|
/**
|
|
1553
1553
|
* Representation of a manager instance with asynchronous storage of the SDK.
|