Phase3
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:17:26 +02:00
parent c4077d4673
commit 9b061c3ee7
92 changed files with 4128 additions and 146 deletions

View File

@@ -71,3 +71,45 @@ export {
type ServerListResponse,
type ServerActionResponse,
} from './servers';
export {
listFilesQuerySchema,
fileEntrySchema,
fileListResponseSchema,
fileContentSchema,
readFileContentQuerySchema,
updateFileContentSchema,
type ListFilesQuery,
type FileEntry,
type FileListResponse,
type FileContent,
type ReadFileContentQuery,
type UpdateFileContent,
} from './files';
export {
consoleTokenResponseSchema,
consoleCommandSchema,
type ConsoleTokenResponse,
type ConsoleCommand,
} from './console';
export {
serverPropertiesSchema,
updateServerPropertiesSchema,
serverPropertiesResponseSchema,
type ServerProperties,
type UpdateServerProperties,
type ServerPropertiesResponse,
} from './properties';
export {
onlinePlayerSchema,
whitelistEntrySchema,
operatorEntrySchema,
playerListResponseSchema,
type OnlinePlayer,
type WhitelistEntry,
type OperatorEntry,
type PlayerListResponse,
} from './players';