@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
|
|
1
|
+
export var packageVersion = '10.23.1';
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const packageVersion = '10.23.1
|
|
1
|
+
export const packageVersion = '10.23.1';
|
package/types/splitio.d.ts
CHANGED
|
@@ -189,8 +189,14 @@ interface IUserConsentAPI {
|
|
|
189
189
|
*/
|
|
190
190
|
interface ISharedSettings {
|
|
191
191
|
/**
|
|
192
|
-
*
|
|
193
|
-
*
|
|
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,
|