Socket
Socket
Sign inDemoInstall

@notenoughupdates/discord-akairo

Package Overview
Dependencies
0
Maintainers
1
Versions
140
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 9.1.3-dev.1655164475.1c72436 to 9.1.3-dev.1655212954.1d6b00f

2

dist/package.json
{
"name": "@notenoughupdates/discord-akairo",
"version": "9.1.3-dev.1655164475.1c72436",
"version": "9.1.3-dev.1655212954.1d6b00f",
"description": "A highly customizable bot framework for Discord.js.",

@@ -5,0 +5,0 @@ "main": "./dist/src/index.js",

/// <reference types="node" />
import type { BaseGuildVoiceChannel, CategoryChannel, Collection, DirectoryChannel, Emoji, Guild, GuildBasedChannel, GuildChannel, GuildEmoji, GuildMember, Invite, Message, MessageOptions, MessagePayload, NewsChannel, Role, StageChannel, TextChannel, ThreadChannel, User, VoiceChannel } from "discord.js";
import type { CategoryChannel, Collection, DirectoryChannel, Emoji, Guild, GuildBasedChannel, GuildChannel, GuildEmoji, GuildMember, Invite, Message, MessageOptions, MessagePayload, NewsChannel, Role, Snowflake, StageChannel, TextChannel, ThreadChannel, User, VoiceChannel } from "discord.js";
import type { URL } from "url";

@@ -500,29 +500,29 @@ import type { AkairoClient } from "../../AkairoClient.js";

user: User | null;
users: Collection<string, User> | null;
users: Collection<Snowflake, User> | null;
member: GuildMember | null;
members: Collection<string, GuildMember> | null;
members: Collection<Snowflake, GuildMember> | null;
relevant: User | GuildMember | null;
relevants: Collection<string, User> | Collection<string, GuildMember> | null;
channel: GuildBasedChannel | BaseGuildVoiceChannel | null;
channels: Collection<string, GuildBasedChannel | BaseGuildVoiceChannel> | null;
relevants: Collection<Snowflake, User> | Collection<Snowflake, GuildMember> | null;
channel: GuildBasedChannel | null;
channels: Collection<Snowflake, GuildBasedChannel> | null;
textChannel: TextChannel | null;
textChannels: Collection<string, TextChannel> | null;
textChannels: Collection<Snowflake, TextChannel> | null;
voiceChannel: VoiceChannel | null;
voiceChannels: Collection<string, VoiceChannel> | null;
voiceChannels: Collection<Snowflake, VoiceChannel> | null;
categoryChannel: CategoryChannel | null;
categoryChannels: Collection<string, CategoryChannel> | null;
categoryChannels: Collection<Snowflake, CategoryChannel> | null;
newsChannel: NewsChannel | null;
newsChannels: Collection<string, NewsChannel> | null;
newsChannels: Collection<Snowflake, NewsChannel> | null;
stageChannel: StageChannel | null;
stageChannels: Collection<string, StageChannel> | null;
stageChannels: Collection<Snowflake, StageChannel> | null;
threadChannel: ThreadChannel | null;
threadChannels: Collection<string, ThreadChannel> | null;
threadChannels: Collection<Snowflake, ThreadChannel> | null;
directoryChannel: DirectoryChannel | null;
directoryChannels: Collection<string, DirectoryChannel> | null;
directoryChannels: Collection<Snowflake, DirectoryChannel> | null;
role: Role | null;
roles: Collection<string, Role> | null;
roles: Collection<Snowflake, Role> | null;
emoji: Emoji | null;
emojis: Collection<string, Emoji> | null;
emojis: Collection<Snowflake, Emoji> | null;
guild: Guild | null;
guilds: Collection<string, Guild> | null;
guilds: Collection<Snowflake, Guild> | null;
message: Message | null;

@@ -529,0 +529,0 @@ guildMessage: Message | null;

{
"name": "@notenoughupdates/discord-akairo",
"version": "9.1.3-dev.1655164475.1c72436",
"version": "9.1.3-dev.1655212954.1d6b00f",
"description": "A highly customizable bot framework for Discord.js.",

@@ -5,0 +5,0 @@ "main": "./dist/src/index.js",

import type {
BaseGuildVoiceChannel,
CategoryChannel,

@@ -18,2 +17,3 @@ Collection,

Role,
Snowflake,
StageChannel,

@@ -1023,29 +1023,29 @@ TextChannel,

user: User | null;
users: Collection<string, User> | null;
users: Collection<Snowflake, User> | null;
member: GuildMember | null;
members: Collection<string, GuildMember> | null;
members: Collection<Snowflake, GuildMember> | null;
relevant: User | GuildMember | null;
relevants: Collection<string, User> | Collection<string, GuildMember> | null;
channel: GuildBasedChannel | BaseGuildVoiceChannel | null;
channels: Collection<string, GuildBasedChannel | BaseGuildVoiceChannel> | null;
relevants: Collection<Snowflake, User> | Collection<Snowflake, GuildMember> | null;
channel: GuildBasedChannel | null;
channels: Collection<Snowflake, GuildBasedChannel> | null;
textChannel: TextChannel | null;
textChannels: Collection<string, TextChannel> | null;
textChannels: Collection<Snowflake, TextChannel> | null;
voiceChannel: VoiceChannel | null;
voiceChannels: Collection<string, VoiceChannel> | null;
voiceChannels: Collection<Snowflake, VoiceChannel> | null;
categoryChannel: CategoryChannel | null;
categoryChannels: Collection<string, CategoryChannel> | null;
categoryChannels: Collection<Snowflake, CategoryChannel> | null;
newsChannel: NewsChannel | null;
newsChannels: Collection<string, NewsChannel> | null;
newsChannels: Collection<Snowflake, NewsChannel> | null;
stageChannel: StageChannel | null;
stageChannels: Collection<string, StageChannel> | null;
stageChannels: Collection<Snowflake, StageChannel> | null;
threadChannel: ThreadChannel | null;
threadChannels: Collection<string, ThreadChannel> | null;
threadChannels: Collection<Snowflake, ThreadChannel> | null;
directoryChannel: DirectoryChannel | null;
directoryChannels: Collection<string, DirectoryChannel> | null;
directoryChannels: Collection<Snowflake, DirectoryChannel> | null;
role: Role | null;
roles: Collection<string, Role> | null;
roles: Collection<Snowflake, Role> | null;
emoji: Emoji | null;
emojis: Collection<string, Emoji> | null;
emojis: Collection<Snowflake, Emoji> | null;
guild: Guild | null;
guilds: Collection<string, Guild> | null;
guilds: Collection<Snowflake, Guild> | null;
message: Message | null;

@@ -1052,0 +1052,0 @@ guildMessage: Message | null;

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc