@telorun/ide-support 0.16.0 → 0.16.1
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.
|
@@ -9,7 +9,7 @@ export const CAPABILITY_VALUES = [
|
|
|
9
9
|
/** One-line role summary per capability, surfaced on hover. Kept in sync with
|
|
10
10
|
* the capability list in `CLAUDE.md` / the kernel builtins. */
|
|
11
11
|
export const CAPABILITY_DOCS = {
|
|
12
|
-
"Telo.Service": "Long-lived resource: `init()` +
|
|
12
|
+
"Telo.Service": "Long-lived resource: `init()` + `run()`, returning what undoes them (servers, pools).",
|
|
13
13
|
"Telo.Runnable": "One-shot task: `run()` (pipelines, boot steps).",
|
|
14
14
|
"Telo.Invocable": "Request handler: `invoke(inputs)` (scripts, endpoints).",
|
|
15
15
|
"Telo.Provider": "Value-flow source: `init()` + optional `provide()` (config, secrets).",
|
package/dist/index.d.ts
CHANGED
|
@@ -6,4 +6,5 @@ export * from "./semantic-tokens/index.js";
|
|
|
6
6
|
export * from "./definition/index.js";
|
|
7
7
|
export * from "./rename/index.js";
|
|
8
8
|
export * from "./import-upgrades/index.js";
|
|
9
|
+
export { walkCel, flattenChain, chainAt, type ChainPart } from "./cel-chain.js";
|
|
9
10
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,wBAAwB,CAAC;AACvC,cAAc,wBAAwB,CAAC;AACvC,cAAc,kBAAkB,CAAC;AACjC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,uBAAuB,CAAC;AACtC,cAAc,mBAAmB,CAAC;AAClC,cAAc,4BAA4B,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,wBAAwB,CAAC;AACvC,cAAc,wBAAwB,CAAC;AACvC,cAAc,kBAAkB,CAAC;AACjC,cAAc,4BAA4B,CAAC;AAC3C,cAAc,uBAAuB,CAAC;AACtC,cAAc,mBAAmB,CAAC;AAClC,cAAc,4BAA4B,CAAC;AAI3C,OAAO,EAAE,OAAO,EAAE,YAAY,EAAE,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,gBAAgB,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -6,3 +6,7 @@ export * from "./semantic-tokens/index.js";
|
|
|
6
6
|
export * from "./definition/index.js";
|
|
7
7
|
export * from "./rename/index.js";
|
|
8
8
|
export * from "./import-upgrades/index.js";
|
|
9
|
+
// The repo's single CEL-tree walk. Exported because every host that has to
|
|
10
|
+
// answer "where is this name read" needs it and a second copy would be a second
|
|
11
|
+
// answer — the editor asks it before deleting a resource.
|
|
12
|
+
export { walkCel, flattenChain, chainAt } from "./cel-chain.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@telorun/ide-support",
|
|
3
|
-
"version": "0.16.
|
|
3
|
+
"version": "0.16.1",
|
|
4
4
|
"description": "Editor-host-agnostic IDE support (completions, diagnostic normalization) for Telo manifests.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"telo",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"src/**"
|
|
37
37
|
],
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@telorun/analyzer": "0.
|
|
39
|
+
"@telorun/analyzer": "0.65.0"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@types/node": "^20.0.0",
|
|
@@ -10,7 +10,7 @@ export const CAPABILITY_VALUES = [
|
|
|
10
10
|
/** One-line role summary per capability, surfaced on hover. Kept in sync with
|
|
11
11
|
* the capability list in `CLAUDE.md` / the kernel builtins. */
|
|
12
12
|
export const CAPABILITY_DOCS: Record<string, string> = {
|
|
13
|
-
"Telo.Service": "Long-lived resource: `init()` +
|
|
13
|
+
"Telo.Service": "Long-lived resource: `init()` + `run()`, returning what undoes them (servers, pools).",
|
|
14
14
|
"Telo.Runnable": "One-shot task: `run()` (pipelines, boot steps).",
|
|
15
15
|
"Telo.Invocable": "Request handler: `invoke(inputs)` (scripts, endpoints).",
|
|
16
16
|
"Telo.Provider": "Value-flow source: `init()` + optional `provide()` (config, secrets).",
|
package/src/index.ts
CHANGED
|
@@ -6,3 +6,7 @@ export * from "./semantic-tokens/index.js";
|
|
|
6
6
|
export * from "./definition/index.js";
|
|
7
7
|
export * from "./rename/index.js";
|
|
8
8
|
export * from "./import-upgrades/index.js";
|
|
9
|
+
// The repo's single CEL-tree walk. Exported because every host that has to
|
|
10
|
+
// answer "where is this name read" needs it and a second copy would be a second
|
|
11
|
+
// answer — the editor asks it before deleting a resource.
|
|
12
|
+
export { walkCel, flattenChain, chainAt, type ChainPart } from "./cel-chain.js";
|