@doccov/api 0.3.4 → 0.3.6

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/.vercelignore ADDED
@@ -0,0 +1,2 @@
1
+ # Ignore local development files - not needed for Vercel serverless
2
+ src/
package/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # @doccov/api
2
2
 
3
+ ## 0.3.6
4
+
5
+ ### Patch Changes
6
+
7
+ - ### Execute Endpoint Fixes
8
+
9
+ Fixed several issues with the `/execute` and `/execute-stream` endpoints when running in Vercel Sandbox:
10
+
11
+ - **Path handling**: Added `normalizeCwd()` to properly handle working directory paths in the sandbox environment (`/vercel/sandbox/`)
12
+ - **Local binary wrapping**: Added `wrapLocalBinary()` to automatically wrap devDependency tools (turbo, tsc, esbuild, vite, etc.) with the appropriate package manager exec command (npx, pnpm exec, bunx)
13
+ - **Monorepo support**: Fixed entry point path stripping when targeting specific packages - paths like `packages/v0-sdk/src/index.ts` are now correctly resolved relative to the package root
14
+ - **File reading**: Fixed `openpkg.json` read path to correctly locate the file in subdirectories when `rootPath` is set
15
+ - **Cleanup**: Removed debug logging from production endpoints
16
+
17
+ ### Documentation
18
+
19
+ - Added "When to Use Which" section to execute endpoint docs
20
+ - Clarified that the `package` parameter in `/plan` should be a directory path, not a package name
21
+ - Added curl examples for streaming with summary output
22
+
23
+ ## 0.3.5
24
+
25
+ ### Patch Changes
26
+
27
+ - Updated dependencies [e063639]
28
+ - @doccov/sdk@0.13.0
29
+ - @openpkg-ts/spec@0.9.0
30
+
3
31
  ## 0.3.4
4
32
 
5
33
  ### Patch Changes