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 +5 -4
- package/dist/index.d.ts +5 -4
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
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
|
|
249
|
-
*
|
|
250
|
-
*
|
|
251
|
-
*
|
|
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
|
|
249
|
-
*
|
|
250
|
-
*
|
|
251
|
-
*
|
|
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
|
/**
|