@north-light/crouter-api 0.3.234 → 0.3.235

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.
@@ -144,6 +144,15 @@ export interface NodeReviewBindingDTO {
144
144
  branch_file: string;
145
145
  target_file: string;
146
146
  }
147
+ /** The active fault projection shown by node inspection. */
148
+ export interface NodeFaultDTO {
149
+ link: string;
150
+ kind: string;
151
+ retry: {
152
+ disposition: string;
153
+ };
154
+ since: IsoTime;
155
+ }
147
156
  /** The full node view — summary ∪ identity extras ∪ edges ∪ paths. Returned by
148
157
  * `GET /v1/nodes/{id}` and by the create/lifecycle actions that yield a node. */
149
158
  export interface NodeDetailDTO extends NodeSummaryDTO {
@@ -173,6 +182,8 @@ export interface NodeDetailDTO extends NodeSummaryDTO {
173
182
  edges: NodeEdgesDTO;
174
183
  paths: NodePathsDTO;
175
184
  worktree?: NodeWorktreeDTO | null;
185
+ /** The currently active runtime fault, when one is present. */
186
+ fault?: NodeFaultDTO | null;
176
187
  /** Present only on a `POST /promote` response — the roadmap/goal facts the
177
188
  * promote primitive returns beyond the node meta (spec §6.2). A plain detail
178
189
  * read omits them. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@north-light/crouter-api",
3
- "version": "0.3.234",
3
+ "version": "0.3.235",
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/api/index.js",