@mondaydotcomorg/agent-toolkit 5.10.2 → 5.11.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 +292 -182
- package/dist/cjs/core/index.js.map +1 -1
- package/dist/cjs/mcp/index.js +266 -156
- package/dist/cjs/mcp/index.js.map +1 -1
- package/dist/cjs/openai/index.js +292 -182
- package/dist/cjs/openai/index.js.map +1 -1
- package/dist/esm/core/index.js +292 -182
- package/dist/esm/core/index.js.map +1 -1
- package/dist/esm/mcp/index.js +262 -152
- package/dist/esm/mcp/index.js.map +1 -1
- package/dist/esm/openai/index.js +292 -182
- 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.11.0
|
|
4
|
+
|
|
5
|
+
### Asset upload MCP tools
|
|
6
|
+
|
|
7
|
+
- Added `get_asset_upload_url` — requests a presigned S3 upload URL for a file. Returns `upload_id`, `upload_url`, and expiry. Includes inline `curl` example for the upload step and ETag capture guidance.
|
|
8
|
+
- Added `finalize_asset_upload` — finalizes the upload via `complete_upload` and attaches the asset to a file column on a board item using `change_column_value` (append semantics). Returns `asset_id`, `filename`, `content_type`, `file_size`, `url`, and `filelink`.
|
|
9
|
+
- Both tools use `versionOverride: 'dev'` as `create_upload` / `complete_upload` are currently dev-schema-only.
|
|
10
|
+
|
|
3
11
|
## 5.7.1
|
|
4
12
|
|
|
5
13
|
### form_questions_editor — fix ConditionOperator and remove existing_column_id
|