vovk-hello-world 0.0.24 → 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 +21 -21
  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:03:54.541Z -->
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.24 [![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,32 +29,32 @@ import { UserRPC } from 'vovk-hello-world';
29
29
 
30
30
  const response = await UserRPC.updateUser({
31
31
  body: {
32
- // User email
33
- email: "john@example.com",
34
- // User profile object
35
- profile: {
36
- // User full name
37
- name: "John Doe",
38
- // User age
39
- age: 25
40
- }
41
- },
32
+ // User email
33
+ email: "john@example.com",
34
+ // User profile object
35
+ profile: {
36
+ // User full name
37
+ name: "John Doe",
38
+ // User age
39
+ age: 25
40
+ }
41
+ },
42
42
  query: {
43
- // Notification type
44
- notify: "email"
45
- },
43
+ // Notification type
44
+ notify: "email"
45
+ },
46
46
  params: {
47
- // User ID
48
- id: "123e4567-e89b-12d3-a456-426614174000"
49
- },
47
+ // User ID
48
+ id: "123e4567-e89b-12d3-a456-426614174000"
49
+ },
50
50
  });
51
51
 
52
52
  console.log(response);
53
53
  /*
54
54
  {
55
- // -----
56
- // Response object
57
- // -----
55
+ // -----
56
+ // Response object
57
+ // -----
58
58
  // Success status
59
59
  success: true
60
60
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vovk-hello-world",
3
- "version": "0.0.24",
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",