@doccov/api 0.3.5 → 0.3.7

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 CHANGED
@@ -1,5 +1,2 @@
1
1
  # Ignore local development files - not needed for Vercel serverless
2
2
  src/
3
- # Source files are bundled into dist/ - only dist/ is needed at runtime
4
- functions/
5
- lib/
package/CHANGELOG.md CHANGED
@@ -1,5 +1,32 @@
1
1
  # @doccov/api
2
2
 
3
+ ## 0.3.7
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @doccov/sdk@0.15.0
9
+
10
+ ## 0.3.6
11
+
12
+ ### Patch Changes
13
+
14
+ - ### Execute Endpoint Fixes
15
+
16
+ Fixed several issues with the `/execute` and `/execute-stream` endpoints when running in Vercel Sandbox:
17
+
18
+ - **Path handling**: Added `normalizeCwd()` to properly handle working directory paths in the sandbox environment (`/vercel/sandbox/`)
19
+ - **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)
20
+ - **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
21
+ - **File reading**: Fixed `openpkg.json` read path to correctly locate the file in subdirectories when `rootPath` is set
22
+ - **Cleanup**: Removed debug logging from production endpoints
23
+
24
+ ### Documentation
25
+
26
+ - Added "When to Use Which" section to execute endpoint docs
27
+ - Clarified that the `package` parameter in `/plan` should be a directory path, not a package name
28
+ - Added curl examples for streaming with summary output
29
+
3
30
  ## 0.3.5
4
31
 
5
32
  ### Patch Changes