| 34 | } |
| 35 | |
| 36 | export interface UpdateStatusPayload { |
| 37 | currentVersion: string; |
| 38 | latest: null | { |
| 39 | version: string; |
| 40 | tag: string; |
| 41 | body: string; |
| 42 | publishedAt: string; |
| 43 | prerelease: boolean; |
| 44 | htmlUrl: string; |
| 45 | }; |
| 46 | lastCheckAt: string | null; |
| 47 | installMethod: string; |
| 48 | tier: string; |
| 49 | policy: null | {canNotify: boolean; canManual: boolean; canAuto: boolean; canAutonomous: boolean; reason: string}; |
| 50 | // Tier 2 additions: |
| 51 | execution: Execution; |
| 52 | lastResult: LastResult; |
| 53 | lockHeld: boolean; |
| 54 | // Tier 4 additions: |
| 55 | maintenanceWindow: MaintenanceWindow | null; |
| 56 | nextWindowOpensAt: string | null; |
| 57 | } |
| 58 | |
| 59 | type ToastState = { |
| 60 | description?:string, |
nothing calls this directly
no outgoing calls
no test coverage detected