···126126#[derive(Debug, Clone, Copy, Serialize, PartialEq, Eq, PartialOrd, Ord, ToSchema)]
127127#[serde(rename_all = "camelCase")]
128128pub enum LuminaryStatus {
129129+ /// Represents a service that is in the process of changing state.
130130+ Loading,
131131+129132 /// Represents a service that has exited (usually due to an error).
130133 Exited,
131134132132- /// Represents a service that is offline.
133133- Down,
134134-135135 /// Represents a service that has been paused.
136136 Paused,
137137138138- /// Represents a service that is in the process of changing state.
139139- Loading,
138138+ /// Represents a service that is offline.
139139+ Down,
140140141141 /// Represents a service that is running and online.
142142 Running,
+1
packages/panel/src/lib/api/state.svelte.ts
···66import { goto } from "$app/navigation";
7788export type LuminaryStateList = components["schemas"]["luminary_node.core.model.LuminaryStateList"];
99+export type LuminaryProject = components["schemas"]["luminary_node.core.model.LuminaryProject"];
910type LogMessage = components["schemas"]["luminary_node.logging.LogMessage"];
10111112const INITIAL_RETRY_DELAY = 1000;
···11-import { api } from "$lib";
22-import { error } from "@sveltejs/kit";
31import type { PageLoad } from "./$types";
22+import { error } from "@sveltejs/kit";
33+import { api } from "$lib";
4455export const prerender = false;
66