@effect-app/infra 1.16.8 → 1.16.9
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/CHANGELOG.md +9 -0
- package/dist/router.d.ts +1 -1
- package/package.json +4 -4
- package/src/router.ts +1 -1
package/CHANGELOG.md
CHANGED
package/dist/router.d.ts
CHANGED
|
@@ -32,7 +32,7 @@ type AHandler<Action extends AnyRequestModule> = Handler<Action, "raw", S.Schema
|
|
|
32
32
|
export type ContextMap<Key, Service> = [Key, Service, true];
|
|
33
33
|
/**
|
|
34
34
|
* Middleware is active by default, and provides the Service at Key in route context, and the Service is provided as Effect Context.
|
|
35
|
-
* Unless
|
|
35
|
+
* Unless omitted
|
|
36
36
|
*/
|
|
37
37
|
export type ContextMapInverted<Key, Service> = [Key, Service, false];
|
|
38
38
|
export declare const makeRouter: <CTX, CTXMap extends Record<string, [string, any, boolean]>>(handleRequestEnv: any) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@effect-app/infra",
|
|
3
|
-
"version": "1.16.
|
|
3
|
+
"version": "1.16.9",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"dependencies": {
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
"pure-rand": "6.1.0",
|
|
20
20
|
"redlock": "^4.2.0",
|
|
21
21
|
"@effect-app/core": "1.9.0",
|
|
22
|
-
"@effect-app/
|
|
23
|
-
"effect-app": "1.15.
|
|
24
|
-
"@effect-app/
|
|
22
|
+
"@effect-app/schema": "1.11.0",
|
|
23
|
+
"effect-app": "1.15.4",
|
|
24
|
+
"@effect-app/infra-adapters": "1.10.5"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@babel/cli": "^7.25.6",
|
package/src/router.ts
CHANGED
|
@@ -89,7 +89,7 @@ export type ContextMap<Key, Service> = [Key, Service, true]
|
|
|
89
89
|
|
|
90
90
|
/**
|
|
91
91
|
* Middleware is active by default, and provides the Service at Key in route context, and the Service is provided as Effect Context.
|
|
92
|
-
* Unless
|
|
92
|
+
* Unless omitted
|
|
93
93
|
*/
|
|
94
94
|
export type ContextMapInverted<Key, Service> = [Key, Service, false]
|
|
95
95
|
|