@orpc/nest 2.0.0-beta.29 → 2.0.0-beta.30
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 +2 -1
- package/package.json +27 -13
package/README.md
CHANGED
|
@@ -54,6 +54,7 @@ You can read the documentation [here](https://orpc.dev).
|
|
|
54
54
|
- [@orpc/tanstack-query](https://npmx.dev/package/@orpc/tanstack-query): Integrate with [TanStack Query](https://tanstack.com/query/latest).
|
|
55
55
|
- [@orpc/pinia-colada](https://npmx.dev/package/@orpc/pinia-colada): Integrate with [Pinia Colada](https://pinia-colada.esm.dev/).
|
|
56
56
|
- [@orpc/swr](https://npmx.dev/package/@orpc/swr): Integrate with [SWR](https://swr.vercel.app/).
|
|
57
|
+
- [@orpc/experimental-msw](https://npmx.dev/package/@orpc/experimental-msw): Mock procedures with [Mock Service Worker](https://mswjs.io/).
|
|
57
58
|
- [@orpc/experimental-effect](https://npmx.dev/package/@orpc/experimental-effect): Integrate with [Effect](https://effect.website/).
|
|
58
59
|
- [@orpc/nest](https://npmx.dev/package/@orpc/nest): Implement your contract with [NestJS](https://nestjs.com/).
|
|
59
60
|
- [@orpc/node](https://npmx.dev/package/@orpc/node): [Node.js](https://nodejs.org/) plugins for static file serving and large uploads.
|
|
@@ -69,7 +70,7 @@ You can read the documentation [here](https://orpc.dev).
|
|
|
69
70
|
|
|
70
71
|
## Sponsors
|
|
71
72
|
|
|
72
|
-
Like what we build over at [middleapi](https://github.com/middleapi)? You can help keep it going
|
|
73
|
+
Like what we build over at [middleapi](https://github.com/middleapi)? You can help keep it going through [GitHub Sponsors](https://github.com/sponsors/dinwwwh) or [Open Collective](https://opencollective.com/middleapi). Every bit helps! 🚀
|
|
73
74
|
|
|
74
75
|
<table>
|
|
75
76
|
<tr>
|
package/package.json
CHANGED
|
@@ -1,15 +1,29 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orpc/nest",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.0.0-beta.
|
|
4
|
+
"version": "2.0.0-beta.30",
|
|
5
|
+
"description": "NestJS integration for oRPC: implement typesafe contracts in NestJS controllers",
|
|
5
6
|
"license": "MIT",
|
|
6
|
-
"funding":
|
|
7
|
+
"funding": [
|
|
8
|
+
"https://github.com/sponsors/dinwwwh",
|
|
9
|
+
"https://opencollective.com/middleapi"
|
|
10
|
+
],
|
|
7
11
|
"homepage": "https://orpc.dev",
|
|
8
12
|
"repository": {
|
|
9
13
|
"type": "git",
|
|
10
14
|
"url": "git+https://github.com/middleapi/orpc.git",
|
|
11
15
|
"directory": "packages/nest"
|
|
12
16
|
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"orpc",
|
|
19
|
+
"nestjs",
|
|
20
|
+
"nest",
|
|
21
|
+
"contract-first",
|
|
22
|
+
"rpc",
|
|
23
|
+
"openapi",
|
|
24
|
+
"typescript",
|
|
25
|
+
"typesafe"
|
|
26
|
+
],
|
|
13
27
|
"sideEffects": false,
|
|
14
28
|
"exports": {
|
|
15
29
|
"./package.json": "./package.json",
|
|
@@ -40,22 +54,22 @@
|
|
|
40
54
|
"dependencies": {
|
|
41
55
|
"@standardserver/core": "^0.8.0",
|
|
42
56
|
"@standardserver/node": "^0.8.0",
|
|
43
|
-
"@orpc/
|
|
44
|
-
"@orpc/
|
|
45
|
-
"@orpc/
|
|
46
|
-
"@orpc/shared": "2.0.0-beta.
|
|
47
|
-
"@orpc/
|
|
57
|
+
"@orpc/client": "2.0.0-beta.30",
|
|
58
|
+
"@orpc/contract": "2.0.0-beta.30",
|
|
59
|
+
"@orpc/openapi": "2.0.0-beta.30",
|
|
60
|
+
"@orpc/shared": "2.0.0-beta.30",
|
|
61
|
+
"@orpc/server": "2.0.0-beta.30"
|
|
48
62
|
},
|
|
49
63
|
"devDependencies": {
|
|
50
64
|
"@fastify/cookie": "^11.0.2",
|
|
51
|
-
"@nestjs/common": "^11.1
|
|
52
|
-
"@nestjs/core": "^11.1
|
|
53
|
-
"@nestjs/platform-express": "^11.1
|
|
54
|
-
"@nestjs/platform-fastify": "^11.1
|
|
55
|
-
"@nestjs/testing": "^11.1
|
|
65
|
+
"@nestjs/common": "^11.2.1",
|
|
66
|
+
"@nestjs/core": "^11.2.1",
|
|
67
|
+
"@nestjs/platform-express": "^11.2.1",
|
|
68
|
+
"@nestjs/platform-fastify": "^11.2.1",
|
|
69
|
+
"@nestjs/testing": "^11.2.1",
|
|
56
70
|
"@types/express": "^5.0.6",
|
|
57
71
|
"express": "^5.2.1",
|
|
58
|
-
"fastify": "^5.
|
|
72
|
+
"fastify": "^5.12.1",
|
|
59
73
|
"rxjs": "^7.8.2"
|
|
60
74
|
},
|
|
61
75
|
"scripts": {
|