Merge branch 'feat/preferred-port-design' into sdk-comments

This commit is contained in:
Aiden McClelland
2026-02-24 14:28:56 -07:00
committed by GitHub
43 changed files with 871 additions and 590 deletions

View File

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

View File

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

View File

@@ -10,6 +10,7 @@ export type ServerInfo = {
arch: string
platform: string
id: string
name: string
hostname: string
version: string
packageVersionCompat: string

View File

@@ -1,3 +1,6 @@
// 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 }
export type SetServerHostnameParams = {
name: string | null
hostname: string | null
}

View File

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

View File

@@ -1,8 +1,8 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { Hostname } from './Hostname'
import type { ServerHostname } from './ServerHostname'
export type StartOsRecoveryInfo = {
hostname: Hostname
hostname: ServerHostname
version: string
timestamp: string
passwordHash: string | null

View File

@@ -130,7 +130,6 @@ export { HealthCheckId } from './HealthCheckId'
export { HostId } from './HostId'
export { HostnameInfo } from './HostnameInfo'
export { HostnameMetadata } from './HostnameMetadata'
export { Hostname } from './Hostname'
export { Hosts } from './Hosts'
export { Host } from './Host'
export { IdMap } from './IdMap'
@@ -237,6 +236,7 @@ export { RestorePackageParams } from './RestorePackageParams'
export { RunActionParams } from './RunActionParams'
export { Security } from './Security'
export { ServerBackupReport } from './ServerBackupReport'
export { ServerHostname } from './ServerHostname'
export { ServerInfo } from './ServerInfo'
export { ServerSpecs } from './ServerSpecs'
export { ServerStatus } from './ServerStatus'