feat: Add optional published_at field to NextflowRelease type

Per @ewels request, the API on nf-co.re includes a "published_at" field
with the date of each release. For future compatibility without breaking
anything current, add an optional field that can handle this additional
information.
This commit is contained in:
Thomas A. Christensen II 2024-02-02 09:39:05 -06:00
parent 8d3c60ecae
commit 98350997f1

View file

@ -6,6 +6,7 @@ export type NextflowRelease = {
isEdge: boolean
binaryURL: string
allBinaryURL: string
published_at?: string
}
/**