From e0ca050e13ce9349bd36bc9d96b03d8af08fdefa Mon Sep 17 00:00:00 2001 From: ITOH <72305210+itohatweb@users.noreply.github.com> Date: Tue, 20 Apr 2021 17:21:20 +0200 Subject: [PATCH] Update mod.ts --- src/helpers/mod.ts | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/helpers/mod.ts b/src/helpers/mod.ts index 49486d140..22799a964 100644 --- a/src/helpers/mod.ts +++ b/src/helpers/mod.ts @@ -115,8 +115,14 @@ import { executeWebhook } from "./webhooks/execute_webhook.ts"; import { getWebhook } from "./webhooks/get_webhook.ts"; import { getWebhooks } from "./webhooks/get_webhooks.ts"; import { getWebhookWithToken } from "./webhooks/get_webhook_with_token.ts"; +import { addDiscoverySubcategory } from "./discovery/add_discovery_subcategory.ts"; +import { editDiscovery } from "./discovery/edit_discovery.ts"; +import { getDiscoveryCategories } from "./discovery/get_discovery_categories.ts"; +import { removeDiscoverySubcategory } from "./discovery/remove_discovery_subcategory.ts"; +import { validDiscoveryTerm } from "./discovery/valid_discovery_term.ts"; export { + addDiscoverySubcategory, addReaction, addReactions, addRole, @@ -155,6 +161,7 @@ export { editBotStatus, editChannel, editChannelOverwrite, + editDiscovery, editEmoji, editGuild, editGuildTemplate, @@ -179,6 +186,7 @@ export { getChannelInvites, getChannels, getChannelWebhooks, + getDiscoveryCategories, getEmoji, getEmojis, getGatewayBot, @@ -223,6 +231,7 @@ export { pruneMembers, publishMessage, removeAllReactions, + removeDiscoverySubcategory, removeReaction, removeReactionEmoji, removeRole, @@ -239,6 +248,7 @@ export { unpinMessage, upsertSlashCommand, upsertSlashCommands, + validDiscoveryTerm, }; export let helpers = { @@ -298,6 +308,12 @@ export let helpers = { guildIconURL, guildSplashURL, leaveGuild, + // discovery + addDiscoverySubcategory, + editDiscovery, + getDiscoveryCategories, + removeDiscoverySubcategory, + validDiscoveryTerm, // integrations deleteIntegration, getIntegrations,