Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/base/common/defaultAccount.ts
3291 views
1
/*---------------------------------------------------------------------------------------------
2
* Copyright (c) Microsoft Corporation. All rights reserved.
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
*--------------------------------------------------------------------------------------------*/
5
6
export interface IDefaultAccount {
7
readonly sessionId: string;
8
readonly enterprise: boolean;
9
readonly access_type_sku?: string;
10
readonly assigned_date?: string;
11
readonly can_signup_for_limited?: boolean;
12
readonly chat_enabled?: boolean;
13
readonly chat_preview_features_enabled?: boolean;
14
readonly mcp?: boolean;
15
readonly mcpRegistryUrl?: string;
16
readonly mcpAccess?: 'allow_all' | 'registry_only';
17
readonly analytics_tracking_id?: string;
18
readonly limited_user_quotas?: {
19
readonly chat: number;
20
readonly completions: number;
21
};
22
readonly monthly_quotas?: {
23
readonly chat: number;
24
readonly completions: number;
25
};
26
readonly limited_user_reset_date?: string;
27
readonly chat_agent_enabled?: boolean;
28
}
29
30