@splitsoftware/splitio 10.21.2-rc.5 → 10.21.2-rc.6

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.21.2-rc.5';
1
+ export var packageVersion = '10.21.2-rc.6';
@@ -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.21.2-rc.5';
4
+ exports.packageVersion = '10.21.2-rc.6';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@splitsoftware/splitio",
3
- "version": "10.21.2-rc.5",
3
+ "version": "10.21.2-rc.6",
4
4
  "description": "Split SDK",
5
5
  "files": [
6
6
  "README.md",
@@ -34,7 +34,7 @@
34
34
  },
35
35
  "dependencies": {
36
36
  "@ably/bloomit": "^1.4.2",
37
- "@splitsoftware/splitio-commons": "1.6.2-rc.13",
37
+ "@splitsoftware/splitio-commons": "1.6.2-rc.14",
38
38
  "@types/google.analytics": "0.0.40",
39
39
  "@types/ioredis": "^4.28.0",
40
40
  "ioredis": "^4.28.0",
@@ -46,7 +46,7 @@ function getModules(settings) {
46
46
  SignalListener,
47
47
 
48
48
  impressionsObserverFactory: impressionObserverSSFactory,
49
-
49
+
50
50
  filterAdapterFactory: bloomFilterFactory
51
51
  };
52
52
 
@@ -1 +1 @@
1
- export const packageVersion = '10.21.2-rc.5';
1
+ export const packageVersion = '10.21.2-rc.6';
@@ -228,9 +228,11 @@ interface ISharedSettings {
228
228
  splitFilters?: SplitIO.SplitFilter[]
229
229
  /**
230
230
  * Impressions Collection Mode. Option to determine how impressions are going to be sent to Split Servers.
231
- * Possible values are 'DEBUG' and 'OPTIMIZED'.
231
+ * Possible values are 'DEBUG', 'OPTIMIZED', and 'NONE'.
232
232
  * - DEBUG: will send all the impressions generated (recommended only for debugging purposes).
233
233
  * - OPTIMIZED: will send unique impressions to Split Servers avoiding a considerable amount of traffic that duplicated impressions could generate.
234
+ * - NONE: will send unique keys to Split Servers avoiding a considerable amount of traffic that impressions could generate.
235
+ *
234
236
  * @property {string} impressionsMode
235
237
  * @default 'OPTIMIZED'
236
238
  */