@testsmith/api-spector 0.5.4 → 0.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/out/main/index.js +1 -1
- package/out/main/runner.js +1 -1
- package/out/renderer/assets/{GraphQLEditor-B5bSe2ot.js → GraphQLEditor-CegyHBoY.js} +1 -1
- package/out/renderer/assets/{SoapEditor-B-4NwGjp.js → SoapEditor-BjZHo7Xf.js} +1 -1
- package/out/renderer/assets/{index-DUMcaGlL.js → index-e3ZM7oe9.js} +401 -194
- package/out/renderer/assets/index-kNbbR_rD.css +2 -0
- package/out/renderer/index.html +2 -2
- package/package.json +1 -1
- package/out/renderer/assets/index-B4ozo7gn.css +0 -2
package/out/main/index.js
CHANGED
|
@@ -5941,7 +5941,7 @@ function isNewer(a, b) {
|
|
|
5941
5941
|
return a2 > b2;
|
|
5942
5942
|
}
|
|
5943
5943
|
async function checkForUpdate() {
|
|
5944
|
-
const current = "0.5.
|
|
5944
|
+
const current = "0.5.5";
|
|
5945
5945
|
try {
|
|
5946
5946
|
const res = await fetch(REGISTRY_URL, { signal: AbortSignal.timeout(4e3) });
|
|
5947
5947
|
if (!res.ok) return null;
|
package/out/main/runner.js
CHANGED
|
@@ -402,7 +402,7 @@ async function main() {
|
|
|
402
402
|
} else if (!envName && workspace.settings?.defaultEnvironment && !env) {
|
|
403
403
|
console.warn(cliCommon.color(`Warning: default environment "${workspace.settings.defaultEnvironment}" not found. Running without environment.`, cliCommon.C.yellow));
|
|
404
404
|
}
|
|
405
|
-
const version = `v${"0.5.
|
|
405
|
+
const version = `v${"0.5.5"}`;
|
|
406
406
|
console.log("");
|
|
407
407
|
console.log(cliCommon.color(" API Test Runner" + (version ? ` ${version}` : ""), cliCommon.C.bold, cliCommon.C.white));
|
|
408
408
|
console.log(cliCommon.color(` Workspace: ${wsPath}`, cliCommon.C.gray));
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { l as linter, E as EditorView, L as LanguageSupport, a as LRLanguage, s as styleTags, i as indentNodeProp, d as delimitedIndent, f as foldNodeProp, b as foldInside, S as StateField, c as LRParser, e as StateEffect, t as tags, u as useT, r as reactExports, g as useStore, h as useActiveEnvironment, j as jsxRuntimeExports, R as ReactCodeMirror, o as oneDark, k as json } from "./index-
|
|
1
|
+
import { l as linter, E as EditorView, L as LanguageSupport, a as LRLanguage, s as styleTags, i as indentNodeProp, d as delimitedIndent, f as foldNodeProp, b as foldInside, S as StateField, c as LRParser, e as StateEffect, t as tags, u as useT, r as reactExports, g as useStore, h as useActiveEnvironment, j as jsxRuntimeExports, R as ReactCodeMirror, o as oneDark, k as json } from "./index-e3ZM7oe9.js";
|
|
2
2
|
function devAssert(condition, message) {
|
|
3
3
|
const booleanCondition = Boolean(condition);
|
|
4
4
|
if (!booleanCondition) {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { u as useT, r as reactExports, j as jsxRuntimeExports, R as ReactCodeMirror, m as commentKeymap, o as oneDark, x as xml } from "./index-
|
|
1
|
+
import { u as useT, r as reactExports, j as jsxRuntimeExports, R as ReactCodeMirror, m as commentKeymap, o as oneDark, x as xml } from "./index-e3ZM7oe9.js";
|
|
2
2
|
const SOAP_11_CONTENT_TYPE = "text/xml; charset=utf-8";
|
|
3
3
|
const SOAP_12_CONTENT_TYPE = "application/soap+xml; charset=utf-8";
|
|
4
4
|
function contentTypeForSoap(version) {
|