function upsertGuildApplicationCommandsimport { upsertGuildApplicationCommands } from "https://dotland.deno.dev/x/discordeno@17.2.0/plugins/validations/deps.ts"; upsertGuildApplicationCommands(bot: Bot,guildId: BigString,commands: CreateApplicationCommand[],): Promise<Collection<bigint, ApplicationCommand>>Re-registers the list of application commands registered in a guild, overwriting the previous commands completely. Parametersbot: Bot The bot instance to use to make the request. guildId: BigString The ID of the guild whose list of commands to overwrite. commands: CreateApplicationCommand[] The list of commands to use to overwrite the previous list. ReturnsPromise<Collection<bigint, ApplicationCommand>>A collection of ApplicationCommand objects assorted by command ID.