@splitsoftware/splitio 10.23.2-rc.3 → 10.23.2-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.
package/CHANGES.txt CHANGED
@@ -1,4 +1,4 @@
1
- 10.24.0 (October XX, 2023)
1
+ 10.24.0 (November XX, 2023)
2
2
  - Added support for Flag Sets on the SDK, which enables grouping feature flags and interacting with the group rather than individually (more details in our documentation):
3
3
  - Added new variations of the get treatment methods to support evaluating flags in given flag set/s.
4
4
  - getTreatmentsByFlagSet and getTreatmentsByFlagSets
@@ -13,7 +13,7 @@
13
13
  - Updated @splitsoftware/splitio-commons package to version 1.9.1. This update removes the handler for 'unload' DOM events, that can prevent browsers from being able to put pages in the back/forward cache for faster back and forward loads (Related to issue https://github.com/splitio/javascript-client/issues/759).
14
14
 
15
15
  10.23.0 (July 18, 2023)
16
- - Updated @splitsoftware/splitio-commons package to version 1.8.4 that includes minor improvements:
16
+ - Updated @splitsoftware/splitio-commons package to version 1.9.0 that includes minor improvements:
17
17
  - Updated streaming architecture implementation to apply feature flag updates from the notification received which is now enhanced, improving efficiency and reliability of the whole update system.
18
18
 
19
19
  10.22.6 (July 6, 2023)
@@ -1 +1 @@
1
- export var packageVersion = '10.23.2-rc.3';
1
+ export var packageVersion = '10.23.2-rc.4';
@@ -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.23.2-rc.3';
4
+ exports.packageVersion = '10.23.2-rc.4';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@splitsoftware/splitio",
3
- "version": "10.23.2-rc.3",
3
+ "version": "10.23.2-rc.4",
4
4
  "description": "Split SDK",
5
5
  "files": [
6
6
  "README.md",
@@ -1 +1 @@
1
- export const packageVersion = '10.23.2-rc.3';
1
+ export const packageVersion = '10.23.2-rc.4';
@@ -668,7 +668,7 @@ declare namespace SplitIO {
668
668
  * List of sets of the feature flag.
669
669
  * @property {string[]} sets
670
670
  */
671
- sets?: string[],
671
+ sets: string[],
672
672
  /**
673
673
  * The default treatment of the feature flag.
674
674
  * @property {string} defaultTreatment
@@ -1298,8 +1298,8 @@ declare namespace SplitIO {
1298
1298
  }
1299
1299
  /**
1300
1300
  * This represents the interface for the SDK instance with synchronous storage.
1301
- * @interface ISDK
1302
- * @extends IBasicSDK
1301
+ * @interface IBrowserSDK
1302
+ * @extends ISDK
1303
1303
  */
1304
1304
  interface IBrowserSDK extends ISDK {
1305
1305
  /**