@bendyline/gezel-service 1.0.1 → 1.0.2

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/dist/NOTICE.md CHANGED
@@ -174,6 +174,13 @@ external data sources into a project. Two upstreams are involved:
174
174
  likewise derives connector authentication config from this same Apache-2.0
175
175
  source.
176
176
 
177
+ The standalone npm package distributes its own `NOTICE.md`, the full
178
+ Apache-2.0 text under `THIRD_PARTY_LICENSES/`, and the machine-readable
179
+ `vendor/provenance.json` ledger. Both compiled entry points carry a prominent
180
+ banner identifying the modified Apache-derived portions. The npm legal-payload
181
+ gate packs the package and rejects a release if any of those files or banners
182
+ is missing.
183
+
177
184
  Component read-slices vendored so far:
178
185
 
179
186
  | Component | Upstream | License |
@@ -133790,7 +133790,7 @@ var NodePtyUnavailableError = class extends Error {
133790
133790
  code = "GEZEL_NODE_PTY_UNAVAILABLE";
133791
133791
  constructor(cause) {
133792
133792
  super(
133793
- "Interactive terminal support is unavailable because the optional node-pty runtime could not be loaded. Reinstall Gezel with optional dependencies enabled.",
133793
+ "Interactive terminal support requires node-pty, but it is not installed or could not be loaded. Install it alongside Gezel, then retry: npm install node-pty",
133794
133794
  { cause }
133795
133795
  );
133796
133796
  this.name = "NodePtyUnavailableError";
package/dist/index.js CHANGED
@@ -133781,7 +133781,7 @@ var NodePtyUnavailableError = class extends Error {
133781
133781
  code = "GEZEL_NODE_PTY_UNAVAILABLE";
133782
133782
  constructor(cause) {
133783
133783
  super(
133784
- "Interactive terminal support is unavailable because the optional node-pty runtime could not be loaded. Reinstall Gezel with optional dependencies enabled.",
133784
+ "Interactive terminal support requires node-pty, but it is not installed or could not be loaded. Install it alongside Gezel, then retry: npm install node-pty",
133785
133785
  { cause }
133786
133786
  );
133787
133787
  this.name = "NodePtyUnavailableError";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bendyline/gezel-service",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "The Gezel daemon: HTTP API, task runner, sandbox, agent runtime.",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -64,6 +64,14 @@
64
64
  "dependencies": {
65
65
  "@anthropic-ai/sdk": "^0.113.0",
66
66
  "@atproto/api": "0.20.38",
67
+ "@bendyline/gezel": "1.0.2",
68
+ "@bendyline/gezel-client": "1.0.2",
69
+ "@bendyline/gezel-catalog": "1.0.2",
70
+ "@bendyline/gezel-connectors-spectral": "1.0.2",
71
+ "@bendyline/gezel-mcp": "1.0.2",
72
+ "@bendyline/gezel-plugin-sdk": "1.0.2",
73
+ "@bendyline/gezel-script-stdlib": "1.0.2",
74
+ "@bendyline/gezel-sdk": "1.0.2",
67
75
  "@bendyline/squisq": "2.7.1",
68
76
  "@bendyline/squisq-cli": "2.5.4",
69
77
  "@bendyline/squisq-formats": "2.4.3",
@@ -92,22 +100,12 @@
92
100
  "web-tree-sitter": "^0.25.10",
93
101
  "yauzl": "^3.4.0",
94
102
  "yazl": "^3.3.1",
95
- "zod": "^4.4.3",
96
- "@bendyline/gezel": "1.0.1",
97
- "@bendyline/gezel-catalog": "1.0.1",
98
- "@bendyline/gezel-client": "1.0.1",
99
- "@bendyline/gezel-connectors-spectral": "1.0.1",
100
- "@bendyline/gezel-mcp": "1.0.1",
101
- "@bendyline/gezel-plugin-sdk": "1.0.1",
102
- "@bendyline/gezel-sdk": "1.0.1",
103
- "@bendyline/gezel-script-stdlib": "1.0.1"
104
- },
105
- "optionalDependencies": {
106
- "node-pty": "^1.1.0"
103
+ "zod": "^4.4.3"
107
104
  },
108
105
  "peerDependencies": {
109
106
  "@huggingface/transformers": "^3.8.1",
110
- "kokoro-js": "^1.2.1"
107
+ "kokoro-js": "^1.2.1",
108
+ "node-pty": "^1.1.0"
111
109
  },
112
110
  "peerDependenciesMeta": {
113
111
  "@huggingface/transformers": {
@@ -115,6 +113,9 @@
115
113
  },
116
114
  "kokoro-js": {
117
115
  "optional": true
116
+ },
117
+ "node-pty": {
118
+ "optional": true
118
119
  }
119
120
  },
120
121
  "devDependencies": {
@@ -126,6 +127,7 @@
126
127
  "@types/yauzl": "^3.4.0",
127
128
  "@types/yazl": "^3.3.1",
128
129
  "kokoro-js": "^1.2.1",
130
+ "node-pty": "^1.1.0",
129
131
  "tsup": "^8.5.1",
130
132
  "tsx": "^4.23.1",
131
133
  "vitest": "^4.1.10"