UNPKG

valorant-api-types

Version:

A collection of documented endpoints and return types for the unofficial Valorant API

20 lines (19 loc) 640 B
import { z } from 'zod'; export declare const partyRemovePlayerEndpoint: { readonly name: "Party Remove Player"; readonly description: "Remove a player from the current party"; readonly queryName: "Party_RemovePlayer"; readonly category: "Party Endpoints"; readonly type: "glz"; readonly suffix: "parties/v1/players/{puuid}"; readonly method: "DELETE"; readonly riotRequirements: { readonly token: true; readonly entitlement: true; readonly clientVersion: true; readonly clientPlatform: true; }; readonly responses: { readonly '204': z.ZodUndefined; }; };