@codingame/monaco-vscode-chat-service-override 25.1.0 → 25.1.1
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/index.js +4 -1
- package/package.json +5 -5
package/index.js
CHANGED
|
@@ -66,6 +66,8 @@ import { IChatStatusItemService } from '@codingame/monaco-vscode-api/vscode/vs/w
|
|
|
66
66
|
import { IAgentSessionsService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsService.service';
|
|
67
67
|
import { AgentSessionsService } from './vscode/src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsService.js';
|
|
68
68
|
import { ChatWidgetService } from './vscode/src/vs/workbench/contrib/chat/browser/widget/chatWidgetService.js';
|
|
69
|
+
import { ICodeCompareModelService } from '@codingame/monaco-vscode-api/vscode/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatTextEditContentPart.service';
|
|
70
|
+
import { CodeCompareModelService } from '@codingame/monaco-vscode-katex-common/vscode/vs/workbench/contrib/chat/browser/widget/chatContentParts/chatTextEditContentPart';
|
|
69
71
|
import './vscode/src/vs/workbench/contrib/chat/browser/chat.contribution.js';
|
|
70
72
|
import './vscode/src/vs/workbench/contrib/terminalContrib/chatAgentTools/browser/terminal.chatAgentTools.contribution.js';
|
|
71
73
|
import './vscode/src/vs/workbench/contrib/terminalContrib/chat/browser/terminal.chat.contribution.js';
|
|
@@ -108,7 +110,8 @@ function getServiceOverride() {
|
|
|
108
110
|
[ILanguageModelToolsConfirmationService.toString()]: new SyncDescriptor(LanguageModelToolsConfirmationService, [], true),
|
|
109
111
|
[IChatContextService.toString()]: new SyncDescriptor(ChatContextService, [], true),
|
|
110
112
|
[ITerminalChatService.toString()]: new SyncDescriptor(TerminalChatService, [], true),
|
|
111
|
-
[IAgentSessionsService.toString()]: new SyncDescriptor(AgentSessionsService, [], true)
|
|
113
|
+
[IAgentSessionsService.toString()]: new SyncDescriptor(AgentSessionsService, [], true),
|
|
114
|
+
[ICodeCompareModelService.toString()]: new SyncDescriptor(CodeCompareModelService, [], true)
|
|
112
115
|
};
|
|
113
116
|
}
|
|
114
117
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-chat-service-override",
|
|
3
|
-
"version": "25.1.
|
|
3
|
+
"version": "25.1.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "VSCode public API plugged on the monaco editor - chat service-override",
|
|
6
6
|
"keywords": [],
|
|
@@ -15,10 +15,10 @@
|
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@codingame/monaco-vscode-api": "25.1.
|
|
19
|
-
"@codingame/monaco-vscode-katex-common": "25.1.
|
|
20
|
-
"@codingame/monaco-vscode-xterm-addons-common": "25.1.
|
|
21
|
-
"@codingame/monaco-vscode-xterm-common": "25.1.
|
|
18
|
+
"@codingame/monaco-vscode-api": "25.1.1",
|
|
19
|
+
"@codingame/monaco-vscode-katex-common": "25.1.1",
|
|
20
|
+
"@codingame/monaco-vscode-xterm-addons-common": "25.1.1",
|
|
21
|
+
"@codingame/monaco-vscode-xterm-common": "25.1.1"
|
|
22
22
|
},
|
|
23
23
|
"main": "index.js",
|
|
24
24
|
"module": "index.js",
|