@splitsoftware/splitio 10.23.1-rc.2 → 10.23.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.23.1-rc.2';
1
+ export var packageVersion = '10.23.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.23.1-rc.2';
4
+ exports.packageVersion = '10.23.1';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@splitsoftware/splitio",
3
- "version": "10.23.1-rc.2",
3
+ "version": "10.23.1",
4
4
  "description": "Split SDK",
5
5
  "files": [
6
6
  "README.md",
@@ -1 +1 @@
1
- export const packageVersion = '10.23.1-rc.2';
1
+ export const packageVersion = '10.23.1';
@@ -189,8 +189,14 @@ interface IUserConsentAPI {
189
189
  */
190
190
  interface ISharedSettings {
191
191
  /**
192
- * Whether the logger should be enabled or disabled by default.
193
- * @property {Boolean} debug
192
+ * Boolean value to indicate whether the logger should be enabled or disabled, or a log level string.
193
+ *
194
+ * Examples:
195
+ * ```javascript
196
+ * config.debug = true
197
+ * config.debug = 'WARN'
198
+ * ```
199
+ * @property {boolean | LogLevel} debug
194
200
  * @default false
195
201
  */
196
202
  debug?: boolean | LogLevel,