@codingame/monaco-vscode-chat-service-override 4.0.0 → 4.1.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.
Files changed (29) hide show
  1. package/chat.js +9 -9
  2. package/package.json +2 -2
  3. package/external/tslib/tslib.es6.js +0 -11
  4. package/external/vscode-marked/lib/marked.esm.js +0 -2200
  5. package/override/vs/platform/dialogs/common/dialogs.js +0 -10
  6. package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatClear.js +0 -17
  7. package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatClearActions.js +0 -115
  8. package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatCodeblockActions.js +0 -503
  9. package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatCopyActions.js +0 -82
  10. package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatFileTreeActions.js +0 -77
  11. package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatImportExport.js +0 -110
  12. package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatMoveActions.js +0 -171
  13. package/vscode/src/vs/workbench/contrib/chat/browser/actions/chatTitleActions.js +0 -271
  14. package/vscode/src/vs/workbench/contrib/chat/browser/chat.contribution.js +0 -317
  15. package/vscode/src/vs/workbench/contrib/chat/browser/chatAccessibilityService.js +0 -60
  16. package/vscode/src/vs/workbench/contrib/chat/browser/chatContributionServiceImpl.js +0 -423
  17. package/vscode/src/vs/workbench/contrib/chat/browser/chatEditor.js +0 -98
  18. package/vscode/src/vs/workbench/contrib/chat/browser/chatQuick.js +0 -285
  19. package/vscode/src/vs/workbench/contrib/chat/browser/chatVariables.js +0 -90
  20. package/vscode/src/vs/workbench/contrib/chat/browser/chatViewPane.js +0 -185
  21. package/vscode/src/vs/workbench/contrib/chat/browser/contrib/chatHistoryVariables.js +0 -26
  22. package/vscode/src/vs/workbench/contrib/chat/browser/contrib/chatInputEditorContrib.js +0 -618
  23. package/vscode/src/vs/workbench/contrib/chat/common/chatServiceImpl.js +0 -600
  24. package/vscode/src/vs/workbench/contrib/chat/common/voiceChat.js +0 -141
  25. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChat.contribution.js +0 -40
  26. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatAccessibleView.js +0 -41
  27. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatNotebook.js +0 -72
  28. package/vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSavingServiceImpl.js +0 -236
  29. package/vscode/src/vs/workbench/contrib/inlineChat/common/inlineChatServiceImpl.js +0 -33
package/chat.js CHANGED
@@ -2,26 +2,26 @@ import { SyncDescriptor } from 'vscode/vscode/vs/platform/instantiation/common/d
2
2
  import { IChatService } from 'vscode/vscode/vs/workbench/contrib/chat/common/chatService';
3
3
  import { IChatContributionService } from 'vscode/vscode/vs/workbench/contrib/chat/common/chatContributionService';
4
4
  import { IChatWidgetService, IQuickChatService, IChatAccessibilityService, IChatCodeBlockContextProviderService } from 'vscode/vscode/vs/workbench/contrib/chat/browser/chat';
5
- import { ChatContributionService } from './vscode/src/vs/workbench/contrib/chat/browser/chatContributionServiceImpl.js';
5
+ import { ChatContributionService } from 'vscode/vscode/vs/workbench/contrib/chat/browser/chatContributionServiceImpl';
6
6
  import { ChatWidgetService } from 'vscode/vscode/vs/workbench/contrib/chat/browser/chatWidget';
7
- import { ChatService } from './vscode/src/vs/workbench/contrib/chat/common/chatServiceImpl.js';
7
+ import { ChatService } from 'vscode/vscode/vs/workbench/contrib/chat/common/chatServiceImpl';
8
8
  import { IChatWidgetHistoryService, ChatWidgetHistoryService } from 'vscode/vscode/vs/workbench/contrib/chat/common/chatWidgetHistoryService';
9
- import { ChatAccessibilityService } from './vscode/src/vs/workbench/contrib/chat/browser/chatAccessibilityService.js';
9
+ import { ChatAccessibilityService } from 'vscode/vscode/vs/workbench/contrib/chat/browser/chatAccessibilityService';
10
10
  import { IChatSlashCommandService, ChatSlashCommandService } from 'vscode/vscode/vs/workbench/contrib/chat/common/chatSlashCommands';
11
11
  import { IChatVariablesService } from 'vscode/vscode/vs/workbench/contrib/chat/common/chatVariables';
12
- import { ChatVariablesService } from './vscode/src/vs/workbench/contrib/chat/browser/chatVariables.js';
13
- import { QuickChatService } from './vscode/src/vs/workbench/contrib/chat/browser/chatQuick.js';
12
+ import { ChatVariablesService } from 'vscode/vscode/vs/workbench/contrib/chat/browser/chatVariables';
13
+ import { QuickChatService } from 'vscode/vscode/vs/workbench/contrib/chat/browser/chatQuick';
14
14
  import { IChatAgentService, ChatAgentService } from 'vscode/vscode/vs/workbench/contrib/chat/common/chatAgents';
15
- import { InlineChatServiceImpl } from './vscode/src/vs/workbench/contrib/inlineChat/common/inlineChatServiceImpl.js';
15
+ import { InlineChatServiceImpl } from 'vscode/vscode/vs/workbench/contrib/inlineChat/common/inlineChatServiceImpl';
16
16
  import { IInlineChatService } from 'vscode/vscode/vs/workbench/contrib/inlineChat/common/inlineChat';
17
17
  import { IInlineChatSessionService } from 'vscode/vscode/vs/workbench/contrib/inlineChat/browser/inlineChatSessionService';
18
18
  import { InlineChatSessionServiceImpl } from 'vscode/vscode/vs/workbench/contrib/inlineChat/browser/inlineChatSessionServiceImpl';
19
19
  import { IInlineChatSavingService } from 'vscode/vscode/vs/workbench/contrib/inlineChat/browser/inlineChatSavingService';
20
- import { InlineChatSavingServiceImpl } from './vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChatSavingServiceImpl.js';
20
+ import { InlineChatSavingServiceImpl } from 'vscode/vscode/vs/workbench/contrib/inlineChat/browser/inlineChatSavingServiceImpl';
21
21
  import { ILanguageModelsService, LanguageModelsService } from 'vscode/vscode/vs/workbench/contrib/chat/common/languageModels';
22
22
  import { ChatCodeBlockContextProviderService } from './vscode/src/vs/workbench/contrib/chat/browser/codeBlockContextProviderService.js';
23
- import './vscode/src/vs/workbench/contrib/chat/browser/chat.contribution.js';
24
- import './vscode/src/vs/workbench/contrib/inlineChat/browser/inlineChat.contribution.js';
23
+ import 'vscode/vscode/vs/workbench/contrib/chat/browser/chat.contribution';
24
+ import 'vscode/vscode/vs/workbench/contrib/inlineChat/browser/inlineChat.contribution';
25
25
 
26
26
  function getServiceOverride() {
27
27
  return {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-chat-service-override",
3
- "version": "4.0.0",
3
+ "version": "4.1.0",
4
4
  "keywords": [],
5
5
  "author": {
6
6
  "name": "CodinGame",
@@ -18,6 +18,6 @@
18
18
  "module": "index.js",
19
19
  "types": "index.d.ts",
20
20
  "dependencies": {
21
- "vscode": "npm:@codingame/monaco-vscode-api@4.0.0"
21
+ "vscode": "npm:@codingame/monaco-vscode-api@4.1.0"
22
22
  }
23
23
  }
@@ -1,11 +0,0 @@
1
- function __decorate(decorators, target, key, desc) {
2
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
3
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
4
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
5
- return c > 3 && r && Object.defineProperty(target, key, r), r;
6
- }
7
- function __param(paramIndex, decorator) {
8
- return function (target, key) { decorator(target, key, paramIndex); }
9
- }
10
-
11
- export { __decorate, __param };