@splitsoftware/splitio 10.19.1 → 10.19.2-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/es/settings/defaults/version.js +1 -1
- package/lib/settings/defaults/version.js +1 -1
- package/package.json +2 -2
- package/src/.DS_Store +0 -0
- package/src/platform/.DS_Store +0 -0
- package/src/settings/.DS_Store +0 -0
- package/src/settings/defaults/version.js +1 -1
- package/types/splitio.d.ts +11 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
export var packageVersion = '10.19.
|
|
1
|
+
export var packageVersion = '10.19.2-rc.0';
|
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.0",
|
|
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.0",
|
|
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
|
|
Binary file
|
|
Binary file
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const packageVersion = '10.19.
|
|
1
|
+
export const packageVersion = '10.19.2-rc.0';
|
package/types/splitio.d.ts
CHANGED
|
@@ -758,6 +758,17 @@ declare namespace SplitIO {
|
|
|
758
758
|
* If not provided, events are sent using the key and traffic type provided at SDK config
|
|
759
759
|
*/
|
|
760
760
|
identities?: Identity[],
|
|
761
|
+
/**
|
|
762
|
+
* Optional flag to log an error if the `auto-require` script is not detected.
|
|
763
|
+
* The auto-require script automatically requires the `splitTracker` plugin for created trackers,
|
|
764
|
+
* and should be placed right after your Google Analytics, GTM or gtag.js script tag.
|
|
765
|
+
*
|
|
766
|
+
* @see {@link https://help.split.io/hc/en-us/articles/360040838752#google-tag-manager}
|
|
767
|
+
*
|
|
768
|
+
* @property {boolean} autoRequire
|
|
769
|
+
* @default false
|
|
770
|
+
*/
|
|
771
|
+
autoRequire?: boolean,
|
|
761
772
|
}
|
|
762
773
|
/**
|
|
763
774
|
* Object representing the data sent by Split (events and impressions).
|