valorant-api-types
Version:
A collection of documented endpoints and return types for the unofficial Valorant API
25 lines • 721 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.partyChatTokenEndpoint = void 0;
const zod_1 = require("zod");
exports.partyChatTokenEndpoint = {
name: 'Party Chat Token',
description: 'Get the party chat token',
queryName: 'Party_FetchMUCToken',
category: 'Party Endpoints',
type: 'glz',
suffix: '/parties/v1/parties/{party id}/muctoken',
riotRequirements: {
token: true,
entitlement: true,
clientPlatform: true,
clientVersion: true
},
responses: {
'200': zod_1.z.object({
Token: zod_1.z.string(),
Room: zod_1.z.string()
})
}
};
//# sourceMappingURL=PartyChatToken.js.map