mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 02:11:53 +00:00
* add clearnet functionality to frontend * add pattern and add sync db on rpcs * add domain pattern * show acme name instead of url if known * dont blow up if domain not present after delete * use common name for letsencrypt * normalize urls * refactor start-os ui net service * backend migration and rpcs for serverInfo.host * fix cors * implement clearnet for main startos ui * ability to add and remove tor addresses, including vanity * add guard to prevent duplicate addresses * misc bugfixes * better heuristics for launching UIs * fix ipv6 mocks * fix ipv6 display bug * rewrite url selection for launch ui --------- Co-authored-by: Aiden McClelland <me@drbonez.dev>
15 lines
481 B
TypeScript
15 lines
481 B
TypeScript
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
import type { BindInfo } from "./BindInfo"
|
|
import type { DomainConfig } from "./DomainConfig"
|
|
import type { HostnameInfo } from "./HostnameInfo"
|
|
|
|
export type Host = {
|
|
bindings: { [key: number]: BindInfo }
|
|
onions: string[]
|
|
domains: { [key: string]: DomainConfig }
|
|
/**
|
|
* COMPUTED: NetService::update
|
|
*/
|
|
hostnameInfo: { [key: number]: Array<HostnameInfo> }
|
|
}
|