valorant-api-types
Version:
A collection of documented endpoints and return types for the unofficial Valorant API
23 lines • 704 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.currentGameQuitEndpoint = void 0;
const zod_1 = require("zod");
exports.currentGameQuitEndpoint = {
name: 'Current Game Quit',
description: 'Quits the current game',
queryName: 'CoreGame_DisassociatePlayer',
category: 'Current Game Endpoints',
type: 'glz',
method: 'POST',
suffix: 'core-game/v1/players/{puuid}/disassociate/{current game match id}',
riotRequirements: {
token: true,
entitlement: true,
clientPlatform: true,
clientVersion: true
},
responses: {
'204': zod_1.z.undefined()
}
};
//# sourceMappingURL=CurrentGameQuit.js.map