@orpc/client 2.0.0-beta.30 → 2.0.0-beta.32
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 +29 -28
- package/dist/plugins/index.d.mts +10 -1
- package/dist/plugins/index.d.ts +10 -1
- package/dist/plugins/index.mjs +6 -4
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<a href="https://codecov.io/gh/middleapi/orpc">
|
|
5
5
|
<img alt="codecov" src="https://codecov.io/gh/middleapi/orpc/branch/main/graph/badge.svg">
|
|
6
6
|
</a>
|
|
7
|
-
<a href="https://
|
|
7
|
+
<a href="https://www.npmjs.com/package/@orpc/client">
|
|
8
8
|
<img alt="weekly downloads" src="https://img.shields.io/npm/dw/%40orpc%2Fclient?logo=npm" />
|
|
9
9
|
</a>
|
|
10
10
|
<a href="https://app.codspeed.io/middleapi/orpc?utm_source=badge">
|
|
@@ -29,44 +29,44 @@ You can read the documentation [here](https://orpc.dev).
|
|
|
29
29
|
|
|
30
30
|
**Core**
|
|
31
31
|
|
|
32
|
-
- [@orpc/contract](https://
|
|
33
|
-
- [@orpc/server](https://
|
|
34
|
-
- [@orpc/client](https://
|
|
35
|
-
- [@orpc/openapi](https://
|
|
32
|
+
- [@orpc/contract](https://www.npmjs.com/package/@orpc/contract): Define API contract as the single source of truth.
|
|
33
|
+
- [@orpc/server](https://www.npmjs.com/package/@orpc/server): Build APIs or implement contracts.
|
|
34
|
+
- [@orpc/client](https://www.npmjs.com/package/@orpc/client): Consume APIs with end-to-end type safety.
|
|
35
|
+
- [@orpc/openapi](https://www.npmjs.com/package/@orpc/openapi): Add OpenAPI compatibility to APIs.
|
|
36
36
|
|
|
37
37
|
**Schema validation**
|
|
38
38
|
|
|
39
|
-
- [@orpc/zod](https://
|
|
40
|
-
- [@orpc/valibot](https://
|
|
41
|
-
- [@orpc/arktype](https://
|
|
39
|
+
- [@orpc/zod](https://www.npmjs.com/package/@orpc/zod): Integrate with [Zod](https://zod.dev/).
|
|
40
|
+
- [@orpc/valibot](https://www.npmjs.com/package/@orpc/valibot): Integrate with [Valibot](https://valibot.dev/).
|
|
41
|
+
- [@orpc/arktype](https://www.npmjs.com/package/@orpc/arktype): Integrate with [ArkType](https://arktype.io/).
|
|
42
42
|
|
|
43
43
|
**Built-in features**
|
|
44
44
|
|
|
45
|
-
- [@orpc/publisher](https://
|
|
46
|
-
- [@orpc/ratelimit](https://
|
|
47
|
-
- [@orpc/hibernation](https://
|
|
48
|
-
- [@orpc/json-schema](https://
|
|
45
|
+
- [@orpc/publisher](https://www.npmjs.com/package/@orpc/publisher): Pub/Sub with memory, Redis, and Upstash adapters.
|
|
46
|
+
- [@orpc/ratelimit](https://www.npmjs.com/package/@orpc/ratelimit): Rate limiting with memory, Redis, and Upstash adapters.
|
|
47
|
+
- [@orpc/hibernation](https://www.npmjs.com/package/@orpc/hibernation): Leverage Hibernation APIs like [Cloudflare's Hibernation WebSocket](https://developers.cloudflare.com/durable-objects/best-practices/websockets/#durable-objects-hibernation-websocket-api).
|
|
48
|
+
- [@orpc/json-schema](https://www.npmjs.com/package/@orpc/json-schema): Smart coercion for OpenAPI requests.
|
|
49
49
|
|
|
50
50
|
**Framework & ecosystem integrations**
|
|
51
51
|
|
|
52
|
-
- [@orpc/next](https://
|
|
53
|
-
- [@orpc/ai-sdk](https://
|
|
54
|
-
- [@orpc/tanstack-query](https://
|
|
55
|
-
- [@orpc/pinia-colada](https://
|
|
56
|
-
- [@orpc/swr](https://
|
|
57
|
-
- [@orpc/experimental-msw](https://
|
|
58
|
-
- [@orpc/experimental-effect](https://
|
|
59
|
-
- [@orpc/nest](https://
|
|
60
|
-
- [@orpc/node](https://
|
|
61
|
-
- [@orpc/bun](https://
|
|
62
|
-
- [@orpc/cloudflare](https://
|
|
63
|
-
- [@orpc/trpc](https://
|
|
52
|
+
- [@orpc/next](https://www.npmjs.com/package/@orpc/next): Integrate with [Next.js Server Functions](https://nextjs.org/docs/app/getting-started/mutating-data).
|
|
53
|
+
- [@orpc/ai-sdk](https://www.npmjs.com/package/@orpc/ai-sdk): Turn contracts and procedures into [AI SDK](https://ai-sdk.dev/) tools.
|
|
54
|
+
- [@orpc/tanstack-query](https://www.npmjs.com/package/@orpc/tanstack-query): Integrate with [TanStack Query](https://tanstack.com/query/latest).
|
|
55
|
+
- [@orpc/pinia-colada](https://www.npmjs.com/package/@orpc/pinia-colada): Integrate with [Pinia Colada](https://pinia-colada.esm.dev/).
|
|
56
|
+
- [@orpc/swr](https://www.npmjs.com/package/@orpc/swr): Integrate with [SWR](https://swr.vercel.app/).
|
|
57
|
+
- [@orpc/experimental-msw](https://www.npmjs.com/package/@orpc/experimental-msw): Mock procedures with [Mock Service Worker](https://mswjs.io/).
|
|
58
|
+
- [@orpc/experimental-effect](https://www.npmjs.com/package/@orpc/experimental-effect): Integrate with [Effect](https://effect.website/).
|
|
59
|
+
- [@orpc/nest](https://www.npmjs.com/package/@orpc/nest): Implement your contract with [NestJS](https://nestjs.com/).
|
|
60
|
+
- [@orpc/node](https://www.npmjs.com/package/@orpc/node): [Node.js](https://nodejs.org/) plugins for static file serving and large uploads.
|
|
61
|
+
- [@orpc/bun](https://www.npmjs.com/package/@orpc/bun): Adapters for [Bun's Redis](https://bun.sh/).
|
|
62
|
+
- [@orpc/cloudflare](https://www.npmjs.com/package/@orpc/cloudflare): Adapters for [Cloudflare's RateLimit and Durable Objects](https://developers.cloudflare.com/workers/).
|
|
63
|
+
- [@orpc/trpc](https://www.npmjs.com/package/@orpc/trpc): Reuse existing [tRPC](https://trpc.io/) routers within oRPC.
|
|
64
64
|
|
|
65
65
|
**Observability**
|
|
66
66
|
|
|
67
|
-
- [@orpc/opentelemetry](https://
|
|
68
|
-
- [@orpc/pino](https://
|
|
69
|
-
- [@orpc/evlog](https://
|
|
67
|
+
- [@orpc/opentelemetry](https://www.npmjs.com/package/@orpc/opentelemetry): Integrate with [OpenTelemetry](https://opentelemetry.io/) for distributed tracing.
|
|
68
|
+
- [@orpc/pino](https://www.npmjs.com/package/@orpc/pino): Integrate with [Pino](https://getpino.io/) for logging.
|
|
69
|
+
- [@orpc/evlog](https://www.npmjs.com/package/@orpc/evlog): Integrate with [Evlog](https://evlog.dev/) for logging.
|
|
70
70
|
|
|
71
71
|
## Sponsors
|
|
72
72
|
|
|
@@ -113,6 +113,7 @@ Like what we build over at [middleapi](https://github.com/middleapi)? You can he
|
|
|
113
113
|
<td align="center"><a href="https://github.com/itigoore01?ref=middleapi&utm_source=middleapi&utm_medium=sponsor" target="_blank" rel="noopener sponsored" title="shota"><img src="https://avatars.githubusercontent.com/u/11831107?u=c976a6dc7e055eb026304c46c99100ed22b0c8e0&v=4" width="139" alt="shota"/><br />shota</a></td>
|
|
114
114
|
<td align="center"><a href="https://github.com/ellis-driscoll?ref=middleapi&utm_source=middleapi&utm_medium=sponsor" target="_blank" rel="noopener sponsored" title="Ellis Driscoll"><img src="https://avatars.githubusercontent.com/u/70685966?u=c5f95bc33b5991d9744abe00052542e4a2ed3cb9&v=4" width="139" alt="Ellis Driscoll"/><br />Ellis Driscoll</a></td>
|
|
115
115
|
<td align="center"><a href="https://github.com/hoangbn?ref=middleapi&utm_source=middleapi&utm_medium=sponsor" target="_blank" rel="noopener sponsored" title="Hoang Nguyen"><img src="https://avatars.githubusercontent.com/u/38968280?u=c90084c6de65c56facabab7ba13a72a49ddbc3e4&v=4" width="139" alt="Hoang Nguyen"/><br />Hoang Nguyen</a></td>
|
|
116
|
+
<td align="center"><a href="https://opencollective.com/guest-ac41de3b?ref=middleapi&utm_source=middleapi&utm_medium=sponsor" target="_blank" rel="noopener sponsored" title="Orestis Ioannou"><img src="https://images.opencollective.com/guest-ac41de3b/avatar/460.png" width="139" alt="Orestis Ioannou"/><br />Orestis Ioannou</a></td>
|
|
116
117
|
</tr>
|
|
117
118
|
</table>
|
|
118
119
|
|
|
@@ -135,7 +136,7 @@ Like what we build over at [middleapi](https://github.com/middleapi)? You can he
|
|
|
135
136
|
<td align="center"><a href="https://rigtch.fm/?ref=middleapi&utm_source=middleapi&utm_medium=sponsor" target="_blank" rel="noopener sponsored" 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>
|
|
136
137
|
<td align="center"><a href="https://blog.cwang.io/?ref=middleapi&utm_source=middleapi&utm_medium=sponsor" target="_blank" rel="noopener sponsored" title="hanayashiki"><img src="https://avatars.githubusercontent.com/u/26056783?u=06c3b9205a16fd41a871e82da1cc2a09306d53f5&v=4" width="119" alt="hanayashiki"/><br />hanayashiki</a></td>
|
|
137
138
|
<td align="center"><a href="https://dubinets.io/?ref=middleapi&utm_source=middleapi&utm_medium=sponsor" target="_blank" rel="noopener sponsored" 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>
|
|
138
|
-
<td align="center"><a href="https://
|
|
139
|
+
<td align="center"><a href="https://kellychan.im/?ref=middleapi&utm_source=middleapi&utm_medium=sponsor" target="_blank" rel="noopener sponsored" 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>
|
|
139
140
|
</tr>
|
|
140
141
|
<tr>
|
|
141
142
|
<td align="center"><a href="https://guyariely.com/?ref=middleapi&utm_source=middleapi&utm_medium=sponsor" target="_blank" rel="noopener sponsored" title="Guy Ariely"><img src="https://avatars.githubusercontent.com/u/42813496?u=edb6b7f563bf28e160a290832e7da57c0506f8ca&v=4" width="119" alt="Guy Ariely"/><br />Guy Ariely</a></td>
|
package/dist/plugins/index.d.mts
CHANGED
|
@@ -149,7 +149,7 @@ declare class DedupeLinkPlugin<T extends ClientContext> implements StandardLinkP
|
|
|
149
149
|
private execute;
|
|
150
150
|
}
|
|
151
151
|
|
|
152
|
-
interface RequestCompressionLinkPluginOptions<
|
|
152
|
+
interface RequestCompressionLinkPluginOptions<T extends ClientContext> {
|
|
153
153
|
/**
|
|
154
154
|
* The compression scheme to use for request compression.
|
|
155
155
|
*
|
|
@@ -164,6 +164,14 @@ interface RequestCompressionLinkPluginOptions<_T extends ClientContext> {
|
|
|
164
164
|
* @default 1024 (1KB)
|
|
165
165
|
*/
|
|
166
166
|
threshold?: number;
|
|
167
|
+
/**
|
|
168
|
+
* Determines whether a request with the given Content-Type should be compressed.
|
|
169
|
+
* Only consulted for binary transfers (streams, files, and file form-data parts).
|
|
170
|
+
* Also receives the transport interceptor options for per-request decisions.
|
|
171
|
+
*
|
|
172
|
+
* @default isCompressibleContentType (covers common text-based formats)
|
|
173
|
+
*/
|
|
174
|
+
isCompressibleContentType?: (contentType: string | null | undefined, options: StandardLinkTransportInterceptorOptions<T>) => boolean;
|
|
167
175
|
}
|
|
168
176
|
/**
|
|
169
177
|
* Compresses request bodies before sending them to the server,
|
|
@@ -179,6 +187,7 @@ declare class RequestCompressionLinkPlugin<T extends ClientContext> implements S
|
|
|
179
187
|
after: string[];
|
|
180
188
|
private readonly encoding;
|
|
181
189
|
private readonly threshold;
|
|
190
|
+
private readonly isCompressibleContentType;
|
|
182
191
|
constructor(options?: RequestCompressionLinkPluginOptions<T>);
|
|
183
192
|
init(options: StandardLinkOptions<T>): StandardLinkOptions<T>;
|
|
184
193
|
}
|
package/dist/plugins/index.d.ts
CHANGED
|
@@ -149,7 +149,7 @@ declare class DedupeLinkPlugin<T extends ClientContext> implements StandardLinkP
|
|
|
149
149
|
private execute;
|
|
150
150
|
}
|
|
151
151
|
|
|
152
|
-
interface RequestCompressionLinkPluginOptions<
|
|
152
|
+
interface RequestCompressionLinkPluginOptions<T extends ClientContext> {
|
|
153
153
|
/**
|
|
154
154
|
* The compression scheme to use for request compression.
|
|
155
155
|
*
|
|
@@ -164,6 +164,14 @@ interface RequestCompressionLinkPluginOptions<_T extends ClientContext> {
|
|
|
164
164
|
* @default 1024 (1KB)
|
|
165
165
|
*/
|
|
166
166
|
threshold?: number;
|
|
167
|
+
/**
|
|
168
|
+
* Determines whether a request with the given Content-Type should be compressed.
|
|
169
|
+
* Only consulted for binary transfers (streams, files, and file form-data parts).
|
|
170
|
+
* Also receives the transport interceptor options for per-request decisions.
|
|
171
|
+
*
|
|
172
|
+
* @default isCompressibleContentType (covers common text-based formats)
|
|
173
|
+
*/
|
|
174
|
+
isCompressibleContentType?: (contentType: string | null | undefined, options: StandardLinkTransportInterceptorOptions<T>) => boolean;
|
|
167
175
|
}
|
|
168
176
|
/**
|
|
169
177
|
* Compresses request bodies before sending them to the server,
|
|
@@ -179,6 +187,7 @@ declare class RequestCompressionLinkPlugin<T extends ClientContext> implements S
|
|
|
179
187
|
after: string[];
|
|
180
188
|
private readonly encoding;
|
|
181
189
|
private readonly threshold;
|
|
190
|
+
private readonly isCompressibleContentType;
|
|
182
191
|
constructor(options?: RequestCompressionLinkPluginOptions<T>);
|
|
183
192
|
init(options: StandardLinkOptions<T>): StandardLinkOptions<T>;
|
|
184
193
|
}
|
package/dist/plugins/index.mjs
CHANGED
|
@@ -411,9 +411,11 @@ class RequestCompressionLinkPlugin {
|
|
|
411
411
|
after = ["~batch"];
|
|
412
412
|
encoding;
|
|
413
413
|
threshold;
|
|
414
|
+
isCompressibleContentType;
|
|
414
415
|
constructor(options = {}) {
|
|
415
416
|
this.encoding = options.encoding ?? "gzip";
|
|
416
417
|
this.threshold = options.threshold ?? 1024;
|
|
418
|
+
this.isCompressibleContentType = options.isCompressibleContentType ?? isCompressibleContentType;
|
|
417
419
|
}
|
|
418
420
|
init(options) {
|
|
419
421
|
const transportInterceptor = async ({ next, ...interceptorOptions }) => {
|
|
@@ -424,7 +426,7 @@ class RequestCompressionLinkPlugin {
|
|
|
424
426
|
}
|
|
425
427
|
if (request.body instanceof ReadableStream) {
|
|
426
428
|
const contentLength = Number(flattenStandardHeader(request.headers["content-length"]));
|
|
427
|
-
if ((!Number.isFinite(contentLength) || contentLength >= this.threshold) && isCompressibleContentType(flattenStandardHeader(request.headers["content-type"]))) {
|
|
429
|
+
if ((!Number.isFinite(contentLength) || contentLength >= this.threshold) && this.isCompressibleContentType(flattenStandardHeader(request.headers["content-type"]), interceptorOptions)) {
|
|
428
430
|
const compressedStream = request.body.pipeThrough(new CompressionStream(this.encoding));
|
|
429
431
|
return next({
|
|
430
432
|
...interceptorOptions,
|
|
@@ -441,7 +443,7 @@ class RequestCompressionLinkPlugin {
|
|
|
441
443
|
});
|
|
442
444
|
}
|
|
443
445
|
} else if (request.body instanceof Blob) {
|
|
444
|
-
if ((!Number.isFinite(request.body.size) || request.body.size >= this.threshold) && isCompressibleContentType(request.body.type)) {
|
|
446
|
+
if ((!Number.isFinite(request.body.size) || request.body.size >= this.threshold) && this.isCompressibleContentType(request.body.type, interceptorOptions)) {
|
|
445
447
|
const compressedStream = request.body.stream().pipeThrough(new CompressionStream(this.encoding));
|
|
446
448
|
const contentDisposition = request.headers["content-disposition"] ?? generateContentDisposition(
|
|
447
449
|
request.body instanceof File ? request.body.name : "blob"
|
|
@@ -469,13 +471,13 @@ class RequestCompressionLinkPlugin {
|
|
|
469
471
|
contentLength += PART_OVERHEAD + key.length;
|
|
470
472
|
if (value instanceof Blob) {
|
|
471
473
|
if (!Number.isFinite(value.size)) {
|
|
472
|
-
if (!isCompressibleContentType(value.type)) {
|
|
474
|
+
if (!this.isCompressibleContentType(value.type, interceptorOptions)) {
|
|
473
475
|
contentLength = -Infinity;
|
|
474
476
|
break;
|
|
475
477
|
}
|
|
476
478
|
contentLength = Infinity;
|
|
477
479
|
} else {
|
|
478
|
-
contentLength += isCompressibleContentType(value.type) ? value.size : -value.size;
|
|
480
|
+
contentLength += this.isCompressibleContentType(value.type, interceptorOptions) ? value.size : -value.size;
|
|
479
481
|
}
|
|
480
482
|
} else {
|
|
481
483
|
contentLength += value.length * AVG_BYTES_PER_CHAR;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orpc/client",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.0.0-beta.
|
|
4
|
+
"version": "2.0.0-beta.32",
|
|
5
5
|
"description": "Consume oRPC and OpenAPI APIs with end-to-end type safety over HTTP, WebSocket, or message ports",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"funding": [
|
|
@@ -63,10 +63,10 @@
|
|
|
63
63
|
"dist"
|
|
64
64
|
],
|
|
65
65
|
"dependencies": {
|
|
66
|
-
"@
|
|
67
|
-
"@standardserver/
|
|
68
|
-
"@standardserver/
|
|
69
|
-
"@
|
|
66
|
+
"@orpc/shared": "2.0.0-beta.32",
|
|
67
|
+
"@standardserver/core": "^0.8.2",
|
|
68
|
+
"@standardserver/fetch": "^0.8.2",
|
|
69
|
+
"@standardserver/peer": "^0.8.2"
|
|
70
70
|
},
|
|
71
71
|
"devDependencies": {
|
|
72
72
|
"zod": "^4.4.3"
|