@discordjs/core 3.0.0-dev.1754352103-a2ee3932b → 3.0.0-dev.1754524906-698b92c2a

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -916,16 +916,6 @@ var GuildsAPI = class {
916
916
  signal
917
917
  });
918
918
  }
919
- /**
920
- * Deletes a guild
921
- *
922
- * @see {@link https://discord.com/developers/docs/resources/guild#delete-guild}
923
- * @param guildId - The id of the guild to delete
924
- * @param options - The options for deleting this guild
925
- */
926
- async delete(guildId, { auth, signal } = {}) {
927
- await this.rest.delete(Routes4.guild(guildId), { auth, signal });
928
- }
929
919
  /**
930
920
  * Adds user to the guild
931
921
  *
@@ -1153,22 +1143,6 @@ var GuildsAPI = class {
1153
1143
  async deleteRole(guildId, roleId, { auth, reason, signal } = {}) {
1154
1144
  await this.rest.delete(Routes4.guildRole(guildId, roleId), { auth, reason, signal });
1155
1145
  }
1156
- /**
1157
- * Edits the multi-factor-authentication (MFA) level of a guild
1158
- *
1159
- * @see {@link https://discord.com/developers/docs/resources/guild#modify-guild-mfa-level}
1160
- * @param guildId - The id of the guild to edit the MFA level for
1161
- * @param level - The new MFA level
1162
- * @param options - The options for editing the MFA level
1163
- */
1164
- async editMFALevel(guildId, level, { auth, reason, signal } = {}) {
1165
- return this.rest.post(Routes4.guildMFA(guildId), {
1166
- auth,
1167
- reason,
1168
- signal,
1169
- body: { level }
1170
- });
1171
- }
1172
1146
  /**
1173
1147
  * Fetch the number of members that can be pruned from a guild
1174
1148
  *
@@ -3106,7 +3080,7 @@ __name(withFiles, "withFiles");
3106
3080
 
3107
3081
  // src/http-only/index.ts
3108
3082
  export * from "discord-api-types/v10";
3109
- var version = "3.0.0-dev.1754352103-a2ee3932b";
3083
+ var version = "3.0.0-dev.1754524906-698b92c2a";
3110
3084
  export {
3111
3085
  API,
3112
3086
  ApplicationCommandsAPI,