@testsmith/api-spector 0.2.6 → 0.2.8

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
- Copyright (c) 2024-2026 Testsmith.io
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
- You may not, without prior written permission from the copyright holder:
3
+ Copyright (c) 2024-2026 Testsmith.io
9
4
 
10
- * use this software or derivative works for any commercial purpose;
11
- * sell, sublicense, rent, lease, or monetize this software;
12
- * host, publish, distribute, or make available any public copy of this
13
- software or derivative works;
14
- * use this software to provide services to third parties;
15
- * remove or alter this copyright notice or license text.
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
- Except as expressly permitted above, no rights are granted.
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 HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
23
- IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
24
- CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
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
@@ -4602,10 +4602,7 @@ function git() {
4602
4602
  if (!dir) throw new Error("No workspace open");
4603
4603
  return simpleGit.simpleGit(dir, { timeout: { block: GIT_BLOCK_TIMEOUT_MS } }).env({
4604
4604
  ...process.env,
4605
- GIT_TERMINAL_PROMPT: "0",
4606
- GIT_ASKPASS: "echo",
4607
- SSH_ASKPASS: "echo",
4608
- GCM_INTERACTIVE: "Never"
4605
+ GIT_TERMINAL_PROMPT: "0"
4609
4606
  });
4610
4607
  }
4611
4608
  function registerGitHandlers(ipc) {
@@ -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.6"}`;
635
+ const version = `v${"0.2.8"}`;
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.6"
70985
+ "0.2.8"
70986
70986
  ] }),
70987
70987
  /* @__PURE__ */ jsxRuntimeExports.jsx("span", { className: "mx-2 opacity-30", children: "·" }),
70988
70988
  /* @__PURE__ */ jsxRuntimeExports.jsx(
@@ -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-jdRfbs9b.js"></script>
8
+ <script type="module" crossorigin src="./assets/index-CwHLIOAR.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.6",
4
+ "version": "0.2.8",
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": "GPL-3.0-only",
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
- Copyright (c) 2024-2026 Testsmith.io. All rights reserved.
121
+ API Spector is released under the [MIT License](LICENSE) free to use, modify, and distribute, including for commercial purposes.
122
122
 
123
- This repository is publicly viewable for reference purposes only.
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