@envseal/http-server 0.1.1 → 0.1.3

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.
Files changed (2) hide show
  1. package/dist/server.js +1 -1
  2. package/package.json +5 -5
package/dist/server.js CHANGED
@@ -236,7 +236,7 @@ export async function startHttpServer(opts) {
236
236
  res.writeHead(200);
237
237
  res.end(JSON.stringify(result));
238
238
  }
239
- catch (error) {
239
+ catch {
240
240
  res.writeHead(500);
241
241
  res.end(JSON.stringify({
242
242
  error: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@envseal/http-server",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "type": "module",
5
5
  "license": "Apache-2.0",
6
6
  "main": "./dist/index.js",
@@ -21,10 +21,10 @@
21
21
  },
22
22
  "dependencies": {
23
23
  "zod-to-json-schema": "^3.24.1",
24
- "@envseal/protocol": "0.1.1",
25
- "@envseal/core": "0.1.1",
26
- "@envseal/prompters": "0.1.1",
27
- "@envseal/sdk": "0.1.1"
24
+ "@envseal/protocol": "0.1.3",
25
+ "@envseal/core": "0.1.3",
26
+ "@envseal/prompters": "0.1.3",
27
+ "@envseal/sdk": "0.1.3"
28
28
  },
29
29
  "devDependencies": {
30
30
  "vitest": "^2.1.8"