Merge branch 'update/camelCase' of github.com:Start9Labs/start-os into rebase/feat/domains

This commit is contained in:
Matt Hill
2024-03-22 13:09:11 -06:00
30 changed files with 406 additions and 422 deletions

View File

@@ -1,6 +1,6 @@
export type FollowLogsReq = {}
export type FollowLogsRes = {
'start-cursor': string
startCursor: string
guid: string
}
@@ -12,8 +12,8 @@ export type FetchLogsReq = {
export type FetchLogsRes = {
entries: Log[]
'start-cursor'?: string
'end-cursor'?: string
startCursor?: string
endCursor?: string
}
export interface Log {
@@ -37,19 +37,19 @@ export interface PartitionInfo {
label: string | null
capacity: number
used: number | null
'embassy-os': StartOSDiskInfo | null
startOs: StartOSDiskInfo | null
guid: string | null
}
export type StartOSDiskInfo = {
version: string
full: boolean
'password-hash': string | null
'wrapped-key': string | null
passwordHash: string | null
wrappedKey: string | null
}
export interface SetupStatus {
'bytes-transferred': number
'total-bytes': number | null
bytesTransferred: number
totalBytes: number | null
complete: boolean
}