mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 20:14:49 +00:00
* update registry upload to take id for new admin permissions (#2605) * wip * wip: Get the get dependencies * wip check_dependencies * wip: Get the build working to the vm * wip: Add in the last of the things that where needed for the new sdk * Add fix * wip: implement the changes * wip: Fix the naming --------- Co-authored-by: Lucy <12953208+elvece@users.noreply.github.com>
12 lines
391 B
TypeScript
12 lines
391 B
TypeScript
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
import type { HealthCheckResult } from "./HealthCheckResult"
|
|
import type { PackageId } from "./PackageId"
|
|
|
|
export type CheckDependenciesResult = {
|
|
packageId: PackageId
|
|
isInstalled: boolean
|
|
isRunning: boolean
|
|
healthChecks: Array<HealthCheckResult>
|
|
version: string | null
|
|
}
|