valorant-api-types
Version:
A collection of documented endpoints and return types for the unofficial Valorant API
23 lines • 682 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.partyRequestEndpoint = void 0;
const zod_1 = require("zod");
exports.partyRequestEndpoint = {
name: 'Party Request',
description: 'Requests to join the specified party ID',
queryName: 'Party_RequestToJoinParty',
category: 'Party Endpoints',
type: 'glz',
method: 'POST',
suffix: 'parties/v1/parties/{party id}/request',
riotRequirements: {
token: true,
entitlement: true,
clientPlatform: true,
clientVersion: true
},
responses: {
'200': zod_1.z.unknown() //TODO verify
}
};
//# sourceMappingURL=PartyRequest.js.map