mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-06-08 08:05:03 +00:00
chore: esm imports
This will make merging this into 'next' much easier.
This commit is contained in:
parent
1f0c7a4349
commit
45e3fe2ef0
798 changed files with 3633 additions and 3633 deletions
|
@ -1,78 +1,78 @@
|
|||
import { Message } from "discord.js";
|
||||
import { EventEmitter } from "events";
|
||||
import { guildPlugin } from "knub";
|
||||
import { Queue } from "../../Queue";
|
||||
import { GuildCases } from "../../data/GuildCases";
|
||||
import { onGuildEvent } from "../../data/GuildEvents";
|
||||
import { GuildLogs } from "../../data/GuildLogs";
|
||||
import { GuildMutes } from "../../data/GuildMutes";
|
||||
import { GuildTempbans } from "../../data/GuildTempbans";
|
||||
import { makePublicFn, mapToPublicFn } from "../../pluginUtils";
|
||||
import { MINUTES } from "../../utils";
|
||||
import { CasesPlugin } from "../Cases/CasesPlugin";
|
||||
import { CommonPlugin } from "../Common/CommonPlugin";
|
||||
import { LogsPlugin } from "../Logs/LogsPlugin";
|
||||
import { MutesPlugin } from "../Mutes/MutesPlugin";
|
||||
import { TimeAndDatePlugin } from "../TimeAndDate/TimeAndDatePlugin";
|
||||
import { AddCaseMsgCmd } from "./commands/addcase/AddCaseMsgCmd";
|
||||
import { AddCaseSlashCmd } from "./commands/addcase/AddCaseSlashCmd";
|
||||
import { BanMsgCmd } from "./commands/ban/BanMsgCmd";
|
||||
import { BanSlashCmd } from "./commands/ban/BanSlashCmd";
|
||||
import { CaseMsgCmd } from "./commands/case/CaseMsgCmd";
|
||||
import { CaseSlashCmd } from "./commands/case/CaseSlashCmd";
|
||||
import { CasesModMsgCmd } from "./commands/cases/CasesModMsgCmd";
|
||||
import { CasesSlashCmd } from "./commands/cases/CasesSlashCmd";
|
||||
import { CasesUserMsgCmd } from "./commands/cases/CasesUserMsgCmd";
|
||||
import { DeleteCaseMsgCmd } from "./commands/deletecase/DeleteCaseMsgCmd";
|
||||
import { DeleteCaseSlashCmd } from "./commands/deletecase/DeleteCaseSlashCmd";
|
||||
import { ForceBanMsgCmd } from "./commands/forceban/ForceBanMsgCmd";
|
||||
import { ForceBanSlashCmd } from "./commands/forceban/ForceBanSlashCmd";
|
||||
import { ForceMuteMsgCmd } from "./commands/forcemute/ForceMuteMsgCmd";
|
||||
import { ForceMuteSlashCmd } from "./commands/forcemute/ForceMuteSlashCmd";
|
||||
import { ForceUnmuteMsgCmd } from "./commands/forceunmute/ForceUnmuteMsgCmd";
|
||||
import { ForceUnmuteSlashCmd } from "./commands/forceunmute/ForceUnmuteSlashCmd";
|
||||
import { HideCaseMsgCmd } from "./commands/hidecase/HideCaseMsgCmd";
|
||||
import { HideCaseSlashCmd } from "./commands/hidecase/HideCaseSlashCmd";
|
||||
import { KickMsgCmd } from "./commands/kick/KickMsgCmd";
|
||||
import { KickSlashCmd } from "./commands/kick/KickSlashCmd";
|
||||
import { MassBanMsgCmd } from "./commands/massban/MassBanMsgCmd";
|
||||
import { MassBanSlashCmd } from "./commands/massban/MassBanSlashCmd";
|
||||
import { MassMuteMsgCmd } from "./commands/massmute/MassMuteMsgCmd";
|
||||
import { MassMuteSlashSlashCmd } from "./commands/massmute/MassMuteSlashCmd";
|
||||
import { MassUnbanMsgCmd } from "./commands/massunban/MassUnbanMsgCmd";
|
||||
import { MassUnbanSlashCmd } from "./commands/massunban/MassUnbanSlashCmd";
|
||||
import { MuteMsgCmd } from "./commands/mute/MuteMsgCmd";
|
||||
import { MuteSlashCmd } from "./commands/mute/MuteSlashCmd";
|
||||
import { NoteMsgCmd } from "./commands/note/NoteMsgCmd";
|
||||
import { NoteSlashCmd } from "./commands/note/NoteSlashCmd";
|
||||
import { UnbanMsgCmd } from "./commands/unban/UnbanMsgCmd";
|
||||
import { UnbanSlashCmd } from "./commands/unban/UnbanSlashCmd";
|
||||
import { UnhideCaseMsgCmd } from "./commands/unhidecase/UnhideCaseMsgCmd";
|
||||
import { UnhideCaseSlashCmd } from "./commands/unhidecase/UnhideCaseSlashCmd";
|
||||
import { UnmuteMsgCmd } from "./commands/unmute/UnmuteMsgCmd";
|
||||
import { UnmuteSlashCmd } from "./commands/unmute/UnmuteSlashCmd";
|
||||
import { UpdateMsgCmd } from "./commands/update/UpdateMsgCmd";
|
||||
import { UpdateSlashCmd } from "./commands/update/UpdateSlashCmd";
|
||||
import { WarnMsgCmd } from "./commands/warn/WarnMsgCmd";
|
||||
import { WarnSlashCmd } from "./commands/warn/WarnSlashCmd";
|
||||
import { AuditLogEvents } from "./events/AuditLogEvents";
|
||||
import { CreateBanCaseOnManualBanEvt } from "./events/CreateBanCaseOnManualBanEvt";
|
||||
import { CreateUnbanCaseOnManualUnbanEvt } from "./events/CreateUnbanCaseOnManualUnbanEvt";
|
||||
import { PostAlertOnMemberJoinEvt } from "./events/PostAlertOnMemberJoinEvt";
|
||||
import { banUserId } from "./functions/banUserId";
|
||||
import { clearTempban } from "./functions/clearTempban";
|
||||
import { Queue } from "../../Queue.js";
|
||||
import { GuildCases } from "../../data/GuildCases.js";
|
||||
import { onGuildEvent } from "../../data/GuildEvents.js";
|
||||
import { GuildLogs } from "../../data/GuildLogs.js";
|
||||
import { GuildMutes } from "../../data/GuildMutes.js";
|
||||
import { GuildTempbans } from "../../data/GuildTempbans.js";
|
||||
import { makePublicFn, mapToPublicFn } from "../../pluginUtils.js";
|
||||
import { MINUTES } from "../../utils.js";
|
||||
import { CasesPlugin } from "../Cases/CasesPlugin.js";
|
||||
import { CommonPlugin } from "../Common/CommonPlugin.js";
|
||||
import { LogsPlugin } from "../Logs/LogsPlugin.js";
|
||||
import { MutesPlugin } from "../Mutes/MutesPlugin.js";
|
||||
import { TimeAndDatePlugin } from "../TimeAndDate/TimeAndDatePlugin.js";
|
||||
import { AddCaseMsgCmd } from "./commands/addcase/AddCaseMsgCmd.js";
|
||||
import { AddCaseSlashCmd } from "./commands/addcase/AddCaseSlashCmd.js";
|
||||
import { BanMsgCmd } from "./commands/ban/BanMsgCmd.js";
|
||||
import { BanSlashCmd } from "./commands/ban/BanSlashCmd.js";
|
||||
import { CaseMsgCmd } from "./commands/case/CaseMsgCmd.js";
|
||||
import { CaseSlashCmd } from "./commands/case/CaseSlashCmd.js";
|
||||
import { CasesModMsgCmd } from "./commands/cases/CasesModMsgCmd.js";
|
||||
import { CasesSlashCmd } from "./commands/cases/CasesSlashCmd.js";
|
||||
import { CasesUserMsgCmd } from "./commands/cases/CasesUserMsgCmd.js";
|
||||
import { DeleteCaseMsgCmd } from "./commands/deletecase/DeleteCaseMsgCmd.js";
|
||||
import { DeleteCaseSlashCmd } from "./commands/deletecase/DeleteCaseSlashCmd.js";
|
||||
import { ForceBanMsgCmd } from "./commands/forceban/ForceBanMsgCmd.js";
|
||||
import { ForceBanSlashCmd } from "./commands/forceban/ForceBanSlashCmd.js";
|
||||
import { ForceMuteMsgCmd } from "./commands/forcemute/ForceMuteMsgCmd.js";
|
||||
import { ForceMuteSlashCmd } from "./commands/forcemute/ForceMuteSlashCmd.js";
|
||||
import { ForceUnmuteMsgCmd } from "./commands/forceunmute/ForceUnmuteMsgCmd.js";
|
||||
import { ForceUnmuteSlashCmd } from "./commands/forceunmute/ForceUnmuteSlashCmd.js";
|
||||
import { HideCaseMsgCmd } from "./commands/hidecase/HideCaseMsgCmd.js";
|
||||
import { HideCaseSlashCmd } from "./commands/hidecase/HideCaseSlashCmd.js";
|
||||
import { KickMsgCmd } from "./commands/kick/KickMsgCmd.js";
|
||||
import { KickSlashCmd } from "./commands/kick/KickSlashCmd.js";
|
||||
import { MassBanMsgCmd } from "./commands/massban/MassBanMsgCmd.js";
|
||||
import { MassBanSlashCmd } from "./commands/massban/MassBanSlashCmd.js";
|
||||
import { MassMuteMsgCmd } from "./commands/massmute/MassMuteMsgCmd.js";
|
||||
import { MassMuteSlashSlashCmd } from "./commands/massmute/MassMuteSlashCmd.js";
|
||||
import { MassUnbanMsgCmd } from "./commands/massunban/MassUnbanMsgCmd.js";
|
||||
import { MassUnbanSlashCmd } from "./commands/massunban/MassUnbanSlashCmd.js";
|
||||
import { MuteMsgCmd } from "./commands/mute/MuteMsgCmd.js";
|
||||
import { MuteSlashCmd } from "./commands/mute/MuteSlashCmd.js";
|
||||
import { NoteMsgCmd } from "./commands/note/NoteMsgCmd.js";
|
||||
import { NoteSlashCmd } from "./commands/note/NoteSlashCmd.js";
|
||||
import { UnbanMsgCmd } from "./commands/unban/UnbanMsgCmd.js";
|
||||
import { UnbanSlashCmd } from "./commands/unban/UnbanSlashCmd.js";
|
||||
import { UnhideCaseMsgCmd } from "./commands/unhidecase/UnhideCaseMsgCmd.js";
|
||||
import { UnhideCaseSlashCmd } from "./commands/unhidecase/UnhideCaseSlashCmd.js";
|
||||
import { UnmuteMsgCmd } from "./commands/unmute/UnmuteMsgCmd.js";
|
||||
import { UnmuteSlashCmd } from "./commands/unmute/UnmuteSlashCmd.js";
|
||||
import { UpdateMsgCmd } from "./commands/update/UpdateMsgCmd.js";
|
||||
import { UpdateSlashCmd } from "./commands/update/UpdateSlashCmd.js";
|
||||
import { WarnMsgCmd } from "./commands/warn/WarnMsgCmd.js";
|
||||
import { WarnSlashCmd } from "./commands/warn/WarnSlashCmd.js";
|
||||
import { AuditLogEvents } from "./events/AuditLogEvents.js";
|
||||
import { CreateBanCaseOnManualBanEvt } from "./events/CreateBanCaseOnManualBanEvt.js";
|
||||
import { CreateUnbanCaseOnManualUnbanEvt } from "./events/CreateUnbanCaseOnManualUnbanEvt.js";
|
||||
import { PostAlertOnMemberJoinEvt } from "./events/PostAlertOnMemberJoinEvt.js";
|
||||
import { banUserId } from "./functions/banUserId.js";
|
||||
import { clearTempban } from "./functions/clearTempban.js";
|
||||
import {
|
||||
hasBanPermission,
|
||||
hasMutePermission,
|
||||
hasNotePermission,
|
||||
hasWarnPermission,
|
||||
} from "./functions/hasModActionPerm";
|
||||
import { kickMember } from "./functions/kickMember";
|
||||
import { offModActionsEvent } from "./functions/offModActionsEvent";
|
||||
import { onModActionsEvent } from "./functions/onModActionsEvent";
|
||||
import { updateCase } from "./functions/updateCase";
|
||||
import { warnMember } from "./functions/warnMember";
|
||||
import { AttachmentLinkReactionType, ModActionsPluginType, modActionsSlashGroup, zModActionsConfig } from "./types";
|
||||
} from "./functions/hasModActionPerm.js";
|
||||
import { kickMember } from "./functions/kickMember.js";
|
||||
import { offModActionsEvent } from "./functions/offModActionsEvent.js";
|
||||
import { onModActionsEvent } from "./functions/onModActionsEvent.js";
|
||||
import { updateCase } from "./functions/updateCase.js";
|
||||
import { warnMember } from "./functions/warnMember.js";
|
||||
import { AttachmentLinkReactionType, ModActionsPluginType, modActionsSlashGroup, zModActionsConfig } from "./types.js";
|
||||
|
||||
const defaultOptions = {
|
||||
config: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue