@codingame/monaco-vscode-chat-service-override 36.0.0 → 36.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.d.ts +2 -2
- package/package.json +5 -5
package/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { type IEditorOverrideServices } from "@codingame/monaco-vscode-api/vscode/vs/editor/standalone/browser/standaloneServices";
|
|
2
|
-
import { ChatEntitlement } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/chat/common/chatEntitlementService";
|
|
2
|
+
import { ChatEntitlement, type IChatEntitlementContextState } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/chat/common/chatEntitlementService";
|
|
3
3
|
import type { IDefaultAccount } from "@codingame/monaco-vscode-api/vscode/vs/base/common/defaultAccount";
|
|
4
4
|
export interface ChatServiceOverrideOptions {
|
|
5
5
|
defaultAccount?: IDefaultAccount;
|
|
6
6
|
}
|
|
7
7
|
export default function getServiceOverride({ defaultAccount }?: ChatServiceOverrideOptions): IEditorOverrideServices;
|
|
8
|
-
export { type IDefaultAccount, ChatEntitlement };
|
|
8
|
+
export { type IDefaultAccount, ChatEntitlement, type IChatEntitlementContextState };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-chat-service-override",
|
|
3
|
-
"version": "36.
|
|
3
|
+
"version": "36.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": "36.
|
|
19
|
-
"@codingame/monaco-vscode-katex-common": "36.
|
|
20
|
-
"@codingame/monaco-vscode-xterm-addons-common": "36.
|
|
21
|
-
"@codingame/monaco-vscode-xterm-common": "36.
|
|
18
|
+
"@codingame/monaco-vscode-api": "36.1.1",
|
|
19
|
+
"@codingame/monaco-vscode-katex-common": "36.1.1",
|
|
20
|
+
"@codingame/monaco-vscode-xterm-addons-common": "36.1.1",
|
|
21
|
+
"@codingame/monaco-vscode-xterm-common": "36.1.1"
|
|
22
22
|
},
|
|
23
23
|
"main": "index.js",
|
|
24
24
|
"module": "index.js",
|