@splitsoftware/splitio 10.22.2 → 10.22.3-rc.0
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/client/package.json +5 -0
- package/es/settings/defaults/version.js +1 -1
- package/lib/settings/defaults/version.js +1 -1
- package/package.json +4 -2
- package/server/package.json +5 -0
- package/src/settings/defaults/version.js +1 -1
- package/types/client/index.d.ts +14 -0
- package/types/server/index.d.ts +20 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
export var packageVersion = '10.22.
|
|
1
|
+
export var packageVersion = '10.22.3-rc.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@splitsoftware/splitio",
|
|
3
|
-
"version": "10.22.
|
|
3
|
+
"version": "10.22.3-rc.0",
|
|
4
4
|
"description": "Split SDK",
|
|
5
5
|
"files": [
|
|
6
6
|
"README.md",
|
|
@@ -11,7 +11,9 @@
|
|
|
11
11
|
"types",
|
|
12
12
|
"es",
|
|
13
13
|
"src",
|
|
14
|
-
"scripts/ga-to-split-autorequire.js"
|
|
14
|
+
"scripts/ga-to-split-autorequire.js",
|
|
15
|
+
"client",
|
|
16
|
+
"server"
|
|
15
17
|
],
|
|
16
18
|
"repository": "splitio/javascript-client",
|
|
17
19
|
"homepage": "https://github.com/splitio/javascript-client#readme",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const packageVersion = '10.22.
|
|
1
|
+
export const packageVersion = '10.22.3-rc.0';
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
// Declaration file for Javascript Split Software SDK
|
|
2
|
+
// Project: http://www.split.io/
|
|
3
|
+
|
|
4
|
+
/// <reference path="../splitio.d.ts" />
|
|
5
|
+
export = JsSdk;
|
|
6
|
+
|
|
7
|
+
declare module JsSdk {
|
|
8
|
+
/**
|
|
9
|
+
* Split.io sdk factory function.
|
|
10
|
+
* The settings parameter should be an object that complies with the SplitIO.IBrowserSettings.
|
|
11
|
+
* For more information read the corresponding article: @see {@link https://help.split.io/hc/en-us/articles/360020448791-JavaScript-SDK#configuration}
|
|
12
|
+
*/
|
|
13
|
+
export function SplitFactory(settings: SplitIO.IBrowserSettings): SplitIO.IBrowserSDK;
|
|
14
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
// Declaration file for Javascript Split Software SDK
|
|
2
|
+
// Project: http://www.split.io/
|
|
3
|
+
|
|
4
|
+
/// <reference path="../splitio.d.ts" />
|
|
5
|
+
export = JsSdk;
|
|
6
|
+
|
|
7
|
+
declare module JsSdk {
|
|
8
|
+
/**
|
|
9
|
+
* Split.io sdk factory function.
|
|
10
|
+
* The settings parameter should be an object that complies with the SplitIO.INodeAsyncSettings.
|
|
11
|
+
* For more information read the corresponding article: @see {@link https://help.split.io/hc/en-us/articles/360020564931-Node-js-SDK#configuration}
|
|
12
|
+
*/
|
|
13
|
+
export function SplitFactory(settings: SplitIO.INodeAsyncSettings): SplitIO.IAsyncSDK;
|
|
14
|
+
/**
|
|
15
|
+
* Split.io sdk factory function.
|
|
16
|
+
* The settings parameter should be an object that complies with the SplitIO.INodeSettings.
|
|
17
|
+
* For more information read the corresponding article: @see {@link https://help.split.io/hc/en-us/articles/360020564931-Node-js-SDK#configuration}
|
|
18
|
+
*/
|
|
19
|
+
export function SplitFactory(settings: SplitIO.INodeSettings): SplitIO.ISDK;
|
|
20
|
+
}
|