@splitsoftware/splitio 10.28.1-rc.3 → 10.28.1-rc.4
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.4';
|
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.4",
|
|
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.3",
|
|
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.4';
|
package/types/splitio.d.ts
CHANGED
|
@@ -1120,6 +1120,10 @@ declare namespace SplitIO {
|
|
|
1120
1120
|
*/
|
|
1121
1121
|
prefix?: string
|
|
1122
1122
|
},
|
|
1123
|
+
/**
|
|
1124
|
+
* @TODO Add description. Should be inside storage?
|
|
1125
|
+
*/
|
|
1126
|
+
preloadedData?: SplitIO.PreloadedData,
|
|
1123
1127
|
/**
|
|
1124
1128
|
* List of URLs that the SDK will use as base for it's synchronization functionalities, applicable only when running as standalone.
|
|
1125
1129
|
* Do not change these settings unless you're working an advanced use case, like connecting to the Split proxy.
|
|
@@ -1394,7 +1398,7 @@ declare namespace SplitIO {
|
|
|
1394
1398
|
/**
|
|
1395
1399
|
* @TODO add description
|
|
1396
1400
|
*/
|
|
1397
|
-
getState(): PreloadedData,
|
|
1401
|
+
getState(keys?: SplitKey[]): PreloadedData,
|
|
1398
1402
|
}
|
|
1399
1403
|
/**
|
|
1400
1404
|
* This represents the interface for the SDK instance with synchronous storage.
|
|
@@ -1416,6 +1420,12 @@ declare namespace SplitIO {
|
|
|
1416
1420
|
* @returns {IBrowserClient} The client instance.
|
|
1417
1421
|
*/
|
|
1418
1422
|
client(key: SplitKey, trafficType?: string): IBrowserClient
|
|
1423
|
+
/**
|
|
1424
|
+
* Returns a manager instance of the SDK to explore available information.
|
|
1425
|
+
* @function manager
|
|
1426
|
+
* @returns {IManager} The manager instance.
|
|
1427
|
+
*/
|
|
1428
|
+
manager(): IManager,
|
|
1419
1429
|
/**
|
|
1420
1430
|
* User consent API.
|
|
1421
1431
|
* @property UserConsent
|