vovk-hello-world 0.0.25 → 0.0.26

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 +13 -13
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
- <!-- auto-generated by vovk-cli v0.0.1-draft.299 at 2025-07-18T18:07:11.085Z -->
1
+ <!-- auto-generated by vovk-cli v0.0.1-draft.299 at 2025-07-18T18:09:53.089Z -->
2
2
 
3
3
 
4
- # vovk-hello-world v0.0.25 [![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.26 [![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
 
@@ -29,22 +29,22 @@ import { UserRPC } from 'vovk-hello-world';
29
29
 
30
30
  const response = await UserRPC.updateUser({
31
31
  body: {
32
- // User email
32
+ // User email
33
33
  email: "john@example.com",
34
- // User profile object
34
+ // User profile object
35
35
  profile: {
36
- // User full name
36
+ // User full name
37
37
  name: "John Doe",
38
- // User age
38
+ // User age
39
39
  age: 25
40
40
  }
41
41
  },
42
42
  query: {
43
- // Notification type
43
+ // Notification type
44
44
  notify: "email"
45
45
  },
46
46
  params: {
47
- // User ID
47
+ // User ID
48
48
  id: "123e4567-e89b-12d3-a456-426614174000"
49
49
  },
50
50
  });
@@ -52,10 +52,10 @@ const response = await UserRPC.updateUser({
52
52
  console.log(response);
53
53
  /*
54
54
  {
55
- // -----
56
- // Response object
57
- // -----
58
- // Success status
55
+ // -----
56
+ // Response object
57
+ // -----
58
+ // Success status
59
59
  success: true
60
60
  }
61
61
  */
@@ -82,7 +82,7 @@ for await (const item of response) {
82
82
  console.log(item);
83
83
  /*
84
84
  {
85
- // Message from the token
85
+ // Message from the token
86
86
  message: "string"
87
87
  }
88
88
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vovk-hello-world",
3
- "version": "0.0.25",
3
+ "version": "0.0.26",
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",