/** * Type Definitions Index * * Central export point for all TypeScript types. * Import types from this file throughout the application. * * @example * import type { GameState, SbaPlayer, TypedSocket } from '~/types' */ // Game types export type { GameStatus, InningHalf, GameMode, GameVisibility, LeagueId, DecisionPhase, LineupPlayerState, GameState, DefensiveDecision, OffensiveDecision, RollData, PlayOutcome, RunnerAdvancement, PlayResult, XCheckResult, DecisionPrompt, ManualOutcomeSubmission, GameListItem, CreateGameRequest, CreateGameResponse, } from './game' // Player types export type { SbaPlayer, Lineup, TeamLineup, LineupDataResponse, SubstitutionType, SubstitutionRequest, SubstitutionResult, SubstitutionErrorCode, SubstitutionError, } from './player' // WebSocket types export type { SocketAuth, ClientToServerEvents, ServerToClientEvents, TypedSocket, // Request types JoinGameRequest, LeaveGameRequest, DefensiveDecisionRequest, OffensiveDecisionRequest, RollDiceRequest, SubmitManualOutcomeRequest, PinchHitterRequest, DefensiveReplacementRequest, PitchingChangeRequest, GetLineupRequest, GetBoxScoreRequest, RequestGameStateRequest, // Event types ConnectedEvent, GameJoinedEvent, UserConnectedEvent, UserDisconnectedEvent, DefensiveDecisionSubmittedEvent, OffensiveDecisionSubmittedEvent, DiceRolledEvent, OutcomeAcceptedEvent, InningChangeEvent, GameEndedEvent, SubstitutionConfirmedEvent, BoxScoreDataEvent, BattingStatLine, PitchingStatLine, GameStateSyncEvent, ErrorEvent, OutcomeRejectedEvent, InvalidActionEvent, ConnectionErrorEvent, } from './websocket' // API types export type { ApiError, PaginatedResponse, GameFilters, DiscordAuthResponse, DiscordUser, JwtPayload, Team, UserTeamsResponse, CreateGameRequestData, CreateGameResponseData, GetGameResponse, GetActiveGamesResponse, GetCompletedGamesResponse, PlayHistoryItem, GetPlayHistoryResponse, DeleteGameResponse, DiscordCallbackRequest, DiscordCallbackResponse, GetCurrentUserResponse, RefreshTokenRequest, RefreshTokenResponse, } from './api'