@aeriajs/http 0.0.164 → 0.0.166
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/routing.d.ts +1 -1
- package/package.json +5 -5
package/dist/routing.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ type TypedContext<TContractWithRoles extends ContractWithRoles> = Omit<RouteCont
|
|
|
15
15
|
} ? PackReferences<InferProperties<Payload>> : Record<string, unknown>;
|
|
16
16
|
query: TContractWithRoles extends {
|
|
17
17
|
query: infer Query;
|
|
18
|
-
} ? InferProperties<Query
|
|
18
|
+
} ? PackReferences<InferProperties<Query>> : Record<string, unknown>;
|
|
19
19
|
};
|
|
20
20
|
};
|
|
21
21
|
export type ProxiedRouter<TRouter> = TRouter & Record<typeof REQUEST_METHODS[number], <const TContractWithRoles extends ContractWithRoles, TCallback extends (TContractWithRoles extends {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aeriajs/http",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.166",
|
|
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.
|
|
32
|
-
"@aeriajs/entrypoint": "^0.0.
|
|
33
|
-
"@aeriajs/types": "^0.0.
|
|
34
|
-
"@aeriajs/validation": "^0.0.
|
|
31
|
+
"@aeriajs/common": "^0.0.137",
|
|
32
|
+
"@aeriajs/entrypoint": "^0.0.141",
|
|
33
|
+
"@aeriajs/types": "^0.0.119",
|
|
34
|
+
"@aeriajs/validation": "^0.0.153"
|
|
35
35
|
},
|
|
36
36
|
"scripts": {
|
|
37
37
|
"test": "vitest run",
|