Rest
Constructor
- Rest : options
Table of contents
Properties | Methods |
---|---|
manager | delete() |
destroyPlayer() | |
get() | |
getAllPlayers() | |
patch() | |
post() | |
put() | |
setSessionId() | |
updatePlayer() | |
updateSession() |
Properties
manager
The Manager instance.
Returns:
Manager
Methods
delete()
Sends a DELETE request to the server to destroy the player.
Returns: Promise<unknown>
Parameter Type Description guildId
string as GuildID The guild ID of the player to destroy.
destroyPlayer()
Sends a DELETE request to the server to destroy the player.
Returns: Promise<unknown>
Parameter Type Description guildId
string as GuildID The guild ID of the player to destroy.
get()
Sends a GET request to the specified endpoint and returns the response data.
Returns: Promise<unknown>
Parameter Type Description endpoint
string The endpoint to send the GET request to.
getAllPlayers()
Retrieves all the players that are currently running on the node.
Returns: Promise<unknown>
path()
Sends a PATCH request to update player related data.
Returns: Promise<unknown>
Parameter Type Description options
playOptions{}
The options to update the player with.
put()
Sends a PUT request to the specified endpoint and returns the response data.
Returns: Promise<unknown>
Parameter Type Description endpoint
string The endpoint to send the PUT request to. body
unknown The data to send in the request body.
setSessionId()
Sets the session ID.
This method is used to set the session ID after a resume operation is done.Returns: string
Parameter Type Description sessionId
string The session ID to set.
updatePlayer()
Sends a PATCH request to update player related data.
Returns: Promise<unknown>
Parameter Type Description options
playOptions{}
The options to update the player with.
updateSession()
Updates the session status for resuming.
This method sends a PATCH request to update the session's resuming status and timeout.Returns: Promise<unknown>
Parameter Type Description resuming
boolean Indicates whether the session should be set to resuming. timeout
number The timeout duration for the session resume.