mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 02:11:53 +00:00
* chore: convert to use a value, cause why not * wip: Add the up for this going up * wip: trait changes * wip: Add in some more of the private transformations * chore(wip): Adding the ssh_keys todo * wip: Add cifs * fix migration structure * chore: Fix the trait for the version * wip(feat): Notifications are in the system * fix marker trait hell * handle key todos * wip: Testing the migration in a system. * fix pubkey parser * fix: migration works * wip: Trying to get the migration stuff? * fix: Can now install the packages that we wanted, yay!" * Merge branch 'next/minor' of github.com:Start9Labs/start-os into feat/migration --------- Co-authored-by: Aiden McClelland <me@drbonez.dev>
35 lines
909 B
TypeScript
35 lines
909 B
TypeScript
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
import type { Governor } from "./Governor"
|
|
import type { IpInfo } from "./IpInfo"
|
|
import type { ServerStatus } from "./ServerStatus"
|
|
import type { SmtpValue } from "./SmtpValue"
|
|
import type { WifiInfo } from "./WifiInfo"
|
|
|
|
export type ServerInfo = {
|
|
arch: string
|
|
platform: string
|
|
id: string
|
|
hostname: string
|
|
version: string
|
|
versionCompat: string
|
|
postInitMigrationTodos: string[]
|
|
lastBackup: string | null
|
|
lanAddress: string
|
|
onionAddress: string
|
|
/**
|
|
* for backwards compatibility
|
|
*/
|
|
torAddress: string
|
|
ipInfo: { [key: string]: IpInfo }
|
|
statusInfo: ServerStatus
|
|
wifi: WifiInfo
|
|
unreadNotificationCount: number
|
|
passwordHash: string
|
|
pubkey: string
|
|
caFingerprint: string
|
|
ntpSynced: boolean
|
|
zram: boolean
|
|
governor: Governor | null
|
|
smtp: SmtpValue | null
|
|
}
|