xdbc 1.0.87 → 1.0.88

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 (2) hide show
  1. package/package.json +1 -1
  2. package/src/DBC/OR.ts +2 -2
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.87",
2
+ "version": "1.0.88",
3
3
  "name": "xdbc",
4
4
  "scripts": {
5
5
  "format": "biome format ./src --write",
package/src/DBC/OR.ts CHANGED
@@ -64,7 +64,7 @@ export class OR extends DBC {
64
64
  * Otherwise TRUE. */
65
65
  public static PRE(
66
66
  conditions: Array<{
67
- check: (toCheck: unknown | undefined | null) => boolean | string;
67
+ check: (toCheck: unknown | undefined | null | object) => boolean | string;
68
68
  }>,
69
69
  path: string | undefined = undefined,
70
70
  dbc = "WaXCode.DBC",
@@ -99,7 +99,7 @@ export class OR extends DBC {
99
99
  * Otherwise TRUE. */
100
100
  public static POST(
101
101
  conditions: Array<{
102
- check: (toCheck: unknown | undefined | null) => boolean | string;
102
+ check: (toCheck: unknown | undefined | null | object) => boolean | string;
103
103
  }>,
104
104
  path: string | undefined = undefined,
105
105
  dbc = "WaXCode.DBC",