@salesforce/sfdx-agent-chat-generations 0.7.0 → 0.8.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 +6 -0
- package/dist/chat-request.d.ts +3 -3
- package/package.json +16 -16
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
All notable changes to `@salesforce/sfdx-agent-chat-generations` are documented in this file.
|
|
4
4
|
Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
5
5
|
|
|
6
|
+
## [0.8.0] - 2026-08-04
|
|
7
|
+
|
|
8
|
+
### Chores
|
|
9
|
+
- **deps**: sync all workspace dependencies to latest @W-23369873 ([#733](https://github.com/forcedotcom/agentic-dx/pull/733))
|
|
10
|
+
- **deps-dev**: bump @vitest/eslint-plugin from 1.6.23 to 1.6.24 in the vitest group across 1 directory ([#729](https://github.com/forcedotcom/agentic-dx/pull/729))
|
|
11
|
+
|
|
6
12
|
## [0.7.0] - 2026-08-04
|
|
7
13
|
|
|
8
14
|
### Chores
|
package/dist/chat-request.d.ts
CHANGED
|
@@ -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:
|
|
40
|
-
readonly Jpeg:
|
|
41
|
-
readonly 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.
|
|
3
|
+
"version": "0.8.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": "^
|
|
32
|
-
"eventsource-parser": "^3.
|
|
31
|
+
"@ai-sdk/provider": "^4.0.5",
|
|
32
|
+
"eventsource-parser": "^3.1.0"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
35
|
-
"@salesforce/sfdx-agent-sdk": "0.
|
|
36
|
-
"@salesforce/sfdx-agent-harness-mastra": "0.
|
|
35
|
+
"@salesforce/sfdx-agent-sdk": "0.43.0",
|
|
36
|
+
"@salesforce/sfdx-agent-harness-mastra": "0.42.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@eslint/js": "^10.0.1",
|
|
40
|
-
"@salesforce/sfdx-agent-sdk": "0.
|
|
41
|
-
"@salesforce/sfdx-agent-harness-mastra": "0.
|
|
40
|
+
"@salesforce/sfdx-agent-sdk": "0.43.0",
|
|
41
|
+
"@salesforce/sfdx-agent-harness-mastra": "0.42.0",
|
|
42
42
|
"@types/node": "^22.20.0",
|
|
43
43
|
"@vitest/coverage-istanbul": "^4.1.10",
|
|
44
|
-
"@vitest/eslint-plugin": "^1.6.
|
|
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.
|
|
50
|
-
"globals": "^17.
|
|
51
|
-
"lint-staged": "^17.0
|
|
52
|
-
"prettier": "^3.9.
|
|
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.
|
|
55
|
-
"typescript": "^
|
|
56
|
-
"typescript-eslint": "^8.
|
|
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.
|
|
60
|
+
"node": ">=22.22.1"
|
|
61
61
|
},
|
|
62
62
|
"lint-staged": {
|
|
63
63
|
"*.{js,jsx,ts,tsx,json,md}": [
|