api-core-lib 11.6.6 → 11.7.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.
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -192,7 +192,7 @@ interface RefreshTokenConfig {
|
|
|
192
192
|
* 'error': Logs only critical errors.
|
|
193
193
|
* 'silent': Disables all logging.
|
|
194
194
|
*/
|
|
195
|
-
type LogLevel = 'debug' | 'info' | 'warn' | 'error' | 'silent';
|
|
195
|
+
type LogLevel = 'debug' | 'info' | 'warn' | 'error' | 'silent' | "log";
|
|
196
196
|
/**
|
|
197
197
|
* An interface for a custom logger, compatible with the standard `console` object.
|
|
198
198
|
* It now includes a `debug` method for more granular logging.
|
package/dist/index.d.ts
CHANGED
|
@@ -192,7 +192,7 @@ interface RefreshTokenConfig {
|
|
|
192
192
|
* 'error': Logs only critical errors.
|
|
193
193
|
* 'silent': Disables all logging.
|
|
194
194
|
*/
|
|
195
|
-
type LogLevel = 'debug' | 'info' | 'warn' | 'error' | 'silent';
|
|
195
|
+
type LogLevel = 'debug' | 'info' | 'warn' | 'error' | 'silent' | "log";
|
|
196
196
|
/**
|
|
197
197
|
* An interface for a custom logger, compatible with the standard `console` object.
|
|
198
198
|
* It now includes a `debug` method for more granular logging.
|