@mondaydotcomorg/agent-toolkit 5.44.0 → 5.46.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 +10 -0
- package/dist/cjs/core/index.js +157 -167
- package/dist/cjs/core/index.js.map +1 -1
- package/dist/cjs/mcp/index.js +233 -243
- package/dist/cjs/mcp/index.js.map +1 -1
- package/dist/cjs/openai/index.js +232 -242
- package/dist/cjs/openai/index.js.map +1 -1
- package/dist/esm/core/index.js +165 -175
- package/dist/esm/core/index.js.map +1 -1
- package/dist/esm/mcp/index.js +170 -180
- package/dist/esm/mcp/index.js.map +1 -1
- package/dist/esm/openai/index.js +167 -177
- package/dist/esm/openai/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 5.46.0
|
|
4
|
+
|
|
5
|
+
### search — remove fallback, make searchTerm required, and promote boards/docs to stable API
|
|
6
|
+
|
|
7
|
+
- `searchTerm` is now required (`z.string().min(1)`) for all search types — agents that previously omitted it to browse must use `workspace_info` instead
|
|
8
|
+
- Removed the legacy `getBoards`/`getDocs` listing queries and the fallback path that activated when the dev search endpoint failed; all results now come directly from the search endpoint
|
|
9
|
+
- Removed the `page` parameter and virtual pagination logic; removed `LOAD_INTO_MEMORY_LIMIT` constant and `DataWithFilterInfo` type
|
|
10
|
+
- Boards and docs search GraphQL queries promoted from `versionOverride: 'dev'` to the stable default schema endpoint; `search-tool.graphql.dev.ts` deleted
|
|
11
|
+
- IDs in search results are now returned as raw values — the `ObjectPrefixes` type and all prefixing logic removed since cross-entity search no longer exists
|
|
12
|
+
|
|
3
13
|
## 5.42.0
|
|
4
14
|
|
|
5
15
|
### search — add TIMELINE_ITEMS search type
|