vovk-hello-world 0.0.42 → 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.
Files changed (2) hide show
  1. package/README.md +5 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
- <!-- auto-generated by vovk-cli v0.0.1-draft.328 at 2025-08-04T16:54:56.909Z -->
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.42 [![TypeScript](https://badgen.net/badge/-/TypeScript?icon=typescript&label&labelColor=blue&color=555555)](https://www.typescriptlang.org/) [![Vovk.ts](https://badgen.net/badge/Built%20with/Vovk.ts/333333?icon=https://vovk.dev/icon-white.svg)](https://vovk.dev)
4
+ # vovk-hello-world v0.0.43 [![TypeScript](https://badgen.net/badge/-/TypeScript?icon=typescript&label&labelColor=blue&color=555555)](https://www.typescriptlang.org/) [![Vovk.ts](https://badgen.net/badge/Built%20with/Vovk.ts/333333?icon=https://vovk.dev/icon-white.svg)](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 http://localhost:3000/api/users/{id}`
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 http://localhost:3000/api/streams/tokens`
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 http://localhost:3000/api/static/openapi/spec.json`
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vovk-hello-world",
3
- "version": "0.0.42",
3
+ "version": "0.0.43",
4
4
  "description": "A showcase for Next.js + Vovk.ts + Zod, demonstrating its capabilities with TypeScript, Rust, and Python RPC.",
5
5
  "license": "MIT",
6
6
  "main": "./index.cjs",