-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathprofileExtensions.ts
46 lines (40 loc) · 1.26 KB
/
profileExtensions.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*---------------------------------------------------------------------------------------------
* Copyright (c) Gitpod. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
// From https://github.com/microsoft/vscode/blob/5413247e57fb7e3d29cd36f08266005fe72bbde4/src/vs/platform/extensionManagement/common/extensionsProfileScannerService.ts#L24-L30
export interface IStoredProfileExtension {
identifier: IExtensionIdentifier;
location: UriComponents | string;
relativeLocation: string | undefined;
version: string;
metadata?: Metadata;
}
interface IExtensionIdentifier {
id: string;
uuid?: string;
}
interface UriComponents {
scheme: string;
authority?: string;
path?: string;
query?: string;
fragment?: string;
}
interface IGalleryMetadata {
id: string;
publisherId: string;
publisherDisplayName: string;
isPreReleaseVersion: boolean;
targetPlatform?: string;
}
type Metadata = Partial<IGalleryMetadata & {
isApplicationScoped: boolean;
isMachineScoped: boolean;
isBuiltin: boolean;
isSystem: boolean;
updated: boolean;
preRelease: boolean;
installedTimestamp: number;
pinned: boolean;
}>;