vovk-hello-world 0.0.41 → 0.0.43
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/README.md +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
<!-- auto-generated by vovk-cli v0.0.1-draft.
|
|
1
|
+
<!-- auto-generated by vovk-cli v0.0.1-draft.329 at 2025-08-04T16:58:09.824Z -->
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
# vovk-hello-world v0.0.
|
|
4
|
+
# vovk-hello-world v0.0.43 [](https://www.typescriptlang.org/) [](https://vovk.dev)
|
|
5
5
|
|
|
6
6
|
> A showcase for Next.js + Vovk.ts + Zod, demonstrating its capabilities with TypeScript, Rust, and Python RPC.
|
|
7
7
|
|
|
@@ -22,7 +22,7 @@ npm install vovk-hello-world
|
|
|
22
22
|
Update user by ID
|
|
23
23
|
|
|
24
24
|
|
|
25
|
-
`POST
|
|
25
|
+
`POST https://vovk-hello-world.vercel.app/api/users/{id}`
|
|
26
26
|
|
|
27
27
|
```ts
|
|
28
28
|
import { UserRPC } from 'vovk-hello-world';
|
|
@@ -71,7 +71,7 @@ console.log(response);
|
|
|
71
71
|
Stream tokens to the client
|
|
72
72
|
|
|
73
73
|
|
|
74
|
-
`GET
|
|
74
|
+
`GET https://vovk-hello-world.vercel.app/api/streams/tokens`
|
|
75
75
|
|
|
76
76
|
```ts
|
|
77
77
|
import { StreamRPC } from 'vovk-hello-world';
|
|
@@ -100,7 +100,7 @@ for await (const item of response) {
|
|
|
100
100
|
Get the OpenAPI spec for the "Hello World" app API
|
|
101
101
|
|
|
102
102
|
|
|
103
|
-
`GET
|
|
103
|
+
`GET https://vovk-hello-world.vercel.app/api/static/openapi/spec.json`
|
|
104
104
|
|
|
105
105
|
```ts
|
|
106
106
|
import { OpenApiRPC } from 'vovk-hello-world';
|
package/package.json
CHANGED