@kontent-ai/core-sdk 10.10.0 → 10.10.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.
- package/dist/cjs/sdk-info.generated.js +1 -1
- package/dist/es6/sdk-info.generated.js +1 -1
- package/dist/esnext/sdk-info.generated.js +1 -1
- package/dist/umd/kontent-core.umd.js +4 -4
- package/dist/umd/kontent-core.umd.js.map +1 -1
- package/dist/umd/kontent-core.umd.min.js +1 -1
- package/dist/umd/kontent-core.umd.min.js.LICENSE.txt +1 -1
- package/dist/umd/kontent-core.umd.min.js.map +1 -1
- package/dist/umd/report.json +1 -1
- package/dist/umd/report.min.json +1 -1
- package/dist/umd/stats.json +22 -22
- package/dist/umd/stats.min.json +22 -22
- package/lib/sdk-info.generated.ts +1 -1
- package/package.json +2 -2
|
@@ -899,7 +899,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
|
899
899
|
\***************************************************/
|
|
900
900
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
901
901
|
|
|
902
|
-
/*! Axios v1.8.
|
|
902
|
+
/*! Axios v1.8.4 Copyright (c) 2025 Matt Zabriskie and contributors */
|
|
903
903
|
|
|
904
904
|
|
|
905
905
|
function bind(fn, thisArg) {
|
|
@@ -3129,7 +3129,7 @@ function combineURLs(baseURL, relativeURL) {
|
|
|
3129
3129
|
*/
|
|
3130
3130
|
function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
|
|
3131
3131
|
let isRelativeUrl = !isAbsoluteURL(requestedURL);
|
|
3132
|
-
if (baseURL && isRelativeUrl || allowAbsoluteUrls == false) {
|
|
3132
|
+
if (baseURL && (isRelativeUrl || allowAbsoluteUrls == false)) {
|
|
3133
3133
|
return combineURLs(baseURL, requestedURL);
|
|
3134
3134
|
}
|
|
3135
3135
|
return requestedURL;
|
|
@@ -3244,7 +3244,7 @@ var resolveConfig = (config) => {
|
|
|
3244
3244
|
|
|
3245
3245
|
newConfig.headers = headers = AxiosHeaders$1.from(headers);
|
|
3246
3246
|
|
|
3247
|
-
newConfig.url = buildURL(buildFullPath(newConfig.baseURL, newConfig.url), config.params, config.paramsSerializer);
|
|
3247
|
+
newConfig.url = buildURL(buildFullPath(newConfig.baseURL, newConfig.url, newConfig.allowAbsoluteUrls), config.params, config.paramsSerializer);
|
|
3248
3248
|
|
|
3249
3249
|
// HTTP basic authentication
|
|
3250
3250
|
if (auth) {
|
|
@@ -3969,7 +3969,7 @@ function dispatchRequest(config) {
|
|
|
3969
3969
|
});
|
|
3970
3970
|
}
|
|
3971
3971
|
|
|
3972
|
-
const VERSION = "1.8.
|
|
3972
|
+
const VERSION = "1.8.4";
|
|
3973
3973
|
|
|
3974
3974
|
const validators$1 = {};
|
|
3975
3975
|
|