@coldtea/pr-lens-cli 0.5.0 → 0.5.1

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/README.md CHANGED
@@ -137,7 +137,7 @@ Registry writes take a lock at `.pr-lens/canvas.json.lock`. The CLI never remove
137
137
 
138
138
  The CLI refuses to write the registry where git could commit it. If a checkout tracks `.pr-lens/canvas.json` or un-ignores `.pr-lens/`, the command fails with `CANVAS_REGISTRY_EXPOSED` and writes nothing.
139
139
 
140
- `--api` points at another PR Lens app, or set `PR_LENS_API_URL`.
140
+ `--api` points at another PR Lens app, or set `PR_LENS_API_URL`. The protocol between the CLI and the app is five routes and one error envelope, written up in [the canvas API contract](https://github.com/coldteadotai/pr-lens/blob/main/docs/canvas-api.md) so a private server can answer it and documents stay on your network.
141
141
 
142
142
  ## Corrections
143
143
 
package/dist/version.d.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  /** Recorded on every document this CLI produces, as the generator's version. */
2
- export declare const CLI_VERSION = "0.5.0";
2
+ export declare const CLI_VERSION = "0.5.1";
3
3
  export declare const GENERATOR_NAME = "pr-lens-cli";
4
4
  //# sourceMappingURL=version.d.ts.map
package/dist/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  /** Recorded on every document this CLI produces, as the generator's version. */
2
- export const CLI_VERSION = "0.5.0";
2
+ export const CLI_VERSION = "0.5.1";
3
3
  export const GENERATOR_NAME = "pr-lens-cli";
4
4
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coldtea/pr-lens-cli",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "The PR Lens command line: turn a pull request diff into a schema-valid graph with your own model key, render it, and compose the comment.",
5
5
  "license": "MIT",
6
6
  "author": "Coldtea AI",
@@ -40,7 +40,7 @@
40
40
  "dependencies": {
41
41
  "yaml": "^2.8.1",
42
42
  "zod": "^4.4.3",
43
- "@coldtea/pr-lens-renderer": "^0.2.3",
43
+ "@coldtea/pr-lens-renderer": "^0.2.4",
44
44
  "@coldtea/pr-lens-schema": "^0.2.1"
45
45
  },
46
46
  "devDependencies": {
package/src/version.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  /** Recorded on every document this CLI produces, as the generator's version. */
2
- export const CLI_VERSION = "0.5.0";
2
+ export const CLI_VERSION = "0.5.1";
3
3
 
4
4
  export const GENERATOR_NAME = "pr-lens-cli";