api-core-lib 11.5.4 → 11.5.5

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
@@ -240,15 +240,16 @@ interface ApiClientConfig {
240
240
  * A request can override this by explicitly setting `isPublic: false`.
241
241
  * @default false
242
242
  */
243
+ logRequests?: boolean;
243
244
  defaultIsPublic?: boolean;
244
245
  }
245
246
 
246
247
  /**
247
248
  * @file src/core/client.ts
248
- * @description This is the heart of the API client library.
249
- * The `createApiClient` function constructs and configures a sophisticated Axios instance.
250
- * It features intelligent, security-first token management, a flexible middleware system,
251
- * and customizable logging, all designed to work seamlessly in modern web frameworks like Next.js.
249
+ * @description The heart of the API client library.
250
+ * This file contains the `createApiClient` factory function which constructs and
251
+ * configures a sophisticated Axios instance with features like automatic token
252
+ * management, middleware support, and simplified console logging.
252
253
  */
253
254
 
254
255
  /**
package/dist/index.d.ts CHANGED
@@ -240,15 +240,16 @@ interface ApiClientConfig {
240
240
  * A request can override this by explicitly setting `isPublic: false`.
241
241
  * @default false
242
242
  */
243
+ logRequests?: boolean;
243
244
  defaultIsPublic?: boolean;
244
245
  }
245
246
 
246
247
  /**
247
248
  * @file src/core/client.ts
248
- * @description This is the heart of the API client library.
249
- * The `createApiClient` function constructs and configures a sophisticated Axios instance.
250
- * It features intelligent, security-first token management, a flexible middleware system,
251
- * and customizable logging, all designed to work seamlessly in modern web frameworks like Next.js.
249
+ * @description The heart of the API client library.
250
+ * This file contains the `createApiClient` factory function which constructs and
251
+ * configures a sophisticated Axios instance with features like automatic token
252
+ * management, middleware support, and simplified console logging.
252
253
  */
253
254
 
254
255
  /**