-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathgetPackages.ts
90 lines (84 loc) · 1.76 KB
/
getPackages.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
import fetch from "isomorphic-unfetch";
import { getAPIUrl } from "../utils/helperFunctions";
export interface IManifestInfo {
Description?: string;
Name: string;
AppMoniker?: string;
Publisher: string;
Channel?: string;
Author?: string;
License?: string;
LicenseUrl?: string;
MinOSVersion?: string;
Homepage?: string;
Tags?: string;
FileExtensions?: string;
Protocols?: string;
Commands?: string;
InstallerType?: string;
Switches?: {
Custom?: string;
Silent?: string;
SilentWithProgress?: string;
Interactive?: string;
Language?: string;
};
Log?: string;
InstallLocation?: string;
Installers: [
{
Arch: string;
Url: string;
Sha256: string;
SignatureSha256?: string;
Language?: string;
InstallerType: string;
Scope?: string;
SystemAppId?: string;
Switches?: {
Language?: string;
Custom?: string;
};
}
];
Localization?: [
{
Language: string;
Description?: string;
Homepage?: string;
LicenseUrl?: string;
}
];
}
export interface IPackageInfo {
Name: string;
Publisher: string;
Tags: string[];
Description?: string;
Homepage?: string;
License?: string;
LicenseUrl?: string;
}
export interface IPackage {
Id: string;
Latest: IPackageInfo;
Featured: boolean;
IconUrl?: string;
Banner?: string;
Logo?: string;
Versions: string[];
UpdatedAt: Date;
}
export interface IResponse {
Packages: IPackage[];
Total: number;
statusCode?: number;
error?: string;
message?: string;
}
export interface IResponseSingle {
Package: IPackage;
}
export default async function getPackages(route = ""): Promise<IResponse> {
return fetch(`https://${getAPIUrl()}/v2/${route}`).then((e) => e.json());
}