reciple 10.0.1 → 10.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. package/dist/_virtual/{_@oxc-project_runtime@0.108.0 → _@oxc-project_runtime@0.110.0}/helpers/decorate.mjs +1 -1
  2. package/dist/bin/commands/start.mjs +23 -23
  3. package/dist/bin/commands/start.mjs.map +1 -1
  4. package/dist/bin/commands/startSharding.mjs +18 -18
  5. package/dist/bin/commands/startSharding.mjs.map +1 -1
  6. package/dist/classes/cli/CLI.mjs +1 -1
  7. package/dist/classes/cli/ConfigReader.mjs +1 -0
  8. package/dist/classes/cli/ConfigReader.mjs.map +1 -1
  9. package/dist/classes/client/ModuleLoader.mjs +18 -18
  10. package/dist/classes/client/ModuleLoader.mjs.map +1 -1
  11. package/dist/classes/managers/ModuleManager.mjs +1 -1
  12. package/dist/classes/modules/PostconditionModule.mjs +1 -1
  13. package/dist/classes/modules/PreconditionModule.mjs +1 -1
  14. package/dist/classes/modules/commands/ContextMenuCommandModule.mjs +1 -1
  15. package/dist/classes/modules/commands/MessageCommandModule.mjs +1 -1
  16. package/dist/classes/modules/commands/SlashCommandModule.mjs +1 -1
  17. package/dist/classes/templates/ModuleTemplateBuilder.mjs +19 -19
  18. package/dist/classes/templates/ModuleTemplateBuilder.mjs.map +1 -1
  19. package/dist/classes/templates/TemplateBuilder.mjs +8 -8
  20. package/dist/classes/templates/TemplateBuilder.mjs.map +1 -1
  21. package/dist/classes/validation/BaseModuleValidator.d.mts +11 -11
  22. package/dist/classes/validation/CommandModuleValidator.d.mts +17 -17
  23. package/dist/classes/validation/EventModuleValidator.d.mts +10 -11
  24. package/dist/classes/validation/PostconditionModule.d.mts +9 -9
  25. package/dist/classes/validation/PreconditionModule.d.mts +7 -7
  26. package/dist/package.mjs +1 -1
  27. package/package.json +1 -1
@@ -1,24 +1,24 @@
1
1
  import { PostconditionModule } from "../modules/PostconditionModule.mjs";
2
2
  import { CommandPostconditionReason, CommandType, Validator } from "@reciple/core";
3
- import * as _sapphire_shapeshift0 from "@sapphire/shapeshift";
3
+ import * as _sapphire_shapeshift42 from "@sapphire/shapeshift";
4
4
 
5
5
  //#region src/classes/validation/PostconditionModule.d.ts
6
6
  declare class PostconditionModuleValidator extends Validator {
7
- static scope: _sapphire_shapeshift0.UnionValidator<CommandType[] | undefined>;
8
- static accepts: _sapphire_shapeshift0.UnionValidator<CommandPostconditionReason[] | undefined>;
9
- static execute: _sapphire_shapeshift0.InstanceValidator<Function>;
10
- static object: _sapphire_shapeshift0.ObjectValidator<{
7
+ static scope: _sapphire_shapeshift42.UnionValidator<CommandType[] | undefined>;
8
+ static accepts: _sapphire_shapeshift42.UnionValidator<CommandPostconditionReason[] | undefined>;
9
+ static execute: _sapphire_shapeshift42.InstanceValidator<Function>;
10
+ static object: _sapphire_shapeshift42.ObjectValidator<{
11
11
  scope: CommandType[] | undefined;
12
12
  execute: Function;
13
- }, _sapphire_shapeshift0.UndefinedToOptional<{
13
+ }, _sapphire_shapeshift42.UndefinedToOptional<{
14
14
  scope: CommandType[] | undefined;
15
15
  execute: Function;
16
16
  }>>;
17
- static resolvable: _sapphire_shapeshift0.UnionValidator<_sapphire_shapeshift0.UndefinedToOptional<{
17
+ static resolvable: _sapphire_shapeshift42.UnionValidator<_sapphire_shapeshift42.UndefinedToOptional<{
18
+ toJSON: Function;
19
+ }> | _sapphire_shapeshift42.UndefinedToOptional<{
18
20
  scope: CommandType[] | undefined;
19
21
  execute: Function;
20
- }> | _sapphire_shapeshift0.UndefinedToOptional<{
21
- toJSON: Function;
22
22
  }>>;
23
23
  static isValidScope(scope: unknown): asserts scope is CommandType[];
24
24
  static isValidAccepts(accepts: unknown): asserts accepts is CommandPostconditionReason[];
@@ -1,21 +1,21 @@
1
1
  import { PreconditionModule } from "../modules/PreconditionModule.mjs";
2
2
  import { CommandType, Validator } from "@reciple/core";
3
- import * as _sapphire_shapeshift16 from "@sapphire/shapeshift";
3
+ import * as _sapphire_shapeshift18 from "@sapphire/shapeshift";
4
4
 
5
5
  //#region src/classes/validation/PreconditionModule.d.ts
6
6
  declare class PreconditionModuleValidator extends Validator {
7
- static scope: _sapphire_shapeshift16.UnionValidator<CommandType[] | undefined>;
8
- static execute: _sapphire_shapeshift16.InstanceValidator<Function>;
9
- static object: _sapphire_shapeshift16.ObjectValidator<{
7
+ static scope: _sapphire_shapeshift18.UnionValidator<CommandType[] | undefined>;
8
+ static execute: _sapphire_shapeshift18.InstanceValidator<Function>;
9
+ static object: _sapphire_shapeshift18.ObjectValidator<{
10
10
  scope: CommandType[] | undefined;
11
11
  execute: Function;
12
- }, _sapphire_shapeshift16.UndefinedToOptional<{
12
+ }, _sapphire_shapeshift18.UndefinedToOptional<{
13
13
  scope: CommandType[] | undefined;
14
14
  execute: Function;
15
15
  }>>;
16
- static resolvable: _sapphire_shapeshift16.UnionValidator<_sapphire_shapeshift16.UndefinedToOptional<{
16
+ static resolvable: _sapphire_shapeshift18.UnionValidator<_sapphire_shapeshift18.UndefinedToOptional<{
17
17
  toJSON: Function;
18
- }> | _sapphire_shapeshift16.UndefinedToOptional<{
18
+ }> | _sapphire_shapeshift18.UndefinedToOptional<{
19
19
  scope: CommandType[] | undefined;
20
20
  execute: Function;
21
21
  }>>;
package/dist/package.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  //#region package.json
2
2
  var package_default = {
3
3
  name: "reciple",
4
- version: "10.0.1",
4
+ version: "10.0.3",
5
5
  license: "LGPL-3.0-only",
6
6
  description: "The CLI for reciple",
7
7
  module: "./dist/index.mjs",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reciple",
3
- "version": "10.0.1",
3
+ "version": "10.0.3",
4
4
  "license": "LGPL-3.0-only",
5
5
  "description": "The CLI for reciple",
6
6
  "module": "./dist/index.mjs",