frontend support for setting and changing hostname

This commit is contained in:
Matt Hill
2026-02-24 10:27:22 -07:00
parent d1162272f0
commit 86ecc4cc99
26 changed files with 9381 additions and 188 deletions

View File

@@ -5,4 +5,5 @@ export type AttachParams = {
password: EncryptedWire | null
guid: string
kiosk?: boolean
hostname: string | null
}

View File

@@ -0,0 +1,3 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
export type SetServerHostnameParams = { hostname: string }

View File

@@ -7,4 +7,5 @@ export type SetupExecuteParams = {
password: EncryptedWire
recoverySource: RecoverySource<EncryptedWire> | null
kiosk?: boolean
hostname: string | null
}

View File

@@ -257,6 +257,7 @@ export { SetMainStatusStatus } from './SetMainStatusStatus'
export { SetMainStatus } from './SetMainStatus'
export { SetNameParams } from './SetNameParams'
export { SetOutboundGatewayParams } from './SetOutboundGatewayParams'
export { SetServerHostnameParams } from './SetServerHostnameParams'
export { SetStaticDnsParams } from './SetStaticDnsParams'
export { SetupExecuteParams } from './SetupExecuteParams'
export { SetupInfo } from './SetupInfo'