valorant-api-types
Version:
A collection of documented endpoints and return types for the unofficial Valorant API
19 lines • 647 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.pasTokenEndpoint = void 0;
const zod_1 = require("zod");
exports.pasTokenEndpoint = {
name: 'PAS Token',
description: 'Get a PAS token using the auth token. The PAS token is a JWT that contains the affinity for the XMPP server.',
category: 'Authentication Endpoints',
type: 'other',
suffix: 'https://riot-geo.pas.si.riotgames.com/pas/v1/service/chat',
method: 'GET',
riotRequirements: {
token: true
},
responses: {
'200': zod_1.z.string().describe('The PAS token')
}
};
//# sourceMappingURL=PASToken.js.map