@orpc/interop 1.14.6 → 2.0.0-beta.2
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 +70 -89
- package/dist/compression/index.mjs +65 -65
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,11 +1,4 @@
|
|
|
1
|
-
>
|
|
2
|
-
> This is an internal package. Breaking changes may be introduced without notice - use at your own risk.
|
|
3
|
-
|
|
4
|
-
<div align="center">
|
|
5
|
-
<image align="center" src="https://orpc.dev/logo.webp" width=280 alt="oRPC logo" />
|
|
6
|
-
</div>
|
|
7
|
-
|
|
8
|
-
<h1></h1>
|
|
1
|
+
<h1 align="center">oRPC - Typesafe APIs Made Simple 🪄</h1>
|
|
9
2
|
|
|
10
3
|
<div align="center">
|
|
11
4
|
<a href="https://codecov.io/gh/middleapi/orpc">
|
|
@@ -25,59 +18,46 @@
|
|
|
25
18
|
</a>
|
|
26
19
|
</div>
|
|
27
20
|
|
|
28
|
-
|
|
21
|
+
## Documentation
|
|
29
22
|
|
|
30
|
-
|
|
23
|
+
You can read the documentation [here](https://orpc.dev).
|
|
31
24
|
|
|
32
|
-
|
|
25
|
+
## Packages
|
|
33
26
|
|
|
34
|
-
|
|
27
|
+
**Core**
|
|
35
28
|
|
|
36
|
-
-
|
|
37
|
-
-
|
|
38
|
-
-
|
|
39
|
-
-
|
|
40
|
-
- **⚙️ Framework Integrations**: Seamlessly integrate with TanStack Query (React, Vue, Solid, Svelte, Angular), SWR, Pinia Colada, and more.
|
|
41
|
-
- **🚀 Server Actions**: Fully compatible with React Server Actions on Next.js, TanStack Start, and other platforms.
|
|
42
|
-
- **🔠 Standard Schema Support**: Works out of the box with Zod, Valibot, ArkType, and other schema validators.
|
|
43
|
-
- **🗃️ Native Types**: Supports native types like Date, File, Blob, BigInt, URL, and more.
|
|
44
|
-
- **⏱️ Lazy Router**: Enhance cold start times with our lazy routing feature.
|
|
45
|
-
- **📡 SSE & Streaming**: Enjoy full type-safe support for SSE and streaming.
|
|
46
|
-
- **🌍 Multi-Runtime Support**: Fast and lightweight on Cloudflare, Deno, Bun, Node.js, and beyond.
|
|
47
|
-
- **🔌 Extendability**: Easily extend functionality with plugins, middleware, and interceptors.
|
|
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.
|
|
48
33
|
|
|
49
|
-
|
|
34
|
+
**Schema validation**
|
|
50
35
|
|
|
51
|
-
|
|
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/).
|
|
52
39
|
|
|
53
|
-
|
|
40
|
+
**Framework & ecosystem integrations**
|
|
54
41
|
|
|
55
|
-
- [@orpc/
|
|
56
|
-
- [@orpc/
|
|
57
|
-
- [@orpc/
|
|
58
|
-
- [@orpc/openapi](https://www.npmjs.com/package/@orpc/openapi): Generate OpenAPI specs and handle OpenAPI requests.
|
|
59
|
-
- [@orpc/otel](https://www.npmjs.com/package/@orpc/otel): [OpenTelemetry](https://opentelemetry.io/) integration for observability.
|
|
60
|
-
- [@orpc/nest](https://www.npmjs.com/package/@orpc/nest): Deeply integrate oRPC with [NestJS](https://nestjs.com/).
|
|
61
|
-
- [@orpc/react](https://www.npmjs.com/package/@orpc/react): Utilities for integrating oRPC with React and React Server Actions.
|
|
62
|
-
- [@orpc/tanstack-query](https://www.npmjs.com/package/@orpc/tanstack-query): [TanStack Query](https://tanstack.com/query/latest) integration.
|
|
63
|
-
- [@orpc/experimental-react-swr](https://www.npmjs.com/package/@orpc/experimental-react-swr): [SWR](https://swr.vercel.app/) integration.
|
|
64
|
-
- [@orpc/vue-colada](https://www.npmjs.com/package/@orpc/vue-colada): Integration with [Pinia Colada](https://pinia-colada.esm.dev/).
|
|
65
|
-
- [@orpc/hey-api](https://www.npmjs.com/package/@orpc/hey-api): [Hey API](https://heyapi.dev/) integration.
|
|
66
|
-
- [@orpc/zod](https://www.npmjs.com/package/@orpc/zod): More schemas that [Zod](https://zod.dev/) doesn't support yet.
|
|
67
|
-
- [@orpc/valibot](https://www.npmjs.com/package/@orpc/valibot): OpenAPI spec generation from [Valibot](https://valibot.dev/).
|
|
68
|
-
- [@orpc/arktype](https://www.npmjs.com/package/@orpc/arktype): OpenAPI spec generation from [ArkType](https://arktype.io/).
|
|
42
|
+
- [@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).
|
|
43
|
+
- [@orpc/tanstack-query](https://www.npmjs.com/package/@orpc/tanstack-query): Integrate with [TanStack Query](https://tanstack.com/query/latest).
|
|
44
|
+
- [@orpc/experimental-effect](https://www.npmjs.com/package/@orpc/experimental-effect): Integrate with [Effect](https://effect.website/).
|
|
69
45
|
|
|
70
|
-
|
|
46
|
+
**Built-in features**
|
|
71
47
|
|
|
72
|
-
|
|
48
|
+
- [@orpc/publisher](https://www.npmjs.com/package/@orpc/publisher): Pub/Sub.
|
|
49
|
+
- [@orpc/ratelimit](https://www.npmjs.com/package/@orpc/ratelimit): Rate limiting.
|
|
50
|
+
- [@orpc/json-schema](https://www.npmjs.com/package/@orpc/json-schema): Smart coercion for OpenAPI requests.
|
|
73
51
|
|
|
74
|
-
**
|
|
52
|
+
**Observability**
|
|
75
53
|
|
|
76
|
-
- [
|
|
54
|
+
- [@orpc/opentelemetry](https://www.npmjs.com/package/@orpc/opentelemetry): Instrument your API with [OpenTelemetry](https://opentelemetry.io/).
|
|
55
|
+
- [@orpc/pino](https://www.npmjs.com/package/@orpc/pino): Log with [Pino](https://getpino.io/).
|
|
56
|
+
- [@orpc/evlog](https://www.npmjs.com/package/@orpc/evlog): Log with [Evlog](https://evlog.dev/).
|
|
77
57
|
|
|
78
58
|
## Sponsors
|
|
79
59
|
|
|
80
|
-
|
|
60
|
+
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! 🚀
|
|
81
61
|
|
|
82
62
|
### 🏆 Platinum Sponsor
|
|
83
63
|
|
|
@@ -95,19 +75,11 @@ If you find oRPC valuable and would like to support its development, you can do
|
|
|
95
75
|
</tr>
|
|
96
76
|
</table>
|
|
97
77
|
|
|
98
|
-
### 🥉 Bronze Sponsor
|
|
99
|
-
|
|
100
|
-
<table>
|
|
101
|
-
<tr>
|
|
102
|
-
<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>
|
|
103
|
-
</tr>
|
|
104
|
-
</table>
|
|
105
|
-
|
|
106
78
|
### Generous Sponsors
|
|
107
79
|
|
|
108
80
|
<table>
|
|
109
81
|
<tr>
|
|
110
|
-
<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="
|
|
82
|
+
<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>
|
|
111
83
|
</tr>
|
|
112
84
|
</table>
|
|
113
85
|
|
|
@@ -115,26 +87,26 @@ If you find oRPC valuable and would like to support its development, you can do
|
|
|
115
87
|
|
|
116
88
|
<table>
|
|
117
89
|
<tr>
|
|
118
|
-
<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="
|
|
119
|
-
<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="
|
|
120
|
-
<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="
|
|
121
|
-
<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="
|
|
122
|
-
<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="
|
|
123
|
-
<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="
|
|
124
|
-
<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>
|
|
90
|
+
<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>
|
|
91
|
+
<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>
|
|
92
|
+
<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>
|
|
93
|
+
<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>
|
|
94
|
+
<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>
|
|
95
|
+
<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>
|
|
125
96
|
</tr>
|
|
126
97
|
<tr>
|
|
127
|
-
<td align="center"><a href="https://github.com/
|
|
128
|
-
<td align="center"><a href="https://github.com/
|
|
129
|
-
<td align="center"><a href="https://github.com/
|
|
130
|
-
<td align="center"><a href="https://github.com/
|
|
131
|
-
<td align="center"><a href="https://github.com/
|
|
132
|
-
<td align="center"><a href="https://github.com/
|
|
133
|
-
<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>
|
|
98
|
+
<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>
|
|
99
|
+
<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>
|
|
100
|
+
<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>
|
|
101
|
+
<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>
|
|
102
|
+
<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>
|
|
103
|
+
<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>
|
|
134
104
|
</tr>
|
|
135
105
|
<tr>
|
|
136
|
-
<td align="center"><a href="https://github.com/
|
|
137
|
-
<td align="center"><a href="https://github.com/
|
|
106
|
+
<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>
|
|
107
|
+
<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>
|
|
108
|
+
<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>
|
|
109
|
+
<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>
|
|
138
110
|
</tr>
|
|
139
111
|
</table>
|
|
140
112
|
|
|
@@ -142,28 +114,27 @@ If you find oRPC valuable and would like to support its development, you can do
|
|
|
142
114
|
|
|
143
115
|
<table>
|
|
144
116
|
<tr>
|
|
145
|
-
<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="
|
|
146
|
-
<td align="center"><a href="https://github.com/
|
|
147
|
-
<td align="center"><a href="https://github.com/
|
|
148
|
-
<td align="center"><a href="https://github.com/
|
|
149
|
-
<td align="center"><a href="https://github.com/
|
|
150
|
-
<td align="center"><a href="https://github.com/
|
|
151
|
-
<td align="center"><a href="https://github.com/
|
|
152
|
-
<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>
|
|
117
|
+
<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>
|
|
118
|
+
<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>
|
|
119
|
+
<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>
|
|
120
|
+
<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>
|
|
121
|
+
<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>
|
|
122
|
+
<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>
|
|
123
|
+
<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>
|
|
153
124
|
</tr>
|
|
154
125
|
<tr>
|
|
155
|
-
<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="
|
|
156
|
-
<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="
|
|
157
|
-
<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="
|
|
158
|
-
<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="
|
|
159
|
-
<td align="center"><a href="https://github.com/
|
|
160
|
-
<td align="center"><a href="https://github.com/
|
|
161
|
-
<td align="center"><a href="https://github.com/
|
|
162
|
-
<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>
|
|
126
|
+
<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>
|
|
127
|
+
<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>
|
|
128
|
+
<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>
|
|
129
|
+
<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>
|
|
130
|
+
<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>
|
|
131
|
+
<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>
|
|
132
|
+
<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>
|
|
163
133
|
</tr>
|
|
164
134
|
<tr>
|
|
165
|
-
<td align="center"><a href="https://github.com/
|
|
166
|
-
<td align="center"><a href="https://github.com/
|
|
135
|
+
<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>
|
|
136
|
+
<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>
|
|
137
|
+
<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>
|
|
167
138
|
</tr>
|
|
168
139
|
</table>
|
|
169
140
|
|
|
@@ -199,9 +170,19 @@ If you find oRPC valuable and would like to support its development, you can do
|
|
|
199
170
|
<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>
|
|
200
171
|
<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>
|
|
201
172
|
<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>
|
|
173
|
+
<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>
|
|
202
174
|
<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>
|
|
175
|
+
<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>
|
|
176
|
+
<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>
|
|
203
177
|
</p>
|
|
204
178
|
|
|
179
|
+
## References
|
|
180
|
+
|
|
181
|
+
oRPC is inspired by existing solutions that prioritize type safety and developer experience. Special acknowledgments to:
|
|
182
|
+
|
|
183
|
+
- [tRPC](https://trpc.io): For pioneering the concept of end-to-end type-safe RPC and influencing the development of type-safe APIs.
|
|
184
|
+
- [ts-rest](https://ts-rest.com): For its emphasis on contract-first development and OpenAPI integration, which have greatly inspired oRPC's feature set.
|
|
185
|
+
|
|
205
186
|
## License
|
|
206
187
|
|
|
207
188
|
Distributed under the MIT License. See [LICENSE](https://github.com/middleapi/orpc/blob/main/LICENSE) for more information.
|
|
@@ -993,7 +993,7 @@ var hasRequiredSafeBuffer;
|
|
|
993
993
|
function requireSafeBuffer () {
|
|
994
994
|
if (hasRequiredSafeBuffer) return safeBuffer.exports;
|
|
995
995
|
hasRequiredSafeBuffer = 1;
|
|
996
|
-
(function (module, exports
|
|
996
|
+
(function (module, exports) {
|
|
997
997
|
/* eslint-disable node/no-deprecated-api */
|
|
998
998
|
var buffer = require$$0;
|
|
999
999
|
var Buffer = buffer.Buffer;
|
|
@@ -1008,8 +1008,8 @@ function requireSafeBuffer () {
|
|
|
1008
1008
|
module.exports = buffer;
|
|
1009
1009
|
} else {
|
|
1010
1010
|
// Copy properties from require('buffer')
|
|
1011
|
-
copyProps(buffer, exports
|
|
1012
|
-
exports
|
|
1011
|
+
copyProps(buffer, exports);
|
|
1012
|
+
exports.Buffer = SafeBuffer;
|
|
1013
1013
|
}
|
|
1014
1014
|
|
|
1015
1015
|
function SafeBuffer (arg, encodingOrOffset, length) {
|
|
@@ -13163,7 +13163,7 @@ var hasRequiredDebug;
|
|
|
13163
13163
|
function requireDebug () {
|
|
13164
13164
|
if (hasRequiredDebug) return debug.exports;
|
|
13165
13165
|
hasRequiredDebug = 1;
|
|
13166
|
-
(function (module, exports
|
|
13166
|
+
(function (module, exports) {
|
|
13167
13167
|
/**
|
|
13168
13168
|
* This is the common logic for both the Node.js and web browser
|
|
13169
13169
|
* implementations of `debug()`.
|
|
@@ -13171,19 +13171,19 @@ function requireDebug () {
|
|
|
13171
13171
|
* Expose `debug()` as the module.
|
|
13172
13172
|
*/
|
|
13173
13173
|
|
|
13174
|
-
exports
|
|
13175
|
-
exports
|
|
13176
|
-
exports
|
|
13177
|
-
exports
|
|
13178
|
-
exports
|
|
13179
|
-
exports
|
|
13174
|
+
exports = module.exports = createDebug.debug = createDebug['default'] = createDebug;
|
|
13175
|
+
exports.coerce = coerce;
|
|
13176
|
+
exports.disable = disable;
|
|
13177
|
+
exports.enable = enable;
|
|
13178
|
+
exports.enabled = enabled;
|
|
13179
|
+
exports.humanize = requireMs();
|
|
13180
13180
|
|
|
13181
13181
|
/**
|
|
13182
13182
|
* The currently active debug mode names, and names to skip.
|
|
13183
13183
|
*/
|
|
13184
13184
|
|
|
13185
|
-
exports
|
|
13186
|
-
exports
|
|
13185
|
+
exports.names = [];
|
|
13186
|
+
exports.skips = [];
|
|
13187
13187
|
|
|
13188
13188
|
/**
|
|
13189
13189
|
* Map of special "%n" handling functions, for the debug "format" argument.
|
|
@@ -13191,7 +13191,7 @@ function requireDebug () {
|
|
|
13191
13191
|
* Valid key names are a single, lower or upper-case letter, i.e. "n" and "N".
|
|
13192
13192
|
*/
|
|
13193
13193
|
|
|
13194
|
-
exports
|
|
13194
|
+
exports.formatters = {};
|
|
13195
13195
|
|
|
13196
13196
|
/**
|
|
13197
13197
|
* Previous log timestamp.
|
|
@@ -13214,7 +13214,7 @@ function requireDebug () {
|
|
|
13214
13214
|
hash |= 0; // Convert to 32bit integer
|
|
13215
13215
|
}
|
|
13216
13216
|
|
|
13217
|
-
return exports
|
|
13217
|
+
return exports.colors[Math.abs(hash) % exports.colors.length];
|
|
13218
13218
|
}
|
|
13219
13219
|
|
|
13220
13220
|
/**
|
|
@@ -13247,7 +13247,7 @@ function requireDebug () {
|
|
|
13247
13247
|
args[i] = arguments[i];
|
|
13248
13248
|
}
|
|
13249
13249
|
|
|
13250
|
-
args[0] = exports
|
|
13250
|
+
args[0] = exports.coerce(args[0]);
|
|
13251
13251
|
|
|
13252
13252
|
if ('string' !== typeof args[0]) {
|
|
13253
13253
|
// anything else let's inspect with %O
|
|
@@ -13260,7 +13260,7 @@ function requireDebug () {
|
|
|
13260
13260
|
// if we encounter an escaped % then don't increase the array index
|
|
13261
13261
|
if (match === '%%') return match;
|
|
13262
13262
|
index++;
|
|
13263
|
-
var formatter = exports
|
|
13263
|
+
var formatter = exports.formatters[format];
|
|
13264
13264
|
if ('function' === typeof formatter) {
|
|
13265
13265
|
var val = args[index];
|
|
13266
13266
|
match = formatter.call(self, val);
|
|
@@ -13273,20 +13273,20 @@ function requireDebug () {
|
|
|
13273
13273
|
});
|
|
13274
13274
|
|
|
13275
13275
|
// apply env-specific formatting (colors, etc.)
|
|
13276
|
-
exports
|
|
13276
|
+
exports.formatArgs.call(self, args);
|
|
13277
13277
|
|
|
13278
|
-
var logFn = debug.log || exports
|
|
13278
|
+
var logFn = debug.log || exports.log || console.log.bind(console);
|
|
13279
13279
|
logFn.apply(self, args);
|
|
13280
13280
|
}
|
|
13281
13281
|
|
|
13282
13282
|
debug.namespace = namespace;
|
|
13283
|
-
debug.enabled = exports
|
|
13284
|
-
debug.useColors = exports
|
|
13283
|
+
debug.enabled = exports.enabled(namespace);
|
|
13284
|
+
debug.useColors = exports.useColors();
|
|
13285
13285
|
debug.color = selectColor(namespace);
|
|
13286
13286
|
|
|
13287
13287
|
// env-specific initialization logic for debug instances
|
|
13288
|
-
if ('function' === typeof exports
|
|
13289
|
-
exports
|
|
13288
|
+
if ('function' === typeof exports.init) {
|
|
13289
|
+
exports.init(debug);
|
|
13290
13290
|
}
|
|
13291
13291
|
|
|
13292
13292
|
return debug;
|
|
@@ -13301,10 +13301,10 @@ function requireDebug () {
|
|
|
13301
13301
|
*/
|
|
13302
13302
|
|
|
13303
13303
|
function enable(namespaces) {
|
|
13304
|
-
exports
|
|
13304
|
+
exports.save(namespaces);
|
|
13305
13305
|
|
|
13306
|
-
exports
|
|
13307
|
-
exports
|
|
13306
|
+
exports.names = [];
|
|
13307
|
+
exports.skips = [];
|
|
13308
13308
|
|
|
13309
13309
|
var split = (typeof namespaces === 'string' ? namespaces : '').split(/[\s,]+/);
|
|
13310
13310
|
var len = split.length;
|
|
@@ -13313,9 +13313,9 @@ function requireDebug () {
|
|
|
13313
13313
|
if (!split[i]) continue; // ignore empty strings
|
|
13314
13314
|
namespaces = split[i].replace(/\*/g, '.*?');
|
|
13315
13315
|
if (namespaces[0] === '-') {
|
|
13316
|
-
exports
|
|
13316
|
+
exports.skips.push(new RegExp('^' + namespaces.substr(1) + '$'));
|
|
13317
13317
|
} else {
|
|
13318
|
-
exports
|
|
13318
|
+
exports.names.push(new RegExp('^' + namespaces + '$'));
|
|
13319
13319
|
}
|
|
13320
13320
|
}
|
|
13321
13321
|
}
|
|
@@ -13327,7 +13327,7 @@ function requireDebug () {
|
|
|
13327
13327
|
*/
|
|
13328
13328
|
|
|
13329
13329
|
function disable() {
|
|
13330
|
-
exports
|
|
13330
|
+
exports.enable('');
|
|
13331
13331
|
}
|
|
13332
13332
|
|
|
13333
13333
|
/**
|
|
@@ -13340,13 +13340,13 @@ function requireDebug () {
|
|
|
13340
13340
|
|
|
13341
13341
|
function enabled(name) {
|
|
13342
13342
|
var i, len;
|
|
13343
|
-
for (i = 0, len = exports
|
|
13344
|
-
if (exports
|
|
13343
|
+
for (i = 0, len = exports.skips.length; i < len; i++) {
|
|
13344
|
+
if (exports.skips[i].test(name)) {
|
|
13345
13345
|
return false;
|
|
13346
13346
|
}
|
|
13347
13347
|
}
|
|
13348
|
-
for (i = 0, len = exports
|
|
13349
|
-
if (exports
|
|
13348
|
+
for (i = 0, len = exports.names.length; i < len; i++) {
|
|
13349
|
+
if (exports.names[i].test(name)) {
|
|
13350
13350
|
return true;
|
|
13351
13351
|
}
|
|
13352
13352
|
}
|
|
@@ -13380,14 +13380,14 @@ var hasRequiredBrowser;
|
|
|
13380
13380
|
function requireBrowser () {
|
|
13381
13381
|
if (hasRequiredBrowser) return browser.exports;
|
|
13382
13382
|
hasRequiredBrowser = 1;
|
|
13383
|
-
(function (module, exports
|
|
13384
|
-
exports
|
|
13385
|
-
exports
|
|
13386
|
-
exports
|
|
13387
|
-
exports
|
|
13388
|
-
exports
|
|
13389
|
-
exports
|
|
13390
|
-
exports
|
|
13383
|
+
(function (module, exports) {
|
|
13384
|
+
exports = module.exports = requireDebug();
|
|
13385
|
+
exports.log = log;
|
|
13386
|
+
exports.formatArgs = formatArgs;
|
|
13387
|
+
exports.save = save;
|
|
13388
|
+
exports.load = load;
|
|
13389
|
+
exports.useColors = useColors;
|
|
13390
|
+
exports.storage = 'undefined' != typeof chrome
|
|
13391
13391
|
&& 'undefined' != typeof chrome.storage
|
|
13392
13392
|
? chrome.storage.local
|
|
13393
13393
|
: localstorage();
|
|
@@ -13396,7 +13396,7 @@ function requireBrowser () {
|
|
|
13396
13396
|
* Colors.
|
|
13397
13397
|
*/
|
|
13398
13398
|
|
|
13399
|
-
exports
|
|
13399
|
+
exports.colors = [
|
|
13400
13400
|
'lightseagreen',
|
|
13401
13401
|
'forestgreen',
|
|
13402
13402
|
'goldenrod',
|
|
@@ -13437,7 +13437,7 @@ function requireBrowser () {
|
|
|
13437
13437
|
* Map %j to `JSON.stringify()`, since no Web Inspectors do that by default.
|
|
13438
13438
|
*/
|
|
13439
13439
|
|
|
13440
|
-
exports
|
|
13440
|
+
exports.formatters.j = function(v) {
|
|
13441
13441
|
try {
|
|
13442
13442
|
return JSON.stringify(v);
|
|
13443
13443
|
} catch (err) {
|
|
@@ -13460,7 +13460,7 @@ function requireBrowser () {
|
|
|
13460
13460
|
+ (useColors ? ' %c' : ' ')
|
|
13461
13461
|
+ args[0]
|
|
13462
13462
|
+ (useColors ? '%c ' : ' ')
|
|
13463
|
-
+ '+' + exports
|
|
13463
|
+
+ '+' + exports.humanize(this.diff);
|
|
13464
13464
|
|
|
13465
13465
|
if (!useColors) return;
|
|
13466
13466
|
|
|
@@ -13510,9 +13510,9 @@ function requireBrowser () {
|
|
|
13510
13510
|
function save(namespaces) {
|
|
13511
13511
|
try {
|
|
13512
13512
|
if (null == namespaces) {
|
|
13513
|
-
exports
|
|
13513
|
+
exports.storage.removeItem('debug');
|
|
13514
13514
|
} else {
|
|
13515
|
-
exports
|
|
13515
|
+
exports.storage.debug = namespaces;
|
|
13516
13516
|
}
|
|
13517
13517
|
} catch(e) {}
|
|
13518
13518
|
}
|
|
@@ -13527,7 +13527,7 @@ function requireBrowser () {
|
|
|
13527
13527
|
function load() {
|
|
13528
13528
|
var r;
|
|
13529
13529
|
try {
|
|
13530
|
-
r = exports
|
|
13530
|
+
r = exports.storage.debug;
|
|
13531
13531
|
} catch(e) {}
|
|
13532
13532
|
|
|
13533
13533
|
// If debug isn't set in LS, and we're in Electron, try to load $DEBUG
|
|
@@ -13542,7 +13542,7 @@ function requireBrowser () {
|
|
|
13542
13542
|
* Enable namespaces listed in `localStorage.debug` initially.
|
|
13543
13543
|
*/
|
|
13544
13544
|
|
|
13545
|
-
exports
|
|
13545
|
+
exports.enable(load());
|
|
13546
13546
|
|
|
13547
13547
|
/**
|
|
13548
13548
|
* Localstorage attempts to return the localstorage.
|
|
@@ -13575,7 +13575,7 @@ var hasRequiredNode;
|
|
|
13575
13575
|
function requireNode () {
|
|
13576
13576
|
if (hasRequiredNode) return node.exports;
|
|
13577
13577
|
hasRequiredNode = 1;
|
|
13578
|
-
(function (module, exports
|
|
13578
|
+
(function (module, exports) {
|
|
13579
13579
|
var tty = require$$0$1;
|
|
13580
13580
|
var util = require$$1;
|
|
13581
13581
|
|
|
@@ -13585,19 +13585,19 @@ function requireNode () {
|
|
|
13585
13585
|
* Expose `debug()` as the module.
|
|
13586
13586
|
*/
|
|
13587
13587
|
|
|
13588
|
-
exports
|
|
13589
|
-
exports
|
|
13590
|
-
exports
|
|
13591
|
-
exports
|
|
13592
|
-
exports
|
|
13593
|
-
exports
|
|
13594
|
-
exports
|
|
13588
|
+
exports = module.exports = requireDebug();
|
|
13589
|
+
exports.init = init;
|
|
13590
|
+
exports.log = log;
|
|
13591
|
+
exports.formatArgs = formatArgs;
|
|
13592
|
+
exports.save = save;
|
|
13593
|
+
exports.load = load;
|
|
13594
|
+
exports.useColors = useColors;
|
|
13595
13595
|
|
|
13596
13596
|
/**
|
|
13597
13597
|
* Colors.
|
|
13598
13598
|
*/
|
|
13599
13599
|
|
|
13600
|
-
exports
|
|
13600
|
+
exports.colors = [6, 2, 3, 4, 5, 1];
|
|
13601
13601
|
|
|
13602
13602
|
/**
|
|
13603
13603
|
* Build up the default `inspectOpts` object from the environment variables.
|
|
@@ -13605,7 +13605,7 @@ function requireNode () {
|
|
|
13605
13605
|
* $ DEBUG_COLORS=no DEBUG_DEPTH=10 DEBUG_SHOW_HIDDEN=enabled node script.js
|
|
13606
13606
|
*/
|
|
13607
13607
|
|
|
13608
|
-
exports
|
|
13608
|
+
exports.inspectOpts = Object.keys(process.env).filter(function (key) {
|
|
13609
13609
|
return /^debug_/i.test(key);
|
|
13610
13610
|
}).reduce(function (obj, key) {
|
|
13611
13611
|
// camel-case
|
|
@@ -13647,8 +13647,8 @@ function requireNode () {
|
|
|
13647
13647
|
*/
|
|
13648
13648
|
|
|
13649
13649
|
function useColors() {
|
|
13650
|
-
return 'colors' in exports
|
|
13651
|
-
? Boolean(exports
|
|
13650
|
+
return 'colors' in exports.inspectOpts
|
|
13651
|
+
? Boolean(exports.inspectOpts.colors)
|
|
13652
13652
|
: tty.isatty(fd);
|
|
13653
13653
|
}
|
|
13654
13654
|
|
|
@@ -13656,7 +13656,7 @@ function requireNode () {
|
|
|
13656
13656
|
* Map %o to `util.inspect()`, all on a single line.
|
|
13657
13657
|
*/
|
|
13658
13658
|
|
|
13659
|
-
exports
|
|
13659
|
+
exports.formatters.o = function(v) {
|
|
13660
13660
|
this.inspectOpts.colors = this.useColors;
|
|
13661
13661
|
return util.inspect(v, this.inspectOpts)
|
|
13662
13662
|
.split('\n').map(function(str) {
|
|
@@ -13668,7 +13668,7 @@ function requireNode () {
|
|
|
13668
13668
|
* Map %o to `util.inspect()`, allowing multiple lines if needed.
|
|
13669
13669
|
*/
|
|
13670
13670
|
|
|
13671
|
-
exports
|
|
13671
|
+
exports.formatters.O = function(v) {
|
|
13672
13672
|
this.inspectOpts.colors = this.useColors;
|
|
13673
13673
|
return util.inspect(v, this.inspectOpts);
|
|
13674
13674
|
};
|
|
@@ -13688,7 +13688,7 @@ function requireNode () {
|
|
|
13688
13688
|
var prefix = ' \u001b[3' + c + ';1m' + name + ' ' + '\u001b[0m';
|
|
13689
13689
|
|
|
13690
13690
|
args[0] = prefix + args[0].split('\n').join('\n' + prefix);
|
|
13691
|
-
args.push('\u001b[3' + c + 'm+' + exports
|
|
13691
|
+
args.push('\u001b[3' + c + 'm+' + exports.humanize(this.diff) + '\u001b[0m');
|
|
13692
13692
|
} else {
|
|
13693
13693
|
args[0] = new Date().toUTCString()
|
|
13694
13694
|
+ ' ' + name + ' ' + args[0];
|
|
@@ -13809,9 +13809,9 @@ function requireNode () {
|
|
|
13809
13809
|
function init (debug) {
|
|
13810
13810
|
debug.inspectOpts = {};
|
|
13811
13811
|
|
|
13812
|
-
var keys = Object.keys(exports
|
|
13812
|
+
var keys = Object.keys(exports.inspectOpts);
|
|
13813
13813
|
for (var i = 0; i < keys.length; i++) {
|
|
13814
|
-
debug.inspectOpts[keys[i]] = exports
|
|
13814
|
+
debug.inspectOpts[keys[i]] = exports.inspectOpts[keys[i]];
|
|
13815
13815
|
}
|
|
13816
13816
|
}
|
|
13817
13817
|
|
|
@@ -13819,7 +13819,7 @@ function requireNode () {
|
|
|
13819
13819
|
* Enable namespaces listed in `process.env.DEBUG` initially.
|
|
13820
13820
|
*/
|
|
13821
13821
|
|
|
13822
|
-
exports
|
|
13822
|
+
exports.enable(load());
|
|
13823
13823
|
} (node, node.exports));
|
|
13824
13824
|
return node.exports;
|
|
13825
13825
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orpc/interop",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "2.0.0-beta.2",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://orpc.dev",
|
|
7
7
|
"repository": {
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
],
|
|
15
15
|
"sideEffects": false,
|
|
16
16
|
"exports": {
|
|
17
|
+
"./package.json": "./package.json",
|
|
17
18
|
"./compression": {
|
|
18
19
|
"types": "./dist/compression/index.d.mts",
|
|
19
20
|
"import": "./dist/compression/index.mjs",
|
|
@@ -29,7 +30,6 @@
|
|
|
29
30
|
},
|
|
30
31
|
"scripts": {
|
|
31
32
|
"build": "unbuild",
|
|
32
|
-
"build:watch": "pnpm run build --watch",
|
|
33
33
|
"type:check": "tsc -b"
|
|
34
34
|
}
|
|
35
35
|
}
|