@trpc/client 10.4.2 → 10.4.3

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 +4 -3
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -1,13 +1,15 @@
1
1
  <p align="center">
2
- <a href="https://trpc.io/"><img src="../../www/static/img/logo-text.svg" alt="tRPC" height="130"/></a>
2
+ <a href="https://trpc.io/"><img src="https://assets.trpc.io/icons/svgs/blue-bg-rounded.svg" alt="tRPC" height="75"/></a>
3
3
  </p>
4
4
 
5
+ <h3 align="center">tRPC</h3>
6
+
5
7
  <p align="center">
6
8
  <strong>End-to-end typesafe APIs made easy</strong>
7
9
  </p>
8
10
 
9
11
  <p align="center">
10
- <img src="https://assets.trpc.io/www/v10/preview-dark.gif" alt="Demo" />
12
+ <img src="https://assets.trpc.io/www/v10/v10-dark-landscape.gif" alt="Demo" />
11
13
  </p>
12
14
 
13
15
  # `@trpc/client`
@@ -47,7 +49,6 @@ const trpc = createTRPCProxyClient<AppRouter>({
47
49
  ],
48
50
  });
49
51
 
50
-
51
52
  async function main() {
52
53
  // Querying the greeting
53
54
  const helloResponse = await trpc.greeting.query({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trpc/client",
3
- "version": "10.4.2",
3
+ "version": "10.4.3",
4
4
  "description": "tRPC Client lib",
5
5
  "author": "KATT",
6
6
  "license": "MIT",
@@ -66,11 +66,11 @@
66
66
  "links"
67
67
  ],
68
68
  "peerDependencies": {
69
- "@trpc/server": "10.4.2"
69
+ "@trpc/server": "10.4.3"
70
70
  },
71
71
  "devDependencies": {
72
72
  "@testing-library/dom": "^8.18.1",
73
- "@trpc/server": "10.4.2",
73
+ "@trpc/server": "10.4.3",
74
74
  "@types/node": "^18.7.20",
75
75
  "rollup": "^2.79.1",
76
76
  "tsx": "^3.9.0"
@@ -78,5 +78,5 @@
78
78
  "publishConfig": {
79
79
  "access": "public"
80
80
  },
81
- "gitHead": "74ad50732ff49dde7fb023ffc325e458c6b48324"
81
+ "gitHead": "c5b49adb1d4e875633bb88ce282a3573fa00b404"
82
82
  }