seyfert 2.2.1-dev-13937969432.0 → 2.2.1-dev-14241083990.0

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.
@@ -4,7 +4,7 @@ import { Cache } from '../cache';
4
4
  import type { Command, CommandContext, ContextMenuCommand, ExtendedRC, ExtendedRCLocations, ExtraProps, MenuCommandContext, RegisteredMiddlewares, SubCommand, UsingClient } from '../commands';
5
5
  import { type InferWithPrefix, type MiddlewareContext } from '../commands/applications/shared';
6
6
  import { CommandHandler } from '../commands/handler';
7
- import { ApplicationShorter, ChannelShorter, EmojiShorter, GuildShorter, InteractionShorter, Logger, type MakeRequired, MemberShorter, MessageShorter, ReactionShorter, RoleShorter, TemplateShorter, ThreadShorter, UsersShorter, WebhookShorter } from '../common';
7
+ import { ApplicationShorter, ChannelShorter, EmojiShorter, GuildShorter, InteractionShorter, InvitesShorter, Logger, type MakeRequired, MemberShorter, MessageShorter, ReactionShorter, RoleShorter, TemplateShorter, ThreadShorter, UsersShorter, WebhookShorter } from '../common';
8
8
  import { HandleCommand } from '../commands/handle';
9
9
  import { BanShorter } from '../common/shorters/bans';
10
10
  import { SoundboardShorter } from '../common/shorters/soundboard';
@@ -35,6 +35,7 @@ export declare class BaseClient {
35
35
  interactions: InteractionShorter;
36
36
  voiceStates: VoiceStateShorter;
37
37
  soundboards: SoundboardShorter;
38
+ invites: InvitesShorter;
38
39
  debugger?: Logger;
39
40
  logger: Logger;
40
41
  langs: LangsHandler;
@@ -34,6 +34,7 @@ class BaseClient {
34
34
  interactions = new common_1.InteractionShorter(this);
35
35
  voiceStates = new voiceStates_1.VoiceStateShorter(this);
36
36
  soundboards = new soundboard_1.SoundboardShorter(this);
37
+ invites = new common_1.InvitesShorter(this);
37
38
  debugger;
38
39
  logger = new common_1.Logger({
39
40
  name: '[Seyfert]',
@@ -3,6 +3,7 @@ export * from './it/utils';
3
3
  export * from './it/colors';
4
4
  export { CustomizeLoggerCallback, AssignFilenameCallback, LogLevels, Logger, LoggerOptions } from './it/logger';
5
5
  export * from './it/formatter';
6
+ export * from './shorters/invites';
6
7
  export * from './shorters/channels';
7
8
  export * from './shorters/emojis';
8
9
  export * from './shorters/guilds';
@@ -22,6 +22,8 @@ var logger_1 = require("./it/logger");
22
22
  Object.defineProperty(exports, "LogLevels", { enumerable: true, get: function () { return logger_1.LogLevels; } });
23
23
  Object.defineProperty(exports, "Logger", { enumerable: true, get: function () { return logger_1.Logger; } });
24
24
  __exportStar(require("./it/formatter"), exports);
25
+ // circular lol
26
+ __exportStar(require("./shorters/invites"), exports);
25
27
  //
26
28
  __exportStar(require("./shorters/channels"), exports);
27
29
  __exportStar(require("./shorters/emojis"), exports);