@north-light/crouter-api 0.3.159 → 0.3.160
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/dto/nodes.d.ts +3 -0
- package/package.json +1 -1
package/dist/dto/nodes.d.ts
CHANGED
|
@@ -86,6 +86,9 @@ export interface NodeWorktreeDTO {
|
|
|
86
86
|
* `GET /v1/nodes/{id}` and by the create/lifecycle actions that yield a node. */
|
|
87
87
|
export interface NodeDetailDTO extends NodeSummaryDTO {
|
|
88
88
|
description?: string;
|
|
89
|
+
/** The Nerd Font glyph the namer chose for this node's work, when it has one
|
|
90
|
+
* (`NodeMeta.icon`). Rendered ahead of the label by surfaces that want it. */
|
|
91
|
+
icon?: string;
|
|
89
92
|
cycles?: number;
|
|
90
93
|
/** Approximate context-window token load of the node's live/last session,
|
|
91
94
|
* used by the orchestrator yield-nudge (`childFollowUp`). Null when unknown
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@north-light/crouter-api",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.160",
|
|
4
4
|
"description": "Typed crtrd /v1 API contract — DTOs, route builders, the error contract, and the CrtrClient. Zero runtime dependencies.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|