@salesforce/sfdx-agent-chat-generations 0.7.0 → 0.9.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 CHANGED
@@ -1,12 +1,31 @@
1
1
  # Changelog
2
2
 
3
- All notable changes to `@salesforce/sfdx-agent-chat-generations` are documented in this file.
4
- Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
3
+ All notable changes to `@salesforce/sfdx-agent-chat-generations` are documented in this file. Format follows
4
+ [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
5
+
6
+ ## [0.9.0] - 2026-08-05
7
+
8
+ ### Tests
9
+ - **agent-sdk,harness-mastra**: e2e suite health — harness matrix, per-harness default model, AWS-eventstream wire parsing @W-23716382@ ([#736](https://github.com/forcedotcom/agentic-dx/pull/736))
10
+
11
+ ### Chores
12
+ - **deps-dev**: bump @types/node from 22.20.0 to 22.20.1 in the dev-dependencies group across 1 directory ([#735](https://github.com/forcedotcom/agentic-dx/pull/735))
13
+
14
+ ## [0.8.0] - 2026-08-04
15
+
16
+ ### Chores
17
+
18
+ - **deps**: sync all workspace dependencies to latest @W-23369873
19
+ ([#733](https://github.com/forcedotcom/agentic-dx/pull/733))
20
+ - **deps-dev**: bump @vitest/eslint-plugin from 1.6.23 to 1.6.24 in the vitest group across 1 directory
21
+ ([#729](https://github.com/forcedotcom/agentic-dx/pull/729))
5
22
 
6
23
  ## [0.7.0] - 2026-08-04
7
24
 
8
25
  ### Chores
9
- - **deps-dev**: bump eslint from 10.7.0 to 10.8.0 in the eslint group ([#728](https://github.com/forcedotcom/agentic-dx/pull/728))
26
+
27
+ - **deps-dev**: bump eslint from 10.7.0 to 10.8.0 in the eslint group
28
+ ([#728](https://github.com/forcedotcom/agentic-dx/pull/728))
10
29
 
11
30
  ## [0.6.0] - 2026-08-03
12
31
 
@@ -23,12 +42,16 @@ _No changes — released alongside dependent packages._
23
42
  ## [0.3.0] - 2026-07-30
24
43
 
25
44
  ### Fixes
26
- - **chat-generations**: accept non-streaming GPT-5 response missing parameters.provider @W-23637485@ ([#714](https://github.com/forcedotcom/agentic-dx/pull/714))
45
+
46
+ - **chat-generations**: accept non-streaming GPT-5 response missing parameters.provider @W-23637485@
47
+ ([#714](https://github.com/forcedotcom/agentic-dx/pull/714))
27
48
 
28
49
  ## [0.2.0] - 2026-07-29
29
50
 
30
51
  ### Fixes
31
- - **chat-generations**: accept azureOpenAI provider on GovCloud GPT-5 stream @W-23614921@ ([#711](https://github.com/forcedotcom/agentic-dx/pull/711))
52
+
53
+ - **chat-generations**: accept azureOpenAI provider on GovCloud GPT-5 stream @W-23614921@
54
+ ([#711](https://github.com/forcedotcom/agentic-dx/pull/711))
32
55
 
33
56
  ## [0.1.0] - 2026-07-28
34
57
 
@@ -37,5 +60,6 @@ _No changes — released alongside dependent packages._
37
60
  ## [0.0.1] - 2026-07-27
38
61
 
39
62
  ### Features
40
- - **chat-generations**: GovCloud chat/generations fallback @W-23560954@ ([#695](https://github.com/forcedotcom/agentic-dx/pull/695))
41
63
 
64
+ - **chat-generations**: GovCloud chat/generations fallback @W-23560954@
65
+ ([#695](https://github.com/forcedotcom/agentic-dx/pull/695))
@@ -36,9 +36,9 @@ export type ChatMessageIn = {
36
36
  * Any other value triggers a `LLMGClientError('MODEL_DOES_NOT_SUPPORT_FORMAT')` error.
37
37
  */
38
38
  export declare const MimeType: {
39
- readonly Png: "image/png";
40
- readonly Jpeg: "image/jpeg";
41
- readonly Pdf: "application/pdf";
39
+ readonly Png: 'image/png';
40
+ readonly Jpeg: 'image/jpeg';
41
+ readonly Pdf: 'application/pdf';
42
42
  };
43
43
  export type MimeType = (typeof MimeType)[keyof typeof MimeType];
44
44
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/sfdx-agent-chat-generations",
3
- "version": "0.7.0",
3
+ "version": "0.9.0",
4
4
  "description": "Temporary GovCloud chat/generations fallback for @salesforce/sfdx-agent-harness-mastra",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -28,36 +28,36 @@
28
28
  "LICENSE.txt"
29
29
  ],
30
30
  "dependencies": {
31
- "@ai-sdk/provider": "^3.0.10",
32
- "eventsource-parser": "^3.0.0"
31
+ "@ai-sdk/provider": "^4.0.5",
32
+ "eventsource-parser": "^3.1.0"
33
33
  },
34
34
  "peerDependencies": {
35
- "@salesforce/sfdx-agent-sdk": "0.42.0",
36
- "@salesforce/sfdx-agent-harness-mastra": "0.41.0"
35
+ "@salesforce/sfdx-agent-sdk": "0.44.0",
36
+ "@salesforce/sfdx-agent-harness-mastra": "0.43.0"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@eslint/js": "^10.0.1",
40
- "@salesforce/sfdx-agent-sdk": "0.42.0",
41
- "@salesforce/sfdx-agent-harness-mastra": "0.41.0",
42
- "@types/node": "^22.20.0",
40
+ "@salesforce/sfdx-agent-sdk": "0.44.0",
41
+ "@salesforce/sfdx-agent-harness-mastra": "0.43.0",
42
+ "@types/node": "^22.20.1",
43
43
  "@vitest/coverage-istanbul": "^4.1.10",
44
- "@vitest/eslint-plugin": "^1.6.22",
44
+ "@vitest/eslint-plugin": "^1.6.26",
45
45
  "eslint": "^10.8.0",
46
46
  "eslint-config-prettier": "^10.1.8",
47
47
  "eslint-import-resolver-typescript": "^4.4.5",
48
48
  "eslint-plugin-import": "^2.32.0",
49
- "eslint-plugin-n": "^18.2.1",
50
- "globals": "^17.6.0",
51
- "lint-staged": "^17.0.7",
52
- "prettier": "^3.9.4",
49
+ "eslint-plugin-n": "^18.2.2",
50
+ "globals": "^17.9.0",
51
+ "lint-staged": "^17.3.0",
52
+ "prettier": "^3.9.6",
53
53
  "rimraf": "^6.1.3",
54
- "tsx": "^4.23.0",
55
- "typescript": "^6.0.3",
56
- "typescript-eslint": "^8.63.0",
54
+ "tsx": "^4.23.5",
55
+ "typescript": "^7.0.2",
56
+ "typescript-eslint": "^8.66.0",
57
57
  "vitest": "^4.1.8"
58
58
  },
59
59
  "engines": {
60
- "node": ">=22.22.0"
60
+ "node": ">=22.22.1"
61
61
  },
62
62
  "lint-staged": {
63
63
  "*.{js,jsx,ts,tsx,json,md}": [