@north-light/crouter-api 0.3.235 → 0.3.236
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 -3
- package/package.json +1 -1
package/dist/api/dto/nodes.d.ts
CHANGED
|
@@ -37,9 +37,10 @@ export interface CreateNodeRequest {
|
|
|
37
37
|
description?: string;
|
|
38
38
|
parent?: NodeIdDTO | null;
|
|
39
39
|
root?: boolean;
|
|
40
|
-
/** Lifecycle of
|
|
41
|
-
*
|
|
42
|
-
*
|
|
40
|
+
/** Lifecycle of the new node. Roots default to `resident`; managed children
|
|
41
|
+
* default to `terminal`. Use `resident` for a child that remains wakeable
|
|
42
|
+
* without owing a final, or `terminal` for a bounded worker that must
|
|
43
|
+
* finalize. */
|
|
43
44
|
root_lifecycle?: LifecycleDTO;
|
|
44
45
|
/** Worktree branch name, or true for an auto-named managed worktree. */
|
|
45
46
|
worktree?: string | boolean;
|
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.236",
|
|
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",
|