@nsshunt/stsrunnerframework 1.0.56 → 1.0.58
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.
|
@@ -62,7 +62,7 @@ var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "acce
|
|
|
62
62
|
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, "default") ? x["default"] : x;
|
|
63
63
|
}
|
|
64
64
|
function getAugmentedNamespace$1(n) {
|
|
65
|
-
if (n
|
|
65
|
+
if (Object.prototype.hasOwnProperty.call(n, "__esModule")) return n;
|
|
66
66
|
var f = n.default;
|
|
67
67
|
if (typeof f == "function") {
|
|
68
68
|
var a = function a2() {
|
|
@@ -3723,7 +3723,7 @@ var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "acce
|
|
|
3723
3723
|
}
|
|
3724
3724
|
function buildFullPath(baseURL, requestedURL, allowAbsoluteUrls) {
|
|
3725
3725
|
let isRelativeUrl = !isAbsoluteURL(requestedURL);
|
|
3726
|
-
if (baseURL && isRelativeUrl || allowAbsoluteUrls == false) {
|
|
3726
|
+
if (baseURL && (isRelativeUrl || allowAbsoluteUrls == false)) {
|
|
3727
3727
|
return combineURLs(baseURL, requestedURL);
|
|
3728
3728
|
}
|
|
3729
3729
|
return requestedURL;
|
|
@@ -3810,7 +3810,7 @@ var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "acce
|
|
|
3810
3810
|
const newConfig = mergeConfig$1({}, config2);
|
|
3811
3811
|
let { data, withXSRFToken, xsrfHeaderName, xsrfCookieName, headers, auth } = newConfig;
|
|
3812
3812
|
newConfig.headers = headers = AxiosHeaders$1.from(headers);
|
|
3813
|
-
newConfig.url = buildURL(buildFullPath(newConfig.baseURL, newConfig.url), config2.params, config2.paramsSerializer);
|
|
3813
|
+
newConfig.url = buildURL(buildFullPath(newConfig.baseURL, newConfig.url, newConfig.allowAbsoluteUrls), config2.params, config2.paramsSerializer);
|
|
3814
3814
|
if (auth) {
|
|
3815
3815
|
headers.set(
|
|
3816
3816
|
"Authorization",
|
|
@@ -4327,7 +4327,7 @@ var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "acce
|
|
|
4327
4327
|
return Promise.reject(reason);
|
|
4328
4328
|
});
|
|
4329
4329
|
}
|
|
4330
|
-
const VERSION$1 = "1.8.
|
|
4330
|
+
const VERSION$1 = "1.8.4";
|
|
4331
4331
|
const validators$2 = {};
|
|
4332
4332
|
["object", "boolean", "number", "function", "string", "symbol"].forEach((type, i) => {
|
|
4333
4333
|
validators$2[type] = function validator2(thing) {
|
|
@@ -4794,7 +4794,7 @@ var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "acce
|
|
|
4794
4794
|
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, "default") ? x["default"] : x;
|
|
4795
4795
|
}
|
|
4796
4796
|
function getAugmentedNamespace(n) {
|
|
4797
|
-
if (n
|
|
4797
|
+
if (Object.prototype.hasOwnProperty.call(n, "__esModule")) return n;
|
|
4798
4798
|
var f = n.default;
|
|
4799
4799
|
if (typeof f == "function") {
|
|
4800
4800
|
var a = function a2() {
|
|
@@ -4824,7 +4824,7 @@ var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "acce
|
|
|
4824
4824
|
default: __viteBrowserExternal$2
|
|
4825
4825
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
4826
4826
|
const require$$0$3 = /* @__PURE__ */ getAugmentedNamespace(__viteBrowserExternal$1$1);
|
|
4827
|
-
const version$2 = "16.
|
|
4827
|
+
const version$2 = "16.5.0";
|
|
4828
4828
|
const require$$4$1 = {
|
|
4829
4829
|
version: version$2
|
|
4830
4830
|
};
|
|
@@ -4883,9 +4883,6 @@ var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "acce
|
|
|
4883
4883
|
}
|
|
4884
4884
|
return DotenvModule.parse(decrypted);
|
|
4885
4885
|
}
|
|
4886
|
-
function _log(message2) {
|
|
4887
|
-
console.log(`[dotenv@${version2}][INFO] ${message2}`);
|
|
4888
|
-
}
|
|
4889
4886
|
function _warn(message2) {
|
|
4890
4887
|
console.log(`[dotenv@${version2}][WARN] ${message2}`);
|
|
4891
4888
|
}
|
|
@@ -4958,7 +4955,10 @@ var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "acce
|
|
|
4958
4955
|
return envPath[0] === "~" ? path.join(os.homedir(), envPath.slice(1)) : envPath;
|
|
4959
4956
|
}
|
|
4960
4957
|
function _configVault(options) {
|
|
4961
|
-
|
|
4958
|
+
const debug = Boolean(options && options.debug);
|
|
4959
|
+
if (debug) {
|
|
4960
|
+
_debug3("Loading env from encrypted .env.vault");
|
|
4961
|
+
}
|
|
4962
4962
|
const parsed = DotenvModule._parseVault(options);
|
|
4963
4963
|
let processEnv = process.env;
|
|
4964
4964
|
if (options && options.processEnv != null) {
|
|
@@ -19197,7 +19197,7 @@ ${newlined}
|
|
|
19197
19197
|
jwks = jwks.filter(({ use }) => use === "sig" || use === void 0).filter(({ kty }) => kty === "RSA" || kty === "EC" || kty === "OKP");
|
|
19198
19198
|
for (const jwk of jwks) {
|
|
19199
19199
|
try {
|
|
19200
|
-
const key = await jose.importJWK(jwk, resolveAlg(jwk));
|
|
19200
|
+
const key = await jose.importJWK({ ...jwk, ext: true }, resolveAlg(jwk));
|
|
19201
19201
|
if (key.type !== "public") {
|
|
19202
19202
|
continue;
|
|
19203
19203
|
}
|
|
@@ -21599,7 +21599,7 @@ ${newlined}
|
|
|
21599
21599
|
default: __viteBrowserExternal
|
|
21600
21600
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
21601
21601
|
const require$$0 = /* @__PURE__ */ getAugmentedNamespace$1(__viteBrowserExternal$1);
|
|
21602
|
-
const version = "16.
|
|
21602
|
+
const version = "16.5.0";
|
|
21603
21603
|
const require$$4 = {
|
|
21604
21604
|
version
|
|
21605
21605
|
};
|
|
@@ -21658,9 +21658,6 @@ ${newlined}
|
|
|
21658
21658
|
}
|
|
21659
21659
|
return DotenvModule.parse(decrypted);
|
|
21660
21660
|
}
|
|
21661
|
-
function _log(message2) {
|
|
21662
|
-
console.log(`[dotenv@${version2}][INFO] ${message2}`);
|
|
21663
|
-
}
|
|
21664
21661
|
function _warn(message2) {
|
|
21665
21662
|
console.log(`[dotenv@${version2}][WARN] ${message2}`);
|
|
21666
21663
|
}
|
|
@@ -21733,7 +21730,10 @@ ${newlined}
|
|
|
21733
21730
|
return envPath[0] === "~" ? path.join(os.homedir(), envPath.slice(1)) : envPath;
|
|
21734
21731
|
}
|
|
21735
21732
|
function _configVault(options) {
|
|
21736
|
-
|
|
21733
|
+
const debug = Boolean(options && options.debug);
|
|
21734
|
+
if (debug) {
|
|
21735
|
+
_debug3("Loading env from encrypted .env.vault");
|
|
21736
|
+
}
|
|
21737
21737
|
const parsed = DotenvModule._parseVault(options);
|
|
21738
21738
|
let processEnv = process.env;
|
|
21739
21739
|
if (options && options.processEnv != null) {
|