@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 +0 -3
- package/CHANGELOG.md +27 -0
- package/api/index.ts +894 -83
- package/package.json +5 -8
- package/src/routes/plan.ts +14 -8
- package/vercel.json +2 -6
- package/api/[...path].ts +0 -35
- package/bunup.config.ts +0 -16
- package/functions/execute-stream.ts +0 -273
- package/functions/execute.ts +0 -204
- package/functions/plan.ts +0 -104
- package/lib/plan-agent.ts +0 -252
package/.vercelignore
CHANGED
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
|