@wolfstar/http-framework 3.2.0-next-20260827153802 → 3.2.0-next-20260829140853
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.
- package/README.md +141 -0
- package/dist/esm/index.d.ts +290 -3
- package/dist/esm/index.d.ts.map +1 -1
- package/dist/esm/index.js +425 -41
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -135,6 +135,147 @@ export class UserCommand extends Command {
|
|
|
135
135
|
> **Note**: this is an alternative to the decorators, not a replacement — both approaches share the same underlying
|
|
136
136
|
> registry and can be mixed across different commands in the same project.
|
|
137
137
|
|
|
138
|
+
### Utility decorators
|
|
139
|
+
|
|
140
|
+
Besides the `Register*` decorators, the framework ships a set of utility decorators for configuring pieces and gating
|
|
141
|
+
methods.
|
|
142
|
+
|
|
143
|
+
#### `ApplyOptions`
|
|
144
|
+
|
|
145
|
+
Sets the options of any `Piece` — `Command`, `Listener`, or `InteractionHandler` — without writing a constructor. The
|
|
146
|
+
decorator's values are merged on top of the options the piece is constructed with, so they win on conflicting keys.
|
|
147
|
+
|
|
148
|
+
```typescript
|
|
149
|
+
import { ApplyOptions, Command, RegisterCommand } from '@wolfstar/http-framework';
|
|
150
|
+
|
|
151
|
+
@ApplyOptions<Command.Options>({ name: 'ping', enabled: true })
|
|
152
|
+
@RegisterCommand({ name: 'ping', description: 'A simple ping pong command' })
|
|
153
|
+
export class UserCommand extends Command {
|
|
154
|
+
public override chatInputRun(interaction: Command.ChatInputInteraction) {
|
|
155
|
+
return interaction.reply({ content: 'Pong!' });
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
It also accepts a function, which receives the loader context:
|
|
161
|
+
|
|
162
|
+
```typescript
|
|
163
|
+
@ApplyOptions<Command.Options>(({ name }) => ({ name: name.toLowerCase() }))
|
|
164
|
+
export class UserCommand extends Command {}
|
|
165
|
+
```
|
|
166
|
+
|
|
167
|
+
> **Note**: `ApplyOptions` returns a `Proxy` wrapping the class, so it must be applied above (outside of) any other class
|
|
168
|
+
> decorator that keys metadata by class identity, such as `RegisterCommand` — as in the example above. A decorator
|
|
169
|
+
> applied above `ApplyOptions` would run after it and register against the proxy, but instances constructed from the
|
|
170
|
+
> exported class still resolve `.constructor` to the original, unproxied class, so that metadata could never be found.
|
|
171
|
+
|
|
172
|
+
#### `RequiresGuildContext` / `RequiresDMContext`
|
|
173
|
+
|
|
174
|
+
Restrict a method to interactions received from a guild, or to interactions received outside of one (DMs and
|
|
175
|
+
user-installed app contexts). Both take an optional fallback that receives the same arguments as the decorated method;
|
|
176
|
+
without one, the method is silently skipped and resolves to `undefined`.
|
|
177
|
+
|
|
178
|
+
```typescript
|
|
179
|
+
import { Command, RegisterCommand, RequiresGuildContext } from '@wolfstar/http-framework';
|
|
180
|
+
|
|
181
|
+
@RegisterCommand({ name: 'kick', description: 'Kicks a member' })
|
|
182
|
+
export class UserCommand extends Command {
|
|
183
|
+
@RequiresGuildContext((interaction: Command.ChatInputInteraction) => interaction.reply({ content: 'This command can only be used in a server.' }))
|
|
184
|
+
public override chatInputRun(interaction: Command.ChatInputInteraction) {
|
|
185
|
+
return interaction.reply({ content: `Hello from ${interaction.guildId}!` });
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
```
|
|
189
|
+
|
|
190
|
+
#### `RequiresUserPermissions` / `RequiresClientPermissions`
|
|
191
|
+
|
|
192
|
+
Check the permissions of the invoking user (`member.permissions`) or of the application (`app_permissions`) in the
|
|
193
|
+
channel the interaction was sent from. Permissions are given as `PermissionFlagsBits` values, as flag names, or as any
|
|
194
|
+
nested array of both.
|
|
195
|
+
|
|
196
|
+
```typescript
|
|
197
|
+
import { Command, RegisterCommand, RequiresClientPermissions, RequiresUserPermissions } from '@wolfstar/http-framework';
|
|
198
|
+
import { PermissionFlagsBits } from 'discord-api-types/v10';
|
|
199
|
+
|
|
200
|
+
@RegisterCommand({ name: 'purge', description: 'Deletes messages' })
|
|
201
|
+
export class UserCommand extends Command {
|
|
202
|
+
@RequiresUserPermissions('ManageMessages')
|
|
203
|
+
@RequiresClientPermissions(PermissionFlagsBits.ManageMessages, 'ReadMessageHistory')
|
|
204
|
+
public override chatInputRun(interaction: Command.ChatInputInteraction) {
|
|
205
|
+
return interaction.reply({ content: 'Purging!' });
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
```
|
|
209
|
+
|
|
210
|
+
When the check fails, a `PreconditionError` is thrown, identified by `Identifiers.PreconditionUserPermissions` or
|
|
211
|
+
`Identifiers.PreconditionClientPermissions`, with `context: { missing, missingNames }` describing the missing
|
|
212
|
+
permissions. Errors thrown from a command are emitted as `commandError` (and as `interactionHandlerError` for
|
|
213
|
+
interaction handlers), which is the idiomatic place to turn them into a user-facing reply:
|
|
214
|
+
|
|
215
|
+
```typescript
|
|
216
|
+
import { ApplyOptions, Identifiers, Listener, PreconditionError, type ClientEventCommandContext } from '@wolfstar/http-framework';
|
|
217
|
+
|
|
218
|
+
@ApplyOptions<Listener.Options>({ emitter: 'client', event: 'commandError' })
|
|
219
|
+
export class UserListener extends Listener {
|
|
220
|
+
public run(error: unknown, context: ClientEventCommandContext) {
|
|
221
|
+
if (
|
|
222
|
+
error instanceof PreconditionError &&
|
|
223
|
+
(error.identifier === Identifiers.PreconditionUserPermissions || error.identifier === Identifiers.PreconditionClientPermissions)
|
|
224
|
+
) {
|
|
225
|
+
const { missingNames } = error.context as { missingNames: string[] };
|
|
226
|
+
this.container.logger.warn(`${context.command.name}: missing ${error.precondition}: ${missingNames.join(', ')}`);
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
```
|
|
231
|
+
|
|
232
|
+
Notes on the semantics:
|
|
233
|
+
|
|
234
|
+
- Members with `Administrator` implicitly satisfy every check.
|
|
235
|
+
- `RequiresUserPermissions` passes for interactions received outside of a guild, since there are no guild permissions to
|
|
236
|
+
check. Combine it with `RequiresGuildContext` when the method must be guild-only.
|
|
237
|
+
- `RequiresClientPermissions` passes when `app_permissions` is absent from the payload, since there is nothing to check
|
|
238
|
+
against.
|
|
239
|
+
|
|
240
|
+
#### `Enumerable` / `EnumerableMethod`
|
|
241
|
+
|
|
242
|
+
Control whether a field or a method shows up in `Object.keys`, `JSON.stringify`, and console output.
|
|
243
|
+
|
|
244
|
+
```typescript
|
|
245
|
+
import { Command, Enumerable } from '@wolfstar/http-framework';
|
|
246
|
+
|
|
247
|
+
export class UserCommand extends Command {
|
|
248
|
+
@Enumerable(false)
|
|
249
|
+
declare public cache: Map<string, string>;
|
|
250
|
+
|
|
251
|
+
public constructor(context: Command.LoaderContext, options: Command.Options) {
|
|
252
|
+
super(context, options);
|
|
253
|
+
this.cache = new Map();
|
|
254
|
+
}
|
|
255
|
+
}
|
|
256
|
+
```
|
|
257
|
+
|
|
258
|
+
> **Note**: `Enumerable` installs a setter on the prototype, which is bypassed by the `Object.defineProperty` call that
|
|
259
|
+
> `useDefineForClassFields` (enabled by `@sapphire/ts-config`, and the default from `ES2022` onwards) emits for class
|
|
260
|
+
> fields. Mark the field as `declare` so no field definition is emitted, and assign it in the constructor.
|
|
261
|
+
|
|
262
|
+
#### Building your own decorators
|
|
263
|
+
|
|
264
|
+
`createClassDecorator`, `createMethodDecorator`, `createProxy`, and `createFunctionPrecondition` are the primitives the
|
|
265
|
+
decorators above — and the `Register*` ones — are built on, and are exported so you can build your own.
|
|
266
|
+
|
|
267
|
+
```typescript
|
|
268
|
+
import { Command, createFunctionPrecondition } from '@wolfstar/http-framework';
|
|
269
|
+
|
|
270
|
+
export const RequiresOwner = createFunctionPrecondition(
|
|
271
|
+
(interaction: Command.ChatInputInteraction) => interaction.user.id === process.env.OWNER_ID,
|
|
272
|
+
(interaction: Command.ChatInputInteraction) => interaction.reply({ content: 'Owner only.' })
|
|
273
|
+
);
|
|
274
|
+
```
|
|
275
|
+
|
|
276
|
+
> **Note**: `createFunctionPrecondition` replaces the decorated method with an `async` one, so a decorated method always
|
|
277
|
+
> returns a `Promise`, even when both the precondition and the method are synchronous.
|
|
278
|
+
|
|
138
279
|
### Client
|
|
139
280
|
|
|
140
281
|
The `Client` class contains the HTTP server, powered by [`node:http`], it also registers a handler that processes whether or not the HTTP request comes from Discord and processes the information accordingly, handling the heavyweight in the background.
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { AliasPiece, AliasPieceOptions, AliasStore, Container, LoaderError, LoaderPieceContext, LoaderStrategy, MissingExportsError, Piece, Piece as Piece$1, PieceContext, PieceOptions, Store, Store as Store$1, StoreOptions, StoreRegistry, StoreRegistryEntries, container } from "@sapphire/pieces";
|
|
1
|
+
import { AliasPiece, AliasPieceOptions, AliasStore, Container, LoaderError, LoaderPieceContext, LoaderPieceContext as LoaderPieceContext$1, LoaderStrategy, MissingExportsError, Piece, Piece as Piece$1, PieceContext, PieceOptions, PieceOptions as PieceOptions$1, Store, Store as Store$1, StoreOptions, StoreRegistry, StoreRegistryEntries, container } from "@sapphire/pieces";
|
|
2
2
|
import { DiscordAPIError, HTTPError, REST, RESTOptions, RawFile, RequestData } from "@discordjs/rest";
|
|
3
3
|
import { Awaitable, NonNullObject } from "@sapphire/utilities";
|
|
4
4
|
import { AsyncEventEmitter } from "@vladfrangu/async_event_emitter";
|
|
5
|
-
import { APIApplicationCommandAutocompleteInteraction, APIApplicationCommandAutocompleteResponse, APIApplicationCommandInteraction, APIApplicationCommandInteractionDataBasicOption, APIApplicationCommandInteractionDataOption, APIApplicationCommandInteractionDataSubcommandGroupOption, APIApplicationCommandInteractionDataSubcommandOption, APIApplicationCommandSubcommandGroupOption, APIApplicationCommandSubcommandOption, APIAttachment, APIBaseInteraction, APIChannel, APIChatInputApplicationCommandInteraction, APIChatInputApplicationCommandInteractionData, APIContextMenuInteractionData, APIGuild, APIInteraction, APIInteractionDataResolved, APIInteractionDataResolvedChannel, APIInteractionDataResolvedGuildMember, APIInteractionResponseChannelMessageWithSource, APIInteractionResponseDeferredChannelMessageWithSource, APIInteractionResponseDeferredMessageUpdate, APIInteractionResponseUpdateMessage, APIMessage, APIMessageApplicationCommandInteraction, APIMessageApplicationCommandInteractionData, APIMessageChannelSelectInteractionData, APIMessageComponentButtonInteraction, APIMessageComponentInteraction, APIMessageComponentSelectMenuInteraction, APIMessageMentionableSelectInteractionData, APIMessageRoleSelectInteractionData, APIMessageStringSelectInteractionData, APIMessageUserSelectInteractionData, APIModalInteractionResponse, APIModalSubmitInteraction, APIPingInteraction, APIPrimaryEntryPointCommandInteraction, APIRole, APIUser, APIUserApplicationCommandInteraction, APIUserApplicationCommandInteractionData, ApplicationCommandOptionType, ApplicationCommandType, InteractionType, RESTPatchAPIInteractionOriginalResponseJSONBody, RESTPatchAPIInteractionOriginalResponseResult, RESTPostAPIApplicationCommandsJSONBody, RESTPostAPIChatInputApplicationCommandsJSONBody, RESTPostAPIContextMenuApplicationCommandsJSONBody, RESTPostAPIInteractionFollowupJSONBody, RESTPostAPIPrimaryEntryPointApplicationCommandJSONBody, RESTPutAPIApplicationCommandsResult, RESTPutAPIApplicationGuildCommandsResult, Snowflake } from "discord-api-types/v10";
|
|
5
|
+
import { APIApplicationCommandAutocompleteInteraction, APIApplicationCommandAutocompleteResponse, APIApplicationCommandInteraction, APIApplicationCommandInteractionDataBasicOption, APIApplicationCommandInteractionDataOption, APIApplicationCommandInteractionDataSubcommandGroupOption, APIApplicationCommandInteractionDataSubcommandOption, APIApplicationCommandSubcommandGroupOption, APIApplicationCommandSubcommandOption, APIAttachment, APIBaseInteraction, APIChannel, APIChatInputApplicationCommandInteraction, APIChatInputApplicationCommandInteractionData, APIContextMenuInteractionData, APIGuild, APIInteraction, APIInteractionDataResolved, APIInteractionDataResolvedChannel, APIInteractionDataResolvedGuildMember, APIInteractionResponseChannelMessageWithSource, APIInteractionResponseDeferredChannelMessageWithSource, APIInteractionResponseDeferredMessageUpdate, APIInteractionResponseUpdateMessage, APIMessage, APIMessageApplicationCommandInteraction, APIMessageApplicationCommandInteractionData, APIMessageChannelSelectInteractionData, APIMessageComponentButtonInteraction, APIMessageComponentInteraction, APIMessageComponentSelectMenuInteraction, APIMessageMentionableSelectInteractionData, APIMessageRoleSelectInteractionData, APIMessageStringSelectInteractionData, APIMessageUserSelectInteractionData, APIModalInteractionResponse, APIModalSubmitInteraction, APIPingInteraction, APIPrimaryEntryPointCommandInteraction, APIRole, APIUser, APIUserApplicationCommandInteraction, APIUserApplicationCommandInteractionData, ApplicationCommandOptionType, ApplicationCommandType, InteractionType, PermissionFlagsBits, RESTPatchAPIInteractionOriginalResponseJSONBody, RESTPatchAPIInteractionOriginalResponseResult, RESTPostAPIApplicationCommandsJSONBody, RESTPostAPIChatInputApplicationCommandsJSONBody, RESTPostAPIContextMenuApplicationCommandsJSONBody, RESTPostAPIInteractionFollowupJSONBody, RESTPostAPIPrimaryEntryPointApplicationCommandJSONBody, RESTPutAPIApplicationCommandsResult, RESTPutAPIApplicationGuildCommandsResult, Snowflake } from "discord-api-types/v10";
|
|
6
6
|
import { IncomingMessage, Server, ServerOptions, ServerResponse } from "node:http";
|
|
7
7
|
import { Result } from "@sapphire/result";
|
|
8
8
|
import { Collection } from "@discordjs/collection";
|
|
@@ -2353,6 +2353,293 @@ declare class StringIdParser implements IIdParser {
|
|
|
2353
2353
|
run(customId: string): IdParserRead | null;
|
|
2354
2354
|
}
|
|
2355
2355
|
//#endregion
|
|
2356
|
+
//#region src/lib/decorators/ApplyOptions.d.ts
|
|
2357
|
+
/**
|
|
2358
|
+
* The constructor signature shared by every `Piece` of `@wolfstar/http-framework`, such as `Command`, `Listener`, and
|
|
2359
|
+
* `InteractionHandler`.
|
|
2360
|
+
*/
|
|
2361
|
+
type PieceConstructor<Options extends PieceOptions$1 = PieceOptions$1> = new (context: LoaderPieceContext$1, options?: Options) => unknown;
|
|
2362
|
+
/**
|
|
2363
|
+
* Decorator that sets the options of a `Piece`, such as a `Command`, a `Listener`, or an `InteractionHandler`.
|
|
2364
|
+
*
|
|
2365
|
+
* @remarks The options are merged on top of the ones the piece was constructed with, so a piece that also passes
|
|
2366
|
+
* options through `super(context, options)` will have the decorator's values win on conflicting keys.
|
|
2367
|
+
* @remarks Apply this decorator above (outside of) any other class decorator that keys metadata by class identity,
|
|
2368
|
+
* such as {@linkcode RegisterCommand} — as in the example below. This decorator returns a `Proxy` wrapping the class,
|
|
2369
|
+
* so a decorator applied above it (running after it, and therefore registering against the proxy) would register
|
|
2370
|
+
* metadata that instances constructed from the exported class — whose `.constructor` still resolves to the original,
|
|
2371
|
+
* unproxied class — can never be looked up by.
|
|
2372
|
+
* @param optionsOrFn The options to pass to the piece's constructor, or a function that builds them from the loader
|
|
2373
|
+
* context.
|
|
2374
|
+
* @returns A class decorator.
|
|
2375
|
+
* @example
|
|
2376
|
+
* ```typescript
|
|
2377
|
+
* import { ApplyOptions, Command, RegisterCommand } from '@wolfstar/http-framework';
|
|
2378
|
+
*
|
|
2379
|
+
* (at)ApplyOptions<Command.Options>({ name: 'ping', enabled: true })
|
|
2380
|
+
* (at)RegisterCommand({ name: 'ping', description: 'A simple ping pong command' })
|
|
2381
|
+
* export class UserCommand extends Command {
|
|
2382
|
+
* public override chatInputRun(interaction: Command.ChatInputInteraction) {
|
|
2383
|
+
* return interaction.reply({ content: 'Pong!' });
|
|
2384
|
+
* }
|
|
2385
|
+
* }
|
|
2386
|
+
* ```
|
|
2387
|
+
* @example
|
|
2388
|
+
* ```typescript
|
|
2389
|
+
* (at)ApplyOptions<Command.Options>(({ name }) => ({ name: name.toLowerCase() }))
|
|
2390
|
+
* export class UserCommand extends Command {}
|
|
2391
|
+
* ```
|
|
2392
|
+
*/
|
|
2393
|
+
declare function ApplyOptions<Options extends PieceOptions$1 = PieceOptions$1>(optionsOrFn: Options | ((context: LoaderPieceContext$1) => Options)): ClassDecorator;
|
|
2394
|
+
//#endregion
|
|
2395
|
+
//#region src/lib/decorators/Enumerable.d.ts
|
|
2396
|
+
/**
|
|
2397
|
+
* Decorator that sets the `enumerable` property of a class field to the given value.
|
|
2398
|
+
*
|
|
2399
|
+
* @remarks The decorator installs a setter on the prototype, which is bypassed by the `Object.defineProperty` call
|
|
2400
|
+
* that `useDefineForClassFields` (enabled by `@sapphire/ts-config`, and the default from `ES2022` onwards) emits for
|
|
2401
|
+
* class fields. Mark the field as `declare` so no field definition is emitted, and assign it in the constructor.
|
|
2402
|
+
* @param value Whether the property should be enumerable or not.
|
|
2403
|
+
* @returns A property decorator.
|
|
2404
|
+
* @example
|
|
2405
|
+
* ```typescript
|
|
2406
|
+
* import { Command, Enumerable } from '@wolfstar/http-framework';
|
|
2407
|
+
*
|
|
2408
|
+
* export class UserCommand extends Command {
|
|
2409
|
+
* (at)Enumerable(false)
|
|
2410
|
+
* declare public cache: Map<string, string>;
|
|
2411
|
+
*
|
|
2412
|
+
* public constructor(context: Command.LoaderContext, options: Command.Options) {
|
|
2413
|
+
* super(context, options);
|
|
2414
|
+
* this.cache = new Map();
|
|
2415
|
+
* }
|
|
2416
|
+
* }
|
|
2417
|
+
* ```
|
|
2418
|
+
*/
|
|
2419
|
+
declare function Enumerable(value: boolean): (target: unknown, key: string) => void;
|
|
2420
|
+
/**
|
|
2421
|
+
* Decorator that sets the `enumerable` property of a class method to the given value.
|
|
2422
|
+
*
|
|
2423
|
+
* @param value Whether the method should be enumerable or not.
|
|
2424
|
+
* @returns A method decorator.
|
|
2425
|
+
* @example
|
|
2426
|
+
* ```typescript
|
|
2427
|
+
* import { Command, EnumerableMethod } from '@wolfstar/http-framework';
|
|
2428
|
+
*
|
|
2429
|
+
* export class UserCommand extends Command {
|
|
2430
|
+
* (at)EnumerableMethod(true)
|
|
2431
|
+
* public getCacheKey(id: string) {
|
|
2432
|
+
* return `user:${id}`;
|
|
2433
|
+
* }
|
|
2434
|
+
* }
|
|
2435
|
+
* ```
|
|
2436
|
+
*/
|
|
2437
|
+
declare function EnumerableMethod(value: boolean): (_target: unknown, _key: string, descriptor: PropertyDescriptor) => void;
|
|
2438
|
+
//#endregion
|
|
2439
|
+
//#region src/lib/decorators/RequiresContext.d.ts
|
|
2440
|
+
/**
|
|
2441
|
+
* The fallback invoked when a context precondition is not met. It receives the same arguments as the decorated method.
|
|
2442
|
+
*/
|
|
2443
|
+
type ContextFallback = (...args: any[]) => unknown;
|
|
2444
|
+
/**
|
|
2445
|
+
* Decorator that only runs the decorated method when the interaction was received from a guild.
|
|
2446
|
+
*
|
|
2447
|
+
* @param fallback The fallback to run when the interaction did not come from a guild. Defaults to a no-op, which
|
|
2448
|
+
* silently skips the method.
|
|
2449
|
+
* @returns A method decorator.
|
|
2450
|
+
* @example
|
|
2451
|
+
* ```typescript
|
|
2452
|
+
* import { Command, RegisterCommand, RequiresGuildContext } from '@wolfstar/http-framework';
|
|
2453
|
+
*
|
|
2454
|
+
* (at)RegisterCommand({ name: 'kick', description: 'Kicks a member' })
|
|
2455
|
+
* export class UserCommand extends Command {
|
|
2456
|
+
* (at)RequiresGuildContext((interaction: Command.ChatInputInteraction) =>
|
|
2457
|
+
* interaction.reply({ content: 'This command can only be used in a server.' })
|
|
2458
|
+
* )
|
|
2459
|
+
* public override chatInputRun(interaction: Command.ChatInputInteraction) {
|
|
2460
|
+
* return interaction.reply({ content: `Hello from ${interaction.guildId}!` });
|
|
2461
|
+
* }
|
|
2462
|
+
* }
|
|
2463
|
+
* ```
|
|
2464
|
+
*/
|
|
2465
|
+
declare function RequiresGuildContext(fallback?: ContextFallback): MethodDecorator;
|
|
2466
|
+
/**
|
|
2467
|
+
* Decorator that only runs the decorated method when the interaction was **not** received from a guild, that is, from a
|
|
2468
|
+
* DM or from a user-installed app context.
|
|
2469
|
+
*
|
|
2470
|
+
* @param fallback The fallback to run when the interaction came from a guild. Defaults to a no-op, which silently skips
|
|
2471
|
+
* the method.
|
|
2472
|
+
* @returns A method decorator.
|
|
2473
|
+
* @example
|
|
2474
|
+
* ```typescript
|
|
2475
|
+
* import { Command, RegisterCommand, RequiresDMContext } from '@wolfstar/http-framework';
|
|
2476
|
+
*
|
|
2477
|
+
* (at)RegisterCommand({ name: 'private', description: 'Only usable outside of servers' })
|
|
2478
|
+
* export class UserCommand extends Command {
|
|
2479
|
+
* (at)RequiresDMContext((interaction: Command.ChatInputInteraction) =>
|
|
2480
|
+
* interaction.reply({ content: 'This command cannot be used in a server.' })
|
|
2481
|
+
* )
|
|
2482
|
+
* public override chatInputRun(interaction: Command.ChatInputInteraction) {
|
|
2483
|
+
* return interaction.reply({ content: 'Hello!' });
|
|
2484
|
+
* }
|
|
2485
|
+
* }
|
|
2486
|
+
* ```
|
|
2487
|
+
*/
|
|
2488
|
+
declare function RequiresDMContext(fallback?: ContextFallback): MethodDecorator;
|
|
2489
|
+
//#endregion
|
|
2490
|
+
//#region src/lib/utils/permissions.d.ts
|
|
2491
|
+
/**
|
|
2492
|
+
* The name of a Discord permission flag, as defined by {@linkcode PermissionFlagsBits}.
|
|
2493
|
+
*/
|
|
2494
|
+
type PermissionString = keyof typeof PermissionFlagsBits;
|
|
2495
|
+
/**
|
|
2496
|
+
* Anything that can be resolved into a permission bitfield:
|
|
2497
|
+
*
|
|
2498
|
+
* - A `bigint`, such as the values of {@linkcode PermissionFlagsBits}.
|
|
2499
|
+
* - A {@linkcode PermissionString}, such as `'BanMembers'`.
|
|
2500
|
+
* - An arbitrarily nested (readonly) array of the above.
|
|
2501
|
+
*/
|
|
2502
|
+
type PermissionResolvable = bigint | PermissionString | readonly PermissionResolvable[];
|
|
2503
|
+
/**
|
|
2504
|
+
* Resolves any {@linkcode PermissionResolvable} into a single permission bitfield.
|
|
2505
|
+
*
|
|
2506
|
+
* @param resolvable The value to resolve.
|
|
2507
|
+
* @returns The resolved bitfield.
|
|
2508
|
+
* @throws `TypeError` If a string was given that is not a known permission flag.
|
|
2509
|
+
* @example
|
|
2510
|
+
* ```typescript
|
|
2511
|
+
* resolvePermissions(['BanMembers', PermissionFlagsBits.KickMembers]);
|
|
2512
|
+
* // 6n
|
|
2513
|
+
* ```
|
|
2514
|
+
*/
|
|
2515
|
+
declare function resolvePermissions(resolvable: PermissionResolvable): bigint;
|
|
2516
|
+
/**
|
|
2517
|
+
* Computes the permissions from `required` that are missing in `granted`.
|
|
2518
|
+
*
|
|
2519
|
+
* @remarks Members with the `Administrator` permission implicitly have every permission, so this returns `0n` when
|
|
2520
|
+
* `granted` contains it.
|
|
2521
|
+
* @param granted The bitfield of the permissions that were granted.
|
|
2522
|
+
* @param required The bitfield of the permissions that are required.
|
|
2523
|
+
* @returns The bitfield of the missing permissions, `0n` if none are missing.
|
|
2524
|
+
*/
|
|
2525
|
+
declare function getMissingPermissions(granted: bigint, required: bigint): bigint;
|
|
2526
|
+
/**
|
|
2527
|
+
* Converts a permission bitfield into the list of the flag names it contains.
|
|
2528
|
+
*
|
|
2529
|
+
* @param bits The bitfield to convert.
|
|
2530
|
+
* @returns The names of the permissions contained in the bitfield.
|
|
2531
|
+
*/
|
|
2532
|
+
declare function toPermissionNames(bits: bigint): PermissionString[];
|
|
2533
|
+
//#endregion
|
|
2534
|
+
//#region src/lib/decorators/RequiresPermissions.d.ts
|
|
2535
|
+
/**
|
|
2536
|
+
* Decorator that only runs the decorated method when the application has all of the given permissions in the channel
|
|
2537
|
+
* the interaction was sent from, as reported by the interaction's `app_permissions` field.
|
|
2538
|
+
*
|
|
2539
|
+
* @remarks When the fallback is omitted, a {@linkcode PreconditionError} identified by
|
|
2540
|
+
* {@linkcode Identifiers.PreconditionClientPermissions} is thrown, which the client emits as `commandError` (or
|
|
2541
|
+
* `interactionHandlerError`) for a `Listener` to turn into a user-facing reply.
|
|
2542
|
+
* @param permissions The permissions the application must have.
|
|
2543
|
+
* @returns A method decorator.
|
|
2544
|
+
* @example
|
|
2545
|
+
* ```typescript
|
|
2546
|
+
* import { Command, RegisterCommand, RequiresClientPermissions } from '@wolfstar/http-framework';
|
|
2547
|
+
*
|
|
2548
|
+
* (at)RegisterCommand({ name: 'purge', description: 'Deletes messages' })
|
|
2549
|
+
* export class UserCommand extends Command {
|
|
2550
|
+
* (at)RequiresClientPermissions('ManageMessages')
|
|
2551
|
+
* public override chatInputRun(interaction: Command.ChatInputInteraction) {
|
|
2552
|
+
* return interaction.reply({ content: 'Purging!' });
|
|
2553
|
+
* }
|
|
2554
|
+
* }
|
|
2555
|
+
* ```
|
|
2556
|
+
*/
|
|
2557
|
+
declare function RequiresClientPermissions(...permissions: PermissionResolvable[]): MethodDecorator;
|
|
2558
|
+
/**
|
|
2559
|
+
* Decorator that only runs the decorated method when the invoking user has all of the given permissions in the channel
|
|
2560
|
+
* the interaction was sent from.
|
|
2561
|
+
*
|
|
2562
|
+
* @remarks Interactions received outside of a guild carry no member permissions, so the check passes for them. Pair
|
|
2563
|
+
* this decorator with {@linkcode RequiresGuildContext} when the method must also be guild-only.
|
|
2564
|
+
* @remarks When the fallback is omitted, a {@linkcode PreconditionError} identified by
|
|
2565
|
+
* {@linkcode Identifiers.PreconditionUserPermissions} is thrown, which the client emits as `commandError` (or
|
|
2566
|
+
* `interactionHandlerError`) for a `Listener` to turn into a user-facing reply.
|
|
2567
|
+
* @param permissions The permissions the invoking user must have.
|
|
2568
|
+
* @returns A method decorator.
|
|
2569
|
+
* @example
|
|
2570
|
+
* ```typescript
|
|
2571
|
+
* import { Command, RegisterCommand, RequiresUserPermissions } from '@wolfstar/http-framework';
|
|
2572
|
+
*
|
|
2573
|
+
* (at)RegisterCommand({ name: 'ban', description: 'Bans a member' })
|
|
2574
|
+
* export class UserCommand extends Command {
|
|
2575
|
+
* (at)RequiresUserPermissions('BanMembers')
|
|
2576
|
+
* public override chatInputRun(interaction: Command.ChatInputInteraction) {
|
|
2577
|
+
* return interaction.reply({ content: 'Banned!' });
|
|
2578
|
+
* }
|
|
2579
|
+
* }
|
|
2580
|
+
* ```
|
|
2581
|
+
*/
|
|
2582
|
+
declare function RequiresUserPermissions(...permissions: PermissionResolvable[]): MethodDecorator;
|
|
2583
|
+
//#endregion
|
|
2584
|
+
//#region src/lib/decorators/utils.d.ts
|
|
2585
|
+
/**
|
|
2586
|
+
* Utility to make a method decorator from a function.
|
|
2587
|
+
*
|
|
2588
|
+
* @remarks The decorator is returned with the signature it was given, rather than widened to `MethodDecorator`, so a
|
|
2589
|
+
* decorator built on top of this keeps whatever constraint it declares on its target.
|
|
2590
|
+
* @param fn The method to decorate.
|
|
2591
|
+
* @returns The decorator.
|
|
2592
|
+
* @example
|
|
2593
|
+
* ```typescript
|
|
2594
|
+
* // Enumerable function that will not append the property to the prototype:
|
|
2595
|
+
* function enumerableMethod(value: boolean) {
|
|
2596
|
+
* return createMethodDecorator((_target: unknown, _propertyKey: string, descriptor: PropertyDescriptor) => {
|
|
2597
|
+
* descriptor.enumerable = value;
|
|
2598
|
+
* });
|
|
2599
|
+
* }
|
|
2600
|
+
* ```
|
|
2601
|
+
*/
|
|
2602
|
+
declare function createMethodDecorator<TFunction extends (...args: any[]) => unknown>(fn: TFunction): TFunction;
|
|
2603
|
+
/**
|
|
2604
|
+
* Utility to make a class decorator from a function.
|
|
2605
|
+
*
|
|
2606
|
+
* @remarks The decorator is returned with the signature it was given, rather than widened to `ClassDecorator`, so a
|
|
2607
|
+
* decorator built on top of this keeps whatever constraint it declares on its target. This is what lets
|
|
2608
|
+
* {@linkcode RegisterCommand} and its siblings reject a target that is not a `Command`.
|
|
2609
|
+
* @param fn The class to decorate.
|
|
2610
|
+
* @returns The decorator.
|
|
2611
|
+
* @see {@linkcode ApplyOptions}
|
|
2612
|
+
*/
|
|
2613
|
+
declare function createClassDecorator<TFunction extends (...args: any[]) => unknown>(fn: TFunction): TFunction;
|
|
2614
|
+
/**
|
|
2615
|
+
* Creates a new proxy to efficiently add properties to a class without creating subclasses.
|
|
2616
|
+
*
|
|
2617
|
+
* @param target The constructor of the class to modify.
|
|
2618
|
+
* @param handler The handler function to modify the constructor behavior for the target.
|
|
2619
|
+
* @returns The proxy.
|
|
2620
|
+
*/
|
|
2621
|
+
declare function createProxy<T extends object>(target: T, handler: Omit<ProxyHandler<T>, 'get'>): T;
|
|
2622
|
+
/**
|
|
2623
|
+
* Utility to make a method decorator with lighter syntax and inferred types.
|
|
2624
|
+
*
|
|
2625
|
+
* @remarks The decorated method is replaced by an `async` one, so it always returns a `Promise`, even when both the
|
|
2626
|
+
* precondition and the original method are synchronous.
|
|
2627
|
+
* @param precondition The predicate to run before the decorated method. It receives the same arguments as the method
|
|
2628
|
+
* and is called with the same `this`.
|
|
2629
|
+
* @param fallback The fallback to run when the precondition is not met. Defaults to a no-op returning `undefined`.
|
|
2630
|
+
* @returns The decorator.
|
|
2631
|
+
* @example
|
|
2632
|
+
* ```typescript
|
|
2633
|
+
* import { Command, RegisterCommand, createFunctionPrecondition } from '@wolfstar/http-framework';
|
|
2634
|
+
*
|
|
2635
|
+
* const RequiresOwner = createFunctionPrecondition(
|
|
2636
|
+
* (interaction: Command.ChatInputInteraction) => interaction.user.id === process.env.OWNER_ID,
|
|
2637
|
+
* (interaction: Command.ChatInputInteraction) => interaction.reply({ content: 'Owner only.' })
|
|
2638
|
+
* );
|
|
2639
|
+
* ```
|
|
2640
|
+
*/
|
|
2641
|
+
declare function createFunctionPrecondition(precondition: (...args: any[]) => boolean | Promise<boolean>, fallback?: (...args: any[]) => unknown): MethodDecorator;
|
|
2642
|
+
//#endregion
|
|
2356
2643
|
//#region src/lib/errors/UserError.d.ts
|
|
2357
2644
|
/**
|
|
2358
2645
|
* The UserError class to be thrown and emitted by the pieces of the framework.
|
|
@@ -2671,5 +2958,5 @@ declare class ListenerLoaderStrategy extends LoaderStrategy<Listener> {
|
|
|
2671
2958
|
onUnload(_store: ListenerStore, piece: Listener): void;
|
|
2672
2959
|
}
|
|
2673
2960
|
//#endregion
|
|
2674
|
-
export { type AbortError, type AddFiles, AliasPiece, type AliasPieceOptions, AliasStore, ApplicationCommandRegistry, ApplicationCommandRegistryEntry, ArgumentError, ArgumentTypes, type AsyncDiscordResult, AsyncPluginHooks, AutocompleteInteraction$1 as AutocompleteInteraction, AutocompleteInteractionArguments, AutocompleteResponseData, AutocompleteResponseOptions, BaseCommandInteractionType, BaseInteraction, BaseInteractionType, ChatInputCommandInteraction, ChatInputRouterError, ChatInputRouterErrors, Client, ClientEventAutocompleteContext, ClientEventCommandContext, ClientEventInteractionHandlerContext, ClientEvents, ClientOptions, Command, CommandInteraction, CommandLoaderStrategy, CommandRegistry, CommandRouter, CommandStore, CommandStoreRouter, DeferResponseData, DeferResponseOptions, DeferUpdateResult, type DiscordError, type DiscordResult, ExtractedOptions, FollowupOptions, HttpCodes, HttpFrameworkPluginAsyncHook, HttpFrameworkPluginHook, HttpFrameworkPluginHookEntry, IIdParser, IdParserRead, Identifiers, InGuild, Interaction$1 as Interaction, InteractionArguments, InteractionHandler, InteractionHandlerStore, Interactions, ListenOptions, Listener, ListenerLoaderStrategy, ListenerStore, LoadOptions, LoaderError, type LoaderPieceContext, MakeArguments, MappedClientEvents, Message, MessageComponentButtonInteraction, MessageComponentChannelSelectInteraction, MessageComponentInteraction, MessageComponentInteractionType, MessageComponentMentionableSelectInteraction, MessageComponentRoleSelectInteraction, MessageComponentStringSelectInteraction as MessageComponentSelectMenuInteraction, MessageComponentStringSelectInteraction, MessageComponentUserSelectInteraction, MessageContextMenuCommandInteraction, MessageResponseData, MessageResponseOptions, MissingExportsError, ModalResponseData, ModalResponseOptions, ModalSubmitInteraction, type NonPingInteraction, PartialMessage, Piece, type PieceContext, type PieceOptions, Plugin, PluginHook, PluginManager, PreconditionError, RegisterCommand, RegisterMessageCommand, RegisterSubcommand, RegisterSubcommandGroup, RegisterUserCommand, RequestAuthPrefix, RestrictGuildIds, Store, type StoreOptions, StoreRegistry, type StoreRegistryEntries, StringIdParser, SyncPluginHooks, TransformedArguments, UpdateData, UpdateOptions, UpdateResponseOptions, UpdateResponseResult, UserContextMenuCommandInteraction, UserError, applicationCommandRegistry, container, extractTopLevelOptions, makeInteraction, postInitialization, postListen, preGenericsInitialization, preInitialization, preLoad, restrictedGuildIdRegistry, transformAutocompleteInteraction, transformInteraction, transformMessageInteraction, transformUserInteraction };
|
|
2961
|
+
export { type AbortError, type AddFiles, AliasPiece, type AliasPieceOptions, AliasStore, ApplicationCommandRegistry, ApplicationCommandRegistryEntry, ApplyOptions, ArgumentError, ArgumentTypes, type AsyncDiscordResult, AsyncPluginHooks, AutocompleteInteraction$1 as AutocompleteInteraction, AutocompleteInteractionArguments, AutocompleteResponseData, AutocompleteResponseOptions, BaseCommandInteractionType, BaseInteraction, BaseInteractionType, ChatInputCommandInteraction, ChatInputRouterError, ChatInputRouterErrors, Client, ClientEventAutocompleteContext, ClientEventCommandContext, ClientEventInteractionHandlerContext, ClientEvents, ClientOptions, Command, CommandInteraction, CommandLoaderStrategy, CommandRegistry, CommandRouter, CommandStore, CommandStoreRouter, ContextFallback, DeferResponseData, DeferResponseOptions, DeferUpdateResult, type DiscordError, type DiscordResult, Enumerable, EnumerableMethod, ExtractedOptions, FollowupOptions, HttpCodes, HttpFrameworkPluginAsyncHook, HttpFrameworkPluginHook, HttpFrameworkPluginHookEntry, IIdParser, IdParserRead, Identifiers, InGuild, Interaction$1 as Interaction, InteractionArguments, InteractionHandler, InteractionHandlerStore, Interactions, ListenOptions, Listener, ListenerLoaderStrategy, ListenerStore, LoadOptions, LoaderError, type LoaderPieceContext, MakeArguments, MappedClientEvents, Message, MessageComponentButtonInteraction, MessageComponentChannelSelectInteraction, MessageComponentInteraction, MessageComponentInteractionType, MessageComponentMentionableSelectInteraction, MessageComponentRoleSelectInteraction, MessageComponentStringSelectInteraction as MessageComponentSelectMenuInteraction, MessageComponentStringSelectInteraction, MessageComponentUserSelectInteraction, MessageContextMenuCommandInteraction, MessageResponseData, MessageResponseOptions, MissingExportsError, ModalResponseData, ModalResponseOptions, ModalSubmitInteraction, type NonPingInteraction, PartialMessage, PermissionResolvable, PermissionString, Piece, PieceConstructor, type PieceContext, type PieceOptions, Plugin, PluginHook, PluginManager, PreconditionError, RegisterCommand, RegisterMessageCommand, RegisterSubcommand, RegisterSubcommandGroup, RegisterUserCommand, RequestAuthPrefix, RequiresClientPermissions, RequiresDMContext, RequiresGuildContext, RequiresUserPermissions, RestrictGuildIds, Store, type StoreOptions, StoreRegistry, type StoreRegistryEntries, StringIdParser, SyncPluginHooks, TransformedArguments, UpdateData, UpdateOptions, UpdateResponseOptions, UpdateResponseResult, UserContextMenuCommandInteraction, UserError, applicationCommandRegistry, container, createClassDecorator, createFunctionPrecondition, createMethodDecorator, createProxy, extractTopLevelOptions, getMissingPermissions, makeInteraction, postInitialization, postListen, preGenericsInitialization, preInitialization, preLoad, resolvePermissions, restrictedGuildIdRegistry, toPermissionNames, transformAutocompleteInteraction, transformInteraction, transformMessageInteraction, transformUserInteraction };
|
|
2675
2962
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/esm/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","names":[],"sources":["../../src/lib/utils/internals.ts","../../src/lib/interactions/resolvers/ChatInputCommandResolver.ts","../../src/lib/interactions/decorators/RegisterCommand.ts","../../src/lib/interactions/resolvers/ContextMenuCommandResolver.ts","../../src/lib/interactions/decorators/RegisterMessageCommand.ts","../../src/lib/interactions/decorators/RegisterSubcommand.ts","../../src/lib/interactions/decorators/RegisterSubcommandGroup.ts","../../src/lib/interactions/decorators/RegisterUserCommand.ts","../../src/lib/interactions/decorators/RestrictGuildIds.ts","../../src/lib/interactions/resolvers/InteractionOptions.ts","../../src/lib/structures/CommandStoreRouter.ts","../../src/lib/structures/CommandStore.ts","../../src/lib/interactions/shared/ApplicationCommandRegistryEntry.ts","../../src/lib/interactions/shared/ApplicationCommandRegistry.ts","../../src/lib/interactions/shared/CommandRegistry.ts","../../src/lib/interactions/utils/util-types.ts","../../src/lib/interactions/structures/common/symbols.ts","../../src/lib/interactions/structures/interactions/base/BaseInteraction.ts","../../src/lib/interactions/structures/interactions/base/common.ts","../../src/lib/interactions/structures/interactions/AutocompleteInteraction.ts","../../src/lib/interactions/structures/interactions/base/CommandInteraction.ts","../../src/lib/interactions/structures/interactions/ChatInputCommandInteraction.ts","../../src/lib/interactions/structures/interactions/base/MessageComponentInteraction.ts","../../src/lib/interactions/structures/interactions/MessageComponentButtonInteraction.ts","../../src/lib/interactions/structures/interactions/MessageComponentChannelSelectInteraction.ts","../../src/lib/interactions/structures/interactions/MessageComponentMentionableSelectInteraction.ts","../../src/lib/interactions/structures/interactions/MessageComponentRoleSelectInteraction.ts","../../src/lib/interactions/structures/interactions/MessageComponentStringSelectInteraction.ts","../../src/lib/interactions/structures/interactions/MessageComponentUserSelectInteraction.ts","../../src/lib/interactions/structures/interactions/MessageContextMenuCommandInteraction.ts","../../src/lib/interactions/structures/interactions/ModalSubmitInteraction.ts","../../src/lib/interactions/structures/interactions/UserContextMenuCommandInteraction.ts","../../src/lib/interactions/structures/interactions/index.ts","../../src/lib/interactions/structures/Message.ts","../../src/lib/interactions/utils/util.ts","../../src/lib/interactions/router/CommandRouter.ts","../../src/lib/structures/Command.ts","../../src/lib/structures/InteractionHandler.ts","../../src/lib/types/Enums.ts","../../src/lib/ClientEvents.ts","../../src/lib/components/IIdParser.ts","../../src/lib/plugins/symbols.ts","../../src/lib/plugins/Plugin.ts","../../src/lib/plugins/PluginManager.ts","../../src/lib/structures/InteractionHandlerStore.ts","../../src/lib/structures/Listener.ts","../../src/lib/structures/ListenerStore.ts","../../src/lib/utils/security.ts","../../src/lib/Client.ts","../../src/lib/api/HttpCodes.ts","../../src/lib/components/StringIdParser.ts","../../src/lib/errors/UserError.ts","../../src/lib/errors/ArgumentError.ts","../../src/lib/errors/ChatInputRouterError.ts","../../src/lib/errors/Identifiers.ts","../../src/lib/errors/PreconditionError.ts","../../src/lib/structures/CommandLoaderStrategy.ts","../../src/lib/structures/ListenerLoaderStrategy.ts"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","names":[],"sources":["../../src/lib/utils/internals.ts","../../src/lib/interactions/resolvers/ChatInputCommandResolver.ts","../../src/lib/interactions/decorators/RegisterCommand.ts","../../src/lib/interactions/resolvers/ContextMenuCommandResolver.ts","../../src/lib/interactions/decorators/RegisterMessageCommand.ts","../../src/lib/interactions/decorators/RegisterSubcommand.ts","../../src/lib/interactions/decorators/RegisterSubcommandGroup.ts","../../src/lib/interactions/decorators/RegisterUserCommand.ts","../../src/lib/interactions/decorators/RestrictGuildIds.ts","../../src/lib/interactions/resolvers/InteractionOptions.ts","../../src/lib/structures/CommandStoreRouter.ts","../../src/lib/structures/CommandStore.ts","../../src/lib/interactions/shared/ApplicationCommandRegistryEntry.ts","../../src/lib/interactions/shared/ApplicationCommandRegistry.ts","../../src/lib/interactions/shared/CommandRegistry.ts","../../src/lib/interactions/utils/util-types.ts","../../src/lib/interactions/structures/common/symbols.ts","../../src/lib/interactions/structures/interactions/base/BaseInteraction.ts","../../src/lib/interactions/structures/interactions/base/common.ts","../../src/lib/interactions/structures/interactions/AutocompleteInteraction.ts","../../src/lib/interactions/structures/interactions/base/CommandInteraction.ts","../../src/lib/interactions/structures/interactions/ChatInputCommandInteraction.ts","../../src/lib/interactions/structures/interactions/base/MessageComponentInteraction.ts","../../src/lib/interactions/structures/interactions/MessageComponentButtonInteraction.ts","../../src/lib/interactions/structures/interactions/MessageComponentChannelSelectInteraction.ts","../../src/lib/interactions/structures/interactions/MessageComponentMentionableSelectInteraction.ts","../../src/lib/interactions/structures/interactions/MessageComponentRoleSelectInteraction.ts","../../src/lib/interactions/structures/interactions/MessageComponentStringSelectInteraction.ts","../../src/lib/interactions/structures/interactions/MessageComponentUserSelectInteraction.ts","../../src/lib/interactions/structures/interactions/MessageContextMenuCommandInteraction.ts","../../src/lib/interactions/structures/interactions/ModalSubmitInteraction.ts","../../src/lib/interactions/structures/interactions/UserContextMenuCommandInteraction.ts","../../src/lib/interactions/structures/interactions/index.ts","../../src/lib/interactions/structures/Message.ts","../../src/lib/interactions/utils/util.ts","../../src/lib/interactions/router/CommandRouter.ts","../../src/lib/structures/Command.ts","../../src/lib/structures/InteractionHandler.ts","../../src/lib/types/Enums.ts","../../src/lib/ClientEvents.ts","../../src/lib/components/IIdParser.ts","../../src/lib/plugins/symbols.ts","../../src/lib/plugins/Plugin.ts","../../src/lib/plugins/PluginManager.ts","../../src/lib/structures/InteractionHandlerStore.ts","../../src/lib/structures/Listener.ts","../../src/lib/structures/ListenerStore.ts","../../src/lib/utils/security.ts","../../src/lib/Client.ts","../../src/lib/api/HttpCodes.ts","../../src/lib/components/StringIdParser.ts","../../src/lib/decorators/ApplyOptions.ts","../../src/lib/decorators/Enumerable.ts","../../src/lib/decorators/RequiresContext.ts","../../src/lib/utils/permissions.ts","../../src/lib/decorators/RequiresPermissions.ts","../../src/lib/decorators/utils.ts","../../src/lib/errors/UserError.ts","../../src/lib/errors/ArgumentError.ts","../../src/lib/errors/ChatInputRouterError.ts","../../src/lib/errors/Identifiers.ts","../../src/lib/errors/PreconditionError.ts","../../src/lib/structures/CommandLoaderStrategy.ts","../../src/lib/structures/ListenerLoaderStrategy.ts"],"mappings":"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"}
|