@codingame/monaco-vscode-authentication-service-override 20.1.1 → 20.2.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-authentication-service-override",
|
|
3
|
-
"version": "20.
|
|
3
|
+
"version": "20.2.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "VSCode public API plugged on the monaco editor - authentication service-override",
|
|
6
6
|
"keywords": [],
|
|
@@ -15,10 +15,10 @@
|
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@codingame/monaco-vscode-34a0ffd3-b9f5-5699-b43b-38af5732f38a-common": "20.
|
|
19
|
-
"@codingame/monaco-vscode-api": "20.
|
|
20
|
-
"@codingame/monaco-vscode-d941ac7b-412f-57e3-b1bf-f6b0eb253b21-common": "20.
|
|
21
|
-
"@codingame/monaco-vscode-f22e7e55-aee8-5b52-a6bc-950efd9f5890-common": "20.
|
|
18
|
+
"@codingame/monaco-vscode-34a0ffd3-b9f5-5699-b43b-38af5732f38a-common": "20.2.1",
|
|
19
|
+
"@codingame/monaco-vscode-api": "20.2.1",
|
|
20
|
+
"@codingame/monaco-vscode-d941ac7b-412f-57e3-b1bf-f6b0eb253b21-common": "20.2.1",
|
|
21
|
+
"@codingame/monaco-vscode-f22e7e55-aee8-5b52-a6bc-950efd9f5890-common": "20.2.1"
|
|
22
22
|
},
|
|
23
23
|
"main": "index.js",
|
|
24
24
|
"module": "index.js",
|
package/vscode/src/vs/workbench/services/authentication/browser/authenticationExtensionsService.d.ts
CHANGED
|
@@ -44,6 +44,9 @@ export declare class AuthenticationExtensionsService extends Disposable implemen
|
|
|
44
44
|
removeSessionPreference(providerId: string, extensionId: string, scopes: string[]): void;
|
|
45
45
|
private _updateAccountAndSessionPreferences;
|
|
46
46
|
private showGetSessionPrompt;
|
|
47
|
+
/**
|
|
48
|
+
* This function should be used only when there are sessions to disambiguate.
|
|
49
|
+
*/
|
|
47
50
|
selectSession(providerId: string, extensionId: string, extensionName: string, scopes: string[], availableSessions: AuthenticationSession[]): Promise<AuthenticationSession>;
|
|
48
51
|
private completeSessionAccessRequest;
|
|
49
52
|
requestSessionAccess(providerId: string, extensionId: string, extensionName: string, scopes: string[], possibleSessions: AuthenticationSession[]): void;
|
package/vscode/src/vs/workbench/services/authentication/browser/authenticationQueryService.d.ts
CHANGED
|
@@ -9,6 +9,9 @@ import { IAuthenticationMcpUsageService } from "@codingame/monaco-vscode-api/vsc
|
|
|
9
9
|
import { IAuthenticationAccessService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/authentication/browser/authenticationAccessService.service";
|
|
10
10
|
import { IAuthenticationMcpAccessService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/authentication/browser/authenticationMcpAccessService.service";
|
|
11
11
|
import { IAuthenticationMcpService } from "@codingame/monaco-vscode-api/vscode/vs/workbench/services/authentication/browser/authenticationMcpService.service";
|
|
12
|
+
/**
|
|
13
|
+
* Main implementation of the authentication query service
|
|
14
|
+
*/
|
|
12
15
|
export declare class AuthenticationQueryService extends Disposable implements IAuthenticationQueryService {
|
|
13
16
|
readonly authenticationService: IAuthenticationService;
|
|
14
17
|
readonly authenticationUsageService: IAuthenticationUsageService;
|