@testsmith/api-spector 0.2.6 → 0.2.7
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/LICENSE
CHANGED
|
@@ -1,26 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
All rights reserved.
|
|
4
|
-
|
|
5
|
-
Permission is granted to view, copy, and run this software for private,
|
|
6
|
-
internal, and non-commercial purposes only.
|
|
1
|
+
MIT License
|
|
7
2
|
|
|
8
|
-
|
|
3
|
+
Copyright (c) 2024-2026 Testsmith.io
|
|
9
4
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
16
11
|
|
|
17
|
-
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
18
14
|
|
|
19
15
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
20
16
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
21
17
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
22
|
-
COPYRIGHT
|
|
23
|
-
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
24
|
-
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
25
|
-
|
|
26
|
-
For commercial licensing or other permissions, contact: info@testsmith.io
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/out/main/index.js
CHANGED
|
@@ -4600,7 +4600,10 @@ const GIT_BLOCK_TIMEOUT_MS = 6e4;
|
|
|
4600
4600
|
function git() {
|
|
4601
4601
|
const dir = getWorkspaceDir();
|
|
4602
4602
|
if (!dir) throw new Error("No workspace open");
|
|
4603
|
-
return simpleGit.simpleGit(dir, {
|
|
4603
|
+
return simpleGit.simpleGit(dir, {
|
|
4604
|
+
timeout: { block: GIT_BLOCK_TIMEOUT_MS },
|
|
4605
|
+
unsafe: { allowUnsafeAskPass: true }
|
|
4606
|
+
}).env({
|
|
4604
4607
|
...process.env,
|
|
4605
4608
|
GIT_TERMINAL_PROMPT: "0",
|
|
4606
4609
|
GIT_ASKPASS: "echo",
|
package/out/main/runner.js
CHANGED
|
@@ -632,7 +632,7 @@ async function main() {
|
|
|
632
632
|
if (envName && !env) {
|
|
633
633
|
console.warn(color(`Warning: environment "${envName}" not found. Running without environment.`, C.yellow));
|
|
634
634
|
}
|
|
635
|
-
const version = `v${"0.2.
|
|
635
|
+
const version = `v${"0.2.7"}`;
|
|
636
636
|
console.log("");
|
|
637
637
|
console.log(color(" API Test Runner" + (version ? ` ${version}` : ""), C.bold, C.white));
|
|
638
638
|
console.log(color(` Workspace: ${wsPath}`, C.gray));
|
|
@@ -70982,7 +70982,7 @@ function App() {
|
|
|
70982
70982
|
/* @__PURE__ */ jsxRuntimeExports.jsx("span", { style: { color: "#6aa3c8" }, children: "Spector" }),
|
|
70983
70983
|
/* @__PURE__ */ jsxRuntimeExports.jsxs("span", { className: "ml-2 text-[10px] font-normal opacity-50", children: [
|
|
70984
70984
|
"v",
|
|
70985
|
-
"0.2.
|
|
70985
|
+
"0.2.7"
|
|
70986
70986
|
] }),
|
|
70987
70987
|
/* @__PURE__ */ jsxRuntimeExports.jsx("span", { className: "mx-2 opacity-30", children: "·" }),
|
|
70988
70988
|
/* @__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-WH-P4X-L.js"></script>
|
|
9
9
|
<link rel="stylesheet" crossorigin href="./assets/index-DfkLUeA1.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.2.
|
|
4
|
+
"version": "0.2.7",
|
|
5
5
|
"description": "Local-first API testing tool to inspect, test and mock APIs",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"url": "https://github.com/testsmith-io/api-spector/issues"
|
|
12
12
|
},
|
|
13
13
|
"homepage": "https://github.com/testsmith-io/api-spector",
|
|
14
|
-
"license": "
|
|
14
|
+
"license": "MIT",
|
|
15
15
|
"main": "out/main/index.js",
|
|
16
16
|
"bin": {
|
|
17
17
|
"api-spector": "bin/cli.js"
|
package/readme.md
CHANGED
|
@@ -118,8 +118,6 @@ npm run package
|
|
|
118
118
|
|
|
119
119
|
## License
|
|
120
120
|
|
|
121
|
-
|
|
121
|
+
API Spector is released under the [MIT License](LICENSE) — free to use, modify, and distribute, including for commercial purposes.
|
|
122
122
|
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
Commercial use, public hosting, redistribution, and use for third-party services are not permitted without prior written permission. See [LICENSE](LICENSE) for full terms.
|
|
123
|
+
Copyright (c) 2024-2026 Testsmith.io
|