mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 20:14:49 +00:00
* TODO: images * wip * pack s9pk images * include path in packsource error * debug info * add cmd as context to invoke * filehelper bugfix * fix file helper * fix exposeForDependents * misc fixes * force image removal * fix filtering * fix deadlock * fix api * chore: Up the version of the package.json * always allow concurrency within same call stack * Update core/startos/src/s9pk/merkle_archive/expected.rs Co-authored-by: Jade <2364004+Blu-J@users.noreply.github.com> --------- Co-authored-by: J H <dragondef@gmail.com> Co-authored-by: Jade <2364004+Blu-J@users.noreply.github.com>
34 lines
1.0 KiB
TypeScript
34 lines
1.0 KiB
TypeScript
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
import type { Alerts } from "./Alerts"
|
|
import type { Dependencies } from "./Dependencies"
|
|
import type { Description } from "./Description"
|
|
import type { HardwareRequirements } from "./HardwareRequirements"
|
|
import type { ImageConfig } from "./ImageConfig"
|
|
import type { ImageId } from "./ImageId"
|
|
import type { PackageId } from "./PackageId"
|
|
import type { Version } from "./Version"
|
|
import type { VolumeId } from "./VolumeId"
|
|
|
|
export type Manifest = {
|
|
id: PackageId
|
|
title: string
|
|
version: Version
|
|
releaseNotes: string
|
|
license: string
|
|
wrapperRepo: string
|
|
upstreamRepo: string
|
|
supportSite: string
|
|
marketingSite: string
|
|
donationUrl: string | null
|
|
description: Description
|
|
images: { [key: ImageId]: ImageConfig }
|
|
assets: Array<VolumeId>
|
|
volumes: Array<VolumeId>
|
|
alerts: Alerts
|
|
dependencies: Dependencies
|
|
hardwareRequirements: HardwareRequirements
|
|
gitHash: string | null
|
|
osVersion: Version
|
|
hasConfig: boolean
|
|
}
|