valorant-api-types
Version:
A collection of documented endpoints and return types for the unofficial Valorant API
22 lines • 880 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.localHelpEndpoint = void 0;
const zod_1 = require("zod");
exports.localHelpEndpoint = {
name: 'Local Help',
description: 'Get help for the local client',
category: 'Local Endpoints',
type: 'local',
suffix: 'help',
riotRequirements: {
localAuth: true
},
responses: {
'200': zod_1.z.object({
events: zod_1.z.record(zod_1.z.string().describe('Websocket event name'), zod_1.z.string().describe('Websocket event description')),
functions: zod_1.z.record(zod_1.z.string().describe('Function name'), zod_1.z.string().describe('Function description')),
types: zod_1.z.record(zod_1.z.string().describe('Type name'), zod_1.z.string().describe('Type description'))
})
}
};
//# sourceMappingURL=LocalHelp.js.map