reciple 10.0.20 → 10.0.21

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.
@@ -94,7 +94,7 @@ var CLI = class {
94
94
  (function(_CLI) {
95
95
  _CLI.root = path.join(path.dirname(fileURLToPath(import.meta.url)), "../../../");
96
96
  _CLI.bin = path.join(CLI.root, "dist/bin/reciple.mjs");
97
- _CLI.version = "10.0.20";
97
+ _CLI.version = "10.0.21";
98
98
  function stringifyFlags(flags, command, ignored = []) {
99
99
  let arr = [];
100
100
  for (const [key, value] of Object.entries(flags)) {
@@ -75,8 +75,6 @@ declare class CommandModuleValidator extends Validator {
75
75
  execute: Function;
76
76
  }>>;
77
77
  static resolvable: _sapphire_shapeshift9.UnionValidator<_sapphire_shapeshift9.UndefinedToOptional<{
78
- toJSON: Function;
79
- }> | _sapphire_shapeshift9.UndefinedToOptional<{
80
78
  id: string | undefined;
81
79
  moduleType: ModuleType | undefined;
82
80
  onEnable: Function | undefined;
@@ -109,6 +107,8 @@ declare class CommandModuleValidator extends Validator {
109
107
  disabledPreconditions: string[] | undefined;
110
108
  disabledPostconditions: string[] | undefined;
111
109
  execute: Function;
110
+ }> | _sapphire_shapeshift9.UndefinedToOptional<{
111
+ toJSON: Function;
112
112
  }>>;
113
113
  static isValid(value: unknown): asserts value is AnyCommandModuleData;
114
114
  }
@@ -3,19 +3,19 @@ import { EventModule } from "../modules/events/EventModule.mjs";
3
3
  import "../../index.mjs";
4
4
  import { Validator } from "@reciple/core";
5
5
  import { EventEmitter } from "node:events";
6
- import * as _sapphire_shapeshift26 from "@sapphire/shapeshift";
6
+ import * as _sapphire_shapeshift41 from "@sapphire/shapeshift";
7
7
 
8
8
  //#region src/classes/validation/EventModuleValidator.d.ts
9
9
  declare class EventModuleValidator extends Validator {
10
- static emitter: _sapphire_shapeshift26.InstanceValidator<EventEmitter<{
10
+ static emitter: _sapphire_shapeshift41.InstanceValidator<EventEmitter<{
11
11
  [x: string]: any[];
12
12
  [x: number]: any[];
13
13
  [x: symbol]: any[];
14
14
  }>>;
15
- static event: _sapphire_shapeshift26.StringValidator<string>;
16
- static once: _sapphire_shapeshift26.UnionValidator<boolean | undefined>;
17
- static onEvent: _sapphire_shapeshift26.InstanceValidator<Function>;
18
- static object: _sapphire_shapeshift26.ObjectValidator<{
15
+ static event: _sapphire_shapeshift41.StringValidator<string>;
16
+ static once: _sapphire_shapeshift41.UnionValidator<boolean | undefined>;
17
+ static onEvent: _sapphire_shapeshift41.InstanceValidator<Function>;
18
+ static object: _sapphire_shapeshift41.ObjectValidator<{
19
19
  id: string | undefined;
20
20
  moduleType: ModuleType | undefined;
21
21
  onEnable: Function | undefined;
@@ -30,7 +30,7 @@ declare class EventModuleValidator extends Validator {
30
30
  event: string;
31
31
  once: boolean | undefined;
32
32
  onEvent: Function;
33
- }, _sapphire_shapeshift26.UndefinedToOptional<{
33
+ }, _sapphire_shapeshift41.UndefinedToOptional<{
34
34
  id: string | undefined;
35
35
  moduleType: ModuleType | undefined;
36
36
  onEnable: Function | undefined;
@@ -46,9 +46,9 @@ declare class EventModuleValidator extends Validator {
46
46
  once: boolean | undefined;
47
47
  onEvent: Function;
48
48
  }>>;
49
- static resolvable: _sapphire_shapeshift26.UnionValidator<_sapphire_shapeshift26.UndefinedToOptional<{
49
+ static resolvable: _sapphire_shapeshift41.UnionValidator<_sapphire_shapeshift41.UndefinedToOptional<{
50
50
  toJSON: Function;
51
- }> | _sapphire_shapeshift26.UndefinedToOptional<{
51
+ }> | _sapphire_shapeshift41.UndefinedToOptional<{
52
52
  id: string | undefined;
53
53
  moduleType: ModuleType | undefined;
54
54
  onEnable: Function | undefined;
@@ -1,22 +1,22 @@
1
1
  import { PostconditionModule } from "../modules/PostconditionModule.mjs";
2
2
  import { CommandPostconditionReason, CommandType, Validator } from "@reciple/core";
3
- import * as _sapphire_shapeshift42 from "@sapphire/shapeshift";
3
+ import * as _sapphire_shapeshift26 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_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<{
7
+ static scope: _sapphire_shapeshift26.UnionValidator<CommandType[] | undefined>;
8
+ static accepts: _sapphire_shapeshift26.UnionValidator<CommandPostconditionReason[] | undefined>;
9
+ static execute: _sapphire_shapeshift26.InstanceValidator<Function>;
10
+ static object: _sapphire_shapeshift26.ObjectValidator<{
11
11
  scope: CommandType[] | undefined;
12
12
  execute: Function;
13
- }, _sapphire_shapeshift42.UndefinedToOptional<{
13
+ }, _sapphire_shapeshift26.UndefinedToOptional<{
14
14
  scope: CommandType[] | undefined;
15
15
  execute: Function;
16
16
  }>>;
17
- static resolvable: _sapphire_shapeshift42.UnionValidator<_sapphire_shapeshift42.UndefinedToOptional<{
17
+ static resolvable: _sapphire_shapeshift26.UnionValidator<_sapphire_shapeshift26.UndefinedToOptional<{
18
18
  toJSON: Function;
19
- }> | _sapphire_shapeshift42.UndefinedToOptional<{
19
+ }> | _sapphire_shapeshift26.UndefinedToOptional<{
20
20
  scope: CommandType[] | undefined;
21
21
  execute: Function;
22
22
  }>>;
@@ -1,21 +1,21 @@
1
1
  import { PreconditionModule } from "../modules/PreconditionModule.mjs";
2
2
  import { CommandType, Validator } from "@reciple/core";
3
- import * as _sapphire_shapeshift35 from "@sapphire/shapeshift";
3
+ import * as _sapphire_shapeshift34 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_shapeshift35.UnionValidator<CommandType[] | undefined>;
8
- static execute: _sapphire_shapeshift35.InstanceValidator<Function>;
9
- static object: _sapphire_shapeshift35.ObjectValidator<{
7
+ static scope: _sapphire_shapeshift34.UnionValidator<CommandType[] | undefined>;
8
+ static execute: _sapphire_shapeshift34.InstanceValidator<Function>;
9
+ static object: _sapphire_shapeshift34.ObjectValidator<{
10
10
  scope: CommandType[] | undefined;
11
11
  execute: Function;
12
- }, _sapphire_shapeshift35.UndefinedToOptional<{
12
+ }, _sapphire_shapeshift34.UndefinedToOptional<{
13
13
  scope: CommandType[] | undefined;
14
14
  execute: Function;
15
15
  }>>;
16
- static resolvable: _sapphire_shapeshift35.UnionValidator<_sapphire_shapeshift35.UndefinedToOptional<{
16
+ static resolvable: _sapphire_shapeshift34.UnionValidator<_sapphire_shapeshift34.UndefinedToOptional<{
17
17
  toJSON: Function;
18
- }> | _sapphire_shapeshift35.UndefinedToOptional<{
18
+ }> | _sapphire_shapeshift34.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.20",
4
+ version: "10.0.21",
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.20",
3
+ "version": "10.0.21",
4
4
  "license": "LGPL-3.0-only",
5
5
  "description": "The CLI for reciple",
6
6
  "module": "./dist/index.mjs",
@@ -53,7 +53,7 @@
53
53
  "tsdown": "^0.20.1"
54
54
  },
55
55
  "devDependencies": {
56
- "@reciple/jsx": "^10.0.1",
56
+ "@reciple/jsx": "^10.0.2",
57
57
  "@types/micromatch": "^4.0.10",
58
58
  "@types/node": "^25.0.9",
59
59
  "nodemon": "^3.1.11",