@mondaydotcomorg/agent-toolkit 5.48.0 → 5.50.0
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/CHANGELOG.md +8 -0
- package/dist/cjs/core/index.js +192 -192
- package/dist/cjs/core/index.js.map +1 -1
- package/dist/cjs/mcp/index.js +205 -205
- package/dist/cjs/mcp/index.js.map +1 -1
- package/dist/cjs/openai/index.js +189 -189
- package/dist/cjs/openai/index.js.map +1 -1
- package/dist/esm/core/index.js +190 -190
- package/dist/esm/core/index.js.map +1 -1
- package/dist/esm/mcp/index.js +206 -206
- package/dist/esm/mcp/index.js.map +1 -1
- package/dist/esm/openai/index.js +189 -189
- package/dist/esm/openai/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 5.49.0
|
|
4
|
+
|
|
5
|
+
### search — normalize searchType and limit inputs
|
|
6
|
+
|
|
7
|
+
- `searchType` now accepts lowercase and plural variants (e.g. `"boards"`, `"docs"`, `"workspace"`) and normalizes them to the canonical enum value via `z.preprocess()`
|
|
8
|
+
- `limit` values exceeding the maximum (20) are clamped instead of rejected, preventing unnecessary validation errors
|
|
9
|
+
- These two normalizations address ~12k weekly validation errors caused by LLMs passing non-canonical input values
|
|
10
|
+
|
|
3
11
|
## 5.46.0
|
|
4
12
|
|
|
5
13
|
### search — remove fallback, make searchTerm required, and promote boards/docs to stable API
|