2022-11-29 12:29:52 -06:00
|
|
|
export interface LatestReleasesData {
|
|
|
|
versionNumber: string;
|
|
|
|
releaseName: string;
|
|
|
|
urls: {
|
|
|
|
LATEST_LINUX_BINARY_URL: string;
|
|
|
|
LATEST_MACOS_BINARY_URL: string;
|
|
|
|
LATEST_WINDOWS_BINARY_URL: string;
|
|
|
|
LATEST_SOURCES_URL: string;
|
|
|
|
RELEASE_NOTES_URL: string;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface ReleaseData {
|
|
|
|
release: {
|
|
|
|
label: string;
|
|
|
|
url: string;
|
|
|
|
};
|
|
|
|
commit: {
|
|
|
|
label: string;
|
|
|
|
url: string;
|
|
|
|
};
|
|
|
|
kind: string;
|
|
|
|
arch: string;
|
|
|
|
size: string;
|
|
|
|
published: string;
|
|
|
|
signature: {
|
|
|
|
label: string;
|
|
|
|
url: string;
|
|
|
|
};
|
|
|
|
checksum: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface ReleaseParams {
|
|
|
|
blobsList: string[];
|
|
|
|
isStableRelease: boolean;
|
|
|
|
}
|
2022-11-30 07:37:59 -06:00
|
|
|
|
2022-11-30 18:06:59 -06:00
|
|
|
export interface NavLink {
|
|
|
|
id: string;
|
|
|
|
to?: string;
|
|
|
|
items?: NavLink[];
|
|
|
|
}
|
|
|
|
|
2022-11-30 07:37:59 -06:00
|
|
|
export interface OpenPGPSignaturesData {
|
|
|
|
'build server': string;
|
|
|
|
'unique id': string;
|
|
|
|
'openpgp key': {
|
|
|
|
label: string;
|
|
|
|
url: string;
|
|
|
|
};
|
|
|
|
fingerprint: string;
|
|
|
|
}
|