@aeriajs/http 0.0.111 → 0.0.113

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/next.d.ts CHANGED
@@ -3,5 +3,5 @@ type NextObject = {
3
3
  [NEXT_SYMBOL]: null;
4
4
  };
5
5
  export declare const next: () => NextObject;
6
- export declare const isNext: (object: any) => object is NextObject;
6
+ export declare const isNext: (object: unknown) => object is NextObject;
7
7
  export {};
package/dist/payload.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const safeJson: (candidate: any) => any;
1
+ export declare const safeJson: (candidate: unknown) => any;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aeriajs/http",
3
- "version": "0.0.111",
3
+ "version": "0.0.113",
4
4
  "description": "## Installation",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -28,10 +28,10 @@
28
28
  "@aeriajs/validation": "link:../validation"
29
29
  },
30
30
  "peerDependencies": {
31
- "@aeriajs/common": "^0.0.98",
32
- "@aeriajs/entrypoint": "^0.0.100",
33
- "@aeriajs/types": "^0.0.84",
34
- "@aeriajs/validation": "^0.0.101"
31
+ "@aeriajs/common": "^0.0.100",
32
+ "@aeriajs/entrypoint": "^0.0.102",
33
+ "@aeriajs/types": "^0.0.86",
34
+ "@aeriajs/validation": "^0.0.103"
35
35
  },
36
36
  "scripts": {
37
37
  "test": "vitest run",