valorant-api-types
Version:
A collection of documented endpoints and return types for the unofficial Valorant API
84 lines (83 loc) • 4.09 kB
TypeScript
export * from './endpoints/pvp/FetchContent';
export * from './endpoints/pvp/AccountXP';
export * from './endpoints/pvp/PlayerLoadout';
export * from './endpoints/pvp/SetPlayerLoadout';
export * from './endpoints/pvp/PlayerMMR';
export * from './endpoints/pvp/MatchHistory';
export * from './endpoints/pvp/MatchDetails';
export * from './endpoints/pvp/CompetitiveUpdates';
export * from './endpoints/pvp/Leaderboard';
export * from './endpoints/pvp/Penalties';
export * from './endpoints/pvp/Config';
export * from './endpoints/pvp/NameService';
export * from './endpoints/party/Party';
export * from './endpoints/party/PartyPlayer';
export * from './endpoints/party/PartyRemovePlayer';
export * from './endpoints/party/PartySetMemberReady';
export * from './endpoints/party/RefreshCompetitiveTier';
export * from './endpoints/party/RefreshPlayerIdentity';
export * from './endpoints/party/RefreshPings';
export * from './endpoints/party/ChangeQueue';
export * from './endpoints/party/StartCustomGame';
export * from './endpoints/party/EnterMatchmakingQueue';
export * from './endpoints/party/LeaveMatchmakingQueue';
export * from './endpoints/party/SetPartyAccessibility';
export * from './endpoints/party/SetCustomGameSettings';
export * from './endpoints/party/PartyInvite';
export * from './endpoints/party/PartyRequest';
export * from './endpoints/party/PartyDecline';
export * from './endpoints/party/CustomGameConfigs';
export * from './endpoints/party/PartyChatToken';
export * from './endpoints/party/PartyVoiceToken';
export * from './endpoints/party/PartyGenerateCode';
export * from './endpoints/party/PartyDisableCode';
export * from './endpoints/party/PartyJoinByCode';
export * from './endpoints/store/Prices';
export * from './endpoints/store/Storefront';
export * from './endpoints/store/Wallet';
export * from './endpoints/store/OwnedItems';
export * from './endpoints/pregame/PregamePlayer';
export * from './endpoints/pregame/PregameMatch';
export * from './endpoints/pregame/PregameLoadouts';
export * from './endpoints/pregame/SelectCharacter';
export * from './endpoints/pregame/LockCharacter';
export * from './endpoints/pregame/PregameQuit';
export * from './endpoints/currentgame/CurrentGamePlayer';
export * from './endpoints/currentgame/CurrentGameMatch';
export * from './endpoints/currentgame/CurrentGameLoadouts';
export * from './endpoints/currentgame/CurrentGameQuit';
export * from './endpoints/contracts/ItemUpgrades';
export * from './endpoints/contracts/Contracts';
export * from './endpoints/contracts/ActivateContract';
export * from './endpoints/local/LocalHelp';
export * from './endpoints/local/Sessions';
export * from './endpoints/local/RSOUserInfo';
export * from './endpoints/local/ClientRegion';
export * from './endpoints/local/AccountAlias';
export * from './endpoints/local/EntitlementsToken';
export * from './endpoints/local/ChatSession';
export * from './endpoints/local/Friends';
export * from './endpoints/local/Presence';
export * from './endpoints/local/FriendRequests';
export * from './endpoints/local/SendFriendRequest';
export * from './endpoints/local/RemoveFriendRequest';
export * from './endpoints/local/LocalSwaggerDocs';
export * from './endpoints/local/chat/PartyChatInfo';
export * from './endpoints/local/chat/PregameChatInfo';
export * from './endpoints/local/chat/CurrentGameChatInfo';
export * from './endpoints/local/chat/AllChatInfo';
export * from './endpoints/local/chat/ChatParticipants';
export * from './endpoints/local/chat/SendChat';
export * from './endpoints/local/chat/ChatHistory';
export * from './endpoints/auth/AuthCookies';
export * from './endpoints/auth/AuthRequest';
export * from './endpoints/auth/MultiFactorAuthentication';
export * from './endpoints/auth/CookieReauth';
export * from './endpoints/auth/Entitlement';
export * from './endpoints/auth/PlayerInfo';
export * from './endpoints/auth/RiotGeo';
export * from './endpoints/auth/PASToken';
export * from './endpoints/auth/RiotClientConfig';
export * from './endpoints';
export * from './commonTypes';
export * from './ValorantEndpoint';