@vscode/chat-lib 0.66.0 → 0.67.2026091704
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/dist/src/_internal/platform/configuration/common/configurationService.d.ts +2 -2
- package/dist/src/_internal/platform/configuration/common/configurationService.d.ts.map +1 -1
- package/dist/src/_internal/platform/configuration/common/configurationService.js +1 -2
- package/dist/src/_internal/platform/configuration/common/configurationService.js.map +1 -1
- package/dist/src/_internal/platform/endpoint/common/chatModelCapabilities.d.ts +5 -2
- package/dist/src/_internal/platform/endpoint/common/chatModelCapabilities.d.ts.map +1 -1
- package/dist/src/_internal/platform/endpoint/common/chatModelCapabilities.js +17 -20
- package/dist/src/_internal/platform/endpoint/common/chatModelCapabilities.js.map +1 -1
- package/dist/src/_internal/platform/endpoint/common/thinkingDataContainer.d.ts +10 -1
- package/dist/src/_internal/platform/endpoint/common/thinkingDataContainer.d.ts.map +1 -1
- package/dist/src/_internal/platform/endpoint/common/thinkingDataContainer.js +14 -5
- package/dist/src/_internal/platform/endpoint/common/thinkingDataContainer.js.map +1 -1
- package/dist/src/_internal/platform/endpoint/node/responsesApi.d.ts.map +1 -1
- package/dist/src/_internal/platform/endpoint/node/responsesApi.js +8 -19
- package/dist/src/_internal/platform/endpoint/node/responsesApi.js.map +1 -1
- package/dist/src/_internal/platform/github/common/githubAPI.d.ts +6 -0
- package/dist/src/_internal/platform/github/common/githubAPI.d.ts.map +1 -1
- package/dist/src/_internal/platform/github/common/githubAPI.js +12 -0
- package/dist/src/_internal/platform/github/common/githubAPI.js.map +1 -1
- package/dist/src/_internal/platform/ignore/common/ignoreService.d.ts +5 -0
- package/dist/src/_internal/platform/ignore/common/ignoreService.d.ts.map +1 -1
- package/dist/src/_internal/platform/ignore/common/ignoreService.js +19 -7
- package/dist/src/_internal/platform/ignore/common/ignoreService.js.map +1 -1
- package/dist/src/_internal/platform/thinking/common/thinking.d.ts +24 -0
- package/dist/src/_internal/platform/thinking/common/thinking.d.ts.map +1 -1
- package/dist/src/_internal/platform/thinking/common/thinking.js +23 -0
- package/dist/src/_internal/platform/thinking/common/thinking.js.map +1 -1
- package/dist/src/package.json +21 -2
- package/package.json +1 -1
package/dist/src/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "copilot-chat",
|
|
3
3
|
"displayName": "GitHub Copilot",
|
|
4
4
|
"description": "AI chat features powered by Copilot",
|
|
5
|
-
"version": "0.
|
|
5
|
+
"version": "0.67.2026091704",
|
|
6
6
|
"build": "1",
|
|
7
7
|
"completionsCoreVersion": "1.378.1799",
|
|
8
8
|
"internalLargeStorageAriaKey": "ec712b3202c5462fb6877acae7f1f9d7-c19ad55e-3e3c-4f99-984b-827f6d95bd9e-6917",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"icon": "assets/copilot.png",
|
|
23
23
|
"pricing": "Trial",
|
|
24
24
|
"engines": {
|
|
25
|
-
"vscode": "^1.
|
|
25
|
+
"vscode": "^1.139.0",
|
|
26
26
|
"npm": ">=9.0.0",
|
|
27
27
|
"node": ">=22.14.0"
|
|
28
28
|
},
|
|
@@ -3208,6 +3208,25 @@
|
|
|
3208
3208
|
"default": true,
|
|
3209
3209
|
"markdownDescription": "%github.copilot.config.cloudAgent.enabled%"
|
|
3210
3210
|
},
|
|
3211
|
+
"github.copilot.chat.cloudAgent.sessionVisibility": {
|
|
3212
|
+
"type": "string",
|
|
3213
|
+
"enum": [
|
|
3214
|
+
"24hours",
|
|
3215
|
+
"7days",
|
|
3216
|
+
"30days",
|
|
3217
|
+
"90days",
|
|
3218
|
+
"all"
|
|
3219
|
+
],
|
|
3220
|
+
"default": "30days",
|
|
3221
|
+
"markdownDescription": "%github.copilot.config.cloudAgent.sessionVisibility%",
|
|
3222
|
+
"enumDescriptions": [
|
|
3223
|
+
"%github.copilot.config.cloudAgent.sessionVisibility.24hours%",
|
|
3224
|
+
"%github.copilot.config.cloudAgent.sessionVisibility.7days%",
|
|
3225
|
+
"%github.copilot.config.cloudAgent.sessionVisibility.30days%",
|
|
3226
|
+
"%github.copilot.config.cloudAgent.sessionVisibility.90days%",
|
|
3227
|
+
"%github.copilot.config.cloudAgent.sessionVisibility.all%"
|
|
3228
|
+
]
|
|
3229
|
+
},
|
|
3211
3230
|
"github.copilot.chat.localIndex.enabled": {
|
|
3212
3231
|
"type": "boolean",
|
|
3213
3232
|
"default": true,
|