valorant-api-types
Version:
A collection of documented endpoints and return types for the unofficial Valorant API
23 lines • 653 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.pregameQuitEndpoint = void 0;
const zod_1 = require("zod");
exports.pregameQuitEndpoint = {
name: 'Pre-Game Quit',
description: 'Quit the pre-game lobby',
queryName: 'Pregame_QuitMatch',
category: 'Pre-Game Endpoints',
type: 'glz',
method: 'POST',
suffix: 'pregame/v1/matches/{pre-game match id}/quit',
riotRequirements: {
token: true,
entitlement: true,
clientPlatform: true,
clientVersion: true
},
responses: {
'204': zod_1.z.undefined()
}
};
//# sourceMappingURL=PregameQuit.js.map