mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 04:01:58 +00:00
Merge branch 'feat/preferred-port-design' into sdk-comments
This commit is contained in:
@@ -5,5 +5,6 @@ export type AttachParams = {
|
||||
password: EncryptedWire | null
|
||||
guid: string
|
||||
kiosk?: boolean
|
||||
name: string | null
|
||||
hostname: string | null
|
||||
}
|
||||
|
||||
@@ -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
|
||||
@@ -10,6 +10,7 @@ export type ServerInfo = {
|
||||
arch: string
|
||||
platform: string
|
||||
id: string
|
||||
name: string
|
||||
hostname: string
|
||||
version: string
|
||||
packageVersionCompat: string
|
||||
|
||||
@@ -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
|
||||
}
|
||||
|
||||
@@ -7,5 +7,6 @@ export type SetupExecuteParams = {
|
||||
password: EncryptedWire
|
||||
recoverySource: RecoverySource<EncryptedWire> | null
|
||||
kiosk?: boolean
|
||||
name: string | null
|
||||
hostname: string | null
|
||||
}
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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'
|
||||
|
||||
Reference in New Issue
Block a user