api-core-lib 11.6.5 → 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 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.
@@ -244,6 +244,8 @@ interface ApiClientConfig {
244
244
  * @default false
245
245
  */
246
246
  defaultIsPublic?: boolean;
247
+ maxTokenRefreshRetries?: number;
248
+ maxQueueSize?: number;
247
249
  }
248
250
 
249
251
  /**
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.
@@ -244,6 +244,8 @@ interface ApiClientConfig {
244
244
  * @default false
245
245
  */
246
246
  defaultIsPublic?: boolean;
247
+ maxTokenRefreshRetries?: number;
248
+ maxQueueSize?: number;
247
249
  }
248
250
 
249
251
  /**