@salesforce/sfdx-agent-sdk 0.20.0 → 0.21.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 +5 -0
- package/dist/errors.d.ts +1 -0
- package/dist/errors.js +1 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,11 @@
|
|
|
3
3
|
All notable changes to `@salesforce/sfdx-agent-sdk` are documented in this file.
|
|
4
4
|
Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
5
5
|
|
|
6
|
+
## [0.21.0] - 2026-06-15
|
|
7
|
+
|
|
8
|
+
### Fixes
|
|
9
|
+
- **harness-claude,harness-mastra,agent-sdk**: idempotent settle + quiet dispose (#589) ([#598](https://github.com/forcedotcom/agentic-dx/pull/598))
|
|
10
|
+
|
|
6
11
|
## [0.20.0] - 2026-06-12
|
|
7
12
|
|
|
8
13
|
### Features
|
package/dist/errors.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ export declare const AgentSDKErrorType: {
|
|
|
9
9
|
readonly MCP_SERVER_NOT_FOUND: "MCP_SERVER_NOT_FOUND";
|
|
10
10
|
readonly MULTIMODAL_NOT_SUPPORTED: "MULTIMODAL_NOT_SUPPORTED";
|
|
11
11
|
readonly NOT_SUPPORTED: "NOT_SUPPORTED";
|
|
12
|
+
readonly TOOL_CALL_NOT_FOUND: "TOOL_CALL_NOT_FOUND";
|
|
12
13
|
};
|
|
13
14
|
export type AgentSDKErrorType = (typeof AgentSDKErrorType)[keyof typeof AgentSDKErrorType];
|
|
14
15
|
export declare class AgentSDKError extends Error {
|
package/dist/errors.js
CHANGED
|
@@ -13,6 +13,7 @@ export const AgentSDKErrorType = {
|
|
|
13
13
|
MCP_SERVER_NOT_FOUND: 'MCP_SERVER_NOT_FOUND',
|
|
14
14
|
MULTIMODAL_NOT_SUPPORTED: 'MULTIMODAL_NOT_SUPPORTED',
|
|
15
15
|
NOT_SUPPORTED: 'NOT_SUPPORTED',
|
|
16
|
+
TOOL_CALL_NOT_FOUND: 'TOOL_CALL_NOT_FOUND',
|
|
16
17
|
};
|
|
17
18
|
export class AgentSDKError extends Error {
|
|
18
19
|
type;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/sfdx-agent-sdk",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.21.0",
|
|
4
4
|
"description": "Harness-agnostic agentic infrastructure for Salesforce developer experience tooling",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@eslint/js": "^10.0.1",
|
|
48
|
-
"@salesforce/sfdx-agent-harness-claude": "0.
|
|
49
|
-
"@salesforce/sfdx-agent-harness-mastra": "0.
|
|
48
|
+
"@salesforce/sfdx-agent-harness-claude": "0.17.0",
|
|
49
|
+
"@salesforce/sfdx-agent-harness-mastra": "0.20.0",
|
|
50
50
|
"@types/node": "^22.19.20",
|
|
51
51
|
"@vitest/coverage-istanbul": "^4.1.8",
|
|
52
52
|
"@vitest/eslint-plugin": "^1.6.19",
|