axe-api 1.0.2 → 1.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.
@@ -2,7 +2,7 @@ import logger from "pino";
2
2
  declare class LogService {
3
3
  private static logger;
4
4
  static setInstance(options?: logger.LoggerOptions | undefined): void;
5
- static instance(): logger.Logger<logger.LoggerOptions>;
5
+ static instance(): logger.Logger<never>;
6
6
  static error(message: string): void;
7
7
  static warn(message: string): void;
8
8
  static info(message: string): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "axe-api",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "AXE API is a simple tool to create Rest APIs quickly.",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -55,8 +55,8 @@
55
55
  "prepare": "husky install",
56
56
  "benchmark": "k6 run benchmark/run.js"
57
57
  },
58
- "engines" : {
59
- "node" : ">=18.0.0"
58
+ "engines": {
59
+ "node": ">=18.0.0"
60
60
  },
61
61
  "dependencies": {
62
62
  "body-parser": "^1.20.2",