Phase4
Some checks failed
CI / Node — lint, typecheck, test, build (push) Failing after 9s
CI / Go — node-agent tests (push) Failing after 9s
CI / Go — edge-gateway build (push) Successful in 13s

This commit is contained in:
smueller
2026-06-26 12:32:27 +02:00
parent 9b061c3ee7
commit 4262464cd5
101 changed files with 4024 additions and 74 deletions

View File

@@ -8,6 +8,8 @@ export const gameServerStatusSchema = z.enum([
'STARTING',
'RUNNING',
'STOPPING',
'BACKING_UP',
'RESTORING',
'ERROR',
'DELETING',
'DELETED',
@@ -53,6 +55,7 @@ export const serverResponseSchema = z.object({
hostPort: z.number().int().nullable(),
containerId: z.string().nullable(),
dataPath: z.string().nullable(),
activeWorldName: z.string(),
ramMb: z.number().int(),
createdAt: z.string().datetime(),
updatedAt: z.string().datetime(),