Read-only for now, per instruction to defer key creation/revocation. Both confirmed against live network captures.
12 lines
430 B
Swift
12 lines
430 B
Swift
import Foundation
|
|
|
|
/// `installation.info` — the self-hosted server's own version, confirmed
|
|
/// live. `policies` (a separate top-level array alongside `data` in the raw
|
|
/// response) isn't modeled here — not used by this app's Installation
|
|
/// settings page.
|
|
public struct OutlineInstallationInfo: Decodable, Sendable {
|
|
public let version: String
|
|
public let latestVersion: String
|
|
public let versionsBehind: Int
|
|
}
|