From 9969c5453650a22c7ea18befc4f57fe8edb27db9 Mon Sep 17 00:00:00 2001 From: Androz2091 Date: Sat, 16 Jan 2021 10:00:12 +0100 Subject: [PATCH] :sparkles: Generate docs and tests --- docs/index.html | 323 +++++++++++++++++++++++++++++++++++++++--------- tests/test.js | 18 ++- 2 files changed, 280 insertions(+), 61 deletions(-) diff --git a/docs/index.html b/docs/index.html index 81cfa9b..c179525 100644 --- a/docs/index.html +++ b/docs/index.html @@ -726,10 +726,107 @@

+
📡 Emitted when a guild removes its vanity URL.
+ +
🆘 Example:
client.on("guildVanityURLRemove", (guild, vanityURL) => {
+  console.log(guild.name+" has removed its vanity url : "+vanityURL);
+});
+
+
+
+ +
+
+ +
+
📡 Emitted when a guild updates its vanity URL.
+ +
🆘 Example:
client.on("guildVanityURLUpdate", (guild, oldVanityURL, newVanityURL) => {
+  console.log(`${guild.name} has changed its vanity URL from ${oldGuildvanityURL} to ${newGuildvanityURL} !`);
+});
+
+
+
+
+
+
+ +
📡 Emitten when a guild feature gets updated.