MCPcopy
hub / github.com/ether/etherpad / UpdateStatusPayload

Interface UpdateStatusPayload

admin/src/store/store.ts:36–57  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34}
35
36export 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
59type ToastState = {
60 description?:string,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected