@splitsoftware/splitio 10.28.1-rc.1 → 10.28.1-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.28.1-rc.
|
|
1
|
+
export var packageVersion = '10.28.1-rc.2';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@splitsoftware/splitio",
|
|
3
|
-
"version": "10.28.1-rc.
|
|
3
|
+
"version": "10.28.1-rc.2",
|
|
4
4
|
"description": "Split SDK",
|
|
5
5
|
"files": [
|
|
6
6
|
"README.md",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"node": ">=6"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@splitsoftware/splitio-commons": "1.17.1-rc.
|
|
43
|
+
"@splitsoftware/splitio-commons": "1.17.1-rc.1",
|
|
44
44
|
"@types/google.analytics": "0.0.40",
|
|
45
45
|
"@types/ioredis": "^4.28.0",
|
|
46
46
|
"bloom-filters": "^3.0.0",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const packageVersion = '10.28.1-rc.
|
|
1
|
+
export const packageVersion = '10.28.1-rc.2';
|
package/types/splitio.d.ts
CHANGED
|
@@ -491,6 +491,12 @@ interface IBasicSDK {
|
|
|
491
491
|
* @property Logger
|
|
492
492
|
*/
|
|
493
493
|
Logger: ILoggerAPI
|
|
494
|
+
/**
|
|
495
|
+
* Destroys all the clients created by this factory.
|
|
496
|
+
* @function destroy
|
|
497
|
+
* @returns {Promise<void>}
|
|
498
|
+
*/
|
|
499
|
+
destroy(): Promise<void>
|
|
494
500
|
}
|
|
495
501
|
/****** Exposed namespace ******/
|
|
496
502
|
/**
|