@nsshunt/stsrunnerframework 1.0.56 → 1.0.57
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.
|
@@ -73,7 +73,7 @@ function getDefaultExportFromCjs$1(x) {
|
|
|
73
73
|
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, "default") ? x["default"] : x;
|
|
74
74
|
}
|
|
75
75
|
function getAugmentedNamespace$1(n) {
|
|
76
|
-
if (n
|
|
76
|
+
if (Object.prototype.hasOwnProperty.call(n, "__esModule")) return n;
|
|
77
77
|
var f = n.default;
|
|
78
78
|
if (typeof f == "function") {
|
|
79
79
|
var a = function a2() {
|
|
@@ -3821,7 +3821,7 @@ const resolveConfig = (config2) => {
|
|
|
3821
3821
|
const newConfig = mergeConfig$1({}, config2);
|
|
3822
3822
|
let { data, withXSRFToken, xsrfHeaderName, xsrfCookieName, headers, auth } = newConfig;
|
|
3823
3823
|
newConfig.headers = headers = AxiosHeaders$1.from(headers);
|
|
3824
|
-
newConfig.url = buildURL(buildFullPath(newConfig.baseURL, newConfig.url), config2.params, config2.paramsSerializer);
|
|
3824
|
+
newConfig.url = buildURL(buildFullPath(newConfig.baseURL, newConfig.url, newConfig.allowAbsoluteUrls), config2.params, config2.paramsSerializer);
|
|
3825
3825
|
if (auth) {
|
|
3826
3826
|
headers.set(
|
|
3827
3827
|
"Authorization",
|
|
@@ -4338,7 +4338,7 @@ function dispatchRequest(config2) {
|
|
|
4338
4338
|
return Promise.reject(reason);
|
|
4339
4339
|
});
|
|
4340
4340
|
}
|
|
4341
|
-
const VERSION$1 = "1.8.
|
|
4341
|
+
const VERSION$1 = "1.8.3";
|
|
4342
4342
|
const validators$2 = {};
|
|
4343
4343
|
["object", "boolean", "number", "function", "string", "symbol"].forEach((type, i) => {
|
|
4344
4344
|
validators$2[type] = function validator2(thing) {
|
|
@@ -4805,7 +4805,7 @@ function getDefaultExportFromCjs(x) {
|
|
|
4805
4805
|
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, "default") ? x["default"] : x;
|
|
4806
4806
|
}
|
|
4807
4807
|
function getAugmentedNamespace(n) {
|
|
4808
|
-
if (n
|
|
4808
|
+
if (Object.prototype.hasOwnProperty.call(n, "__esModule")) return n;
|
|
4809
4809
|
var f = n.default;
|
|
4810
4810
|
if (typeof f == "function") {
|
|
4811
4811
|
var a = function a2() {
|