@replit/river 0.1.8 → 0.1.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/dist/router/client.d.ts +1 -1
- package/package.json +1 -1
package/dist/router/client.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ import { Static } from '@sinclair/typebox';
|
|
|
6
6
|
type ServiceClient<Router extends AnyService> = {
|
|
7
7
|
[ProcName in keyof Router['procedures']]: ProcType<Router, ProcName> extends 'rpc' ? (input: Static<ProcInput<Router, ProcName>>) => Promise<Static<ProcOutput<Router, ProcName>>> : () => Promise<[
|
|
8
8
|
Pushable<Static<ProcInput<Router, ProcName>>>,
|
|
9
|
-
|
|
9
|
+
AsyncIterableIterator<Static<ProcOutput<Router, ProcName>>>,
|
|
10
10
|
() => void
|
|
11
11
|
]>;
|
|
12
12
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@replit/river",
|
|
3
3
|
"description": "It's like tRPC but... with JSON Schema Support, duplex streaming and support for service multiplexing. Transport agnostic!",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.9",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|