valorant-api-types
Version:
A collection of documented endpoints and return types for the unofficial Valorant API
24 lines • 705 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.entitlementEndpoint = void 0;
const zod_1 = require("zod");
exports.entitlementEndpoint = {
name: 'Entitlement',
description: 'Get entitlement for remote requests with a token',
category: 'Authentication Endpoints',
type: 'other',
suffix: 'https://entitlements.auth.riotgames.com/api/token/v1',
method: 'POST',
headers: new Map([
['Content-Type', 'application/json'],
]),
riotRequirements: {
token: true
},
responses: {
'200': zod_1.z.object({
entitlements_token: zod_1.z.string()
})
}
};
//# sourceMappingURL=Entitlement.js.map