@orpc/nest 1.14.6 → 2.0.0-beta.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.
- package/{LICENSE → LICENCE} +2 -2
- package/README.md +81 -146
- package/dist/index.d.mts +34 -47
- package/dist/index.d.ts +34 -47
- package/dist/index.mjs +144 -85
- package/package.json +21 -36
package/{LICENSE → LICENCE}
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c)
|
|
3
|
+
Copyright (c) 2025 Standard Server
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
18
18
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
19
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
20
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,18 +1,14 @@
|
|
|
1
|
-
<
|
|
2
|
-
<image align="center" src="https://orpc.dev/logo.webp" width=280 alt="oRPC logo" />
|
|
3
|
-
</div>
|
|
4
|
-
|
|
5
|
-
<h1></h1>
|
|
1
|
+
<h1 align="center">oRPC - Typesafe APIs Made Simple 🪄</h1>
|
|
6
2
|
|
|
7
3
|
<div align="center">
|
|
8
|
-
<a href="https://codecov.io/gh/middleapi/orpc">
|
|
9
|
-
<img alt="codecov" src="https://codecov.io/gh/middleapi/orpc/branch/main/graph/badge.svg">
|
|
4
|
+
<a href="https://codecov.io/gh/middleapi/orpc-nest">
|
|
5
|
+
<img alt="codecov" src="https://codecov.io/gh/middleapi/orpc-nest/branch/main/graph/badge.svg">
|
|
10
6
|
</a>
|
|
11
7
|
<a href="https://www.npmjs.com/package/@orpc/nest">
|
|
12
8
|
<img alt="weekly downloads" src="https://img.shields.io/npm/dw/%40orpc%2Fnest?logo=npm" />
|
|
13
9
|
</a>
|
|
14
|
-
<a href="https://github.com/middleapi/orpc/blob/main/
|
|
15
|
-
<img alt="MIT License" src="https://img.shields.io/github/license/middleapi/orpc?logo=open-source-initiative" />
|
|
10
|
+
<a href="https://github.com/middleapi/orpc-nest/blob/main/LICENCE">
|
|
11
|
+
<img alt="MIT License" src="https://img.shields.io/github/license/middleapi/orpc-nest?logo=open-source-initiative" />
|
|
16
12
|
</a>
|
|
17
13
|
<a href="https://discord.gg/TXEbwRBvQn">
|
|
18
14
|
<img alt="Discord" src="https://img.shields.io/discord/1308966753044398161?color=7389D8&label&logo=discord&logoColor=ffffff" />
|
|
@@ -22,109 +18,47 @@
|
|
|
22
18
|
</a>
|
|
23
19
|
</div>
|
|
24
20
|
|
|
25
|
-
|
|
21
|
+
## Documentation
|
|
22
|
+
|
|
23
|
+
You can read the documentation [here](https://orpc.dev).
|
|
26
24
|
|
|
27
|
-
|
|
25
|
+
## Packages
|
|
28
26
|
|
|
29
|
-
|
|
27
|
+
**Core**
|
|
30
28
|
|
|
31
|
-
|
|
29
|
+
- [@orpc/contract](https://www.npmjs.com/package/@orpc/contract): Define type-safe contracts for your API.
|
|
30
|
+
- [@orpc/server](https://www.npmjs.com/package/@orpc/server): Implement your API or contract on the server.
|
|
31
|
+
- [@orpc/client](https://www.npmjs.com/package/@orpc/client): Consume your API from the client with full type safety.
|
|
32
|
+
- [@orpc/openapi](https://www.npmjs.com/package/@orpc/openapi): Bring OpenAPI compatibility to your APIs.
|
|
32
33
|
|
|
33
|
-
|
|
34
|
-
- **📘 First-Class OpenAPI**: Built-in support that fully adheres to the OpenAPI standard.
|
|
35
|
-
- **📝 Contract-First Development**: Optionally define your API contract before implementation.
|
|
36
|
-
- **🔍 First-Class OpenTelemetry**: Seamlessly integrate with OpenTelemetry for observability.
|
|
37
|
-
- **⚙️ Framework Integrations**: Seamlessly integrate with TanStack Query (React, Vue, Solid, Svelte, Angular), SWR, Pinia Colada, and more.
|
|
38
|
-
- **🚀 Server Actions**: Fully compatible with React Server Actions on Next.js, TanStack Start, and other platforms.
|
|
39
|
-
- **🔠 Standard Schema Support**: Works out of the box with Zod, Valibot, ArkType, and other schema validators.
|
|
40
|
-
- **🗃️ Native Types**: Supports native types like Date, File, Blob, BigInt, URL, and more.
|
|
41
|
-
- **⏱️ Lazy Router**: Enhance cold start times with our lazy routing feature.
|
|
42
|
-
- **📡 SSE & Streaming**: Enjoy full type-safe support for SSE and streaming.
|
|
43
|
-
- **🌍 Multi-Runtime Support**: Fast and lightweight on Cloudflare, Deno, Bun, Node.js, and beyond.
|
|
44
|
-
- **🔌 Extendability**: Easily extend functionality with plugins, middleware, and interceptors.
|
|
34
|
+
**Schema validation**
|
|
45
35
|
|
|
46
|
-
|
|
36
|
+
- [@orpc/zod](https://www.npmjs.com/package/@orpc/zod): Integrate with [Zod](https://zod.dev/).
|
|
37
|
+
- [@orpc/valibot](https://www.npmjs.com/package/@orpc/valibot): Integrate with [Valibot](https://valibot.dev/).
|
|
38
|
+
- [@orpc/arktype](https://www.npmjs.com/package/@orpc/arktype): Integrate with [ArkType](https://arktype.io/).
|
|
47
39
|
|
|
48
|
-
|
|
40
|
+
**Built-in features**
|
|
49
41
|
|
|
50
|
-
|
|
42
|
+
- [@orpc/publisher](https://www.npmjs.com/package/@orpc/publisher): Pub/Sub.
|
|
43
|
+
- [@orpc/ratelimit](https://www.npmjs.com/package/@orpc/ratelimit): Rate limiting.
|
|
44
|
+
- [@orpc/json-schema](https://www.npmjs.com/package/@orpc/json-schema): Smart coercion for OpenAPI requests.
|
|
45
|
+
|
|
46
|
+
**Framework & ecosystem integrations**
|
|
47
|
+
|
|
48
|
+
- [@orpc/next](https://www.npmjs.com/package/@orpc/react): Use oRPC with [Next.js Server Functions](https://nextjs.org/docs/app/getting-started/mutating-data).
|
|
49
|
+
- [@orpc/tanstack-query](https://www.npmjs.com/package/@orpc/tanstack-query): Integrate with [TanStack Query](https://tanstack.com/query/latest).
|
|
50
|
+
- [@orpc/experimental-effect](https://www.npmjs.com/package/@orpc/experimental-effect): Integrate with [Effect](https://effect.website/).
|
|
51
|
+
- [@orpc/nest](https://www.npmjs.com/package/@orpc/nest): Implement your contract with [NestJS](https://nestjs.com/).
|
|
51
52
|
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
- [@orpc/
|
|
55
|
-
- [@orpc/
|
|
56
|
-
- [@orpc/
|
|
57
|
-
- [@orpc/nest](https://www.npmjs.com/package/@orpc/nest): Deeply integrate oRPC with [NestJS](https://nestjs.com/).
|
|
58
|
-
- [@orpc/react](https://www.npmjs.com/package/@orpc/react): Utilities for integrating oRPC with React and React Server Actions.
|
|
59
|
-
- [@orpc/tanstack-query](https://www.npmjs.com/package/@orpc/tanstack-query): [TanStack Query](https://tanstack.com/query/latest) integration.
|
|
60
|
-
- [@orpc/experimental-react-swr](https://www.npmjs.com/package/@orpc/experimental-react-swr): [SWR](https://swr.vercel.app/) integration.
|
|
61
|
-
- [@orpc/vue-colada](https://www.npmjs.com/package/@orpc/vue-colada): Integration with [Pinia Colada](https://pinia-colada.esm.dev/).
|
|
62
|
-
- [@orpc/hey-api](https://www.npmjs.com/package/@orpc/hey-api): [Hey API](https://heyapi.dev/) integration.
|
|
63
|
-
- [@orpc/zod](https://www.npmjs.com/package/@orpc/zod): More schemas that [Zod](https://zod.dev/) doesn't support yet.
|
|
64
|
-
- [@orpc/valibot](https://www.npmjs.com/package/@orpc/valibot): OpenAPI spec generation from [Valibot](https://valibot.dev/).
|
|
65
|
-
- [@orpc/arktype](https://www.npmjs.com/package/@orpc/arktype): OpenAPI spec generation from [ArkType](https://arktype.io/).
|
|
66
|
-
|
|
67
|
-
## `@orpc/nest`
|
|
68
|
-
|
|
69
|
-
Deeply integrate oRPC with [NestJS](https://nestjs.com/). Read the [documentation](https://orpc.dev/docs/openapi/integrations/implement-contract-in-nest) for more information.
|
|
70
|
-
|
|
71
|
-
### Implement Contract
|
|
72
|
-
|
|
73
|
-
An overview of how to implement an [oRPC contract](https://orpc.dev/docs/contract-first/define-contract) in NestJS.
|
|
74
|
-
|
|
75
|
-
```ts
|
|
76
|
-
import { Implement, implement, ORPCError } from '@orpc/nest'
|
|
77
|
-
|
|
78
|
-
@Controller()
|
|
79
|
-
export class PlanetController {
|
|
80
|
-
/**
|
|
81
|
-
* Implement a standalone procedure
|
|
82
|
-
*/
|
|
83
|
-
@Implement(contract.planet.list)
|
|
84
|
-
list() {
|
|
85
|
-
return implement(contract.planet.list).handler(({ input }) => {
|
|
86
|
-
// Implement logic here
|
|
87
|
-
|
|
88
|
-
return []
|
|
89
|
-
})
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
/**
|
|
93
|
-
* Implement entire contract
|
|
94
|
-
*/
|
|
95
|
-
@Implement(contract.planet)
|
|
96
|
-
planet() {
|
|
97
|
-
return {
|
|
98
|
-
list: implement(contract.planet.list).handler(({ input }) => {
|
|
99
|
-
// Implement logic here
|
|
100
|
-
return []
|
|
101
|
-
}),
|
|
102
|
-
find: implement(contract.planet.find).handler(({ input }) => {
|
|
103
|
-
// Implement logic here
|
|
104
|
-
return {
|
|
105
|
-
id: 1,
|
|
106
|
-
name: 'Earth',
|
|
107
|
-
description: 'The planet Earth',
|
|
108
|
-
}
|
|
109
|
-
}),
|
|
110
|
-
create: implement(contract.planet.create).handler(({ input }) => {
|
|
111
|
-
// Implement logic here
|
|
112
|
-
return {
|
|
113
|
-
id: 1,
|
|
114
|
-
name: 'Earth',
|
|
115
|
-
description: 'The planet Earth',
|
|
116
|
-
}
|
|
117
|
-
}),
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
// other handlers...
|
|
122
|
-
}
|
|
123
|
-
```
|
|
53
|
+
**Observability**
|
|
54
|
+
|
|
55
|
+
- [@orpc/opentelemetry](https://www.npmjs.com/package/@orpc/opentelemetry): Instrument your API with [OpenTelemetry](https://opentelemetry.io/).
|
|
56
|
+
- [@orpc/pino](https://www.npmjs.com/package/@orpc/pino): Log with [Pino](https://getpino.io/).
|
|
57
|
+
- [@orpc/evlog](https://www.npmjs.com/package/@orpc/evlog): Log with [Evlog](https://evlog.dev/).
|
|
124
58
|
|
|
125
59
|
## Sponsors
|
|
126
60
|
|
|
127
|
-
|
|
61
|
+
Like what we build over at [middleapi](https://github.com/middleapi)? You can help keep it going here: [GitHub Sponsors](https://github.com/sponsors/dinwwwh). Every bit helps! 🚀
|
|
128
62
|
|
|
129
63
|
### 🏆 Platinum Sponsor
|
|
130
64
|
|
|
@@ -142,19 +76,11 @@ If you find oRPC valuable and would like to support its development, you can do
|
|
|
142
76
|
</tr>
|
|
143
77
|
</table>
|
|
144
78
|
|
|
145
|
-
### 🥉 Bronze Sponsor
|
|
146
|
-
|
|
147
|
-
<table>
|
|
148
|
-
<tr>
|
|
149
|
-
<td align="center"><a href="https://plancraft.com/?ref=orpc" target="_blank" rel="noopener" title="plancraft"><img src="https://avatars.githubusercontent.com/u/46482287?v=4" width="167" alt="plancraft"/><br />plancraft</a></td>
|
|
150
|
-
</tr>
|
|
151
|
-
</table>
|
|
152
|
-
|
|
153
79
|
### Generous Sponsors
|
|
154
80
|
|
|
155
81
|
<table>
|
|
156
82
|
<tr>
|
|
157
|
-
<td align="center"><a href="https://github.com/ln-markets?ref=orpc" target="_blank" rel="noopener" title="LN Markets"><img src="https://avatars.githubusercontent.com/u/70597625?v=4" width="
|
|
83
|
+
<td align="center"><a href="https://github.com/ln-markets?ref=orpc" target="_blank" rel="noopener" title="LN Markets"><img src="https://avatars.githubusercontent.com/u/70597625?v=4" width="167" alt="LN Markets"/><br />LN Markets</a></td>
|
|
158
84
|
</tr>
|
|
159
85
|
</table>
|
|
160
86
|
|
|
@@ -162,26 +88,26 @@ If you find oRPC valuable and would like to support its development, you can do
|
|
|
162
88
|
|
|
163
89
|
<table>
|
|
164
90
|
<tr>
|
|
165
|
-
<td align="center"><a href="https://github.com/hrmcdonald?ref=orpc" target="_blank" rel="noopener" title="Reece McDonald"><img src="https://avatars.githubusercontent.com/u/39349270?v=4" width="
|
|
166
|
-
<td align="center"><a href="https://github.com/nicognaW?ref=orpc" target="_blank" rel="noopener" title="nk"><img src="https://avatars.githubusercontent.com/u/66731869?u=4699bda3a9092d3ec34fbd959450767bcc8b8b6d&v=4" width="
|
|
167
|
-
<td align="center"><a href="https://github.com/supastarter?ref=orpc" target="_blank" rel="noopener" title="supastarter"><img src="https://avatars.githubusercontent.com/u/110960143?v=4" width="
|
|
168
|
-
<td align="center"><a href="https://github.com/divmgl?ref=orpc" target="_blank" rel="noopener" title="Dexter Miguel"><img src="https://avatars.githubusercontent.com/u/5452298?u=645993204be8696c085ecf0d228c3062efe2ed65&v=4" width="
|
|
169
|
-
<td align="center"><a href="https://github.com/herrfugbaum?ref=orpc" target="_blank" rel="noopener" title="herrfugbaum"><img src="https://avatars.githubusercontent.com/u/12859776?u=644dc1666d0220bc0468eb0de3c56b919f635b16&v=4" width="
|
|
170
|
-
<td align="center"><a href="https://github.com/ryota-murakami?ref=orpc" target="_blank" rel="noopener" title="Ryota Murakami"><img src="https://avatars.githubusercontent.com/u/5501268?u=599389e03340734325726ca3f8f423c021d47d7f&v=4" width="
|
|
171
|
-
<td align="center"><a href="https://github.com/dcramer?ref=orpc" target="_blank" rel="noopener" title="David Cramer"><img src="https://avatars.githubusercontent.com/u/23610?v=4" width="119" alt="David Cramer"/><br />David Cramer</a></td>
|
|
91
|
+
<td align="center"><a href="https://github.com/hrmcdonald?ref=orpc" target="_blank" rel="noopener" title="Reece McDonald"><img src="https://avatars.githubusercontent.com/u/39349270?v=4" width="139" alt="Reece McDonald"/><br />Reece McDonald</a></td>
|
|
92
|
+
<td align="center"><a href="https://github.com/nicognaW?ref=orpc" target="_blank" rel="noopener" title="nk"><img src="https://avatars.githubusercontent.com/u/66731869?u=4699bda3a9092d3ec34fbd959450767bcc8b8b6d&v=4" width="139" alt="nk"/><br />nk</a></td>
|
|
93
|
+
<td align="center"><a href="https://github.com/supastarter?ref=orpc" target="_blank" rel="noopener" title="supastarter"><img src="https://avatars.githubusercontent.com/u/110960143?v=4" width="139" alt="supastarter"/><br />supastarter</a></td>
|
|
94
|
+
<td align="center"><a href="https://github.com/divmgl?ref=orpc" target="_blank" rel="noopener" title="Dexter Miguel"><img src="https://avatars.githubusercontent.com/u/5452298?u=645993204be8696c085ecf0d228c3062efe2ed65&v=4" width="139" alt="Dexter Miguel"/><br />Dexter Miguel</a></td>
|
|
95
|
+
<td align="center"><a href="https://github.com/herrfugbaum?ref=orpc" target="_blank" rel="noopener" title="herrfugbaum"><img src="https://avatars.githubusercontent.com/u/12859776?u=644dc1666d0220bc0468eb0de3c56b919f635b16&v=4" width="139" alt="herrfugbaum"/><br />herrfugbaum</a></td>
|
|
96
|
+
<td align="center"><a href="https://github.com/ryota-murakami?ref=orpc" target="_blank" rel="noopener" title="Ryota Murakami"><img src="https://avatars.githubusercontent.com/u/5501268?u=599389e03340734325726ca3f8f423c021d47d7f&v=4" width="139" alt="Ryota Murakami"/><br />Ryota Murakami</a></td>
|
|
172
97
|
</tr>
|
|
173
98
|
<tr>
|
|
174
|
-
<td align="center"><a href="https://github.com/
|
|
175
|
-
<td align="center"><a href="https://github.com/
|
|
176
|
-
<td align="center"><a href="https://github.com/
|
|
177
|
-
<td align="center"><a href="https://github.com/
|
|
178
|
-
<td align="center"><a href="https://github.com/
|
|
179
|
-
<td align="center"><a href="https://github.com/
|
|
180
|
-
<td align="center"><a href="https://github.com/peter-adam-dy?ref=orpc" target="_blank" rel="noopener" title="Peter Adam"><img src="https://avatars.githubusercontent.com/u/132129459?u=4f3dbbb3b443990b56acb7d6a5d11ed2c555f6db&v=4" width="119" alt="Peter Adam"/><br />Peter Adam</a></td>
|
|
99
|
+
<td align="center"><a href="https://github.com/dcramer?ref=orpc" target="_blank" rel="noopener" title="David Cramer"><img src="https://avatars.githubusercontent.com/u/23610?v=4" width="139" alt="David Cramer"/><br />David Cramer</a></td>
|
|
100
|
+
<td align="center"><a href="https://github.com/valerii15298?ref=orpc" target="_blank" rel="noopener" title="Valerii Petryniak"><img src="https://avatars.githubusercontent.com/u/44531564?u=88ac74d9bacd20401518441907acad21063cd397&v=4" width="139" alt="Valerii Petryniak"/><br />Valerii Petryniak</a></td>
|
|
101
|
+
<td align="center"><a href="https://github.com/letstri?ref=orpc" target="_blank" rel="noopener" title="Valerii Strilets"><img src="https://avatars.githubusercontent.com/u/13253748?u=c7b10399ccc8f8081e24db94ec32cd9858e86ac3&v=4" width="139" alt="Valerii Strilets"/><br />Valerii Strilets</a></td>
|
|
102
|
+
<td align="center"><a href="https://github.com/K-Mistele?ref=orpc" target="_blank" rel="noopener" title="Kyle Mistele"><img src="https://avatars.githubusercontent.com/u/18430555?u=3afebeb81de666e35aaac3ed46f14159d7603ffb&v=4" width="139" alt="Kyle Mistele"/><br />Kyle Mistele</a></td>
|
|
103
|
+
<td align="center"><a href="https://github.com/andrewpeters9?ref=orpc" target="_blank" rel="noopener" title="Andrew Peters"><img src="https://avatars.githubusercontent.com/u/36251325?v=4" width="139" alt="Andrew Peters"/><br />Andrew Peters</a></td>
|
|
104
|
+
<td align="center"><a href="https://github.com/R44VC0RP?ref=orpc" target="_blank" rel="noopener" title="Ryan Vogel"><img src="https://avatars.githubusercontent.com/u/89211796?u=1857347b9787d8d8a7ea5bfc333f96be92d5a683&v=4" width="139" alt="Ryan Vogel"/><br />Ryan Vogel</a></td>
|
|
181
105
|
</tr>
|
|
182
106
|
<tr>
|
|
183
|
-
<td align="center"><a href="https://github.com/
|
|
184
|
-
<td align="center"><a href="https://github.com/
|
|
107
|
+
<td align="center"><a href="https://github.com/christ12938?ref=orpc" target="_blank" rel="noopener" title="christ12938"><img src="https://avatars.githubusercontent.com/u/25758598?v=4" width="139" alt="christ12938"/><br />christ12938</a></td>
|
|
108
|
+
<td align="center"><a href="https://github.com/peter-adam-dy?ref=orpc" target="_blank" rel="noopener" title="Peter Adam"><img src="https://avatars.githubusercontent.com/u/132129459?u=4f3dbbb3b443990b56acb7d6a5d11ed2c555f6db&v=4" width="139" alt="Peter Adam"/><br />Peter Adam</a></td>
|
|
109
|
+
<td align="center"><a href="https://github.com/Ryanjso?ref=orpc" target="_blank" rel="noopener" title="Ryan Soderberg"><img src="https://avatars.githubusercontent.com/u/39172778?u=5ed913c31d57e7221b75784abcad48c7ebddde27&v=4" width="139" alt="Ryan Soderberg"/><br />Ryan Soderberg</a></td>
|
|
110
|
+
<td align="center"><a href="https://github.com/itigoore01?ref=orpc" target="_blank" rel="noopener" title="shota"><img src="https://avatars.githubusercontent.com/u/11831107?u=c976a6dc7e055eb026304c46c99100ed22b0c8e0&v=4" width="139" alt="shota"/><br />shota</a></td>
|
|
185
111
|
</tr>
|
|
186
112
|
</table>
|
|
187
113
|
|
|
@@ -189,28 +115,27 @@ If you find oRPC valuable and would like to support its development, you can do
|
|
|
189
115
|
|
|
190
116
|
<table>
|
|
191
117
|
<tr>
|
|
192
|
-
<td align="center"><a href="https://github.com/rhinodavid?ref=orpc" target="_blank" rel="noopener" title="David Walsh"><img src="https://avatars.githubusercontent.com/u/5778036?u=b5521f07d2f88c3db2a0dae62b5f2f8357214af0&v=4" width="
|
|
193
|
-
<td align="center"><a href="https://github.com/
|
|
194
|
-
<td align="center"><a href="https://github.com/
|
|
195
|
-
<td align="center"><a href="https://github.com/
|
|
196
|
-
<td align="center"><a href="https://github.com/
|
|
197
|
-
<td align="center"><a href="https://github.com/
|
|
198
|
-
<td align="center"><a href="https://github.com/
|
|
199
|
-
<td align="center"><a href="https://github.com/christopher-kapic?ref=orpc" target="_blank" rel="noopener" title="Christopher Kapic"><img src="https://avatars.githubusercontent.com/u/59740769?u=e7ad4b72b5bf6c9eb1644c26dbf3332a8f987377&v=4" width="104" alt="Christopher Kapic"/><br />Christopher Kapic</a></td>
|
|
118
|
+
<td align="center"><a href="https://github.com/rhinodavid?ref=orpc" target="_blank" rel="noopener" title="David Walsh"><img src="https://avatars.githubusercontent.com/u/5778036?u=b5521f07d2f88c3db2a0dae62b5f2f8357214af0&v=4" width="119" alt="David Walsh"/><br />David Walsh</a></td>
|
|
119
|
+
<td align="center"><a href="https://github.com/Robbe95?ref=orpc" target="_blank" rel="noopener" title="Robbe Vaes"><img src="https://avatars.githubusercontent.com/u/44748019?u=e0232402c045ad4eac7cbd217f1f47e083103b89&v=4" width="119" alt="Robbe Vaes"/><br />Robbe Vaes</a></td>
|
|
120
|
+
<td align="center"><a href="https://github.com/aidansunbury?ref=orpc" target="_blank" rel="noopener" title="Aidan Sunbury"><img src="https://avatars.githubusercontent.com/u/64103161?v=4" width="119" alt="Aidan Sunbury"/><br />Aidan Sunbury</a></td>
|
|
121
|
+
<td align="center"><a href="https://github.com/soonoo?ref=orpc" target="_blank" rel="noopener" title="soonoo"><img src="https://avatars.githubusercontent.com/u/5436405?u=5d0b4aa955c87e30e6bda7f0cccae5402da99528&v=4" width="119" alt="soonoo"/><br />soonoo</a></td>
|
|
122
|
+
<td align="center"><a href="https://github.com/kporten?ref=orpc" target="_blank" rel="noopener" title="Kevin Porten"><img src="https://avatars.githubusercontent.com/u/1839345?u=dc2263d5cfe0d927ce1a0be04a1d55dd6b55405c&v=4" width="119" alt="Kevin Porten"/><br />Kevin Porten</a></td>
|
|
123
|
+
<td align="center"><a href="https://github.com/pumpkinlink?ref=orpc" target="_blank" rel="noopener" title="Denis"><img src="https://avatars.githubusercontent.com/u/11864620?u=5f47bbe6c65d0f6f5cf011021490238e4b0593d0&v=4" width="119" alt="Denis"/><br />Denis</a></td>
|
|
124
|
+
<td align="center"><a href="https://github.com/christopher-kapic?ref=orpc" target="_blank" rel="noopener" title="Christopher Kapic"><img src="https://avatars.githubusercontent.com/u/59740769?u=e7ad4b72b5bf6c9eb1644c26dbf3332a8f987377&v=4" width="119" alt="Christopher Kapic"/><br />Christopher Kapic</a></td>
|
|
200
125
|
</tr>
|
|
201
126
|
<tr>
|
|
202
|
-
<td align="center"><a href="https://github.com/thomasballinger?ref=orpc" target="_blank" rel="noopener" title="Tom Ballinger"><img src="https://avatars.githubusercontent.com/u/458879?u=4b045ac75d721b6ac2b42a74d7d37f61f0414031&v=4" width="
|
|
203
|
-
<td align="center"><a href="https://github.com/SSam0419?ref=orpc" target="_blank" rel="noopener" title="Sam"><img src="https://avatars.githubusercontent.com/u/102863520?u=3c89611f549d5070be232eb4532f690c8f2e7a65&v=4" width="
|
|
204
|
-
<td align="center"><a href="https://github.com/Titoine?ref=orpc" target="_blank" rel="noopener" title="Titoine"><img src="https://avatars.githubusercontent.com/u/3514286?u=1bb1e86b0c99c8a1121372e56d51a177eea12191&v=4" width="
|
|
205
|
-
<td align="center"><a href="https://github.com/Mnigos?ref=orpc" target="_blank" rel="noopener" title="Igor Makowski"><img src="https://avatars.githubusercontent.com/u/56691628?u=ee8c879478f7c151b9156aef6c74243fa3e247a8&v=4" width="
|
|
206
|
-
<td align="center"><a href="https://github.com/
|
|
207
|
-
<td align="center"><a href="https://github.com/
|
|
208
|
-
<td align="center"><a href="https://github.com/
|
|
209
|
-
<td align="center"><a href="https://github.com/piscis?ref=orpc" target="_blank" rel="noopener" title="Alex"><img src="https://avatars.githubusercontent.com/u/326163?u=b245f368bd940cf51d08c0b6bf55f8257f359437&v=4" width="104" alt="Alex"/><br />Alex</a></td>
|
|
127
|
+
<td align="center"><a href="https://github.com/thomasballinger?ref=orpc" target="_blank" rel="noopener" title="Tom Ballinger"><img src="https://avatars.githubusercontent.com/u/458879?u=4b045ac75d721b6ac2b42a74d7d37f61f0414031&v=4" width="119" alt="Tom Ballinger"/><br />Tom Ballinger</a></td>
|
|
128
|
+
<td align="center"><a href="https://github.com/SSam0419?ref=orpc" target="_blank" rel="noopener" title="Sam"><img src="https://avatars.githubusercontent.com/u/102863520?u=3c89611f549d5070be232eb4532f690c8f2e7a65&v=4" width="119" alt="Sam"/><br />Sam</a></td>
|
|
129
|
+
<td align="center"><a href="https://github.com/Titoine?ref=orpc" target="_blank" rel="noopener" title="Titoine"><img src="https://avatars.githubusercontent.com/u/3514286?u=1bb1e86b0c99c8a1121372e56d51a177eea12191&v=4" width="119" alt="Titoine"/><br />Titoine</a></td>
|
|
130
|
+
<td align="center"><a href="https://github.com/Mnigos?ref=orpc" target="_blank" rel="noopener" title="Igor Makowski"><img src="https://avatars.githubusercontent.com/u/56691628?u=ee8c879478f7c151b9156aef6c74243fa3e247a8&v=4" width="119" alt="Igor Makowski"/><br />Igor Makowski</a></td>
|
|
131
|
+
<td align="center"><a href="https://github.com/hanayashiki?ref=orpc" target="_blank" rel="noopener" title="hanayashiki"><img src="https://avatars.githubusercontent.com/u/26056783?u=06c3b9205a16fd41a871e82da1cc2a09306d53f5&v=4" width="119" alt="hanayashiki"/><br />hanayashiki</a></td>
|
|
132
|
+
<td align="center"><a href="https://github.com/ldub?ref=orpc" target="_blank" rel="noopener" title="Lev Dubinets"><img src="https://avatars.githubusercontent.com/u/3114081?u=f547f5d5012cab54851f1b1ad72d10e537f78fc2&v=4" width="119" alt="Lev Dubinets"/><br />Lev Dubinets</a></td>
|
|
133
|
+
<td align="center"><a href="https://github.com/mr-kelly?ref=orpc" target="_blank" rel="noopener" title="Kelly Peilin Chan"><img src="https://avatars.githubusercontent.com/u/520852?u=6b0f7105f694e7b5cacf410a3f04c7044b469dc8&v=4" width="119" alt="Kelly Peilin Chan"/><br />Kelly Peilin Chan</a></td>
|
|
210
134
|
</tr>
|
|
211
135
|
<tr>
|
|
212
|
-
<td align="center"><a href="https://github.com/
|
|
213
|
-
<td align="center"><a href="https://github.com/
|
|
136
|
+
<td align="center"><a href="https://github.com/piscis?ref=orpc" target="_blank" rel="noopener" title="Alex"><img src="https://avatars.githubusercontent.com/u/326163?u=b245f368bd940cf51d08c0b6bf55f8257f359437&v=4" width="119" alt="Alex"/><br />Alex</a></td>
|
|
137
|
+
<td align="center"><a href="https://github.com/nattstack?ref=orpc" target="_blank" rel="noopener" title="nattstack"><img src="https://avatars.githubusercontent.com/u/31426677?u=fa9dbb8b3e66eb0ea3c88db5dc07f31c8c5418fe&v=4" width="119" alt="nattstack"/><br />nattstack</a></td>
|
|
138
|
+
<td align="center"><a href="https://github.com/finom?ref=orpc" target="_blank" rel="noopener" title="Andrey Gubanov"><img src="https://avatars.githubusercontent.com/u/1082083?u=29e91400dbd4a9c217048a8f59562c4f740498e6&v=4" width="119" alt="Andrey Gubanov"/><br />Andrey Gubanov</a></td>
|
|
214
139
|
</tr>
|
|
215
140
|
</table>
|
|
216
141
|
|
|
@@ -226,7 +151,7 @@ If you find oRPC valuable and would like to support its development, you can do
|
|
|
226
151
|
<a href="https://github.com/theoludwig?ref=orpc" target="_blank" rel="noopener" title="Théo LUDWIG"><img src="https://avatars.githubusercontent.com/u/25207499?u=a6a9653725a2f574c07893748806668e0598cdbe&v=4" width="32" height="32" alt="Théo LUDWIG" /></a>
|
|
227
152
|
<a href="https://github.com/abhay-ramesh?ref=orpc" target="_blank" rel="noopener" title="Abhay Ramesh"><img src="https://avatars.githubusercontent.com/u/66196314?u=c5c2b0327b26606c2efcfaf17046ab18c3d25c57&v=4" width="32" height="32" alt="Abhay Ramesh" /></a>
|
|
228
153
|
<a href="https://github.com/shr-ink?ref=orpc" target="_blank" rel="noopener" title="shr.ink oü"><img src="https://avatars.githubusercontent.com/u/139700438?v=4" width="32" height="32" alt="shr.ink oü" /></a>
|
|
229
|
-
<a href="https://github.com/johngerome?ref=orpc" target="_blank" rel="noopener" title="0x4e32"><img src="https://avatars.githubusercontent.com/u/2002000?u=
|
|
154
|
+
<a href="https://github.com/johngerome?ref=orpc" target="_blank" rel="noopener" title="0x4e32"><img src="https://avatars.githubusercontent.com/u/2002000?u=505e54608466ab53754f702973687b04c6424c1f&v=4" width="32" height="32" alt="0x4e32" /></a>
|
|
230
155
|
<a href="https://github.com/yzuyr?ref=orpc" target="_blank" rel="noopener" title="Ryuz"><img src="https://avatars.githubusercontent.com/u/196539378?u=d38374588d219b6748b16406982f6559411466d4&v=4" width="32" height="32" alt="Ryuz" /></a>
|
|
231
156
|
<a href="https://github.com/happyboy2022?ref=orpc" target="_blank" rel="noopener" title="happyboy"><img src="https://avatars.githubusercontent.com/u/103669586?u=65b49c4b893ed3703909fbb3a7a22313f3f9c121&v=4" width="32" height="32" alt="happyboy" /></a>
|
|
232
157
|
<a href="https://github.com/YiCChi?ref=orpc" target="_blank" rel="noopener" title="yicchi"><img src="https://avatars.githubusercontent.com/u/86967274?u=6c2756f09fe15dd94d572f560e979cd157982852&v=4" width="32" height="32" alt="yicchi" /></a>
|
|
@@ -246,9 +171,19 @@ If you find oRPC valuable and would like to support its development, you can do
|
|
|
246
171
|
<a href="https://github.com/laduniestu?ref=orpc" target="_blank" rel="noopener" title="Laduni Estu Syalwa"><img src="https://avatars.githubusercontent.com/u/44757637?u=a2fc1ea8f7d827a96721176f79d30592d1c48059&v=4" width="32" height="32" alt="Laduni Estu Syalwa" /></a>
|
|
247
172
|
<a href="https://github.com/yukimotochern?ref=orpc" target="_blank" rel="noopener" title="Chen, Zhi-Yuan"><img src="https://avatars.githubusercontent.com/u/20896173?u=945c33fc21725e4d566a0d02afc54b136ca1d67a&v=4" width="32" height="32" alt="Chen, Zhi-Yuan" /></a>
|
|
248
173
|
<a href="https://github.com/illarionvk?ref=orpc" target="_blank" rel="noopener" title="Illarion Koperski"><img src="https://avatars.githubusercontent.com/u/5012724?u=7cfa13652f7ac5fb3c56d880e3eb3fbe40c3ea34&v=4" width="32" height="32" alt="Illarion Koperski" /></a>
|
|
174
|
+
<a href="https://github.com/steelbrain?ref=orpc" target="_blank" rel="noopener" title="Anees Iqbal"><img src="https://avatars.githubusercontent.com/u/4278113?u=22b80b5399eed68ac76cd58b02961b0481f1db11&v=4" width="32" height="32" alt="Anees Iqbal" /></a>
|
|
249
175
|
<a href="https://github.com/Scrumplex?ref=orpc" target="_blank" rel="noopener" title="Sefa Eyeoglu"><img src="https://avatars.githubusercontent.com/u/11587657?u=ab503582165c0bbff0cca47ce31c9450bb1553c9&v=4" width="32" height="32" alt="Sefa Eyeoglu" /></a>
|
|
176
|
+
<a href="https://github.com/ChromeGG?ref=orpc" target="_blank" rel="noopener" title="Adam Tkaczyk"><img src="https://avatars.githubusercontent.com/u/39050595?u=a58ca6042a6950e94e6e92442db76ef584279bc0&v=4" width="32" height="32" alt="Adam Tkaczyk" /></a>
|
|
177
|
+
<a href="https://github.com/plancraft?ref=orpc" target="_blank" rel="noopener" title="plancraft"><img src="https://avatars.githubusercontent.com/u/46482287?v=4" width="32" height="32" alt="plancraft" /></a>
|
|
250
178
|
</p>
|
|
251
179
|
|
|
180
|
+
## References
|
|
181
|
+
|
|
182
|
+
oRPC is inspired by existing solutions that prioritize type safety and developer experience. Special acknowledgments to:
|
|
183
|
+
|
|
184
|
+
- [tRPC](https://trpc.io): For pioneering the concept of end-to-end type-safe RPC and influencing the development of type-safe APIs.
|
|
185
|
+
- [ts-rest](https://ts-rest.com): For its emphasis on contract-first development and OpenAPI integration, which have greatly inspired oRPC's feature set.
|
|
186
|
+
|
|
252
187
|
## License
|
|
253
188
|
|
|
254
|
-
Distributed under the MIT License. See [LICENSE](https://github.com/middleapi/orpc/blob/main/
|
|
189
|
+
Distributed under the MIT License. See [LICENSE](https://github.com/middleapi/orpc-nest/blob/main/LICENCE) for more information.
|
package/dist/index.d.mts
CHANGED
|
@@ -1,38 +1,35 @@
|
|
|
1
|
-
import { AnySchema, ContractRouter, HTTPPath, AnyContractRouter } from '@orpc/contract';
|
|
2
|
-
export { PopulateContractRouterPathsOptions, PopulatedContractRouterPaths, populateContractRouterPaths } from '@orpc/contract';
|
|
3
|
-
import { CreateProcedureClientOptions, Router, Context, BuilderConfig, Implementer } from '@orpc/server';
|
|
4
|
-
export { ImplementedProcedure, Implementer, ImplementerInternal, ImplementerInternalWithMiddlewares, ORPCError, ProcedureImplementer, RouterImplementer, RouterImplementerWithMiddlewares, onError, onFinish, onStart, onSuccess } from '@orpc/server';
|
|
5
1
|
import { DynamicModule, NestInterceptor, ExecutionContext, CallHandler } from '@nestjs/common';
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import { Interceptor, Promisable } from '@orpc/shared';
|
|
10
|
-
import { StandardResponse } from '@orpc/standard-server';
|
|
11
|
-
import { SendStandardResponseOptions } from '@orpc/standard-server-node';
|
|
2
|
+
import { RouterContract } from '@orpc/contract';
|
|
3
|
+
import { DefaultInitialContext, ContractedRouter } from '@orpc/server';
|
|
4
|
+
import { Promisable } from '@orpc/shared';
|
|
12
5
|
import { Observable } from 'rxjs';
|
|
6
|
+
import { OpenAPIHandlerCodecCoreOptions } from '@orpc/openapi/standard';
|
|
7
|
+
import { StandardHandlerOptions } from '@orpc/server/standard';
|
|
8
|
+
import { StandardLazyRequest } from '@standardserver/core';
|
|
9
|
+
import { ToEventStreamOptions } from '@standardserver/node';
|
|
10
|
+
import { HttpAdapterHost } from '@nestjs/core';
|
|
13
11
|
|
|
14
12
|
declare const ORPC_MODULE_CONFIG_SYMBOL: unique symbol;
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
}
|
|
13
|
+
type ORPCModuleConfig = OpenAPIHandlerCodecCoreOptions<DefaultInitialContext> & StandardHandlerOptions<DefaultInitialContext> & (object extends DefaultInitialContext ? {
|
|
14
|
+
context?: DefaultInitialContext;
|
|
15
|
+
} : {
|
|
16
|
+
context: DefaultInitialContext;
|
|
17
|
+
}) & {
|
|
18
|
+
/**
|
|
19
|
+
* Customize how convert next.js req and res to StandardLazyRequest,
|
|
20
|
+
* You might need define this if you not using express or fastify adapters
|
|
21
|
+
*/
|
|
22
|
+
toStandardLazyRequest?: undefined | ((req: any, res: any) => StandardLazyRequest);
|
|
23
|
+
/**
|
|
24
|
+
* Options for how to convert the Standard Response to a Nest Response (returning value), like event iterator options, etc.
|
|
25
|
+
*/
|
|
26
|
+
toNestResponse?: undefined | {
|
|
27
|
+
/**
|
|
28
|
+
* Options for the event stream, like keep-alive settings, initial comment, etc.
|
|
29
|
+
*/
|
|
30
|
+
eventStream?: undefined | ToEventStreamOptions;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
36
33
|
declare class ORPCModule {
|
|
37
34
|
static forRoot(config: ORPCModuleConfig): DynamicModule;
|
|
38
35
|
static forRootAsync(options: {
|
|
@@ -42,25 +39,15 @@ declare class ORPCModule {
|
|
|
42
39
|
}): DynamicModule;
|
|
43
40
|
}
|
|
44
41
|
|
|
45
|
-
|
|
46
|
-
* Decorator in controller handler to implement a oRPC contract.
|
|
47
|
-
*
|
|
48
|
-
* @see {@link https://orpc.dev/docs/openapi/integrations/implement-contract-in-nest#implement-your-contract NestJS Implement Contract Docs}
|
|
49
|
-
*/
|
|
50
|
-
declare function Implement<T extends ContractRouter<any>>(contract: T): <U extends Promisable<Router<T, ORPCGlobalContext>>>(target: Record<PropertyKey, any>, propertyKey: string, descriptor: TypedPropertyDescriptor<(...args: any[]) => U>) => void;
|
|
42
|
+
declare function Implement<T extends RouterContract>(contract: T): <U extends Promisable<ContractedRouter<T, DefaultInitialContext>>>(target: Record<PropertyKey, any>, propertyKey: string, descriptor: TypedPropertyDescriptor<(...args: any[]) => U>) => void;
|
|
51
43
|
declare class ImplementInterceptor implements NestInterceptor {
|
|
52
44
|
private readonly config;
|
|
53
45
|
private readonly codec;
|
|
54
|
-
|
|
46
|
+
private readonly toStandardLazyRequest;
|
|
47
|
+
private readonly httpAdapterHost;
|
|
48
|
+
constructor(config: ORPCModuleConfig | undefined, httpAdapterHost: HttpAdapterHost);
|
|
55
49
|
intercept(ctx: ExecutionContext, next: CallHandler<any>): Observable<any>;
|
|
56
50
|
}
|
|
57
51
|
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
/**
|
|
61
|
-
* Alias for `implement` from `@orpc/server` with default context set to `ORPCGlobalContext`
|
|
62
|
-
*/
|
|
63
|
-
declare function implement<T extends AnyContractRouter, TContext extends Context = ORPCGlobalContext>(contract: T, config?: BuilderConfig): Implementer<T, TContext, TContext>;
|
|
64
|
-
|
|
65
|
-
export { Implement as Impl, Implement, ImplementInterceptor, ORPCModule, ORPC_MODULE_CONFIG_SYMBOL, implement, toNestPattern };
|
|
66
|
-
export type { ORPCGlobalContext, ORPCModuleConfig };
|
|
52
|
+
export { Implement as Impl, Implement, ImplementInterceptor, ORPCModule, ORPC_MODULE_CONFIG_SYMBOL };
|
|
53
|
+
export type { ORPCModuleConfig };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,38 +1,35 @@
|
|
|
1
|
-
import { AnySchema, ContractRouter, HTTPPath, AnyContractRouter } from '@orpc/contract';
|
|
2
|
-
export { PopulateContractRouterPathsOptions, PopulatedContractRouterPaths, populateContractRouterPaths } from '@orpc/contract';
|
|
3
|
-
import { CreateProcedureClientOptions, Router, Context, BuilderConfig, Implementer } from '@orpc/server';
|
|
4
|
-
export { ImplementedProcedure, Implementer, ImplementerInternal, ImplementerInternalWithMiddlewares, ORPCError, ProcedureImplementer, RouterImplementer, RouterImplementerWithMiddlewares, onError, onFinish, onStart, onSuccess } from '@orpc/server';
|
|
5
1
|
import { DynamicModule, NestInterceptor, ExecutionContext, CallHandler } from '@nestjs/common';
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import { Interceptor, Promisable } from '@orpc/shared';
|
|
10
|
-
import { StandardResponse } from '@orpc/standard-server';
|
|
11
|
-
import { SendStandardResponseOptions } from '@orpc/standard-server-node';
|
|
2
|
+
import { RouterContract } from '@orpc/contract';
|
|
3
|
+
import { DefaultInitialContext, ContractedRouter } from '@orpc/server';
|
|
4
|
+
import { Promisable } from '@orpc/shared';
|
|
12
5
|
import { Observable } from 'rxjs';
|
|
6
|
+
import { OpenAPIHandlerCodecCoreOptions } from '@orpc/openapi/standard';
|
|
7
|
+
import { StandardHandlerOptions } from '@orpc/server/standard';
|
|
8
|
+
import { StandardLazyRequest } from '@standardserver/core';
|
|
9
|
+
import { ToEventStreamOptions } from '@standardserver/node';
|
|
10
|
+
import { HttpAdapterHost } from '@nestjs/core';
|
|
13
11
|
|
|
14
12
|
declare const ORPC_MODULE_CONFIG_SYMBOL: unique symbol;
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
}
|
|
13
|
+
type ORPCModuleConfig = OpenAPIHandlerCodecCoreOptions<DefaultInitialContext> & StandardHandlerOptions<DefaultInitialContext> & (object extends DefaultInitialContext ? {
|
|
14
|
+
context?: DefaultInitialContext;
|
|
15
|
+
} : {
|
|
16
|
+
context: DefaultInitialContext;
|
|
17
|
+
}) & {
|
|
18
|
+
/**
|
|
19
|
+
* Customize how convert next.js req and res to StandardLazyRequest,
|
|
20
|
+
* You might need define this if you not using express or fastify adapters
|
|
21
|
+
*/
|
|
22
|
+
toStandardLazyRequest?: undefined | ((req: any, res: any) => StandardLazyRequest);
|
|
23
|
+
/**
|
|
24
|
+
* Options for how to convert the Standard Response to a Nest Response (returning value), like event iterator options, etc.
|
|
25
|
+
*/
|
|
26
|
+
toNestResponse?: undefined | {
|
|
27
|
+
/**
|
|
28
|
+
* Options for the event stream, like keep-alive settings, initial comment, etc.
|
|
29
|
+
*/
|
|
30
|
+
eventStream?: undefined | ToEventStreamOptions;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
36
33
|
declare class ORPCModule {
|
|
37
34
|
static forRoot(config: ORPCModuleConfig): DynamicModule;
|
|
38
35
|
static forRootAsync(options: {
|
|
@@ -42,25 +39,15 @@ declare class ORPCModule {
|
|
|
42
39
|
}): DynamicModule;
|
|
43
40
|
}
|
|
44
41
|
|
|
45
|
-
|
|
46
|
-
* Decorator in controller handler to implement a oRPC contract.
|
|
47
|
-
*
|
|
48
|
-
* @see {@link https://orpc.dev/docs/openapi/integrations/implement-contract-in-nest#implement-your-contract NestJS Implement Contract Docs}
|
|
49
|
-
*/
|
|
50
|
-
declare function Implement<T extends ContractRouter<any>>(contract: T): <U extends Promisable<Router<T, ORPCGlobalContext>>>(target: Record<PropertyKey, any>, propertyKey: string, descriptor: TypedPropertyDescriptor<(...args: any[]) => U>) => void;
|
|
42
|
+
declare function Implement<T extends RouterContract>(contract: T): <U extends Promisable<ContractedRouter<T, DefaultInitialContext>>>(target: Record<PropertyKey, any>, propertyKey: string, descriptor: TypedPropertyDescriptor<(...args: any[]) => U>) => void;
|
|
51
43
|
declare class ImplementInterceptor implements NestInterceptor {
|
|
52
44
|
private readonly config;
|
|
53
45
|
private readonly codec;
|
|
54
|
-
|
|
46
|
+
private readonly toStandardLazyRequest;
|
|
47
|
+
private readonly httpAdapterHost;
|
|
48
|
+
constructor(config: ORPCModuleConfig | undefined, httpAdapterHost: HttpAdapterHost);
|
|
55
49
|
intercept(ctx: ExecutionContext, next: CallHandler<any>): Observable<any>;
|
|
56
50
|
}
|
|
57
51
|
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
/**
|
|
61
|
-
* Alias for `implement` from `@orpc/server` with default context set to `ORPCGlobalContext`
|
|
62
|
-
*/
|
|
63
|
-
declare function implement<T extends AnyContractRouter, TContext extends Context = ORPCGlobalContext>(contract: T, config?: BuilderConfig): Implementer<T, TContext, TContext>;
|
|
64
|
-
|
|
65
|
-
export { Implement as Impl, Implement, ImplementInterceptor, ORPCModule, ORPC_MODULE_CONFIG_SYMBOL, implement, toNestPattern };
|
|
66
|
-
export type { ORPCGlobalContext, ORPCModuleConfig };
|
|
52
|
+
export { Implement as Impl, Implement, ImplementInterceptor, ORPCModule, ORPC_MODULE_CONFIG_SYMBOL };
|
|
53
|
+
export type { ORPCModuleConfig };
|
package/dist/index.mjs
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
1
|
+
import { Readable } from 'node:stream';
|
|
2
|
+
import { Module, applyDecorators, Options, Delete, Patch, Put, Post, Get, Head, HttpCode, UseInterceptors, StreamableFile, HttpException, Injectable, Inject, Optional } from '@nestjs/common';
|
|
3
|
+
import { HttpAdapterHost } from '@nestjs/core';
|
|
4
|
+
import { ProcedureContract, getPathMeta } from '@orpc/contract';
|
|
5
|
+
import { getOpenAPIMeta, DEFAULT_OPENAPI_METHOD, getDynamicPathParams } from '@orpc/openapi';
|
|
6
|
+
import { OpenAPIHandlerCodecCore } from '@orpc/openapi/standard';
|
|
7
|
+
import { DEFAULT_SUCCESS_STATUS, getRouter, unlazy, Procedure } from '@orpc/server';
|
|
8
8
|
import { StandardHandler } from '@orpc/server/standard';
|
|
9
|
-
import { get,
|
|
10
|
-
import
|
|
11
|
-
import
|
|
12
|
-
import * as StandardServerNode from '@orpc/standard-server-node';
|
|
9
|
+
import { mergeHttpPath, get, isAsyncIteratorObject, stringifyJSON } from '@orpc/shared';
|
|
10
|
+
import { flattenStandardHeader, generateContentDisposition } from '@standardserver/core';
|
|
11
|
+
import { toStandardLazyRequest, toEventStream } from '@standardserver/node';
|
|
13
12
|
import { mergeMap } from 'rxjs';
|
|
14
13
|
|
|
15
14
|
var __getOwnPropDesc$1 = Object.getOwnPropertyDescriptor;
|
|
@@ -20,7 +19,7 @@ var __decorateClass$1 = (decorators, target, key, kind) => {
|
|
|
20
19
|
result = (decorator(result)) || result;
|
|
21
20
|
return result;
|
|
22
21
|
};
|
|
23
|
-
const ORPC_MODULE_CONFIG_SYMBOL = Symbol("
|
|
22
|
+
const ORPC_MODULE_CONFIG_SYMBOL = Symbol.for("ORPC_NEST_MODULE_CONFIG");
|
|
24
23
|
let ORPCModule = class {
|
|
25
24
|
static forRoot(config) {
|
|
26
25
|
return {
|
|
@@ -57,10 +56,6 @@ ORPCModule = __decorateClass$1([
|
|
|
57
56
|
Module({})
|
|
58
57
|
], ORPCModule);
|
|
59
58
|
|
|
60
|
-
function toNestPattern(path) {
|
|
61
|
-
return standardizeHTTPPath(path).replace(/\/\{\+([^}]+)\}/g, "/*$1").replace(/\/\{([^}]+)\}/g, "/:$1");
|
|
62
|
-
}
|
|
63
|
-
|
|
64
59
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
65
60
|
var __decorateClass = (decorators, target, key, kind) => {
|
|
66
61
|
var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc(target, key) : target;
|
|
@@ -80,20 +75,22 @@ const MethodDecoratorMap = {
|
|
|
80
75
|
OPTIONS: Options
|
|
81
76
|
};
|
|
82
77
|
function Implement(contract) {
|
|
83
|
-
if (
|
|
84
|
-
const
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
Or use "populateContractRouterPaths" from "@orpc/contract" utility to automatically fill in any missing paths.
|
|
78
|
+
if (contract instanceof ProcedureContract) {
|
|
79
|
+
const meta = getOpenAPIMeta(contract);
|
|
80
|
+
if (meta?.path === void 0) {
|
|
81
|
+
throw new TypeError(`
|
|
82
|
+
@Implement decorator requires contract to have a 'openapi.path' meta.
|
|
83
|
+
Please define one using '.meta(openapi({ path: '/example' }))'.
|
|
84
|
+
Or use "populateRouterContractOpenAPIPaths" from "@orpc/openapi" utility to automatically fill in any missing paths.
|
|
91
85
|
`);
|
|
92
86
|
}
|
|
87
|
+
const method = meta.method ?? DEFAULT_OPENAPI_METHOD;
|
|
88
|
+
const path = toNestPattern(meta.prefix ? mergeHttpPath(meta.prefix, meta.path) : meta.path);
|
|
89
|
+
const successStatus = meta.successStatus ?? DEFAULT_SUCCESS_STATUS;
|
|
93
90
|
return (target, propertyKey, descriptor) => {
|
|
94
91
|
applyDecorators(
|
|
95
|
-
MethodDecoratorMap[method](
|
|
96
|
-
HttpCode(
|
|
92
|
+
MethodDecoratorMap[method](path),
|
|
93
|
+
HttpCode(successStatus),
|
|
97
94
|
UseInterceptors(ImplementInterceptor)
|
|
98
95
|
)(target, propertyKey, descriptor);
|
|
99
96
|
};
|
|
@@ -122,67 +119,110 @@ function Implement(contract) {
|
|
|
122
119
|
let ImplementInterceptor = class {
|
|
123
120
|
config;
|
|
124
121
|
codec;
|
|
125
|
-
|
|
122
|
+
toStandardLazyRequest;
|
|
123
|
+
httpAdapterHost;
|
|
124
|
+
constructor(config, httpAdapterHost) {
|
|
126
125
|
this.config = config ?? {};
|
|
127
|
-
this.
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
126
|
+
this.httpAdapterHost = httpAdapterHost;
|
|
127
|
+
this.codec = new OpenAPIHandlerCodecCore(this.config);
|
|
128
|
+
this.toStandardLazyRequest = this.config.toStandardLazyRequest ?? ((req, res) => {
|
|
129
|
+
const standardRequest = toStandardLazyRequest(
|
|
130
|
+
"raw" in req ? req.raw : req,
|
|
131
|
+
"raw" in res ? res.raw : res
|
|
132
|
+
);
|
|
133
|
+
if (req.body !== void 0) {
|
|
134
|
+
standardRequest.resolveBody = () => Promise.resolve(req.body);
|
|
135
|
+
}
|
|
136
|
+
return standardRequest;
|
|
137
|
+
});
|
|
134
138
|
}
|
|
135
139
|
intercept(ctx, next) {
|
|
136
140
|
return next.handle().pipe(
|
|
137
141
|
mergeMap(async (impl) => {
|
|
138
142
|
const { default: procedure } = await unlazy(impl);
|
|
139
|
-
if (!
|
|
140
|
-
throw new
|
|
143
|
+
if (!(procedure instanceof Procedure)) {
|
|
144
|
+
throw new TypeError(`
|
|
141
145
|
The return value of the @Implement controller handler must be a corresponding implemented router or procedure.
|
|
142
146
|
`);
|
|
143
147
|
}
|
|
144
148
|
const req = ctx.switchToHttp().getRequest();
|
|
145
149
|
const res = ctx.switchToHttp().getResponse();
|
|
146
|
-
const
|
|
147
|
-
const
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
},
|
|
160
|
-
match: () => Promise.resolve({ path: toArray(this.config.path), procedure, params: flattenParams(req.params) })
|
|
161
|
-
}, this.codec, {
|
|
162
|
-
// Since plugins can modify options directly, so we need to clone to avoid affecting other handlers/requests
|
|
163
|
-
// TODO: improve plugins system to avoid this cloning
|
|
164
|
-
clientInterceptors: [...toArray(this.config.interceptors)],
|
|
165
|
-
plugins: [...toArray(this.config.plugins)]
|
|
166
|
-
});
|
|
150
|
+
const standardRequest = this.toStandardLazyRequest(req, res);
|
|
151
|
+
const handler = new StandardHandler({
|
|
152
|
+
resolveProcedure: () => Promise.resolve({
|
|
153
|
+
path: getPathMeta(procedure) ?? [],
|
|
154
|
+
procedure,
|
|
155
|
+
decodeInput: () => this.codec.decodeInput({
|
|
156
|
+
procedure,
|
|
157
|
+
params: toORPCOpenAPIParams(procedure, req.params)
|
|
158
|
+
}, standardRequest)
|
|
159
|
+
}),
|
|
160
|
+
encodeError: this.codec.encodeError.bind(this.codec),
|
|
161
|
+
encodeOutput: this.codec.encodeOutput.bind(this.codec)
|
|
162
|
+
}, this.config);
|
|
167
163
|
const result = await handler.handle(standardRequest, {
|
|
168
|
-
context: this.config.context
|
|
164
|
+
context: this.config.context ?? {}
|
|
169
165
|
});
|
|
170
|
-
if (result.matched) {
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
166
|
+
if (!result.matched) {
|
|
167
|
+
throw new TypeError(
|
|
168
|
+
"oRPC NestJS handler returned an unmatched result, which should never happen. Please check your plugins/interceptors or report a bug."
|
|
169
|
+
);
|
|
170
|
+
}
|
|
171
|
+
const httpAdapter = this.httpAdapterHost.httpAdapter;
|
|
172
|
+
httpAdapter.status(res, result.response.status);
|
|
173
|
+
for (const key in result.response.headers) {
|
|
174
|
+
const value = result.response.headers[key];
|
|
175
|
+
if (typeof value === "string") {
|
|
176
|
+
httpAdapter.setHeader(res, key, value);
|
|
177
|
+
} else {
|
|
178
|
+
value?.forEach((value2, index) => {
|
|
179
|
+
if (index === 0) {
|
|
180
|
+
httpAdapter.setHeader(res, key, value2);
|
|
180
181
|
} else {
|
|
181
|
-
|
|
182
|
+
httpAdapter.appendHeader(res, key, value2);
|
|
182
183
|
}
|
|
183
|
-
}
|
|
184
|
-
|
|
184
|
+
});
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
const body = result.response.body;
|
|
188
|
+
if (body instanceof ReadableStream) {
|
|
189
|
+
httpAdapter.setHeader(res, "standard-server", "octet-stream");
|
|
190
|
+
return new StreamableFile(Readable.fromWeb(body), {
|
|
191
|
+
type: flattenStandardHeader(result.response.headers["content-type"]) ?? "application/octet-stream"
|
|
192
|
+
});
|
|
193
|
+
}
|
|
194
|
+
if (isAsyncIteratorObject(body)) {
|
|
195
|
+
return new StreamableFile(toEventStream(body, this.config.toNestResponse?.eventStream), {
|
|
196
|
+
type: "text/event-stream"
|
|
197
|
+
});
|
|
185
198
|
}
|
|
199
|
+
if (body instanceof Blob) {
|
|
200
|
+
httpAdapter.setHeader(res, "standard-server", "file");
|
|
201
|
+
return new StreamableFile(Readable.fromWeb(body.stream()), {
|
|
202
|
+
type: body.type,
|
|
203
|
+
disposition: flattenStandardHeader(result.response.headers["content-disposition"]) ?? generateContentDisposition(body instanceof File ? body.name : "blob"),
|
|
204
|
+
// BunS3 can use NaN for the size
|
|
205
|
+
length: Number.isNaN(body.size) ? void 0 : body.size
|
|
206
|
+
});
|
|
207
|
+
}
|
|
208
|
+
if (body instanceof FormData) {
|
|
209
|
+
const response = new Response(body);
|
|
210
|
+
return new StreamableFile(Readable.fromWeb(response.body), {
|
|
211
|
+
type: response.headers.get("content-type")
|
|
212
|
+
});
|
|
213
|
+
}
|
|
214
|
+
if (body instanceof URLSearchParams) {
|
|
215
|
+
httpAdapter.setHeader(res, "content-type", "application/x-www-form-urlencoded");
|
|
216
|
+
return body.toString();
|
|
217
|
+
}
|
|
218
|
+
if (body === void 0) {
|
|
219
|
+
return body;
|
|
220
|
+
}
|
|
221
|
+
if (result.response.status >= 300 && typeof body === "object" && body !== null && !Array.isArray(body)) {
|
|
222
|
+
throw new HttpException(body, result.response.status);
|
|
223
|
+
}
|
|
224
|
+
httpAdapter.setHeader(res, "content-type", "application/json");
|
|
225
|
+
return typeof body === "string" || body === null ? stringifyJSON(body) : body;
|
|
186
226
|
})
|
|
187
227
|
);
|
|
188
228
|
}
|
|
@@ -190,22 +230,41 @@ let ImplementInterceptor = class {
|
|
|
190
230
|
ImplementInterceptor = __decorateClass([
|
|
191
231
|
Injectable(),
|
|
192
232
|
__decorateParam(0, Inject(ORPC_MODULE_CONFIG_SYMBOL)),
|
|
193
|
-
__decorateParam(0, Optional())
|
|
233
|
+
__decorateParam(0, Optional()),
|
|
234
|
+
__decorateParam(1, Inject(HttpAdapterHost))
|
|
194
235
|
], ImplementInterceptor);
|
|
195
|
-
function
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
}
|
|
236
|
+
function flattenParamValue(value) {
|
|
237
|
+
return Array.isArray(value) ? value.join("/") : value;
|
|
238
|
+
}
|
|
239
|
+
function toORPCOpenAPIParams(contract, params) {
|
|
240
|
+
const meta = getOpenAPIMeta(contract);
|
|
241
|
+
if (!params || meta?.path === void 0) {
|
|
242
|
+
return void 0;
|
|
203
243
|
}
|
|
204
|
-
|
|
244
|
+
const dynamicParams = getDynamicPathParams(meta.prefix ? mergeHttpPath(meta.prefix, meta.path) : meta.path);
|
|
245
|
+
if (!dynamicParams) {
|
|
246
|
+
return void 0;
|
|
247
|
+
}
|
|
248
|
+
return dynamicParams.reduce((acc, config) => {
|
|
249
|
+
const value = config.allowsSlash ? flattenParamValue(params?.["*"] ?? params?.path) : flattenParamValue(params?.[config.parameterName]);
|
|
250
|
+
if (value === void 0) {
|
|
251
|
+
return acc;
|
|
252
|
+
}
|
|
253
|
+
acc[config.parameterName] = value;
|
|
254
|
+
return acc;
|
|
255
|
+
}, {});
|
|
205
256
|
}
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
257
|
+
function toNestPattern(path) {
|
|
258
|
+
const params = getDynamicPathParams(path);
|
|
259
|
+
if (!params?.length) {
|
|
260
|
+
return path;
|
|
261
|
+
}
|
|
262
|
+
for (let i = params.length - 1; i >= 0; i--) {
|
|
263
|
+
const param = params[i];
|
|
264
|
+
const pattern = param.allowsSlash ? `*` : `:${param.parameterName}`;
|
|
265
|
+
path = path.slice(0, param.startIndex) + pattern + path.slice(param.startIndex + param.segment.length);
|
|
266
|
+
}
|
|
267
|
+
return path;
|
|
209
268
|
}
|
|
210
269
|
|
|
211
|
-
export { Implement as Impl, Implement, ImplementInterceptor, ORPCModule, ORPC_MODULE_CONFIG_SYMBOL
|
|
270
|
+
export { Implement as Impl, Implement, ImplementInterceptor, ORPCModule, ORPC_MODULE_CONFIG_SYMBOL };
|
package/package.json
CHANGED
|
@@ -1,19 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orpc/nest",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "2.0.0-beta.3",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://orpc.dev",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "git+https://github.com/middleapi/orpc.git",
|
|
9
|
+
"url": "git+https://github.com/middleapi/orpc-nest.git",
|
|
10
10
|
"directory": "packages/nest"
|
|
11
11
|
},
|
|
12
|
-
"keywords": [
|
|
13
|
-
"orpc"
|
|
14
|
-
],
|
|
15
12
|
"sideEffects": false,
|
|
16
13
|
"exports": {
|
|
14
|
+
"./package.json": "./package.json",
|
|
17
15
|
".": {
|
|
18
16
|
"types": "./dist/index.d.mts",
|
|
19
17
|
"import": "./dist/index.mjs",
|
|
@@ -24,11 +22,11 @@
|
|
|
24
22
|
"dist"
|
|
25
23
|
],
|
|
26
24
|
"peerDependencies": {
|
|
27
|
-
"@nestjs/common": ">=11.
|
|
28
|
-
"@nestjs/core": ">=11.
|
|
29
|
-
"express": ">=5.
|
|
30
|
-
"fastify": ">=5.
|
|
31
|
-
"rxjs": ">=7.
|
|
25
|
+
"@nestjs/common": ">=11.1.27",
|
|
26
|
+
"@nestjs/core": ">=11.1.27",
|
|
27
|
+
"express": ">=5.2.1",
|
|
28
|
+
"fastify": ">=5.8.5",
|
|
29
|
+
"rxjs": ">=7.8.2"
|
|
32
30
|
},
|
|
33
31
|
"peerDependenciesMeta": {
|
|
34
32
|
"express": {
|
|
@@ -39,39 +37,26 @@
|
|
|
39
37
|
}
|
|
40
38
|
},
|
|
41
39
|
"dependencies": {
|
|
42
|
-
"@orpc/client": "
|
|
43
|
-
"@orpc/
|
|
44
|
-
"@orpc/openapi
|
|
45
|
-
"@orpc/server": "
|
|
46
|
-
"@orpc/shared": "
|
|
47
|
-
"@
|
|
48
|
-
"@
|
|
49
|
-
"@orpc/standard-server-fetch": "1.14.6",
|
|
50
|
-
"@orpc/contract": "1.14.6",
|
|
51
|
-
"@orpc/standard-server-node": "1.14.6"
|
|
40
|
+
"@orpc/client": "^2.0.0-beta.3",
|
|
41
|
+
"@orpc/contract": "^2.0.0-beta.3",
|
|
42
|
+
"@orpc/openapi": "^2.0.0-beta.3",
|
|
43
|
+
"@orpc/server": "^2.0.0-beta.3",
|
|
44
|
+
"@orpc/shared": "^2.0.0-beta.3",
|
|
45
|
+
"@standardserver/core": "^0.0.25",
|
|
46
|
+
"@standardserver/node": "^0.0.25"
|
|
52
47
|
},
|
|
53
48
|
"devDependencies": {
|
|
54
49
|
"@fastify/cookie": "^11.0.2",
|
|
55
|
-
"@
|
|
56
|
-
"@
|
|
57
|
-
"@nestjs/
|
|
58
|
-
"@nestjs/core": "^11.1.16",
|
|
59
|
-
"@nestjs/platform-express": "^11.1.16",
|
|
60
|
-
"@nestjs/platform-fastify": "^11.1.16",
|
|
61
|
-
"@nestjs/testing": "^11.1.16",
|
|
62
|
-
"@ts-rest/core": "^3.52.1",
|
|
63
|
-
"@types/express": "^5.0.6",
|
|
50
|
+
"@nestjs/common": "^11.1.27",
|
|
51
|
+
"@nestjs/core": "^11.1.27",
|
|
52
|
+
"@nestjs/platform-fastify": "^11.1.27",
|
|
64
53
|
"express": "^5.2.1",
|
|
65
|
-
"fastify": "^5.8.
|
|
66
|
-
"hono": "^4.10.7",
|
|
54
|
+
"fastify": "^5.8.5",
|
|
67
55
|
"rxjs": "^7.8.2",
|
|
68
|
-
"supertest": "^7.
|
|
69
|
-
"zod": "^4.3.6"
|
|
56
|
+
"supertest": "^7.2.2"
|
|
70
57
|
},
|
|
71
58
|
"scripts": {
|
|
72
59
|
"build": "unbuild",
|
|
73
|
-
"
|
|
74
|
-
"type:check": "tsc -b",
|
|
75
|
-
"type:check:test": "tsc -p tsconfig.test.json --noEmit"
|
|
60
|
+
"type:check": "tsc -b"
|
|
76
61
|
}
|
|
77
62
|
}
|