@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 CHANGED
@@ -1,5 +1,14 @@
1
1
  # @effect-app/infra
2
2
 
3
+ ## 1.16.9
4
+
5
+ ### Patch Changes
6
+
7
+ - 70c6222: improve doc
8
+ - Updated dependencies [70c6222]
9
+ - effect-app@1.15.4
10
+ - @effect-app/infra-adapters@1.10.5
11
+
3
12
  ## 1.16.8
4
13
 
5
14
  ### Patch Changes
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 configured as `false`
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.8",
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/infra-adapters": "1.10.4",
23
- "effect-app": "1.15.3",
24
- "@effect-app/schema": "1.11.0"
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 configured as `false`
92
+ * Unless omitted
93
93
  */
94
94
  export type ContextMapInverted<Key, Service> = [Key, Service, false]
95
95