@effect/rpc
Advanced tools
Comparing version 0.33.3 to 0.34.0
@@ -111,3 +111,3 @@ /** | ||
readonly spanPrefix?: string; | ||
}) => (u: unknown) => Effect.Effect<ReadonlyArray<Router.ResponseEffect>, ParseError, Router.Context<R>>; | ||
}) => (u: unknown) => Effect.Effect<Array<Router.ResponseEffect>, ParseError, Router.Context<R>>; | ||
/** | ||
@@ -114,0 +114,0 @@ * @since 1.0.0 |
{ | ||
"name": "@effect/rpc", | ||
"version": "0.33.3", | ||
"version": "0.34.0", | ||
"description": "Functional programming in TypeScript", | ||
@@ -13,5 +13,5 @@ "license": "MIT", | ||
"peerDependencies": { | ||
"@effect/platform": "^0.60.3", | ||
"@effect/schema": "^0.69.3", | ||
"effect": "^3.5.9" | ||
"@effect/platform": "^0.61.0", | ||
"@effect/schema": "^0.70.0", | ||
"effect": "^3.6.0" | ||
}, | ||
@@ -18,0 +18,0 @@ "publishConfig": { |
@@ -320,3 +320,3 @@ /** | ||
return (u: unknown): Effect.Effect<ReadonlyArray<Router.ResponseEffect>, ParseError, Router.Context<R>> => | ||
return (u: unknown): Effect.Effect<Array<Router.ResponseEffect>, ParseError, Router.Context<R>> => | ||
Effect.flatMap( | ||
@@ -323,0 +323,0 @@ decode(u), |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
200347