@pikokr/command.ts 5.1.7-dev.4df7b7a → 5.1.9-dev.4261fe9

Sign up to get free protection for your applications and to get access to all the features.
package/dist/index.d.ts CHANGED
@@ -99,7 +99,7 @@ declare class ApplicationCommandExtension extends CTSExtension {
99
99
  guilds?: Snowflake[];
100
100
  })[];
101
101
  registerUnmanagedCommand(command: ApplicationCommandData & {
102
- guild?: Snowflake[];
102
+ guilds?: Snowflake[];
103
103
  }): void;
104
104
  interactionCreate(i: Interaction): Promise<void>;
105
105
  sync(): Promise<void>;
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/core/symbols.ts","../src/core/hooks/componentHook.ts","../src/core/components/decoratorCreator.ts","../src/core/components/ComponentArgument.ts","../src/core/components/ComponentArgumentDecorator.ts","../src/applicationCommand/ApplicationCommand.ts","../src/applicationCommand/ApplicationCommandOption.ts","../src/core/listener/index.ts","../src/core/converter/index.ts","../src/core/hooks/moduleHook.ts","../src/core/hooks/index.ts","../src/core/structures/Registry.ts","../src/core/structures/index.ts","../src/core/extensions/Extension.ts","../src/core/extensions/CTSExtension.ts","../src/applicationCommand/ApplicationCommandExtension.ts","../src/textCommand/TextCommand.ts","../src/textCommand/parameters.ts","../src/textCommand/TextCommandExtension.ts","../src/core/structures/CommandClient.ts","../src/core/components/BaseComponent.ts","../src/core/components/index.ts","../src/core/utils/errors.ts","../src/core/utils/checks.ts","../src/core/utils/index.ts","../src/core/extensions/index.ts","../src/core/index.ts","../src/index.ts","../src/applicationCommand/group.ts"],"sourcesContent":["/*\r\n * File: symbols.ts\r\n *\r\n * Copyright (c) 2022-2022 pikokr\r\n *\r\n * Licensed under MIT License. Please see more defails in LICENSE file.\r\n */\r\n\r\nexport const ComponentStoreSymbol = Symbol()\r\nexport const ComponentArgStoreSymbol = Symbol()\r\nexport const ModuleHookStoreSymbol = Symbol()\r\nexport const CommandClientSymbol = Symbol()\r\nexport const ComponentHookSymbol = Symbol()\r\nexport const FilePathSymbol = Symbol()\r\n","/*\r\n* File: componentHook.ts\r\n* \r\n* Copyright (c) 2022-2022 pikokr\r\n* \r\n* Licensed under MIT License. Please see more defails in LICENSE file.\r\n*/\r\n\r\nimport { Collection } from 'discord.js'\nimport { ComponentHookSymbol } from '../symbols'\n\nexport type ComponentHookFn = (...args: any[]) => void | Promise<void>\n\nexport type ComponentHookStore = Collection<string, ComponentHookFn[]>\n\nexport const getComponentHookStore = (target: object, property: string | symbol): ComponentHookStore => {\n let data = Reflect.getMetadata(ComponentHookSymbol, target, property) as ComponentHookStore\n\n if (!data) {\n data = new Collection()\n Reflect.defineMetadata(ComponentHookSymbol, data, target, property)\n }\n\n return data\n}\n\nexport const createComponentHook = (name: string, fn: ComponentHookFn): MethodDecorator => {\n return (target, key) => {\n const store = getComponentHookStore(target, key)\n\n let hooks = store.get(name)\n\n if (!hooks) {\n hooks = []\n store.set(name, hooks)\n }\n\n hooks.push(fn)\n }\n}\n","/*\n * File: decoratorCreator.ts\n *\n * Copyright (c) 2022-2022 pikokr\n *\n * Licensed under MIT License. Please see more defails in LICENSE file.\n */\n\nimport { Collection } from 'discord.js'\nimport { ComponentHookStore } from '../hooks'\nimport { getComponentHookStore } from '../hooks/componentHook'\nimport { ComponentStoreSymbol } from '../symbols'\nimport { BaseComponent } from './BaseComponent'\nimport { ComponentArgumentDecorator } from './ComponentArgumentDecorator'\n\ntype ComponentStore = Collection<string | symbol, BaseComponent>\ntype ComponentArgumentStore = Collection<number, ComponentArgumentDecorator>\n\nexport const getComponentStore = (target: object): ComponentStore => {\n let result: ComponentStore | null = Reflect.getMetadata(ComponentStoreSymbol, target)\n\n if (!result) {\n result = new Collection()\n\n Reflect.defineMetadata(ComponentStoreSymbol, result, target)\n }\n\n return result\n}\n\nexport const getComponent = (target: object, key: string | symbol) => {\n const store = getComponentStore(target)\n\n return store.get(key)\n}\n\nexport const createComponentDecorator = (component: BaseComponent): MethodDecorator => {\n return (target, key) => {\n component._init(Reflect.get(target, key), Reflect.getMetadata('design:paramtypes', target, key))\n\n const componentHookStore: ComponentHookStore = getComponentHookStore(target, key)\n\n component.hooks = componentHookStore\n\n const store = getComponentStore(target)\n\n const decorators = getComponentArgumentStore(target, key)\n\n decorators.forEach((x, i) => {\n component.argTypes.get(i)?.decorators.push(x)\n })\n\n store.set(key, component)\n }\n}\n\nexport const getComponentArgumentStore = (target: object, key: string | symbol): ComponentArgumentStore => {\n let result: ComponentArgumentStore | null = Reflect.getMetadata(ComponentStoreSymbol, target, key)\n\n if (!result) {\n result = new Collection()\n\n Reflect.defineMetadata(ComponentStoreSymbol, result, target, key)\n }\n\n return result\n}\n\nexport const createArgumentDecorator = <Options>(type: typeof ComponentArgumentDecorator<Options>) => {\n return (options: Options): ParameterDecorator => {\n return (target, key, idx) => {\n var arg: ComponentArgumentDecorator<Options> = new type(options)\n\n const store = getComponentArgumentStore(target, key)\n\n store.set(idx, arg)\n }\n }\n}\n","/*\r\n* File: ComponentArgument.ts\r\n* \r\n* Copyright (c) 2022-2022 pikokr\r\n* \r\n* Licensed under MIT License. Please see more defails in LICENSE file.\r\n*/\r\n\r\nimport { ComponentArgumentDecorator } from './ComponentArgumentDecorator'\n\nexport class ComponentArgument {\n decorators: ComponentArgumentDecorator[] = []\n\n constructor(public type: unknown) {}\n}\n","/*\r\n* File: ComponentArgumentDecorator.ts\r\n* \r\n* Copyright (c) 2022-2022 pikokr\r\n* \r\n* Licensed under MIT License. Please see more defails in LICENSE file.\r\n*/\r\n\r\nimport _ from 'lodash'\n\nexport class ComponentArgumentDecorator<Options = unknown> {\n options: Options\n\n constructor(options: Partial<Options>) {\n if (typeof options === 'object') {\n this.options = _.merge(this.defaultOptions(), options)\n } else {\n this.options = options\n }\n }\n\n defaultOptions(): Options {\n return {} as unknown as Options\n }\n}\n","/*\n * File: ApplicationCommand.ts\n *\n * Copyright (c) 2022-2022 pikokr\n *\n * Licensed under MIT License. Please see more defails in LICENSE file.\n */\n\nimport type { ApplicationCommandType, ChatInputApplicationCommandData, MessageApplicationCommandData, Snowflake, UserApplicationCommandData } from 'discord.js'\nimport { createComponentDecorator } from '../core/components/decoratorCreator'\nimport { BaseComponent } from '../core/components/BaseComponent'\nimport { SubCommandGroup, SubCommandGroupChild } from './group'\n\ntype Options = (UserApplicationCommandData | MessageApplicationCommandData | Omit<ChatInputApplicationCommandData, 'options'>) & {\n type: ApplicationCommandType\n guilds?: Snowflake[]\n}\n\nexport class ApplicationCommandComponent extends BaseComponent {\n options: Options\n\n subcommandGroup?: SubCommandGroup\n subcommandGroupChild?: SubCommandGroupChild\n\n constructor(options: UserApplicationCommandData | MessageApplicationCommandData | Omit<ChatInputApplicationCommandData, 'options'>) {\n super()\n\n this.options = options as Options\n }\n}\n\nexport const applicationCommand = (options: Options) => createComponentDecorator(new ApplicationCommandComponent(options))\n\nexport type { Options as ApplicationCommandComponentOptions }\n","/*\r\n* File: ApplicationCommandOption.ts\r\n* \r\n* Copyright (c) 2022-2022 pikokr\r\n* \r\n* Licensed under MIT License. Please see more defails in LICENSE file.\r\n*/\r\n\r\nimport { APIApplicationCommandOption } from 'discord.js'\nimport { createArgumentDecorator, ComponentArgumentDecorator } from '../core'\n\ntype Options = APIApplicationCommandOption\n\nexport class ApplicationCommandOption extends ComponentArgumentDecorator<Options> {}\n\nexport const option = createArgumentDecorator(ApplicationCommandOption)\n","/*\n * File: index.ts\n *\n * Copyright (c) 2022-2022 pikokr\n *\n * Licensed under MIT License. Please see more defails in LICENSE file.\n */\n\nimport _ from 'lodash'\nimport { BaseComponent } from '../components/BaseComponent'\nimport { createComponentDecorator } from '../components/decoratorCreator'\n\ntype Options = { emitter: string; event: string }\n\ntype OptionsArg = { emitter?: string; event: string }\n\nexport class ListenerComponent extends BaseComponent {\n options: Options\n\n constructor(options: OptionsArg) {\n super()\n\n this.options = _.merge({ emitter: 'discord' }, options)\n }\n}\n\nexport const listener = (options: OptionsArg) => createComponentDecorator(new ListenerComponent(options))\n","/*\n * File: index.ts\n *\n * Copyright (c) 2022-2022 pikokr\n *\n * Licensed under MIT License. Please see more defails in LICENSE file.\n */\n\nimport { BaseComponent } from '../components/BaseComponent'\nimport { createComponentDecorator } from '../components/decoratorCreator'\n\ntype Options = { component: unknown; type: Function; parameterless: boolean }\n\ntype OptionsArg = Omit<Options, 'parameterless'> & { parameterless?: boolean }\n\nexport class ConverterComponent extends BaseComponent {\n options: Options\n\n constructor(options: OptionsArg) {\n super()\n this.options = options as Options\n }\n}\n\nexport const argConverter = (options: OptionsArg) => createComponentDecorator(new ConverterComponent(options))\n","/*\r\n* File: moduleHook.ts\r\n* \r\n* Copyright (c) 2022-2022 pikokr\r\n* \r\n* Licensed under MIT License. Please see more defails in LICENSE file.\r\n*/\r\n\r\nimport { Collection } from 'discord.js'\nimport { ModuleHookStoreSymbol } from '../symbols'\n\ntype ModuleHookStore = Collection<string, Function[]>\n\nexport const getModuleHookStore = (target: object) => {\n let result: ModuleHookStore | null = Reflect.getMetadata(ModuleHookStoreSymbol, target)\n\n if (!result) {\n result = new Collection()\n\n Reflect.defineMetadata(ModuleHookStoreSymbol, result, target)\n }\n\n return result\n}\n\nexport const moduleHook = (name: string): MethodDecorator => {\n return (target, key) => {\n const store = getModuleHookStore(target)\n\n let v = store.get(name)\n\n if (!v) {\n v = []\n store.set(name, v)\n }\n\n v.push(Reflect.get(target, key))\n }\n}\n","/*\r\n* File: index.ts\r\n* \r\n* Copyright (c) 2022-2022 pikokr\r\n* \r\n* Licensed under MIT License. Please see more defails in LICENSE file.\r\n*/\r\n\r\nexport * from './moduleHook'\r\nexport { createComponentHook } from './componentHook'\r\nexport type { ComponentHookStore } from './componentHook'\r\n","/*\n * File: Registry.ts\n *\n * Copyright (c) 2022-2022 pikokr\n *\n * Licensed under MIT License. Please see more defails in LICENSE file.\n */\n\nimport chalk from 'chalk'\nimport { Collection } from 'discord.js'\nimport EventEmitter from 'events'\nimport _, { result } from 'lodash'\nimport { Logger } from 'tslog'\nimport { getComponentStore } from '../components'\nimport type { BaseComponent } from '../components'\nimport { getModuleHookStore } from '../hooks'\nimport { ListenerComponent } from '../listener'\nimport { CommandClientSymbol, FilePathSymbol } from '../symbols'\nimport { CommandClient } from './CommandClient'\nimport walkSync from 'walk-sync'\nimport path from 'path'\n\nexport class Registry {\n extensions: object[] = []\n\n emitters: Collection<string, EventEmitter> = new Collection()\n\n logger: Logger\n\n constructor(logger: Logger, public client: CommandClient) {\n this.logger = logger.getChildLogger({\n prefix: [chalk.green('[Registry]')],\n })\n }\n\n getComponentsWithTypeGlobal<T>(type: unknown): T[] {\n const result: T[] = []\n\n for (const ext of this.extensions) {\n result.push(...this.getComponentsWithType<T>(ext, type))\n }\n\n return result\n }\n\n getComponentsWithType<T>(ext: object, type: unknown): T[] {\n const componentStore = getComponentStore(ext)\n\n return Array.from(componentStore.filter((x) => (x.constructor as unknown) === type).values() as Iterable<T>)\n }\n\n registerEventListeners(ext: object) {\n const listeners = this.getComponentsWithType<ListenerComponent>(ext, ListenerComponent)\n\n for (const listener of listeners) {\n const emitter = this.emitters.get(listener.options.emitter)\n\n if (emitter) {\n const bound = listener.method.bind(ext)\n\n Reflect.defineMetadata('bound', bound, listener)\n\n emitter.addListener(listener.options.event, bound)\n }\n }\n }\n\n unregisterEventListeners(ext: object) {\n const listeners = this.getComponentsWithType<ListenerComponent>(ext, ListenerComponent)\n\n for (const listener of listeners) {\n const emitter = this.emitters.get(listener.options.emitter)\n const bound = Reflect.getMetadata('bound', listener)\n\n if (emitter && bound) {\n emitter.removeListener(listener.options.event, bound)\n }\n }\n }\n\n async loadAllModulesInDirectory(dir: string): Promise<object[]> {\n const results: object[] = []\n\n const files = walkSync(dir).filter((x) => x.endsWith('.ts') || x.endsWith('.js'))\n\n for (const file of files) {\n if (file.endsWith('.d.ts')) continue\n const p = path.join(dir, file)\n results.push(...(await this.loadModulesAtPath(p)))\n }\n\n return results\n }\n\n async loadModulesAtPath(file: string) {\n this.logger.info(`Loading module at path ${chalk.green(file)}`)\n\n const p = require.resolve(file)\n\n const mod = require(p)\n\n if (typeof mod.setup !== 'function') throw new Error('Extension must have a setup function')\n\n const modules = await mod.setup()\n\n return this.registerModules(modules, p)\n }\n\n private async registerModules(modules: object | object[], p: string) {\n const results: object[] = []\n if (modules instanceof Array) {\n for (const module of modules) {\n await this.registerModule(module)\n Reflect.defineMetadata(FilePathSymbol, p, module)\n results.push(module)\n }\n } else {\n await this.registerModule(modules)\n Reflect.defineMetadata(FilePathSymbol, p, modules)\n results.push(modules)\n }\n\n return results\n }\n\n async reloadModules() {\n const result: { file: string; result: boolean; error?: Error; extensions?: object[] }[] = []\n const paths = new Set<string>()\n const extensions = [...this.extensions]\n for (const module of extensions) {\n const file = Reflect.getMetadata(FilePathSymbol, module)\n if (!file) continue\n\n this.logger.info(`Unloading module: ${chalk.green(module.constructor.name)}`)\n\n paths.add(file)\n\n await this.unregisterModule(module)\n\n delete require.cache[require.resolve(file)]\n }\n\n for (const path of paths) {\n try {\n const extensions = await this.loadModulesAtPath(path)\n\n result.push({\n file: path,\n result: true,\n extensions,\n })\n } catch (e) {\n result.push({\n file: path,\n result: false,\n error: e as Error,\n })\n }\n }\n\n return result\n }\n\n async registerModule(ext: object) {\n Reflect.defineMetadata(CommandClientSymbol, this.client, ext)\n\n this.registerEventListeners(ext)\n await this.runModuleHook(ext, 'load')\n this.extensions.push(ext)\n this.logger.info(`Module registered: ${chalk.green(ext.constructor.name)}`)\n }\n\n async unregisterModule(ext: object) {\n this.unregisterEventListeners(ext)\n await this.runModuleHook(ext, 'unload')\n _.remove(this.extensions, (x) => x === ext)\n this.logger.info(`Module unregistered: ${chalk.green(ext.constructor.name)}`)\n }\n\n runModuleHook(ext: object, hookName: string, ...args: unknown[]) {\n const hooks = getModuleHookStore(ext)\n\n const functions = hooks.get(hookName)\n\n if (functions) {\n for (const fn of functions) {\n fn.call(ext, ...args)\n }\n }\n }\n\n registerEventEmitter(name: string, emitter: EventEmitter) {\n this.emitters.set(name, emitter)\n }\n}\n","/*\r\n* File: index.ts\r\n* \r\n* Copyright (c) 2022-2022 pikokr\r\n* \r\n* Licensed under MIT License. Please see more defails in LICENSE file.\r\n*/\r\n\r\nexport * from './Registry'\nexport * from './CommandClient'\n","/*\n * File: Extension.ts\n *\n * Copyright (c) 2022-2022 pikokr\n *\n * Licensed under MIT License. Please see more defails in LICENSE file.\n */\n\nimport chalk from 'chalk'\nimport { Collection } from 'discord.js'\nimport { Logger } from 'tslog'\nimport { ComponentArgument } from '../components/ComponentArgument'\nimport { ConverterComponent } from '../converter'\nimport { CommandClient } from '../structures'\n\nexport class Extension {\n protected get commandClient() {\n return CommandClient.getFromModule(this)\n }\n\n protected get client() {\n return this.commandClient.discord\n }\n\n protected _logger?: Logger\n\n protected get logger() {\n if (!this._logger) this._logger = this.commandClient.logger.getChildLogger({ prefix: [chalk.green(`[${this.constructor.name}]`)], displayFunctionName: false })\n return this._logger\n }\n\n protected async convertArguments(\n component: unknown,\n argList: unknown[],\n args: Collection<number, ComponentArgument>,\n getConverterArgs: (arg: ComponentArgument, index: number, converter: ConverterComponent) => unknown[] | Promise<unknown[]>,\n ) {\n const items = new Collection<unknown, { ext: object; component: ConverterComponent }>()\n\n for (const extension of this.commandClient.registry.extensions) {\n for (const converter of this.commandClient.registry.getComponentsWithType<ConverterComponent>(extension, ConverterComponent)) {\n if (converter.options.component != component) continue\n\n items.set(converter.options.type, { component: converter, ext: extension })\n }\n }\n\n for (const [index, arg] of args) {\n const converter = items.get(arg.type)\n\n if (!converter) {\n argList[index] = undefined\n continue\n }\n\n const converterArgs = await getConverterArgs(arg, index, converter.component)\n\n argList[index] = await converter.component.execute(converter.ext, converterArgs)\n }\n }\n}\n","/*\r\n* File: CTSExtension.ts\r\n* \r\n* Copyright (c) 2022-2022 pikokr\r\n* \r\n* Licensed under MIT License. Please see more defails in LICENSE file.\r\n*/\r\n\r\nimport chalk from 'chalk'\nimport { Extension } from './Extension'\n\nexport class CTSExtension extends Extension {\n protected get logger() {\n if (!this._logger) this._logger = this.commandClient.ctsLogger.getChildLogger({ prefix: [chalk.green(`[${this.constructor.name}]`)], displayFunctionName: false })\n return this._logger\n }\n}\n","/*\n * File: ApplicationCommandExtension.ts\n *\n * Copyright (c) 2022-2022 pikokr\n *\n * Licensed under MIT License. Please see more defails in LICENSE file.\n */\n\nimport chalk from 'chalk'\nimport {\n APIApplicationCommandSubcommandGroupOption,\n APIApplicationCommandSubcommandOption,\n ApplicationCommandData,\n ApplicationCommandDataResolvable,\n ApplicationCommandOptionType,\n ApplicationCommandSubCommandData,\n ApplicationCommandType,\n ChatInputApplicationCommandData,\n ChatInputCommandInteraction,\n Collection,\n CommandInteraction,\n Interaction,\n InteractionType,\n MessageContextMenuCommandInteraction,\n Snowflake,\n UserContextMenuCommandInteraction,\n} from 'discord.js'\nimport { ApplicationCommandComponent } from './ApplicationCommand'\nimport { ApplicationCommandOption } from './ApplicationCommandOption'\nimport { listener } from '../core/listener'\nimport { argConverter } from '../core/converter'\nimport { CTSExtension } from '../core/extensions/CTSExtension'\n\nexport type ApplicationCommandExtensionConfig = {\n guilds?: Snowflake[]\n}\n\nexport class ApplicationCommandExtension extends CTSExtension {\n constructor(public config: ApplicationCommandExtensionConfig) {\n super()\n }\n\n unmanagedCommands: (ApplicationCommandData & { guilds?: Snowflake[] })[] = []\n\n registerUnmanagedCommand(command: ApplicationCommandData & { guild?: Snowflake[] }) {\n this.unmanagedCommands.push(command)\n }\n\n @listener({ event: 'interactionCreate' })\n async interactionCreate(i: Interaction) {\n try {\n if (i.type !== InteractionType.ApplicationCommand) return\n\n let cmd: ApplicationCommandComponent | null = null\n let ext: object | null = null\n\n const extensions = this.commandClient.registry.extensions\n\n let subcommand: string | null = null\n let subcommandGroup: string | null = null\n\n if (i.commandType === ApplicationCommandType.ChatInput) {\n subcommand = i.options.getSubcommand(false)\n subcommandGroup = i.options.getSubcommandGroup(false)\n }\n\n extLoop: for (const extension of extensions) {\n const components = this.commandClient.registry.getComponentsWithType<ApplicationCommandComponent>(extension, ApplicationCommandComponent)\n\n if (subcommand) {\n for (const command of components) {\n if (!command.subcommandGroup && !command.subcommandGroupChild) continue\n\n if (\n command.subcommandGroupChild &&\n command.subcommandGroupChild.parent.options.name === i.commandName &&\n command.subcommandGroupChild.options.name === subcommandGroup &&\n command.options.name === subcommand\n ) {\n ext = extension\n cmd = command\n break extLoop\n }\n if (command.subcommandGroup && !subcommandGroup && command.subcommandGroup.options.name === i.commandName && command.options.name === subcommand) {\n ext = extension\n cmd = command\n break extLoop\n }\n }\n } else {\n for (const command of components) {\n if (command.options.name === i.commandName) {\n ext = extension\n cmd = command\n break extLoop\n }\n }\n }\n }\n\n if (cmd && ext) {\n const argList: unknown[] = []\n\n await this.convertArguments(ApplicationCommandComponent, argList, cmd.argTypes, () => [i])\n\n for (const [idx, arg] of cmd.argTypes) {\n let value: unknown = null\n\n for (const decorator of arg.decorators) {\n if (decorator instanceof ApplicationCommandOption) {\n if ([ApplicationCommandOptionType.Subcommand, ApplicationCommandOptionType.SubcommandGroup].includes(decorator.options.type) && i.isChatInputCommand()) {\n if (decorator.options.type === ApplicationCommandOptionType.Subcommand) {\n value = i.options.getSubcommand() === decorator.options.name\n break\n }\n if (decorator.options.type === ApplicationCommandOptionType.SubcommandGroup) {\n value = i.options.getSubcommandGroup() === decorator.options.name\n break\n }\n }\n\n value = i.options.get(decorator.options.name, false)?.value\n break\n }\n }\n\n if (value) {\n argList[idx] = value\n }\n }\n\n await cmd.execute(ext, argList, [i])\n }\n } catch (e) {\n this.commandClient.emit('applicationCommandInvokeError', e, i)\n }\n }\n\n async sync() {\n const client = this.commandClient\n\n this.logger.info('Trying to sync commands...')\n\n let commands: ApplicationCommandData[] = []\n\n const guildCommands = new Collection<Snowflake, ApplicationCommandData[]>()\n\n const subcommandGroups = new Collection<string, ChatInputApplicationCommandData>()\n\n for (const command of client.registry.getComponentsWithTypeGlobal<ApplicationCommandComponent>(ApplicationCommandComponent)) {\n if (command.subcommandGroup) {\n let group = subcommandGroups.get(command.subcommandGroup.options.name)\n\n if (!group) {\n group = {\n ...command.subcommandGroup.options,\n type: ApplicationCommandType.ChatInput,\n }\n\n if (command.subcommandGroup.guilds) {\n for (const guild of command.subcommandGroup.guilds) {\n let commands = guildCommands.get(guild)\n if (!commands) {\n commands = []\n guildCommands.set(guild, commands)\n }\n }\n } else {\n commands.push(group)\n }\n\n subcommandGroups.set(command.subcommandGroup.options.name, group)\n }\n\n if (!group.options) group.options = []\n\n const options = []\n\n for (const [, arg] of command.argTypes) {\n const option = arg.decorators.find((x) => x.constructor === ApplicationCommandOption) as ApplicationCommandOption\n\n if (option) {\n options.push(option.options)\n }\n }\n\n group.options.push({ ...command.options, type: ApplicationCommandOptionType.Subcommand, options } as ApplicationCommandSubCommandData)\n\n continue\n } else if (command.subcommandGroupChild) {\n const parent = command.subcommandGroupChild.parent\n let group = subcommandGroups.get(parent.options.name)\n\n if (!group) {\n group = {\n ...parent.options,\n type: ApplicationCommandType.ChatInput,\n }\n\n if (parent.guilds) {\n for (const guild of parent.guilds) {\n let commands = guildCommands.get(guild)\n if (!commands) {\n commands = []\n guildCommands.set(guild, commands)\n }\n }\n } else {\n commands.push(group)\n }\n\n subcommandGroups.set(parent.options.name, group)\n }\n\n if (!group.options) group.options = []\n\n let child = group.options.find((x) => x.name === command.subcommandGroupChild!.options.name) as APIApplicationCommandSubcommandGroupOption\n\n if (!child) {\n child = { type: ApplicationCommandOptionType.SubcommandGroup, ...(command.subcommandGroupChild.options as Omit<APIApplicationCommandSubcommandGroupOption, 'type'>) }\n group.options.push(child)\n }\n\n if (!child.options) child.options = []\n\n const options = []\n\n for (const [, arg] of command.argTypes) {\n const option = arg.decorators.find((x) => x.constructor === ApplicationCommandOption) as ApplicationCommandOption\n\n if (option) {\n options.push(option.options)\n }\n }\n\n child.options.push({ ...command.options, type: ApplicationCommandOptionType.Subcommand, options } as APIApplicationCommandSubcommandOption)\n\n continue\n }\n\n const cmd: ApplicationCommandData = { ...command.options }\n\n if (cmd.type === ApplicationCommandType.ChatInput) {\n cmd.options = []\n\n for (const [, arg] of command.argTypes) {\n const option = arg.decorators.find((x) => x.constructor === ApplicationCommandOption) as ApplicationCommandOption\n\n if (option) {\n cmd.options.push(option.options)\n }\n }\n }\n\n await command.executeHook(this, 'beforeSync', [cmd, command])\n\n if (command.options.guilds) {\n for (const guild of command.options.guilds) {\n let commands = guildCommands.get(guild)\n if (!commands) {\n commands = []\n guildCommands.set(guild, commands)\n }\n commands.push(cmd)\n }\n continue\n }\n\n commands.push(cmd)\n }\n\n for (const { guilds, ...rest } of this.unmanagedCommands) {\n if (guilds) {\n for (const guild of guilds) {\n let commands = guildCommands.get(guild)\n if (!commands) {\n commands = []\n guildCommands.set(guild, commands)\n }\n commands.push(rest)\n }\n continue\n } else {\n commands.push(rest)\n }\n }\n\n if (this.config.guilds) {\n for (const guild of this.config.guilds) {\n let g = guildCommands.get(guild)\n if (!g) {\n g = []\n guildCommands.set(guild, g)\n }\n g.push(...commands)\n }\n\n commands = []\n }\n\n if (guildCommands.size) {\n for (const [guild, commands] of guildCommands) {\n try {\n const g = await this.client.guilds.fetch(guild)\n await g.fetch()\n this.logger.info(\n `Processing ${chalk.green(commands.length)} commands(${commands.map((x) => chalk.blue(x.name)).join(', ')}) for guild ${chalk.green(g.name)}(${chalk.blue(g.id)})`,\n )\n\n await g.commands.set(commands)\n\n this.logger.info(`Successfully registered commands for guild ${chalk.green(g.name)}(${chalk.blue(g.id)})`)\n } catch (e) {\n this.logger.error(`Failed to register commands to guild ${chalk.green(guild)}: ${(e as Error).message}`)\n }\n }\n }\n if (commands.length) {\n try {\n this.logger.info(`Processing ${chalk.green(commands.length)} commands(${commands.map((x) => chalk.blue(x.name)).join(', ')}) for application scope...`)\n\n await this.client.application!.commands.set(commands)\n\n this.logger.info('Successfully registered commands.')\n } catch (e) {\n this.logger.error(`Failed to register commands to global: ${(e as Error).message}`)\n }\n }\n }\n\n @argConverter({\n component: ApplicationCommandComponent,\n parameterless: true,\n type: ChatInputCommandInteraction,\n })\n async chatInteraction(i: ChatInputCommandInteraction) {\n return i\n }\n\n @argConverter({\n component: ApplicationCommandComponent,\n parameterless: true,\n type: MessageContextMenuCommandInteraction,\n })\n async messageInteraction(i: MessageContextMenuCommandInteraction) {\n return i\n }\n\n @argConverter({\n component: ApplicationCommandComponent,\n parameterless: true,\n type: UserContextMenuCommandInteraction,\n })\n async userInteraction(i: UserContextMenuCommandInteraction) {\n return i\n }\n\n @argConverter({\n component: ApplicationCommandComponent,\n parameterless: true,\n type: CommandInteraction,\n })\n async commandInteraction(i: UserContextMenuCommandInteraction) {\n return i\n }\n}\n","/*\n * File: TextCommand.ts\n *\n * Copyright (c) 2022-2022 pikokr\n *\n * Licensed under MIT License. Please see more defails in LICENSE file.\n */\n\nimport { createComponentDecorator } from '../core/components/decoratorCreator'\nimport { BaseComponent } from '../core/components/BaseComponent'\n\ntype TextCommandOptions = {\n name: string\n aliases?: string[]\n description?: string\n}\n\nexport class TextCommandComponent extends BaseComponent {\n constructor(public options: TextCommandOptions) {\n super()\n }\n}\n\nexport const command = (options: TextCommandOptions) => createComponentDecorator(new TextCommandComponent(options))\n","/*\r\n * File: parameters.ts\r\n *\r\n * Copyright (c) 2022-2022 pikokr\r\n *\r\n * Licensed under MIT License. Please see more defails in LICENSE file.\r\n */\r\n\r\nimport { ComponentArgumentDecorator } from '../core'\r\nimport { createArgumentDecorator } from '../core'\r\n\r\nexport class TextCommandRestOption extends ComponentArgumentDecorator<void> {}\r\n\r\nexport const rest = createArgumentDecorator(TextCommandRestOption)\r\n","/*\n * File: TextCommandExtension.ts\n *\n * Copyright (c) 2022-2022 pikokr\n *\n * Licensed under MIT License. Please see more defails in LICENSE file.\n */\n\nimport { listener } from '../core/listener'\nimport { Message } from 'discord.js'\nimport { CTSExtension } from '../core/extensions/CTSExtension'\nimport { TextCommandComponent } from './TextCommand'\nimport { TextCommandRestOption } from './parameters'\nimport { argConverter } from '../core'\n\nexport type TextCommandConfig = {\n prefix: string | string[] | ((msg: Message) => Promise<string | string[]> | string | string[])\n}\n\ndeclare module 'discord.js' {\n interface Message {\n command: TextCommandComponent\n }\n}\n\nexport class TextCommandExtension extends CTSExtension {\n constructor(private config: TextCommandConfig) {\n super()\n }\n\n private async processPrefix(msg: Message): Promise<number | null> {\n const content = msg.content\n let prefix = this.config.prefix\n\n if (typeof prefix === 'function') {\n prefix = await prefix(msg)\n }\n\n if (typeof prefix === 'string') {\n if (content.startsWith(prefix)) return prefix.length\n return null\n }\n\n if (prefix instanceof Array) {\n const p = prefix.find((x) => content.startsWith(x))\n\n if (p) return p.length\n return null\n }\n\n return null\n }\n\n @listener({ event: 'messageCreate', emitter: 'discord' })\n private async messageCreate(msg: Message) {\n try {\n const startIndex = await this.processPrefix(msg)\n\n if (!startIndex) return\n\n const content = msg.content.slice(startIndex)\n\n const commands: TextCommandComponent[] = []\n\n const extensions = new Map<TextCommandComponent, object>()\n\n for (const ext of this.commandClient.registry.extensions) {\n for (const cmd of this.commandClient.registry.getComponentsWithType<TextCommandComponent>(ext, TextCommandComponent)) {\n commands.push(cmd)\n extensions.set(cmd, ext)\n }\n }\n\n let commandNameLength = 0\n\n const command = commands.find((x) => {\n const names = [x.options.name]\n\n if (x.options.aliases) {\n names.push(...x.options.aliases)\n }\n\n for (const name of names) {\n if (content.startsWith(name)) {\n if (content.length === name.length) {\n commandNameLength = name.length\n return true\n }\n commandNameLength = name.length\n return content.startsWith(name + ' ')\n }\n }\n\n return false\n })\n\n if (!command) return\n\n const ext = extensions.get(command)\n\n if (!ext) return\n\n msg.command = command\n\n const args: unknown[] = []\n\n let argStrings = content.slice(commandNameLength + 1).split(/ /g)\n\n await this.convertArguments(TextCommandComponent, args, command.argTypes, async (arg, i, converter) => {\n if (converter.options.parameterless) return [msg]\n\n if (arg.decorators.find((x) => x.constructor === TextCommandRestOption)) {\n const text = argStrings.join(' ')\n argStrings = []\n return [text, msg]\n }\n return [argStrings.shift(), msg]\n })\n\n await command.execute(ext, args, [msg])\n } catch (e) {\n this.commandClient.emit('textCommandInvokeError', e, msg)\n }\n }\n\n @argConverter({ component: TextCommandComponent, type: Message, parameterless: true })\n async mesage(msg: Message) {\n return msg\n }\n\n @argConverter({ component: TextCommandComponent, type: String })\n async str(value: string) {\n return value\n }\n\n @argConverter({ component: TextCommandComponent, type: Number })\n async num(value: string) {\n return Number(value)\n }\n}\n","/*\r\n* File: CommandClient.ts\r\n* \r\n* Copyright (c) 2022-2022 pikokr\r\n* \r\n* Licensed under MIT License. Please see more defails in LICENSE file.\r\n*/\r\n\r\nimport chalk from 'chalk'\nimport { Client, Snowflake, Team, User } from 'discord.js'\nimport EventEmitter from 'events'\nimport { Logger } from 'tslog'\nimport { ApplicationCommandExtension, ApplicationCommandExtensionConfig } from '../../applicationCommand/ApplicationCommandExtension'\nimport { TextCommandConfig } from '../../textCommand'\nimport { TextCommandExtension } from '../../textCommand/TextCommandExtension'\nimport { CommandClientSymbol } from '../symbols'\nimport { Registry } from './Registry'\nexport class CommandClient extends EventEmitter {\n ctsLogger: Logger\n registry: Registry\n\n owners: Set<Snowflake> = new Set()\n\n constructor(public discord: Client, public logger: Logger = new Logger({ dateTimeTimezone: Intl.DateTimeFormat().resolvedOptions().timeZone })) {\n super()\n\n this.ctsLogger = logger.getChildLogger({ prefix: [chalk.blue('[command.ts]')], displayFilePath: 'hidden', displayFunctionName: false })\n\n this.registry = new Registry(this.ctsLogger, this)\n\n this.registry.registerEventEmitter('cts', this)\n this.registry.registerEventEmitter('discord', this.discord)\n }\n\n async fetchOwners() {\n if (!this.discord.application) throw new Error('The client is not logged in.')\n\n this.ctsLogger.info('Fetching owners...')\n\n await this.discord.application.fetch()\n\n const owner = this.discord.application.owner\n\n if (!owner) throw new Error('Cannot find application owner')\n\n const owners: string[] = []\n\n if (owner instanceof User) {\n this.owners.add(owner.id)\n owners.push(owner.tag)\n } else if (owner instanceof Team) {\n for (const [id, member] of owner.members) {\n this.owners.add(id)\n owners.push(member.user.tag)\n }\n }\n\n this.ctsLogger.info(`Fetched ${chalk.green(owners.length)} owners(${owners.map((x) => chalk.blue(x)).join(', ')})`)\n }\n\n async enableApplicationCommandsExtension(config: ApplicationCommandExtensionConfig) {\n await this.registry.registerModule(new ApplicationCommandExtension(config))\n this.ctsLogger.info('Application command extension enabled.')\n }\n\n async enableTextCommandsExtension(config: TextCommandConfig) {\n await this.registry.registerModule(new TextCommandExtension(config))\n this.ctsLogger.info('Text command extension enabled.')\n }\n\n getApplicationCommandsExtension() {\n return this.registry.extensions.find((x) => x.constructor === ApplicationCommandExtension) as ApplicationCommandExtension | undefined\n }\n\n static getFromModule(ext: object): CommandClient {\n return Reflect.getMetadata(CommandClientSymbol, ext)\n }\n}\n","/*\n * File: BaseComponent.ts\n *\n * Copyright (c) 2022-2022 pikokr\n *\n * Licensed under MIT License. Please see more defails in LICENSE file.\n */\n\nimport { Collection } from 'discord.js'\nimport _ from 'lodash'\nimport type { ComponentHookStore } from '../hooks'\nimport { ComponentArgument } from './ComponentArgument'\n\nexport class BaseComponent {\n method!: Function\n\n hooks: ComponentHookStore = new Collection()\n\n argTypes: Collection<number, ComponentArgument> = new Collection()\n\n _init(method: Function, argTypes: unknown[]) {\n this.method = method\n for (let i = 0; i < argTypes.length; i++) {\n const element = argTypes[i]\n this.argTypes.set(i, new ComponentArgument(element))\n }\n }\n\n async executeHook(target: object, name: string, args: unknown[]) {\n const hook = this.hooks.get(name)\n\n if (!hook) return\n\n const { CommandClient } = await import('../structures/CommandClient')\n\n for (const fn of hook) {\n await fn.call(null, CommandClient.getFromModule(target), ...args)\n }\n }\n\n async execute(target: object, args: unknown[], beforeCallArgs: unknown[] = args) {\n await this.executeHook(target, 'beforeCall', beforeCallArgs)\n let result\n try {\n result = await this.method.call(target, ...args)\n } catch (e) {\n await this.executeHook(target, 'invokeError', [e, ...beforeCallArgs])\n throw e\n }\n await this.executeHook(target, 'afterCall', [result])\n\n return result\n }\n}\n","/*\r\n* File: index.ts\r\n* \r\n* Copyright (c) 2022-2022 pikokr\r\n* \r\n* Licensed under MIT License. Please see more defails in LICENSE file.\r\n*/\r\n\r\nimport 'reflect-metadata'\r\nexport * from './decoratorCreator'\r\nexport * from './ComponentArgument'\r\nexport * from './ComponentArgumentDecorator'\r\nexport * from './BaseComponent'\r\n","/*\r\n* File: errors.ts\r\n* \r\n* Copyright (c) 2022-2022 pikokr\r\n* \r\n* Licensed under MIT License. Please see more defails in LICENSE file.\r\n*/\r\n\r\nexport class OwnerOnlyError {}\n","/*\r\n* File: checks.ts\r\n* \r\n* Copyright (c) 2022-2022 pikokr\r\n* \r\n* Licensed under MIT License. Please see more defails in LICENSE file.\r\n*/\r\n\r\nimport { BaseInteraction, Interaction, Message } from 'discord.js'\nimport { createComponentHook } from '../hooks'\nimport { ComponentHookFn } from '../hooks/componentHook'\nimport { CommandClient } from '../structures'\nimport { OwnerOnlyError } from './errors'\n\nexport const createCheckDecorator = (fn: ComponentHookFn) => createComponentHook('beforeCall', fn)\n\nexport const ownerOnly = createCheckDecorator(async (client: CommandClient, i: Interaction | Message) => {\n let isOwner = false\n\n if (i instanceof BaseInteraction) {\n isOwner = client.owners.has(i.user.id)\n } else if (i instanceof Message) {\n isOwner = client.owners.has(i.author.id)\n }\n\n if (!isOwner) throw new OwnerOnlyError()\n})\n","/*\r\n* File: index.ts\r\n* \r\n* Copyright (c) 2022-2022 pikokr\r\n* \r\n* Licensed under MIT License. Please see more defails in LICENSE file.\r\n*/\r\n\r\nexport * from './checks'\nexport * from './errors'\n","/*\r\n* File: index.ts\r\n* \r\n* Copyright (c) 2022-2022 pikokr\r\n* \r\n* Licensed under MIT License. Please see more defails in LICENSE file.\r\n*/\r\n\r\nexport * from './Extension'\n","/*\r\n* File: index.ts\r\n* \r\n* Copyright (c) 2022-2022 pikokr\r\n* \r\n* Licensed under MIT License. Please see more defails in LICENSE file.\r\n*/\r\n\r\nexport * from './components'\nexport * from './hooks'\nexport * from './converter'\nexport * from './utils'\nexport * from './listener'\nexport * from './structures'\nexport * from './extensions'\n","/*\r\n* File: index.ts\r\n* \r\n* Copyright (c) 2022-2022 pikokr\r\n* \r\n* Licensed under MIT License. Please see more defails in LICENSE file.\r\n*/\r\n\r\nexport * from './core'\r\nexport * from './applicationCommand'\r\nexport * from './textCommand'\r\n","import { APIApplicationCommandSubcommandOption, ApplicationCommandType, ChatInputApplicationCommandData } from 'discord.js'\nimport { createComponentDecorator } from '../core'\nimport { ApplicationCommandComponent } from './ApplicationCommand'\n\nexport class SubCommandGroup {\n constructor(public options: Omit<APIApplicationCommandSubcommandOption, 'type'>, public guilds?: string[]) {}\n\n command(options: Omit<ChatInputApplicationCommandData, 'options' | 'type'>): MethodDecorator {\n const cmd = new ApplicationCommandComponent({\n type: ApplicationCommandType.ChatInput,\n ...options,\n })\n cmd.subcommandGroup = this\n return createComponentDecorator(cmd)\n }\n\n createChild(options: Omit<APIApplicationCommandSubcommandOption, 'type'>) {\n return new SubCommandGroupChild(options, this)\n }\n}\n\nexport class SubCommandGroupChild {\n constructor(public options: Omit<APIApplicationCommandSubcommandOption, 'type'>, public parent: SubCommandGroup) {}\n\n command(options: Omit<ChatInputApplicationCommandData, 'options' | 'type'>): MethodDecorator {\n const cmd = new ApplicationCommandComponent({\n type: ApplicationCommandType.ChatInput,\n ...options,\n })\n cmd.subcommandGroupChild = this\n return createComponentDecorator(cmd)\n }\n}\n"],"mappings":"+pBAAA,oBAAA,8FCAA,OAuBS,GAWH,GAlCN,0BAoB0B,0BAGxB,AAAO,GAAI,GAAA,EAAA,IAAA,CACZ,GAAA,GAAA,QAAA,YAAA,GAAA,EAAA,CAAA,EAED,MAAO,IACL,GAAQ,GAAM,eACZ,QAAM,eAAQ,GAA8B,EAAI,EAAA,CAAA,GAIhD,GATS,yBAWP,GAAsB,GAAA,EAAA,IACvB,CAAA,EAAA,IAAA,CAED,GAAM,GAAQ,GAAA,EAAA,CAAA,EACf,EAAA,EAAA,IAAA,CAAA,EACF,AAAA,gCAL2B,yBClC5B,GAQA,IAUa,EAYA,GAMA,EAoBA,GAYA,EApEb,sBAQA,GAA2B,sBAE3B,KACA,IAOO,AAAM,EAAoB,EAAC,GAAmC,CACnE,GAAI,GAAgC,QAAQ,YAAY,EAAsB,CAAM,EAEpF,MAAK,IACH,GAAS,GAAI,eAEb,QAAQ,eAAe,EAAsB,EAAQ,CAAM,GAGtD,GATwB,qBAYpB,GAAe,GAAC,EAAgB,IAGpC,AAFO,EAAkB,CAAM,EAEzB,IAAI,CAAG,EAHM,gBAMf,EAA2B,EAAC,GAChC,CAAC,EAAQ,IAAQ,CACtB,EAAU,MAAM,QAAQ,IAAI,EAAQ,CAAG,EAAG,QAAQ,YAAY,oBAAqB,EAAQ,CAAG,CAAC,EAE/F,GAAM,GAAyC,GAAsB,EAAQ,CAAG,EAEhF,EAAU,MAAQ,EAElB,GAAM,GAAQ,EAAkB,CAAM,EAItC,AAFmB,GAA0B,EAAQ,CAAG,EAE7C,QAAQ,CAAC,EAAG,IAAM,CAhDjC,MAiDM,KAAU,SAAS,IAAI,CAAC,IAAxB,QAA2B,WAAW,KAAK,GAC5C,EAED,EAAM,IAAI,EAAK,CAAS,GAhBY,4BAoB3B,GAA4B,GAAC,EAAgB,IAAiD,CACzG,GAAI,GAAwC,QAAQ,YAAY,EAAsB,EAAQ,CAAG,EAEjG,MAAK,IACH,GAAS,GAAI,eAEb,QAAQ,eAAe,EAAsB,EAAQ,EAAQ,CAAG,GAG3D,GATgC,6BAY5B,EAA0B,EAAU,GACxC,AAAC,GACC,CAAC,EAAQ,EAAK,IAAQ,CAC3B,GAAI,GAA2C,GAAI,GAAK,CAAO,EAI/D,AAFc,GAA0B,EAAQ,CAAG,EAE7C,IAAI,EAAK,CAAG,GAPe,6BCpEvC,MAAA,0GCAA,OAkBK,EAlBL,0BAiBW,qBACN,OAAA,aACF,EAAA,CAED,AAAA,MAAc,IAAY,SACxB,KAAS,QAAsB,WAAA,MAAA,KAAA,eAAA,EAAA,CAAA,EAElC,KAAA,QAAA,8BANI,oCClBL,GAkBa,GAaA,GA/Bb,uBASA,IACA,IAQO,AAAM,EAAN,aAA0C,EAAa,CAM5D,YAAY,EAAwH,CAClI,MAAK,EAEL,KAAK,QAAU,IATN,mCAaN,AAAM,GAAqB,EAAC,GAAqB,EAAyB,GAAI,GAA4B,CAAO,CAAC,EAAvF,wBC/BlC,SAAA,yFCAA,GAQA,IAQa,EAUA,EA1Bb,sBAQA,GAAc,qBACd,IACA,IAMO,AAAM,EAAN,aAAgC,EAAa,CAGlD,YAAY,EAAqB,CAC/B,MAAK,EAEL,KAAK,QAAU,WAAE,MAAM,CAAE,QAAS,WAAa,CAAO,IAN7C,yBAUN,AAAM,EAAW,EAAC,GAAwB,EAAyB,GAAI,GAAkB,CAAO,CAAC,EAAhF,cC1BxB,GAea,GASA,EAxBb,uBAQA,IACA,IAMO,AAAM,EAAN,aAAiC,EAAa,CAGnD,YAAY,EAAqB,CAC/B,MAAK,EACL,KAAK,QAAU,IALN,0BASN,AAAM,EAAe,EAAC,GAAwB,EAAyB,GAAI,GAAmB,CAAO,CAAC,EAAjF,kBCxB5B,OAsBS,GAWH,GAjCN,0BAmB0B,0BAGxB,AAAO,GAAM,EAAA,GAAA,CACd,GAAA,GAAA,QAAA,YAAA,GAAA,CAAA,EAED,MAAO,IACL,GAAQ,GAAQ,eACd,QAAM,eAAQ,GAA0B,EAAA,CAAA,GAIxC,GATW,sBAWT,GAAc,EAAA,GACf,CAAA,EAAA,IAAA,CAED,GAAM,GAAQ,GAAkB,CAAA,EACjC,EAAA,EAAA,IAAA,CAAA,EACF,AAAA,+CALmB,gBCjCpB,uCCAA,GAQA,GACA,GAEA,GAQA,GACA,GAEa,EAtBb,uBAQA,EAAkB,oBAClB,GAA2B,sBAE3B,GAA0B,qBAE1B,KAEA,KACA,IACA,IAEA,GAAqB,wBACrB,GAAiB,mBAEJ,EAAN,KAAc,CAOnB,YAAY,EAAuB,EAAuB,MAAvB,OAAA,OANnC,WAAuB,CAAA,OAEvB,SAA6C,GAAI,eAK/C,KAAK,OAAS,EAAO,eAAe,CAClC,OAAQ,CAAC,UAAM,MAAM,YAAY,GAClC,EAGH,4BAA+B,EAAoB,CACjD,GAAM,GAAc,CAAA,EAEpB,OAAW,KAAO,MAAK,WACrB,EAAO,KAAI,GAAI,KAAK,sBAAyB,EAAK,CAAI,CAAC,EAGzD,MAAO,GAGT,sBAAyB,EAAa,EAAoB,CACxD,GAAM,GAAiB,EAAkB,CAAG,EAE5C,MAAO,OAAM,KAAK,EAAe,OAAO,AAAC,GAAO,EAAE,cAA4B,CAAI,EAAE,OAAM,CAAE,EAG9F,uBAAuB,EAAa,CAClC,GAAM,GAAY,KAAK,sBAAyC,EAAK,CAAiB,EAEtF,OAAW,KAAY,GAAW,CAChC,GAAM,GAAU,KAAK,SAAS,IAAI,EAAS,QAAQ,OAAO,EAE1D,GAAI,EAAS,CACX,GAAM,GAAQ,EAAS,OAAO,KAAK,CAAG,EAEtC,QAAQ,eAAe,QAAS,EAAO,CAAQ,EAE/C,EAAQ,YAAY,EAAS,QAAQ,MAAO,CAAK,IAKvD,yBAAyB,EAAa,CACpC,GAAM,GAAY,KAAK,sBAAyC,EAAK,CAAiB,EAEtF,OAAW,KAAY,GAAW,CAChC,GAAM,GAAU,KAAK,SAAS,IAAI,EAAS,QAAQ,OAAO,EACpD,EAAQ,QAAQ,YAAY,QAAS,CAAQ,EAEnD,AAAI,GAAW,GACb,EAAQ,eAAe,EAAS,QAAQ,MAAO,CAAK,GAK1D,KAAM,2BAA0B,EAAgC,CAC9D,GAAM,GAAoB,CAAA,EAEpB,EAAQ,eAAS,CAAG,EAAE,OAAO,AAAC,GAAM,EAAE,SAAS,KAAK,GAAK,EAAE,SAAS,KAAK,CAAC,EAEhF,OAAW,KAAQ,GAAO,CACxB,GAAI,EAAK,SAAS,OAAO,EAAG,SAC5B,GAAM,GAAI,WAAK,KAAK,EAAK,CAAI,EAC7B,EAAQ,KAAI,GAAK,KAAM,MAAK,kBAAkB,CAAC,CAAC,EAGlD,MAAO,GAGT,KAAM,mBAAkB,EAAc,CACpC,KAAK,OAAO,KAAK,0BAA0B,UAAM,MAAM,CAAI,GAAG,EAE9D,GAAM,GAAoB,AAAhB,QAAQ,QAAQ,GAEpB,EAAM,QAAQ,GAEpB,GAAI,MAAO,GAAI,OAAU,WAAY,KAAM,IAAI,OAAM,sCAAsC,EAE3F,GAAM,GAAU,KAAM,GAAI,MAAK,EAE/B,MAAO,MAAK,gBAAgB,EAAS,CAAC,EAGxC,KAAc,iBAAgB,EAA4B,EAAW,CACnE,GAAM,GAAoB,CAAA,EAC1B,GAAI,YAAmB,OACrB,OAAW,KAAU,GACnB,KAAM,MAAK,eAAe,CAAM,EAChC,QAAQ,eAAe,GAAgB,EAAG,CAAM,EAChD,EAAQ,KAAK,CAAM,MAGrB,MAAM,MAAK,eAAe,CAAO,EACjC,QAAQ,eAAe,GAAgB,EAAG,CAAO,EACjD,EAAQ,KAAK,CAAO,EAGtB,MAAO,GAGT,KAAM,gBAAgB,CACpB,GAAM,GAAoF,CAAA,EACpF,EAAQ,GAAI,KACZ,EAAa,IAAI,KAAK,YAC5B,OAAW,KAAU,GAAY,CAC/B,GAAM,GAAO,QAAQ,YAAY,GAAgB,CAAM,EACvD,AAAI,CAAC,GAEL,MAAK,OAAO,KAAK,qBAAqB,UAAM,MAAM,EAAO,YAAY,IAAI,GAAG,EAE5E,EAAM,IAAI,CAAI,EAEd,KAAM,MAAK,iBAAiB,CAAM,EAElC,MAAO,SAAQ,MAAsB,AAAhB,QAAQ,QAAQ,KAGvC,OAAW,KAAQ,GACjB,GAAI,CACF,GAAM,GAAa,KAAM,MAAK,kBAAkB,CAAI,EAEpD,EAAO,KAAK,CACV,KAAM,EACN,OAAQ,GACR,WAAA,EACD,QACM,EAAP,CACA,EAAO,KAAK,CACV,KAAM,EACN,OAAQ,GACR,MAAO,EACR,EAIL,MAAO,GAGT,KAAM,gBAAe,EAAa,CAChC,QAAQ,eAAe,EAAqB,KAAK,OAAQ,CAAG,EAE5D,KAAK,uBAAuB,CAAG,EAC/B,KAAM,MAAK,cAAc,EAAK,MAAM,EACpC,KAAK,WAAW,KAAK,CAAG,EACxB,KAAK,OAAO,KAAK,sBAAsB,UAAM,MAAM,EAAI,YAAY,IAAI,GAAG,EAG5E,KAAM,kBAAiB,EAAa,CAClC,KAAK,yBAAyB,CAAG,EACjC,KAAM,MAAK,cAAc,EAAK,QAAQ,EACtC,WAAE,OAAO,KAAK,WAAY,AAAC,GAAM,IAAM,CAAG,EAC1C,KAAK,OAAO,KAAK,wBAAwB,UAAM,MAAM,EAAI,YAAY,IAAI,GAAG,EAG9E,cAAc,EAAa,KAAqB,EAAiB,CAG/D,GAAM,GAAY,AAFJ,GAAmB,CAAG,EAEZ,IAAI,CAAQ,EAEpC,GAAI,EACF,OAAW,KAAM,GACf,EAAG,KAAK,EAAG,GAAK,CAAI,EAK1B,qBAAqB,EAAc,EAAuB,CACxD,KAAK,SAAS,IAAI,EAAM,CAAO,IA1KtB,kBCtBb,uCCAA,GAQA,IACA,GAMa,EAfb,uBAQA,GAAkB,oBAClB,GAA2B,sBAG3B,KACA,KAEO,AAAM,EAAN,KAAe,CACpB,GAAc,gBAAgB,CAC5B,MAAO,GAAc,cAAc,IAAI,EAGzC,GAAc,SAAS,CACrB,MAAO,MAAK,cAAc,QAK5B,GAAc,SAAS,CACrB,MAAK,MAAK,SAAS,MAAK,QAAU,KAAK,cAAc,OAAO,eAAe,CAAE,OAAQ,CAAC,WAAM,MAAM,IAAI,KAAK,YAAY,OAAO,GAAI,oBAAqB,GAAO,GACvJ,KAAK,QAGd,KAAgB,kBACd,EACA,EACA,EACA,EACA,CACA,GAAM,GAAQ,GAAI,eAElB,OAAW,KAAa,MAAK,cAAc,SAAS,WAClD,OAAW,KAAa,MAAK,cAAc,SAAS,sBAA0C,EAAW,CAAkB,EACzH,AAAI,EAAU,QAAQ,WAAa,GAEnC,EAAM,IAAI,EAAU,QAAQ,KAAM,CAAE,UAAW,EAAW,IAAK,EAAW,EAI9E,OAAW,CAAC,EAAO,IAAQ,GAAM,CAC/B,GAAM,GAAY,EAAM,IAAI,EAAI,IAAI,EAEpC,GAAI,CAAC,EAAW,CACd,EAAQ,GAAS,OACjB,SAGF,GAAM,GAAgB,KAAM,GAAiB,EAAK,EAAO,EAAU,SAAS,EAE5E,EAAQ,GAAS,KAAM,GAAU,UAAU,QAAQ,EAAU,IAAK,CAAa,KA1CxE,mBCfb,OAayI,EAbzI,0BAakG,yBAAuC,eAAqB,EAAK,aAAG,CAClK,MAAA,MAAO,SAAY,MAAA,QAAA,KAAA,cAAA,UAAA,eAAA,CACpB,OAAA,CACF,WAAA,MAAA,IAAA,KAAA,YAAA,OAAA,4CAHwI,sBCbzI,GAQA,GACA,EADA,IA6Ba,EArCb,uBAQA,EAAkB,oBAClB,EAiBO,sBACP,KACA,KACA,IACA,KACA,KAvBA,AAAA,EAAA,SAAA,EAAA,EAAA,EAAA,EAAA,kaA6Ba,EAAN,aAA0C,EAAY,CAC3D,YAAmB,EAA2C,CAC5D,MAAK,OADY,OAAA,OAInB,kBAA2E,CAAA,EAE3E,yBAAyB,EAA2D,CAClF,KAAK,kBAAkB,KAAK,CAAO,EAGrC,KACM,mBAAkB,EAAgB,CAjD1C,MAkDI,GAAI,CACF,GAAI,EAAE,OAAS,kBAAgB,mBAAoB,OAEnD,GAAI,GAA0C,KAC1C,EAAqB,KAEnB,EAAa,KAAK,cAAc,SAAS,WAE3C,EAA4B,KAC5B,EAAiC,KAErC,AAAI,EAAE,cAAgB,yBAAuB,WAC3C,GAAa,EAAE,QAAQ,cAAc,EAAK,EAC1C,EAAkB,EAAE,QAAQ,mBAAmB,EAAK,GAGtD,EAAS,OAAW,KAAa,GAAY,CAC3C,GAAM,GAAa,KAAK,cAAc,SAAS,sBAAmD,EAAW,CAA2B,EAExI,GAAI,GACF,OAAW,KAAW,GACpB,GAAI,GAAC,EAAQ,iBAAmB,CAAC,EAAQ,sBAEzC,IACE,EAAQ,sBACR,EAAQ,qBAAqB,OAAO,QAAQ,OAAS,EAAE,aACvD,EAAQ,qBAAqB,QAAQ,OAAS,GAC9C,EAAQ,QAAQ,OAAS,EACzB,CACA,EAAM,EACN,EAAM,EACN,QAEF,GAAI,EAAQ,iBAAmB,CAAC,GAAmB,EAAQ,gBAAgB,QAAQ,OAAS,EAAE,aAAe,EAAQ,QAAQ,OAAS,EAAY,CAChJ,EAAM,EACN,EAAM,EACN,cAIJ,QAAW,KAAW,GACpB,GAAI,EAAQ,QAAQ,OAAS,EAAE,YAAa,CAC1C,EAAM,EACN,EAAM,EACN,SAMR,GAAI,GAAO,EAAK,CACd,GAAM,GAAqB,CAAA,EAE3B,KAAM,MAAK,iBAAiB,EAA6B,EAAS,EAAI,SAAU,IAAM,CAAC,EAAE,EAEzF,OAAW,CAAC,EAAK,IAAQ,GAAI,SAAU,CACrC,GAAI,GAAiB,KAErB,OAAW,KAAa,GAAI,WAC1B,GAAI,YAAqB,GAA0B,CACjD,GAAI,CAAC,+BAA6B,WAAY,+BAA6B,iBAAiB,SAAS,EAAU,QAAQ,IAAI,GAAK,EAAE,mBAAkB,EAAI,CACtJ,GAAI,EAAU,QAAQ,OAAS,+BAA6B,WAAY,CACtE,EAAQ,EAAE,QAAQ,cAAa,IAAO,EAAU,QAAQ,KACxD,MAEF,GAAI,EAAU,QAAQ,OAAS,+BAA6B,gBAAiB,CAC3E,EAAQ,EAAE,QAAQ,mBAAkB,IAAO,EAAU,QAAQ,KAC7D,OAIJ,EAAQ,KAAE,QAAQ,IAAI,EAAU,QAAQ,KAAM,EAAK,IAA3C,cAA8C,MACtD,MAIJ,AAAI,GACF,GAAQ,GAAO,GAInB,KAAM,GAAI,QAAQ,EAAK,EAAS,CAAC,EAAE,SAE9B,EAAP,CACA,KAAK,cAAc,KAAK,gCAAiC,EAAG,CAAC,GAIjE,KAAM,OAAO,CACX,GAAM,GAAS,KAAK,cAEpB,KAAK,OAAO,KAAK,4BAA4B,EAE7C,GAAI,GAAqC,CAAA,EAEnC,EAAgB,GAAI,cAEpB,EAAmB,GAAI,cAE7B,OAAW,KAAW,GAAO,SAAS,4BAAyD,CAA2B,EAAG,CAC3H,GAAI,EAAQ,gBAAiB,CAC3B,GAAI,GAAQ,EAAiB,IAAI,EAAQ,gBAAgB,QAAQ,IAAI,EAErE,GAAI,CAAC,EAAO,CAMV,GALA,EAAQ,CACN,GAAG,EAAQ,gBAAgB,QAC3B,KAAM,yBAAuB,WAG3B,EAAQ,gBAAgB,OAC1B,OAAW,KAAS,GAAQ,gBAAgB,OAAQ,CAClD,GAAI,GAAW,EAAc,IAAI,CAAK,EACtC,AAAK,GACH,GAAW,CAAA,EACX,EAAc,IAAI,EAAO,CAAQ,OAIrC,GAAS,KAAK,CAAK,EAGrB,EAAiB,IAAI,EAAQ,gBAAgB,QAAQ,KAAM,CAAK,EAGlE,AAAK,EAAM,SAAS,GAAM,QAAU,CAAA,GAEpC,GAAM,GAAU,CAAA,EAEhB,OAAW,CAAA,CAAG,IAAQ,GAAQ,SAAU,CACtC,GAAM,GAAS,EAAI,WAAW,KAAK,AAAC,GAAM,EAAE,cAAgB,CAAwB,EAEpF,AAAI,GACF,EAAQ,KAAK,EAAO,OAAO,EAI/B,EAAM,QAAQ,KAAK,CAAE,GAAG,EAAQ,QAAS,KAAM,+BAA6B,WAAY,UAAS,EAEjG,iBACS,EAAQ,qBAAsB,CACvC,GAAM,GAAS,EAAQ,qBAAqB,OACxC,EAAQ,EAAiB,IAAI,EAAO,QAAQ,IAAI,EAEpD,GAAI,CAAC,EAAO,CAMV,GALA,EAAQ,CACN,GAAG,EAAO,QACV,KAAM,yBAAuB,WAG3B,EAAO,OACT,OAAW,KAAS,GAAO,OAAQ,CACjC,GAAI,GAAW,EAAc,IAAI,CAAK,EACtC,AAAK,GACH,GAAW,CAAA,EACX,EAAc,IAAI,EAAO,CAAQ,OAIrC,GAAS,KAAK,CAAK,EAGrB,EAAiB,IAAI,EAAO,QAAQ,KAAM,CAAK,EAGjD,AAAK,EAAM,SAAS,GAAM,QAAU,CAAA,GAEpC,GAAI,GAAQ,EAAM,QAAQ,KAAK,AAAC,GAAM,EAAE,OAAS,EAAQ,qBAAsB,QAAQ,IAAI,EAE3F,AAAK,GACH,GAAQ,CAAE,KAAM,+BAA6B,gBAAiB,GAAI,EAAQ,qBAAqB,SAC/F,EAAM,QAAQ,KAAK,CAAK,GAGrB,EAAM,SAAS,GAAM,QAAU,CAAA,GAEpC,GAAM,GAAU,CAAA,EAEhB,OAAW,CAAA,CAAG,IAAQ,GAAQ,SAAU,CACtC,GAAM,GAAS,EAAI,WAAW,KAAK,AAAC,GAAM,EAAE,cAAgB,CAAwB,EAEpF,AAAI,GACF,EAAQ,KAAK,EAAO,OAAO,EAI/B,EAAM,QAAQ,KAAK,CAAE,GAAG,EAAQ,QAAS,KAAM,+BAA6B,WAAY,QAAA,EAAS,EAEjG,SAGF,GAAM,GAA8B,CAAE,GAAG,EAAQ,SAEjD,GAAI,EAAI,OAAS,yBAAuB,UAAW,CACjD,EAAI,QAAU,CAAA,EAEd,OAAW,CAAA,CAAG,IAAQ,GAAQ,SAAU,CACtC,GAAM,GAAS,EAAI,WAAW,KAAK,AAAC,GAAM,EAAE,cAAgB,CAAwB,EAEpF,AAAI,GACF,EAAI,QAAQ,KAAK,EAAO,OAAO,GAOrC,GAFA,KAAM,GAAQ,YAAY,KAAM,aAAc,CAAC,EAAK,EAAQ,EAExD,EAAQ,QAAQ,OAAQ,CAC1B,OAAW,KAAS,GAAQ,QAAQ,OAAQ,CAC1C,GAAI,GAAW,EAAc,IAAI,CAAK,EACtC,AAAK,GACH,GAAW,CAAA,EACX,EAAc,IAAI,EAAO,CAAQ,GAEnC,EAAS,KAAK,CAAG,EAEnB,SAGF,EAAS,KAAK,CAAG,EAGnB,OAAW,CAAE,YAAW,IAAU,MAAK,kBACrC,GAAI,EAAQ,CACV,OAAW,KAAS,GAAQ,CAC1B,GAAI,GAAW,EAAc,IAAI,CAAK,EACtC,AAAK,GACH,GAAW,CAAA,EACX,EAAc,IAAI,EAAO,CAAQ,GAEnC,EAAS,KAAK,CAAI,EAEpB,aAEA,GAAS,KAAK,CAAI,EAItB,GAAI,KAAK,OAAO,OAAQ,CACtB,OAAW,KAAS,MAAK,OAAO,OAAQ,CACtC,GAAI,GAAI,EAAc,IAAI,CAAK,EAC/B,AAAK,GACH,GAAI,CAAA,EACJ,EAAc,IAAI,EAAO,CAAC,GAE5B,EAAE,KAAI,GAAI,CAAQ,EAGpB,EAAW,CAAA,EAGb,GAAI,EAAc,KAChB,OAAW,CAAC,EAAO,IAAa,GAC9B,GAAI,CACF,GAAM,GAAI,KAAM,MAAK,OAAO,OAAO,MAAM,CAAK,EAC9C,KAAM,GAAE,MAAK,EACb,KAAK,OAAO,KACV,cAAc,UAAM,MAAM,EAAS,MAAM,cAAc,EAAS,IAAI,AAAC,GAAM,UAAM,KAAK,EAAE,IAAI,CAAC,EAAE,KAAK,IAAI,gBAAgB,UAAM,MAAM,EAAE,IAAI,KAAK,UAAM,KAAK,EAAE,EAAE,IAAI,EAGpK,KAAM,GAAE,SAAS,IAAI,CAAQ,EAE7B,KAAK,OAAO,KAAK,8CAA8C,UAAM,MAAM,EAAE,IAAI,KAAK,UAAM,KAAK,EAAE,EAAE,IAAI,QAClG,EAAP,CACA,KAAK,OAAO,MAAM,wCAAwC,UAAM,MAAM,CAAK,MAAO,EAAY,SAAS,EAI7G,GAAI,EAAS,OACX,GAAI,CACF,KAAK,OAAO,KAAK,cAAc,UAAM,MAAM,EAAS,MAAM,cAAc,EAAS,IAAI,AAAC,GAAM,UAAM,KAAK,EAAE,IAAI,CAAC,EAAE,KAAK,IAAI,6BAA6B,EAEtJ,KAAM,MAAK,OAAO,YAAa,SAAS,IAAI,CAAQ,EAEpD,KAAK,OAAO,KAAK,mCAAmC,QAC7C,EAAP,CACA,KAAK,OAAO,MAAM,0CAA2C,EAAY,SAAS,GAKxF,KAKM,iBAAgB,EAAgC,CACpD,MAAO,GAGT,KAKM,oBAAmB,EAAyC,CAChE,MAAO,GAGT,KAKM,iBAAgB,EAAsC,CAC1D,MAAO,GAGT,KAKM,oBAAmB,EAAsC,CAC7D,MAAO,KAtUE,sCAWV,EAAS,CAAE,MAAO,oBAAqB,yDACb,eAAW,IAAA,OAAX,iBAZhB,EAA2B,UAYhC,oBAAiB,IAAA,KAyRtB,EAAa,CACZ,UAAW,EACX,cAAe,GACf,KAAM,8BACP,yDACwB,+BAA2B,IAAA,OAA3B,iCA1Sd,EAA2B,UA0ShC,kBAAe,IAAA,KAIpB,EAAa,CACZ,UAAW,EACX,cAAe,GACf,KAAM,uCACP,yDAC2B,wCAAoC,IAAA,OAApC,0CAnTjB,EAA2B,UAmThC,qBAAkB,IAAA,KAIvB,EAAa,CACZ,UAAW,EACX,cAAe,GACf,KAAM,oCACP,yDACwB,qCAAiC,IAAA,OAAjC,uCA5Td,EAA2B,UA4ThC,kBAAe,IAAA,KAIpB,EAAa,CACZ,UAAW,EACX,cAAe,GACf,KAAM,qBACP,yDAC2B,qCAAiC,IAAA,OAAjC,uCArUjB,EAA2B,UAqUhC,qBAAkB,IAAA,IC1W1B,GAiBa,GAMA,GAvBb,uBAQA,IACA,IAQO,AAAM,EAAN,aAAmC,EAAa,CACrD,YAAmB,EAA6B,CAC9C,MAAK,OADY,QAAA,IADR,4BAMN,AAAM,GAAU,EAAC,GAAgC,EAAyB,GAAI,GAAqB,CAAO,CAAC,EAA3F,aCvBvB,SAAA,0FCAA,GASA,GADA,KAiBa,EAzBb,uBAQA,IACA,EAAwB,sBACxB,KACA,KACA,KACA,IALA,AAAA,GAAA,SAAA,EAAA,EAAA,EAAA,EAAA,kaAiBa,EAAN,aAAmC,EAAY,CACpD,YAAoB,EAA2B,CAC7C,MAAK,OADa,OAAA,EAIpB,KAAc,eAAc,EAAsC,CAChE,GAAM,GAAU,EAAI,QAChB,EAAS,KAAK,OAAO,OAMzB,GAJI,MAAO,IAAW,YACpB,GAAS,KAAM,GAAO,CAAG,GAGvB,MAAO,IAAW,SACpB,MAAI,GAAQ,WAAW,CAAM,EAAU,EAAO,OACvC,KAGT,GAAI,YAAkB,OAAO,CAC3B,GAAM,GAAI,EAAO,KAAK,AAAC,GAAM,EAAQ,WAAW,CAAC,CAAC,EAElD,MAAI,GAAU,EAAE,OACT,KAGT,MAAO,MAGT,KACc,eAAc,EAAc,CACxC,GAAI,CACF,GAAM,GAAa,KAAM,MAAK,cAAc,CAAG,EAE/C,GAAI,CAAC,EAAY,OAEjB,GAAM,GAAU,EAAI,QAAQ,MAAM,CAAU,EAEtC,EAAmC,CAAA,EAEnC,EAAa,GAAI,KAEvB,OAAW,KAAO,MAAK,cAAc,SAAS,WAC5C,OAAW,KAAO,MAAK,cAAc,SAAS,sBAA4C,EAAK,CAAoB,EACjH,EAAS,KAAK,CAAG,EACjB,EAAW,IAAI,EAAK,CAAG,EAI3B,GAAI,GAAoB,EAElB,EAAU,EAAS,KAAK,AAAC,GAAM,CACnC,GAAM,GAAQ,CAAC,EAAE,QAAQ,MAEzB,AAAI,EAAE,QAAQ,SACZ,EAAM,KAAI,GAAI,EAAE,QAAQ,OAAO,EAGjC,OAAW,KAAQ,GACjB,GAAI,EAAQ,WAAW,CAAI,EACzB,MAAI,GAAQ,SAAW,EAAK,OAC1B,GAAoB,EAAK,OAClB,IAET,GAAoB,EAAK,OAClB,EAAQ,WAAW,EAAO,GAAG,GAIxC,MAAO,GACR,EAED,GAAI,CAAC,EAAS,OAEd,GAAM,GAAM,EAAW,IAAI,CAAO,EAElC,GAAI,CAAC,EAAK,OAEV,EAAI,QAAU,EAEd,GAAM,GAAkB,CAAA,EAEpB,EAAa,EAAQ,MAAM,EAAoB,CAAC,EAAE,MAAK,IAAA,EAE3D,KAAM,MAAK,iBAAiB,EAAsB,EAAM,EAAQ,SAAU,MAAO,EAAK,EAAG,IAAc,CACrG,GAAI,EAAU,QAAQ,cAAe,MAAO,CAAC,GAE7C,GAAI,EAAI,WAAW,KAAK,AAAC,IAAM,GAAE,cAAgB,CAAqB,EAAG,CACvE,GAAM,IAAO,EAAW,KAAK,GAAG,EAChC,SAAa,CAAA,EACN,CAAC,GAAM,GAEhB,MAAO,CAAC,EAAW,MAAK,EAAI,GAC7B,EAED,KAAM,GAAQ,QAAQ,EAAK,EAAM,CAAC,EAAI,QAC/B,EAAP,CACA,KAAK,cAAc,KAAK,yBAA0B,EAAG,CAAG,GAI5D,KACM,QAAO,EAAc,CACzB,MAAO,GAGT,KACM,KAAI,EAAe,CACvB,MAAO,GAGT,KACM,KAAI,EAAe,CACvB,MAAO,QAAO,CAAK,IAhHV,gCA4BV,EAAS,CAAE,MAAO,gBAAiB,QAAS,UAAW,yDACvB,WAAO,IAAA,OAAP,aA7BtB,EAAoB,UA6BjB,gBAAa,IAAA,MAuE1B,EAAa,CAAE,UAAW,EAAsB,KAAM,UAAS,cAAe,GAAM,yDACnE,WAAO,IAAA,OAAP,aArGP,EAAoB,UAqGzB,SAAM,IAAA,MAIX,EAAa,CAAE,UAAW,EAAsB,KAAM,OAAQ,6DAzGpD,EAAoB,UA0GzB,MAAG,IAAA,MAIR,EAAa,CAAE,UAAW,EAAsB,KAAM,OAAQ,6DA9GpD,EAAoB,UA+GzB,MAAG,IAAA,ICxIX,0CAeA,IACA,GACA,MAM6C,EAvB7C,uBAeA,GAAS,oBACT,GAAyB,sBACzB,GAAa,wBAMuB,oCAAS,eAAc,WAAA,aAFzD,EAAyB,EAAS,GAAA,WAAA,CAKhC,iBAAiB,KAAM,eAAe,EAAC,gBAAA,EAAA,yBAAsC,QAAA,OAAE,OAAA,OAA2B,OAAA,GAAA,UAA6B,UAAA,EAAA,eAAA,CAEnI,OAAC,CAEA,WAAS,KAAA,cAAA,CACV,EACL,gBAAA,SAEK,oBAAc,EAClB,CAAA,EAEA,KAAK,SAAU,GAAK,GAAA,KAAA,UAAqB,IAAA,EAEzC,KAAA,SAAW,qBAAoB,MAAO,IAAA,EAEtC,KAAA,SAAc,qBAAa,UAAiB,KAAA,OAAA,OAI5C,cAAyB,CAEzB,GAAI,CAAA,KAAK,QAAA,YAAkB,KAAA,IAAA,OAAA,8BAAA,OACzB,UAAW,KAAK,oBAAS,OACzB,MAAO,QAAK,YAAU,MAAA,KACvB,GAAU,KAAK,QAAA,YAAkB,SAChC,CAAA,EAAK,KAAS,IAAE,OAAO,+BAAmB,QACnC,CAAA,iBACO,cACb,OAAA,IAAA,EAAA,EAAA,EACF,EAAA,KAAA,EAAA,GAAA,UAEI,YAAgB,SACtB,OAAA,CAAA,EAAA,IAAA,GAAA,QAEK,KAAA,OAAA,IAAA,CAAA,EACE,EAAK,KAAS,EAAA,KAAA,GAAe,EAIrC,KAAM,UAAA,KAAA,WAA4B,WAAyB,MAAE,EAAA,MAAA,YAAA,EAAA,IAAA,AAAA,GAAA,WAAA,KAAA,CAAA,CAAA,EAAA,KAAA,IAAA,IAAA,OAE3D,oCAAoB,EAAA,CACrB,KAAA,MAAA,SAAA,eAAA,GAAA,GAAA,CAAA,CAAA,EAED,KAAA,UAAA,KAAA,wCAAkC,OAEjC,6BAAA,EAAA,CAED,KAAO,MAAA,SAAyB,eAAiB,GAAA,GAAA,CAAA,CAAA,EAC/C,KAAA,UAAe,KAAA,iCAAqC,EAEvD,iCAAA,sHAtD4C,uBCvB7C,GAQA,IAKa,EAbb,sBAQA,GAA2B,sBAG3B,KAEO,AAAM,EAAN,KAAmB,CAGxB,MAA4B,GAAI,eAEhC,SAAkD,GAAI,eAEtD,MAAM,EAAkB,EAAqB,CAC3C,KAAK,OAAS,EACd,OAAS,GAAI,EAAG,EAAI,EAAS,OAAQ,IAAK,CACxC,GAAM,GAAU,EAAS,GACzB,KAAK,SAAS,IAAI,EAAG,GAAI,GAAkB,CAAO,CAAC,GAIvD,KAAM,aAAY,EAAgB,EAAc,EAAiB,CAC/D,GAAM,GAAO,KAAK,MAAM,IAAI,CAAI,EAEhC,GAAI,CAAC,EAAM,OAEX,GAAM,CAAE,iBAAkB,KAAM,uCAEhC,OAAW,KAAM,GACf,KAAM,GAAG,KAAK,KAAM,EAAc,cAAc,CAAM,EAAC,GAAK,CAAI,EAIpE,KAAM,SAAQ,EAAgB,EAAiB,EAA4B,EAAM,CAC/E,KAAM,MAAK,YAAY,EAAQ,aAAc,CAAc,EAC3D,GAAI,GACJ,GAAI,CACF,EAAS,KAAM,MAAK,OAAO,KAAK,EAAM,GAAK,CAAI,QACxC,EAAP,CACA,WAAM,MAAK,YAAY,EAAQ,cAAe,CAAC,KAAM,EAAe,EAC9D,EAER,YAAM,MAAK,YAAY,EAAQ,YAAa,CAAC,EAAO,EAE7C,IAtCE,uBCbb,OAAA,0ECAA,MAAA,yDCAA,OAsBI,GACD,GAvBH,0BAmBoC,gCAGhC,GAA4B,EAAC,GAAC,GAAU,aAAA,CAAA,EAAZ,wBAC7B,GAAA,GAAA,MAAA,EAAA,IAAA,CAED,GAAI,GAAU,MACd,AAAA,YAAA,wHC1BF,uCCAA,kCCAA,0BAcA,oCCdA,2uBCAA,OAA+G,sBAC/G,IACA,KAEO,GAAM,IAAN,KAAqB,CAC1B,YAAmB,EAAqE,EAAmB,MAAxF,QAAA,OAAqE,OAAA,EAExF,QAAQ,EAAqF,CAC3F,GAAM,GAAM,GAAI,GAA4B,CAC1C,KAAM,0BAAuB,UAC7B,GAAG,EACJ,EACD,SAAI,gBAAkB,KACf,EAAyB,CAAG,EAGrC,YAAY,EAA8D,CACxE,MAAO,IAAI,GAAqB,EAAS,IAAI,IAbpC,wBAiBN,GAAM,GAAN,KAA0B,CAC/B,YAAmB,EAAqE,EAAyB,MAA9F,QAAA,OAAqE,OAAA,EAExF,QAAQ,EAAqF,CAC3F,GAAM,GAAM,GAAI,GAA4B,CAC1C,KAAM,0BAAuB,UAC7B,GAAG,EACJ,EACD,SAAI,qBAAuB,KACpB,EAAyB,CAAG,IAT1B","names":[]}
1
+ {"version":3,"sources":["../src/core/symbols.ts","../src/core/hooks/componentHook.ts","../src/core/components/decoratorCreator.ts","../src/core/components/ComponentArgument.ts","../src/core/components/ComponentArgumentDecorator.ts","../src/applicationCommand/ApplicationCommand.ts","../src/applicationCommand/ApplicationCommandOption.ts","../src/core/listener/index.ts","../src/core/converter/index.ts","../src/core/hooks/moduleHook.ts","../src/core/hooks/index.ts","../src/core/structures/Registry.ts","../src/core/structures/index.ts","../src/core/extensions/Extension.ts","../src/core/extensions/CTSExtension.ts","../src/applicationCommand/ApplicationCommandExtension.ts","../src/textCommand/TextCommand.ts","../src/textCommand/parameters.ts","../src/textCommand/TextCommandExtension.ts","../src/core/structures/CommandClient.ts","../src/core/components/BaseComponent.ts","../src/core/components/index.ts","../src/core/utils/errors.ts","../src/core/utils/checks.ts","../src/core/utils/index.ts","../src/core/extensions/index.ts","../src/core/index.ts","../src/index.ts","../src/applicationCommand/group.ts"],"sourcesContent":["/*\r\n * File: symbols.ts\r\n *\r\n * Copyright (c) 2022-2022 pikokr\r\n *\r\n * Licensed under MIT License. Please see more defails in LICENSE file.\r\n */\r\n\r\nexport const ComponentStoreSymbol = Symbol()\r\nexport const ComponentArgStoreSymbol = Symbol()\r\nexport const ModuleHookStoreSymbol = Symbol()\r\nexport const CommandClientSymbol = Symbol()\r\nexport const ComponentHookSymbol = Symbol()\r\nexport const FilePathSymbol = Symbol()\r\n","/*\r\n* File: componentHook.ts\r\n* \r\n* Copyright (c) 2022-2022 pikokr\r\n* \r\n* Licensed under MIT License. Please see more defails in LICENSE file.\r\n*/\r\n\r\nimport { Collection } from 'discord.js'\nimport { ComponentHookSymbol } from '../symbols'\n\nexport type ComponentHookFn = (...args: any[]) => void | Promise<void>\n\nexport type ComponentHookStore = Collection<string, ComponentHookFn[]>\n\nexport const getComponentHookStore = (target: object, property: string | symbol): ComponentHookStore => {\n let data = Reflect.getMetadata(ComponentHookSymbol, target, property) as ComponentHookStore\n\n if (!data) {\n data = new Collection()\n Reflect.defineMetadata(ComponentHookSymbol, data, target, property)\n }\n\n return data\n}\n\nexport const createComponentHook = (name: string, fn: ComponentHookFn): MethodDecorator => {\n return (target, key) => {\n const store = getComponentHookStore(target, key)\n\n let hooks = store.get(name)\n\n if (!hooks) {\n hooks = []\n store.set(name, hooks)\n }\n\n hooks.push(fn)\n }\n}\n","/*\n * File: decoratorCreator.ts\n *\n * Copyright (c) 2022-2022 pikokr\n *\n * Licensed under MIT License. Please see more defails in LICENSE file.\n */\n\nimport { Collection } from 'discord.js'\nimport { ComponentHookStore } from '../hooks'\nimport { getComponentHookStore } from '../hooks/componentHook'\nimport { ComponentStoreSymbol } from '../symbols'\nimport { BaseComponent } from './BaseComponent'\nimport { ComponentArgumentDecorator } from './ComponentArgumentDecorator'\n\ntype ComponentStore = Collection<string | symbol, BaseComponent>\ntype ComponentArgumentStore = Collection<number, ComponentArgumentDecorator>\n\nexport const getComponentStore = (target: object): ComponentStore => {\n let result: ComponentStore | null = Reflect.getMetadata(ComponentStoreSymbol, target)\n\n if (!result) {\n result = new Collection()\n\n Reflect.defineMetadata(ComponentStoreSymbol, result, target)\n }\n\n return result\n}\n\nexport const getComponent = (target: object, key: string | symbol) => {\n const store = getComponentStore(target)\n\n return store.get(key)\n}\n\nexport const createComponentDecorator = (component: BaseComponent): MethodDecorator => {\n return (target, key) => {\n component._init(Reflect.get(target, key), Reflect.getMetadata('design:paramtypes', target, key))\n\n const componentHookStore: ComponentHookStore = getComponentHookStore(target, key)\n\n component.hooks = componentHookStore\n\n const store = getComponentStore(target)\n\n const decorators = getComponentArgumentStore(target, key)\n\n decorators.forEach((x, i) => {\n component.argTypes.get(i)?.decorators.push(x)\n })\n\n store.set(key, component)\n }\n}\n\nexport const getComponentArgumentStore = (target: object, key: string | symbol): ComponentArgumentStore => {\n let result: ComponentArgumentStore | null = Reflect.getMetadata(ComponentStoreSymbol, target, key)\n\n if (!result) {\n result = new Collection()\n\n Reflect.defineMetadata(ComponentStoreSymbol, result, target, key)\n }\n\n return result\n}\n\nexport const createArgumentDecorator = <Options>(type: typeof ComponentArgumentDecorator<Options>) => {\n return (options: Options): ParameterDecorator => {\n return (target, key, idx) => {\n var arg: ComponentArgumentDecorator<Options> = new type(options)\n\n const store = getComponentArgumentStore(target, key)\n\n store.set(idx, arg)\n }\n }\n}\n","/*\r\n* File: ComponentArgument.ts\r\n* \r\n* Copyright (c) 2022-2022 pikokr\r\n* \r\n* Licensed under MIT License. Please see more defails in LICENSE file.\r\n*/\r\n\r\nimport { ComponentArgumentDecorator } from './ComponentArgumentDecorator'\n\nexport class ComponentArgument {\n decorators: ComponentArgumentDecorator[] = []\n\n constructor(public type: unknown) {}\n}\n","/*\r\n* File: ComponentArgumentDecorator.ts\r\n* \r\n* Copyright (c) 2022-2022 pikokr\r\n* \r\n* Licensed under MIT License. Please see more defails in LICENSE file.\r\n*/\r\n\r\nimport _ from 'lodash'\n\nexport class ComponentArgumentDecorator<Options = unknown> {\n options: Options\n\n constructor(options: Partial<Options>) {\n if (typeof options === 'object') {\n this.options = _.merge(this.defaultOptions(), options)\n } else {\n this.options = options\n }\n }\n\n defaultOptions(): Options {\n return {} as unknown as Options\n }\n}\n","/*\n * File: ApplicationCommand.ts\n *\n * Copyright (c) 2022-2022 pikokr\n *\n * Licensed under MIT License. Please see more defails in LICENSE file.\n */\n\nimport type { ApplicationCommandType, ChatInputApplicationCommandData, MessageApplicationCommandData, Snowflake, UserApplicationCommandData } from 'discord.js'\nimport { createComponentDecorator } from '../core/components/decoratorCreator'\nimport { BaseComponent } from '../core/components/BaseComponent'\nimport { SubCommandGroup, SubCommandGroupChild } from './group'\n\ntype Options = (UserApplicationCommandData | MessageApplicationCommandData | Omit<ChatInputApplicationCommandData, 'options'>) & {\n type: ApplicationCommandType\n guilds?: Snowflake[]\n}\n\nexport class ApplicationCommandComponent extends BaseComponent {\n options: Options\n\n subcommandGroup?: SubCommandGroup\n subcommandGroupChild?: SubCommandGroupChild\n\n constructor(options: UserApplicationCommandData | MessageApplicationCommandData | Omit<ChatInputApplicationCommandData, 'options'>) {\n super()\n\n this.options = options as Options\n }\n}\n\nexport const applicationCommand = (options: Options) => createComponentDecorator(new ApplicationCommandComponent(options))\n\nexport type { Options as ApplicationCommandComponentOptions }\n","/*\r\n* File: ApplicationCommandOption.ts\r\n* \r\n* Copyright (c) 2022-2022 pikokr\r\n* \r\n* Licensed under MIT License. Please see more defails in LICENSE file.\r\n*/\r\n\r\nimport { APIApplicationCommandOption } from 'discord.js'\nimport { createArgumentDecorator, ComponentArgumentDecorator } from '../core'\n\ntype Options = APIApplicationCommandOption\n\nexport class ApplicationCommandOption extends ComponentArgumentDecorator<Options> {}\n\nexport const option = createArgumentDecorator(ApplicationCommandOption)\n","/*\n * File: index.ts\n *\n * Copyright (c) 2022-2022 pikokr\n *\n * Licensed under MIT License. Please see more defails in LICENSE file.\n */\n\nimport _ from 'lodash'\nimport { BaseComponent } from '../components/BaseComponent'\nimport { createComponentDecorator } from '../components/decoratorCreator'\n\ntype Options = { emitter: string; event: string }\n\ntype OptionsArg = { emitter?: string; event: string }\n\nexport class ListenerComponent extends BaseComponent {\n options: Options\n\n constructor(options: OptionsArg) {\n super()\n\n this.options = _.merge({ emitter: 'discord' }, options)\n }\n}\n\nexport const listener = (options: OptionsArg) => createComponentDecorator(new ListenerComponent(options))\n","/*\n * File: index.ts\n *\n * Copyright (c) 2022-2022 pikokr\n *\n * Licensed under MIT License. Please see more defails in LICENSE file.\n */\n\nimport { BaseComponent } from '../components/BaseComponent'\nimport { createComponentDecorator } from '../components/decoratorCreator'\n\ntype Options = { component: unknown; type: Function; parameterless: boolean }\n\ntype OptionsArg = Omit<Options, 'parameterless'> & { parameterless?: boolean }\n\nexport class ConverterComponent extends BaseComponent {\n options: Options\n\n constructor(options: OptionsArg) {\n super()\n this.options = options as Options\n }\n}\n\nexport const argConverter = (options: OptionsArg) => createComponentDecorator(new ConverterComponent(options))\n","/*\r\n* File: moduleHook.ts\r\n* \r\n* Copyright (c) 2022-2022 pikokr\r\n* \r\n* Licensed under MIT License. Please see more defails in LICENSE file.\r\n*/\r\n\r\nimport { Collection } from 'discord.js'\nimport { ModuleHookStoreSymbol } from '../symbols'\n\ntype ModuleHookStore = Collection<string, Function[]>\n\nexport const getModuleHookStore = (target: object) => {\n let result: ModuleHookStore | null = Reflect.getMetadata(ModuleHookStoreSymbol, target)\n\n if (!result) {\n result = new Collection()\n\n Reflect.defineMetadata(ModuleHookStoreSymbol, result, target)\n }\n\n return result\n}\n\nexport const moduleHook = (name: string): MethodDecorator => {\n return (target, key) => {\n const store = getModuleHookStore(target)\n\n let v = store.get(name)\n\n if (!v) {\n v = []\n store.set(name, v)\n }\n\n v.push(Reflect.get(target, key))\n }\n}\n","/*\r\n* File: index.ts\r\n* \r\n* Copyright (c) 2022-2022 pikokr\r\n* \r\n* Licensed under MIT License. Please see more defails in LICENSE file.\r\n*/\r\n\r\nexport * from './moduleHook'\r\nexport { createComponentHook } from './componentHook'\r\nexport type { ComponentHookStore } from './componentHook'\r\n","/*\n * File: Registry.ts\n *\n * Copyright (c) 2022-2022 pikokr\n *\n * Licensed under MIT License. Please see more defails in LICENSE file.\n */\n\nimport chalk from 'chalk'\nimport { Collection } from 'discord.js'\nimport EventEmitter from 'events'\nimport _, { result } from 'lodash'\nimport { Logger } from 'tslog'\nimport { getComponentStore } from '../components'\nimport type { BaseComponent } from '../components'\nimport { getModuleHookStore } from '../hooks'\nimport { ListenerComponent } from '../listener'\nimport { CommandClientSymbol, FilePathSymbol } from '../symbols'\nimport { CommandClient } from './CommandClient'\nimport walkSync from 'walk-sync'\nimport path from 'path'\n\nexport class Registry {\n extensions: object[] = []\n\n emitters: Collection<string, EventEmitter> = new Collection()\n\n logger: Logger\n\n constructor(logger: Logger, public client: CommandClient) {\n this.logger = logger.getChildLogger({\n prefix: [chalk.green('[Registry]')],\n })\n }\n\n getComponentsWithTypeGlobal<T>(type: unknown): T[] {\n const result: T[] = []\n\n for (const ext of this.extensions) {\n result.push(...this.getComponentsWithType<T>(ext, type))\n }\n\n return result\n }\n\n getComponentsWithType<T>(ext: object, type: unknown): T[] {\n const componentStore = getComponentStore(ext)\n\n return Array.from(componentStore.filter((x) => (x.constructor as unknown) === type).values() as Iterable<T>)\n }\n\n registerEventListeners(ext: object) {\n const listeners = this.getComponentsWithType<ListenerComponent>(ext, ListenerComponent)\n\n for (const listener of listeners) {\n const emitter = this.emitters.get(listener.options.emitter)\n\n if (emitter) {\n const bound = listener.method.bind(ext)\n\n Reflect.defineMetadata('bound', bound, listener)\n\n emitter.addListener(listener.options.event, bound)\n }\n }\n }\n\n unregisterEventListeners(ext: object) {\n const listeners = this.getComponentsWithType<ListenerComponent>(ext, ListenerComponent)\n\n for (const listener of listeners) {\n const emitter = this.emitters.get(listener.options.emitter)\n const bound = Reflect.getMetadata('bound', listener)\n\n if (emitter && bound) {\n emitter.removeListener(listener.options.event, bound)\n }\n }\n }\n\n async loadAllModulesInDirectory(dir: string): Promise<object[]> {\n const results: object[] = []\n\n const files = walkSync(dir).filter((x) => x.endsWith('.ts') || x.endsWith('.js'))\n\n for (const file of files) {\n if (file.endsWith('.d.ts')) continue\n const p = path.join(dir, file)\n results.push(...(await this.loadModulesAtPath(p)))\n }\n\n return results\n }\n\n async loadModulesAtPath(file: string) {\n this.logger.info(`Loading module at path ${chalk.green(file)}`)\n\n const p = require.resolve(file)\n\n const mod = require(p)\n\n if (typeof mod.setup !== 'function') throw new Error('Extension must have a setup function')\n\n const modules = await mod.setup()\n\n return this.registerModules(modules, p)\n }\n\n private async registerModules(modules: object | object[], p: string) {\n const results: object[] = []\n if (modules instanceof Array) {\n for (const module of modules) {\n await this.registerModule(module)\n Reflect.defineMetadata(FilePathSymbol, p, module)\n results.push(module)\n }\n } else {\n await this.registerModule(modules)\n Reflect.defineMetadata(FilePathSymbol, p, modules)\n results.push(modules)\n }\n\n return results\n }\n\n async reloadModules() {\n const result: { file: string; result: boolean; error?: Error; extensions?: object[] }[] = []\n const paths = new Set<string>()\n const extensions = [...this.extensions]\n for (const module of extensions) {\n const file = Reflect.getMetadata(FilePathSymbol, module)\n if (!file) continue\n\n this.logger.info(`Unloading module: ${chalk.green(module.constructor.name)}`)\n\n paths.add(file)\n\n await this.unregisterModule(module)\n\n delete require.cache[require.resolve(file)]\n }\n\n for (const path of paths) {\n try {\n const extensions = await this.loadModulesAtPath(path)\n\n result.push({\n file: path,\n result: true,\n extensions,\n })\n } catch (e) {\n result.push({\n file: path,\n result: false,\n error: e as Error,\n })\n }\n }\n\n return result\n }\n\n async registerModule(ext: object) {\n Reflect.defineMetadata(CommandClientSymbol, this.client, ext)\n\n this.registerEventListeners(ext)\n await this.runModuleHook(ext, 'load')\n this.extensions.push(ext)\n this.logger.info(`Module registered: ${chalk.green(ext.constructor.name)}`)\n }\n\n async unregisterModule(ext: object) {\n this.unregisterEventListeners(ext)\n await this.runModuleHook(ext, 'unload')\n _.remove(this.extensions, (x) => x === ext)\n this.logger.info(`Module unregistered: ${chalk.green(ext.constructor.name)}`)\n }\n\n runModuleHook(ext: object, hookName: string, ...args: unknown[]) {\n const hooks = getModuleHookStore(ext)\n\n const functions = hooks.get(hookName)\n\n if (functions) {\n for (const fn of functions) {\n fn.call(ext, ...args)\n }\n }\n }\n\n registerEventEmitter(name: string, emitter: EventEmitter) {\n this.emitters.set(name, emitter)\n }\n}\n","/*\r\n* File: index.ts\r\n* \r\n* Copyright (c) 2022-2022 pikokr\r\n* \r\n* Licensed under MIT License. Please see more defails in LICENSE file.\r\n*/\r\n\r\nexport * from './Registry'\nexport * from './CommandClient'\n","/*\n * File: Extension.ts\n *\n * Copyright (c) 2022-2022 pikokr\n *\n * Licensed under MIT License. Please see more defails in LICENSE file.\n */\n\nimport chalk from 'chalk'\nimport { Collection } from 'discord.js'\nimport { Logger } from 'tslog'\nimport { ComponentArgument } from '../components/ComponentArgument'\nimport { ConverterComponent } from '../converter'\nimport { CommandClient } from '../structures'\n\nexport class Extension {\n protected get commandClient() {\n return CommandClient.getFromModule(this)\n }\n\n protected get client() {\n return this.commandClient.discord\n }\n\n protected _logger?: Logger\n\n protected get logger() {\n if (!this._logger) this._logger = this.commandClient.logger.getChildLogger({ prefix: [chalk.green(`[${this.constructor.name}]`)], displayFunctionName: false })\n return this._logger\n }\n\n protected async convertArguments(\n component: unknown,\n argList: unknown[],\n args: Collection<number, ComponentArgument>,\n getConverterArgs: (arg: ComponentArgument, index: number, converter: ConverterComponent) => unknown[] | Promise<unknown[]>,\n ) {\n const items = new Collection<unknown, { ext: object; component: ConverterComponent }>()\n\n for (const extension of this.commandClient.registry.extensions) {\n for (const converter of this.commandClient.registry.getComponentsWithType<ConverterComponent>(extension, ConverterComponent)) {\n if (converter.options.component != component) continue\n\n items.set(converter.options.type, { component: converter, ext: extension })\n }\n }\n\n for (const [index, arg] of args) {\n const converter = items.get(arg.type)\n\n if (!converter) {\n argList[index] = undefined\n continue\n }\n\n const converterArgs = await getConverterArgs(arg, index, converter.component)\n\n argList[index] = await converter.component.execute(converter.ext, converterArgs)\n }\n }\n}\n","/*\r\n* File: CTSExtension.ts\r\n* \r\n* Copyright (c) 2022-2022 pikokr\r\n* \r\n* Licensed under MIT License. Please see more defails in LICENSE file.\r\n*/\r\n\r\nimport chalk from 'chalk'\nimport { Extension } from './Extension'\n\nexport class CTSExtension extends Extension {\n protected get logger() {\n if (!this._logger) this._logger = this.commandClient.ctsLogger.getChildLogger({ prefix: [chalk.green(`[${this.constructor.name}]`)], displayFunctionName: false })\n return this._logger\n }\n}\n","/*\n * File: ApplicationCommandExtension.ts\n *\n * Copyright (c) 2022-2022 pikokr\n *\n * Licensed under MIT License. Please see more defails in LICENSE file.\n */\n\nimport chalk from 'chalk'\nimport {\n APIApplicationCommandSubcommandGroupOption,\n APIApplicationCommandSubcommandOption,\n ApplicationCommandData,\n ApplicationCommandDataResolvable,\n ApplicationCommandOptionType,\n ApplicationCommandSubCommandData,\n ApplicationCommandType,\n ChatInputApplicationCommandData,\n ChatInputCommandInteraction,\n Collection,\n CommandInteraction,\n Interaction,\n InteractionType,\n MessageContextMenuCommandInteraction,\n Snowflake,\n UserContextMenuCommandInteraction,\n} from 'discord.js'\nimport { ApplicationCommandComponent } from './ApplicationCommand'\nimport { ApplicationCommandOption } from './ApplicationCommandOption'\nimport { listener } from '../core/listener'\nimport { argConverter } from '../core/converter'\nimport { CTSExtension } from '../core/extensions/CTSExtension'\n\nexport type ApplicationCommandExtensionConfig = {\n guilds?: Snowflake[]\n}\n\nexport class ApplicationCommandExtension extends CTSExtension {\n constructor(public config: ApplicationCommandExtensionConfig) {\n super()\n }\n\n unmanagedCommands: (ApplicationCommandData & { guilds?: Snowflake[] })[] = []\n\n registerUnmanagedCommand(command: ApplicationCommandData & { guilds?: Snowflake[] }) {\n this.unmanagedCommands.push(command)\n }\n\n @listener({ event: 'interactionCreate' })\n async interactionCreate(i: Interaction) {\n try {\n if (i.type !== InteractionType.ApplicationCommand) return\n\n let cmd: ApplicationCommandComponent | null = null\n let ext: object | null = null\n\n const extensions = this.commandClient.registry.extensions\n\n let subcommand: string | null = null\n let subcommandGroup: string | null = null\n\n if (i.commandType === ApplicationCommandType.ChatInput) {\n subcommand = i.options.getSubcommand(false)\n subcommandGroup = i.options.getSubcommandGroup(false)\n }\n\n extLoop: for (const extension of extensions) {\n const components = this.commandClient.registry.getComponentsWithType<ApplicationCommandComponent>(extension, ApplicationCommandComponent)\n\n if (subcommand) {\n for (const command of components) {\n if (!command.subcommandGroup && !command.subcommandGroupChild) continue\n\n if (\n command.subcommandGroupChild &&\n command.subcommandGroupChild.parent.options.name === i.commandName &&\n command.subcommandGroupChild.options.name === subcommandGroup &&\n command.options.name === subcommand\n ) {\n ext = extension\n cmd = command\n break extLoop\n }\n if (command.subcommandGroup && !subcommandGroup && command.subcommandGroup.options.name === i.commandName && command.options.name === subcommand) {\n ext = extension\n cmd = command\n break extLoop\n }\n }\n } else {\n for (const command of components) {\n if (command.options.name === i.commandName) {\n ext = extension\n cmd = command\n break extLoop\n }\n }\n }\n }\n\n if (cmd && ext) {\n const argList: unknown[] = []\n\n await this.convertArguments(ApplicationCommandComponent, argList, cmd.argTypes, () => [i])\n\n for (const [idx, arg] of cmd.argTypes) {\n let value: unknown = null\n\n for (const decorator of arg.decorators) {\n if (decorator instanceof ApplicationCommandOption) {\n if ([ApplicationCommandOptionType.Subcommand, ApplicationCommandOptionType.SubcommandGroup].includes(decorator.options.type) && i.isChatInputCommand()) {\n if (decorator.options.type === ApplicationCommandOptionType.Subcommand) {\n value = i.options.getSubcommand() === decorator.options.name\n break\n }\n if (decorator.options.type === ApplicationCommandOptionType.SubcommandGroup) {\n value = i.options.getSubcommandGroup() === decorator.options.name\n break\n }\n }\n\n value = i.options.get(decorator.options.name, false)?.value\n break\n }\n }\n\n if (value) {\n argList[idx] = value\n }\n }\n\n await cmd.execute(ext, argList, [i])\n }\n } catch (e) {\n this.commandClient.emit('applicationCommandInvokeError', e, i)\n }\n }\n\n async sync() {\n const client = this.commandClient\n\n this.logger.info('Trying to sync commands...')\n\n let commands: ApplicationCommandData[] = []\n\n const guildCommands = new Collection<Snowflake, ApplicationCommandData[]>()\n\n const subcommandGroups = new Collection<string, ChatInputApplicationCommandData>()\n\n for (const command of client.registry.getComponentsWithTypeGlobal<ApplicationCommandComponent>(ApplicationCommandComponent)) {\n if (command.subcommandGroup) {\n let group = subcommandGroups.get(command.subcommandGroup.options.name)\n\n if (!group) {\n group = {\n ...command.subcommandGroup.options,\n type: ApplicationCommandType.ChatInput,\n }\n\n if (command.subcommandGroup.guilds) {\n for (const guild of command.subcommandGroup.guilds) {\n let commands = guildCommands.get(guild)\n if (!commands) {\n commands = []\n guildCommands.set(guild, commands)\n }\n }\n } else {\n commands.push(group)\n }\n\n subcommandGroups.set(command.subcommandGroup.options.name, group)\n }\n\n if (!group.options) group.options = []\n\n const options = []\n\n for (const [, arg] of command.argTypes) {\n const option = arg.decorators.find((x) => x.constructor === ApplicationCommandOption) as ApplicationCommandOption\n\n if (option) {\n options.push(option.options)\n }\n }\n\n group.options.push({ ...command.options, type: ApplicationCommandOptionType.Subcommand, options } as ApplicationCommandSubCommandData)\n\n continue\n } else if (command.subcommandGroupChild) {\n const parent = command.subcommandGroupChild.parent\n let group = subcommandGroups.get(parent.options.name)\n\n if (!group) {\n group = {\n ...parent.options,\n type: ApplicationCommandType.ChatInput,\n }\n\n if (parent.guilds) {\n for (const guild of parent.guilds) {\n let commands = guildCommands.get(guild)\n if (!commands) {\n commands = []\n guildCommands.set(guild, commands)\n }\n }\n } else {\n commands.push(group)\n }\n\n subcommandGroups.set(parent.options.name, group)\n }\n\n if (!group.options) group.options = []\n\n let child = group.options.find((x) => x.name === command.subcommandGroupChild!.options.name) as APIApplicationCommandSubcommandGroupOption\n\n if (!child) {\n child = { type: ApplicationCommandOptionType.SubcommandGroup, ...(command.subcommandGroupChild.options as Omit<APIApplicationCommandSubcommandGroupOption, 'type'>) }\n group.options.push(child)\n }\n\n if (!child.options) child.options = []\n\n const options = []\n\n for (const [, arg] of command.argTypes) {\n const option = arg.decorators.find((x) => x.constructor === ApplicationCommandOption) as ApplicationCommandOption\n\n if (option) {\n options.push(option.options)\n }\n }\n\n child.options.push({ ...command.options, type: ApplicationCommandOptionType.Subcommand, options } as APIApplicationCommandSubcommandOption)\n\n continue\n }\n\n const cmd: ApplicationCommandData = { ...command.options }\n\n if (cmd.type === ApplicationCommandType.ChatInput) {\n cmd.options = []\n\n for (const [, arg] of command.argTypes) {\n const option = arg.decorators.find((x) => x.constructor === ApplicationCommandOption) as ApplicationCommandOption\n\n if (option) {\n cmd.options.push(option.options)\n }\n }\n }\n\n await command.executeHook(this, 'beforeSync', [cmd, command])\n\n if (command.options.guilds) {\n for (const guild of command.options.guilds) {\n let commands = guildCommands.get(guild)\n if (!commands) {\n commands = []\n guildCommands.set(guild, commands)\n }\n commands.push(cmd)\n }\n continue\n }\n\n commands.push(cmd)\n }\n\n for (const { guilds, ...rest } of this.unmanagedCommands) {\n if (guilds) {\n for (const guild of guilds) {\n let commands = guildCommands.get(guild)\n if (!commands) {\n commands = []\n guildCommands.set(guild, commands)\n }\n commands.push(rest)\n }\n continue\n } else {\n commands.push(rest)\n }\n }\n\n if (this.config.guilds) {\n for (const guild of this.config.guilds) {\n let g = guildCommands.get(guild)\n if (!g) {\n g = []\n guildCommands.set(guild, g)\n }\n g.push(...commands)\n }\n\n commands = []\n }\n\n if (guildCommands.size) {\n for (const [guild, commands] of guildCommands) {\n try {\n const g = await this.client.guilds.fetch(guild)\n await g.fetch()\n this.logger.info(\n `Processing ${chalk.green(commands.length)} commands(${commands.map((x) => chalk.blue(x.name)).join(', ')}) for guild ${chalk.green(g.name)}(${chalk.blue(g.id)})`,\n )\n\n await g.commands.set(commands)\n\n this.logger.info(`Successfully registered commands for guild ${chalk.green(g.name)}(${chalk.blue(g.id)})`)\n } catch (e) {\n this.logger.error(`Failed to register commands to guild ${chalk.green(guild)}: ${(e as Error).message}`)\n }\n }\n }\n if (commands.length) {\n try {\n this.logger.info(`Processing ${chalk.green(commands.length)} commands(${commands.map((x) => chalk.blue(x.name)).join(', ')}) for application scope...`)\n\n await this.client.application!.commands.set(commands)\n\n this.logger.info('Successfully registered commands.')\n } catch (e) {\n this.logger.error(`Failed to register commands to global: ${(e as Error).message}`)\n }\n }\n }\n\n @argConverter({\n component: ApplicationCommandComponent,\n parameterless: true,\n type: ChatInputCommandInteraction,\n })\n async chatInteraction(i: ChatInputCommandInteraction) {\n return i\n }\n\n @argConverter({\n component: ApplicationCommandComponent,\n parameterless: true,\n type: MessageContextMenuCommandInteraction,\n })\n async messageInteraction(i: MessageContextMenuCommandInteraction) {\n return i\n }\n\n @argConverter({\n component: ApplicationCommandComponent,\n parameterless: true,\n type: UserContextMenuCommandInteraction,\n })\n async userInteraction(i: UserContextMenuCommandInteraction) {\n return i\n }\n\n @argConverter({\n component: ApplicationCommandComponent,\n parameterless: true,\n type: CommandInteraction,\n })\n async commandInteraction(i: UserContextMenuCommandInteraction) {\n return i\n }\n}\n","/*\n * File: TextCommand.ts\n *\n * Copyright (c) 2022-2022 pikokr\n *\n * Licensed under MIT License. Please see more defails in LICENSE file.\n */\n\nimport { createComponentDecorator } from '../core/components/decoratorCreator'\nimport { BaseComponent } from '../core/components/BaseComponent'\n\ntype TextCommandOptions = {\n name: string\n aliases?: string[]\n description?: string\n}\n\nexport class TextCommandComponent extends BaseComponent {\n constructor(public options: TextCommandOptions) {\n super()\n }\n}\n\nexport const command = (options: TextCommandOptions) => createComponentDecorator(new TextCommandComponent(options))\n","/*\r\n * File: parameters.ts\r\n *\r\n * Copyright (c) 2022-2022 pikokr\r\n *\r\n * Licensed under MIT License. Please see more defails in LICENSE file.\r\n */\r\n\r\nimport { ComponentArgumentDecorator } from '../core'\r\nimport { createArgumentDecorator } from '../core'\r\n\r\nexport class TextCommandRestOption extends ComponentArgumentDecorator<void> {}\r\n\r\nexport const rest = createArgumentDecorator(TextCommandRestOption)\r\n","/*\n * File: TextCommandExtension.ts\n *\n * Copyright (c) 2022-2022 pikokr\n *\n * Licensed under MIT License. Please see more defails in LICENSE file.\n */\n\nimport { listener } from '../core/listener'\nimport { Message } from 'discord.js'\nimport { CTSExtension } from '../core/extensions/CTSExtension'\nimport { TextCommandComponent } from './TextCommand'\nimport { TextCommandRestOption } from './parameters'\nimport { argConverter } from '../core'\n\nexport type TextCommandConfig = {\n prefix: string | string[] | ((msg: Message) => Promise<string | string[]> | string | string[])\n}\n\ndeclare module 'discord.js' {\n interface Message {\n command: TextCommandComponent\n }\n}\n\nexport class TextCommandExtension extends CTSExtension {\n constructor(private config: TextCommandConfig) {\n super()\n }\n\n private async processPrefix(msg: Message): Promise<number | null> {\n const content = msg.content\n let prefix = this.config.prefix\n\n if (typeof prefix === 'function') {\n prefix = await prefix(msg)\n }\n\n if (typeof prefix === 'string') {\n if (content.startsWith(prefix)) return prefix.length\n return null\n }\n\n if (prefix instanceof Array) {\n const p = prefix.find((x) => content.startsWith(x))\n\n if (p) return p.length\n return null\n }\n\n return null\n }\n\n @listener({ event: 'messageCreate', emitter: 'discord' })\n private async messageCreate(msg: Message) {\n try {\n const startIndex = await this.processPrefix(msg)\n\n if (!startIndex) return\n\n const content = msg.content.slice(startIndex)\n\n const commands: TextCommandComponent[] = []\n\n const extensions = new Map<TextCommandComponent, object>()\n\n for (const ext of this.commandClient.registry.extensions) {\n for (const cmd of this.commandClient.registry.getComponentsWithType<TextCommandComponent>(ext, TextCommandComponent)) {\n commands.push(cmd)\n extensions.set(cmd, ext)\n }\n }\n\n let commandNameLength = 0\n\n const command = commands.find((x) => {\n const names = [x.options.name]\n\n if (x.options.aliases) {\n names.push(...x.options.aliases)\n }\n\n for (const name of names) {\n if (content.startsWith(name)) {\n if (content.length === name.length) {\n commandNameLength = name.length\n return true\n }\n commandNameLength = name.length\n return content.startsWith(name + ' ')\n }\n }\n\n return false\n })\n\n if (!command) return\n\n const ext = extensions.get(command)\n\n if (!ext) return\n\n msg.command = command\n\n const args: unknown[] = []\n\n let argStrings = content.slice(commandNameLength + 1).split(/ /g)\n\n await this.convertArguments(TextCommandComponent, args, command.argTypes, async (arg, i, converter) => {\n if (converter.options.parameterless) return [msg]\n\n if (arg.decorators.find((x) => x.constructor === TextCommandRestOption)) {\n const text = argStrings.join(' ')\n argStrings = []\n return [text, msg]\n }\n return [argStrings.shift(), msg]\n })\n\n await command.execute(ext, args, [msg])\n } catch (e) {\n this.commandClient.emit('textCommandInvokeError', e, msg)\n }\n }\n\n @argConverter({ component: TextCommandComponent, type: Message, parameterless: true })\n async mesage(msg: Message) {\n return msg\n }\n\n @argConverter({ component: TextCommandComponent, type: String })\n async str(value: string) {\n return value\n }\n\n @argConverter({ component: TextCommandComponent, type: Number })\n async num(value: string) {\n return Number(value)\n }\n}\n","/*\r\n* File: CommandClient.ts\r\n* \r\n* Copyright (c) 2022-2022 pikokr\r\n* \r\n* Licensed under MIT License. Please see more defails in LICENSE file.\r\n*/\r\n\r\nimport chalk from 'chalk'\nimport { Client, Snowflake, Team, User } from 'discord.js'\nimport EventEmitter from 'events'\nimport { Logger } from 'tslog'\nimport { ApplicationCommandExtension, ApplicationCommandExtensionConfig } from '../../applicationCommand/ApplicationCommandExtension'\nimport { TextCommandConfig } from '../../textCommand'\nimport { TextCommandExtension } from '../../textCommand/TextCommandExtension'\nimport { CommandClientSymbol } from '../symbols'\nimport { Registry } from './Registry'\nexport class CommandClient extends EventEmitter {\n ctsLogger: Logger\n registry: Registry\n\n owners: Set<Snowflake> = new Set()\n\n constructor(public discord: Client, public logger: Logger = new Logger({ dateTimeTimezone: Intl.DateTimeFormat().resolvedOptions().timeZone })) {\n super()\n\n this.ctsLogger = logger.getChildLogger({ prefix: [chalk.blue('[command.ts]')], displayFilePath: 'hidden', displayFunctionName: false })\n\n this.registry = new Registry(this.ctsLogger, this)\n\n this.registry.registerEventEmitter('cts', this)\n this.registry.registerEventEmitter('discord', this.discord)\n }\n\n async fetchOwners() {\n if (!this.discord.application) throw new Error('The client is not logged in.')\n\n this.ctsLogger.info('Fetching owners...')\n\n await this.discord.application.fetch()\n\n const owner = this.discord.application.owner\n\n if (!owner) throw new Error('Cannot find application owner')\n\n const owners: string[] = []\n\n if (owner instanceof User) {\n this.owners.add(owner.id)\n owners.push(owner.tag)\n } else if (owner instanceof Team) {\n for (const [id, member] of owner.members) {\n this.owners.add(id)\n owners.push(member.user.tag)\n }\n }\n\n this.ctsLogger.info(`Fetched ${chalk.green(owners.length)} owners(${owners.map((x) => chalk.blue(x)).join(', ')})`)\n }\n\n async enableApplicationCommandsExtension(config: ApplicationCommandExtensionConfig) {\n await this.registry.registerModule(new ApplicationCommandExtension(config))\n this.ctsLogger.info('Application command extension enabled.')\n }\n\n async enableTextCommandsExtension(config: TextCommandConfig) {\n await this.registry.registerModule(new TextCommandExtension(config))\n this.ctsLogger.info('Text command extension enabled.')\n }\n\n getApplicationCommandsExtension() {\n return this.registry.extensions.find((x) => x.constructor === ApplicationCommandExtension) as ApplicationCommandExtension | undefined\n }\n\n static getFromModule(ext: object): CommandClient {\n return Reflect.getMetadata(CommandClientSymbol, ext)\n }\n}\n","/*\n * File: BaseComponent.ts\n *\n * Copyright (c) 2022-2022 pikokr\n *\n * Licensed under MIT License. Please see more defails in LICENSE file.\n */\n\nimport { Collection } from 'discord.js'\nimport _ from 'lodash'\nimport type { ComponentHookStore } from '../hooks'\nimport { ComponentArgument } from './ComponentArgument'\n\nexport class BaseComponent {\n method!: Function\n\n hooks: ComponentHookStore = new Collection()\n\n argTypes: Collection<number, ComponentArgument> = new Collection()\n\n _init(method: Function, argTypes: unknown[]) {\n this.method = method\n for (let i = 0; i < argTypes.length; i++) {\n const element = argTypes[i]\n this.argTypes.set(i, new ComponentArgument(element))\n }\n }\n\n async executeHook(target: object, name: string, args: unknown[]) {\n const hook = this.hooks.get(name)\n\n if (!hook) return\n\n const { CommandClient } = await import('../structures/CommandClient')\n\n for (const fn of hook) {\n await fn.call(null, CommandClient.getFromModule(target), ...args)\n }\n }\n\n async execute(target: object, args: unknown[], beforeCallArgs: unknown[] = args) {\n await this.executeHook(target, 'beforeCall', beforeCallArgs)\n let result\n try {\n result = await this.method.call(target, ...args)\n } catch (e) {\n await this.executeHook(target, 'invokeError', [e, ...beforeCallArgs])\n throw e\n }\n await this.executeHook(target, 'afterCall', [result])\n\n return result\n }\n}\n","/*\r\n* File: index.ts\r\n* \r\n* Copyright (c) 2022-2022 pikokr\r\n* \r\n* Licensed under MIT License. Please see more defails in LICENSE file.\r\n*/\r\n\r\nimport 'reflect-metadata'\r\nexport * from './decoratorCreator'\r\nexport * from './ComponentArgument'\r\nexport * from './ComponentArgumentDecorator'\r\nexport * from './BaseComponent'\r\n","/*\r\n* File: errors.ts\r\n* \r\n* Copyright (c) 2022-2022 pikokr\r\n* \r\n* Licensed under MIT License. Please see more defails in LICENSE file.\r\n*/\r\n\r\nexport class OwnerOnlyError {}\n","/*\r\n* File: checks.ts\r\n* \r\n* Copyright (c) 2022-2022 pikokr\r\n* \r\n* Licensed under MIT License. Please see more defails in LICENSE file.\r\n*/\r\n\r\nimport { BaseInteraction, Interaction, Message } from 'discord.js'\nimport { createComponentHook } from '../hooks'\nimport { ComponentHookFn } from '../hooks/componentHook'\nimport { CommandClient } from '../structures'\nimport { OwnerOnlyError } from './errors'\n\nexport const createCheckDecorator = (fn: ComponentHookFn) => createComponentHook('beforeCall', fn)\n\nexport const ownerOnly = createCheckDecorator(async (client: CommandClient, i: Interaction | Message) => {\n let isOwner = false\n\n if (i instanceof BaseInteraction) {\n isOwner = client.owners.has(i.user.id)\n } else if (i instanceof Message) {\n isOwner = client.owners.has(i.author.id)\n }\n\n if (!isOwner) throw new OwnerOnlyError()\n})\n","/*\r\n* File: index.ts\r\n* \r\n* Copyright (c) 2022-2022 pikokr\r\n* \r\n* Licensed under MIT License. Please see more defails in LICENSE file.\r\n*/\r\n\r\nexport * from './checks'\nexport * from './errors'\n","/*\r\n* File: index.ts\r\n* \r\n* Copyright (c) 2022-2022 pikokr\r\n* \r\n* Licensed under MIT License. Please see more defails in LICENSE file.\r\n*/\r\n\r\nexport * from './Extension'\n","/*\r\n* File: index.ts\r\n* \r\n* Copyright (c) 2022-2022 pikokr\r\n* \r\n* Licensed under MIT License. Please see more defails in LICENSE file.\r\n*/\r\n\r\nexport * from './components'\nexport * from './hooks'\nexport * from './converter'\nexport * from './utils'\nexport * from './listener'\nexport * from './structures'\nexport * from './extensions'\n","/*\r\n* File: index.ts\r\n* \r\n* Copyright (c) 2022-2022 pikokr\r\n* \r\n* Licensed under MIT License. Please see more defails in LICENSE file.\r\n*/\r\n\r\nexport * from './core'\r\nexport * from './applicationCommand'\r\nexport * from './textCommand'\r\n","import { APIApplicationCommandSubcommandOption, ApplicationCommandType, ChatInputApplicationCommandData } from 'discord.js'\nimport { createComponentDecorator } from '../core'\nimport { ApplicationCommandComponent } from './ApplicationCommand'\n\nexport class SubCommandGroup {\n constructor(public options: Omit<APIApplicationCommandSubcommandOption, 'type'>, public guilds?: string[]) {}\n\n command(options: Omit<ChatInputApplicationCommandData, 'options' | 'type'>): MethodDecorator {\n const cmd = new ApplicationCommandComponent({\n type: ApplicationCommandType.ChatInput,\n ...options,\n })\n cmd.subcommandGroup = this\n return createComponentDecorator(cmd)\n }\n\n createChild(options: Omit<APIApplicationCommandSubcommandOption, 'type'>) {\n return new SubCommandGroupChild(options, this)\n }\n}\n\nexport class SubCommandGroupChild {\n constructor(public options: Omit<APIApplicationCommandSubcommandOption, 'type'>, public parent: SubCommandGroup) {}\n\n command(options: Omit<ChatInputApplicationCommandData, 'options' | 'type'>): MethodDecorator {\n const cmd = new ApplicationCommandComponent({\n type: ApplicationCommandType.ChatInput,\n ...options,\n })\n cmd.subcommandGroupChild = this\n return createComponentDecorator(cmd)\n }\n}\n"],"mappings":"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","names":[]}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pikokr/command.ts",
3
3
  "description": "Discord.js command framework for typescript.",
4
- "version": "5.1.7-dev.4df7b7a",
4
+ "version": "5.1.9-dev.4261fe9",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "MIT",
@@ -42,7 +42,7 @@ export class ApplicationCommandExtension extends CTSExtension {
42
42
 
43
43
  unmanagedCommands: (ApplicationCommandData & { guilds?: Snowflake[] })[] = []
44
44
 
45
- registerUnmanagedCommand(command: ApplicationCommandData & { guild?: Snowflake[] }) {
45
+ registerUnmanagedCommand(command: ApplicationCommandData & { guilds?: Snowflake[] }) {
46
46
  this.unmanagedCommands.push(command)
47
47
  }
48
48