@extk/expressive 0.4.3 → 0.4.4

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/index.d.mts CHANGED
@@ -287,7 +287,7 @@ declare class ApiErrorResponse<T = undefined> {
287
287
  }
288
288
 
289
289
  declare class ApiResponse<T = undefined> {
290
- status: string;
290
+ readonly status = "ok";
291
291
  result?: T;
292
292
  constructor(result?: T);
293
293
  }
package/dist/index.d.ts CHANGED
@@ -287,7 +287,7 @@ declare class ApiErrorResponse<T = undefined> {
287
287
  }
288
288
 
289
289
  declare class ApiResponse<T = undefined> {
290
- status: string;
290
+ readonly status = "ok";
291
291
  result?: T;
292
292
  constructor(result?: T);
293
293
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@extk/expressive",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
4
4
  "type": "commonjs",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -45,6 +45,7 @@
45
45
  "dotenv": "^17.1.0",
46
46
  "helmet": "^8.0.0",
47
47
  "morgan": "^1.10.0",
48
+ "qs": "^6.14.1",
48
49
  "swagger-ui-express": "^5.0.1",
49
50
  "winston": "^3.11.0",
50
51
  "winston-daily-rotate-file": "^5.0.0"
@@ -69,4 +70,4 @@
69
70
  "api-framework",
70
71
  "express-toolkit"
71
72
  ]
72
- }
73
+ }