forked from EclipseFdn/publish-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypes.d.ts
97 lines (83 loc) · 2.02 KB
/
types.d.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
/********************************************************************************
* Copyright (c) 2021 Gitpod and others
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
********************************************************************************/
//@ts-check
export interface MSExtensionStat {
msInstalls: number,
msVersion: string
}
export interface ExtensionStat extends MSExtensionStat {
daysInBetween: number,
openVersion: string,
}
export interface PublishStat {
upToDate: {
[id: string]: ExtensionStat
}
unstable: {
[id: string]: ExtensionStat
}
outdated: {
[id: string]: ExtensionStat
}
notInOpen: {
[id: string]: MSExtensionStat
}
notInMS: string[]
resolutions: {
[id: string]: Partial<MSExtensionStat> & ExtensionResolution
}
failed: string[]
msPublished: {
[id: string]: MSExtensionStat
}
hitMiss: {
[id: string]: (ExtensionStat | ExtensionStat)
}
}
export interface Extensions {
[id: string]: Omit<Extension, 'id'>
}
export interface Extension {
id: string,
repository?: string
location?: string
prepublish?: string
extensionFile?: string
timeout?: number
}
export interface ExtensionResolution {
releaseAsset?: string
releaseTag?: string
tag?: string
latest?: string
matchedLatest?: string
matched?: string
}
export interface ResolvedExtension {
version: string
path: string
resolution: ExtensionResolution
}
export interface PublishContext {
msVersion?: string
msLastUpdated?: Date
msInstalls?: number
msPublisher?: string
ovsxVersion?: string
ovsxLastUpdated?: Date
version?: string
file?: string
repo?: string
ref?: string
}
interface IRawGalleryExtensionProperty {
readonly key: string;
readonly value: string;
}