@testsmith/api-spector 0.4.2 → 0.4.4
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
CHANGED
|
@@ -5174,7 +5174,7 @@ function isNewer(a, b) {
|
|
|
5174
5174
|
return a2 > b2;
|
|
5175
5175
|
}
|
|
5176
5176
|
async function checkForUpdate() {
|
|
5177
|
-
const current = "0.4.
|
|
5177
|
+
const current = "0.4.4";
|
|
5178
5178
|
try {
|
|
5179
5179
|
const res = await fetch(REGISTRY_URL, { signal: AbortSignal.timeout(4e3) });
|
|
5180
5180
|
if (!res.ok) return null;
|
package/out/main/runner.js
CHANGED
|
@@ -396,7 +396,7 @@ async function main() {
|
|
|
396
396
|
} else if (!envName && workspace.settings?.defaultEnvironment && !env) {
|
|
397
397
|
console.warn(cliCommon.color(`Warning: default environment "${workspace.settings.defaultEnvironment}" not found. Running without environment.`, cliCommon.C.yellow));
|
|
398
398
|
}
|
|
399
|
-
const version = `v${"0.4.
|
|
399
|
+
const version = `v${"0.4.4"}`;
|
|
400
400
|
console.log("");
|
|
401
401
|
console.log(cliCommon.color(" API Test Runner" + (version ? ` ${version}` : ""), cliCommon.C.bold, cliCommon.C.white));
|
|
402
402
|
console.log(cliCommon.color(` Workspace: ${wsPath}`, cliCommon.C.gray));
|
|
@@ -66386,7 +66386,7 @@ function WelcomeScreen() {
|
|
|
66386
66386
|
/* @__PURE__ */ jsxRuntimeExports.jsx("p", { className: "text-surface-400 text-sm max-w-sm", children: "Local-first API testing with Robot Framework & Playwright code generation. Secrets stay on your machine." }),
|
|
66387
66387
|
/* @__PURE__ */ jsxRuntimeExports.jsxs("p", { className: "text-[11px] mt-3", style: { color: "var(--text-muted)" }, children: [
|
|
66388
66388
|
"version ",
|
|
66389
|
-
"0.4.
|
|
66389
|
+
"0.4.4"
|
|
66390
66390
|
] })
|
|
66391
66391
|
] }),
|
|
66392
66392
|
/* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: "flex flex-col gap-3 w-64", children: [
|
|
@@ -72600,7 +72600,7 @@ function App() {
|
|
|
72600
72600
|
/* @__PURE__ */ jsxRuntimeExports.jsx("span", { style: { color: "#6aa3c8" }, children: "Spector" }),
|
|
72601
72601
|
/* @__PURE__ */ jsxRuntimeExports.jsxs("span", { className: "ml-2 text-[10px] font-normal opacity-50", children: [
|
|
72602
72602
|
"v",
|
|
72603
|
-
"0.4.
|
|
72603
|
+
"0.4.4"
|
|
72604
72604
|
] }),
|
|
72605
72605
|
/* @__PURE__ */ jsxRuntimeExports.jsx("span", { className: "mx-2 opacity-30", children: "·" }),
|
|
72606
72606
|
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
package/out/renderer/index.html
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
<meta charset="UTF-8" />
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
7
|
<title>API Spector</title>
|
|
8
|
-
<script type="module" crossorigin src="./assets/index-
|
|
8
|
+
<script type="module" crossorigin src="./assets/index-X3HWqTJC.js"></script>
|
|
9
9
|
<link rel="stylesheet" crossorigin href="./assets/index-DkZ0bxof.css">
|
|
10
10
|
</head>
|
|
11
11
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@testsmith/api-spector",
|
|
3
3
|
"productName": "API Spector",
|
|
4
|
-
"version": "0.4.
|
|
4
|
+
"version": "0.4.4",
|
|
5
5
|
"description": "Local-first API testing tool to inspect, test and mock APIs",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
"zustand": "^5.0.12"
|
|
97
97
|
},
|
|
98
98
|
"optionalDependencies": {
|
|
99
|
-
"electron": "
|
|
99
|
+
"electron": "^43.3.0"
|
|
100
100
|
},
|
|
101
101
|
"build": {
|
|
102
102
|
"appId": "com.apispector.app",
|
|
@@ -120,6 +120,13 @@
|
|
|
120
120
|
"arm64",
|
|
121
121
|
"x64"
|
|
122
122
|
]
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"target": "zip",
|
|
126
|
+
"arch": [
|
|
127
|
+
"arm64",
|
|
128
|
+
"x64"
|
|
129
|
+
]
|
|
123
130
|
}
|
|
124
131
|
]
|
|
125
132
|
},
|