@splitsoftware/splitio 10.19.2-rc.0 → 10.19.2-rc.1

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.2-rc.0';
1
+ export var packageVersion = '10.19.2-rc.1';
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.packageVersion = void 0;
4
- exports.packageVersion = '10.19.2-rc.0';
4
+ exports.packageVersion = '10.19.2-rc.1';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@splitsoftware/splitio",
3
- "version": "10.19.2-rc.0",
3
+ "version": "10.19.2-rc.1",
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.2-rc.0",
35
+ "@splitsoftware/splitio-commons": "1.4.2-rc.1",
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 CHANGED
Binary file
@@ -1 +1 @@
1
- export const packageVersion = '10.19.2-rc.0';
1
+ export const packageVersion = '10.19.2-rc.1';
@@ -758,17 +758,6 @@ 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,
772
761
  }
773
762
  /**
774
763
  * Object representing the data sent by Split (events and impressions).
@@ -1556,9 +1545,9 @@ declare namespace SplitIO {
1556
1545
  * Get the data of a split in SplitView format.
1557
1546
  * @function split
1558
1547
  * @param {string} splitName The name of the split we wan't to get info of.
1559
- * @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.
1560
1549
  */
1561
- split(splitName: string): SplitView;
1550
+ split(splitName: string): SplitView | null;
1562
1551
  }
1563
1552
  /**
1564
1553
  * Representation of a manager instance with asynchronous storage of the SDK.
Binary file