@open-discord-bots/framework 0.2.16 → 0.2.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/api/main.js CHANGED
@@ -42,7 +42,7 @@ export class ODMain {
42
42
  constructor(managers, project) {
43
43
  this.project = project;
44
44
  this.versions = managers.versions;
45
- this.versions.add(ODVersion.fromString("opendiscord:api", "v0.2.16"));
45
+ this.versions.add(ODVersion.fromString("opendiscord:api", "v0.2.17"));
46
46
  this.versions.add(ODVersion.fromString("opendiscord:livestatus", "v2.0.0"));
47
47
  this.debugfile = managers.debugfile;
48
48
  this.console = managers.console;
@@ -594,7 +594,7 @@ export interface ODCheckerEnabledObjectStructureOptions extends ODCheckerStructu
594
594
  /**The object checker to use once the property has been matched. */
595
595
  checker: ODCheckerObjectStructure;
596
596
  /**Ignore the `checker` if the object is disabled (`property` doesn't match `enabledValue`) */
597
- ignoreCheckIfDisabled: boolean;
597
+ ignoreCheckIfDisabled?: boolean;
598
598
  }
599
599
  /**## ODCheckerEnabledObjectStructure `class`
600
600
  * This is an Open Discord config checker structure.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@open-discord-bots/framework",
3
3
  "author": "DJj123dj",
4
- "version": "0.2.16",
4
+ "version": "0.2.17",
5
5
  "description": "The core framework of the popular open-source discord bots: Open Ticket & Open Moderation.",
6
6
  "main": "dist/index.js",
7
7
  "module": "dist/index.js",
package/src/api/main.ts CHANGED
@@ -142,7 +142,7 @@ export class ODMain implements ODMainManagers {
142
142
  constructor(managers:ODMainManagers,project:ODProjectType){
143
143
  this.project = project
144
144
  this.versions = managers.versions
145
- this.versions.add(ODVersion.fromString("opendiscord:api","v0.2.16"))
145
+ this.versions.add(ODVersion.fromString("opendiscord:api","v0.2.17"))
146
146
  this.versions.add(ODVersion.fromString("opendiscord:livestatus","v2.0.0"))
147
147
 
148
148
  this.debugfile = managers.debugfile
@@ -1368,7 +1368,7 @@ export interface ODCheckerEnabledObjectStructureOptions extends ODCheckerStructu
1368
1368
  /**The object checker to use once the property has been matched. */
1369
1369
  checker:ODCheckerObjectStructure,
1370
1370
  /**Ignore the `checker` if the object is disabled (`property` doesn't match `enabledValue`) */
1371
- ignoreCheckIfDisabled:boolean
1371
+ ignoreCheckIfDisabled?:boolean
1372
1372
  }
1373
1373
 
1374
1374
  /**## ODCheckerEnabledObjectStructure `class`