From ac65134db9404dd139edabbd73818e6d514a79ac Mon Sep 17 00:00:00 2001 From: ITOH <72305210+itohatweb@users.noreply.github.com> Date: Fri, 16 Apr 2021 15:58:27 +0200 Subject: [PATCH] add(constants): GUILD_MEMBERS_SEARCH --- src/util/constants.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/util/constants.ts b/src/util/constants.ts index bff7d1483..d16003e84 100644 --- a/src/util/constants.ts +++ b/src/util/constants.ts @@ -106,6 +106,8 @@ export const endpoints = { GUILD_MEMBERS: (guildId: string) => `${GUILDS_BASE(guildId)}/members`, GUILD_MEMBER_ROLE: (guildId: string, memberId: string, roleId: string) => `${GUILDS_BASE(guildId)}/members/${memberId}/roles/${roleId}`, + GUILD_MEMBERS_SEARCH: (guildId: string) => + `${GUILDS_BASE(guildId)}/members/search`, GUILD_PRUNE: (guildId: string) => `${GUILDS_BASE(guildId)}/prune`, GUILD_REGIONS: (guildId: string) => `${GUILDS_BASE(guildId)}/regions`, GUILD_ROLE: (guildId: string, roleId: string) =>