@north-light/crouter-api 0.3.314 → 0.3.316

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.
@@ -161,7 +161,8 @@ export type ManifestNode<L extends ManifestLeafBase = ManifestLeaf> = ManifestBr
161
161
  /** One mount point in the manifest's self-contained forest. */
162
162
  export interface ManifestMount<L extends ManifestLeafBase = ManifestLeaf> {
163
163
  /** `[]` mounts `node` as a new top-level command; a non-empty path names a
164
- * branch this SAME manifest already contributes. */
164
+ * branch this manifest already contributes or an extensible core branch.
165
+ * `human` is currently the only extensible core branch. */
165
166
  parent: string[];
166
167
  node: ManifestNode<L>;
167
168
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@north-light/crouter-api",
3
- "version": "0.3.314",
3
+ "version": "0.3.316",
4
4
  "description": "Typed crtrd /v1 API contract — DTOs, route builders, the error contract, the CrtrClient, and the command-plugin manifest format. Zero runtime dependencies.",
5
5
  "type": "module",
6
6
  "main": "./dist/api/index.js",