@north-light/crouter-api 0.3.187 → 0.3.189
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/api/dto/nodes.d.ts +4 -0
- package/package.json +1 -1
package/dist/api/dto/nodes.d.ts
CHANGED
|
@@ -16,6 +16,10 @@ export interface CreateNodeRequest {
|
|
|
16
16
|
name?: string;
|
|
17
17
|
parent?: NodeIdDTO | null;
|
|
18
18
|
root?: boolean;
|
|
19
|
+
/** Lifecycle of an independent root. Defaults to `resident`; use `terminal`
|
|
20
|
+
* for bounded, unattended work that must finalize rather than remain an
|
|
21
|
+
* ongoing conversation. Only valid with `root: true`. */
|
|
22
|
+
root_lifecycle?: LifecycleDTO;
|
|
19
23
|
/** Worktree branch name, or true for an auto-named managed worktree. */
|
|
20
24
|
worktree?: string | boolean;
|
|
21
25
|
fork_from?: string;
|
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.189",
|
|
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",
|