@orpc/client 0.0.0-next.7b151dd → 0.0.0-next.7b2677a
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -1
- package/dist/adapters/fetch/index.d.mts +21 -8
- package/dist/adapters/fetch/index.d.ts +21 -8
- package/dist/adapters/fetch/index.mjs +24 -8
- package/dist/adapters/message-port/index.mjs +2 -2
- package/dist/adapters/standard/index.mjs +2 -2
- package/dist/adapters/websocket/index.mjs +2 -2
- package/dist/index.mjs +4 -4
- package/dist/plugins/index.mjs +2 -2
- package/dist/shared/{client.B7Wgunl_.mjs → client.DKmRtVO2.mjs} +4 -1
- package/dist/shared/{client.BngOL3Ai.mjs → client.txdq_i5V.mjs} +16 -9
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
- **📘 First-Class OpenAPI**: Built-in support that fully adheres to the OpenAPI standard.
|
|
32
32
|
- **📝 Contract-First Development**: Optionally define your API contract before implementation.
|
|
33
33
|
- **🔍 First-Class OpenTelemetry**: Seamlessly integrate with OpenTelemetry for observability.
|
|
34
|
-
- **⚙️ Framework Integrations**: Seamlessly integrate with TanStack Query (React, Vue, Solid, Svelte, Angular), Pinia Colada, and more.
|
|
34
|
+
- **⚙️ Framework Integrations**: Seamlessly integrate with TanStack Query (React, Vue, Solid, Svelte, Angular), SWR, Pinia Colada, and more.
|
|
35
35
|
- **🚀 Server Actions**: Fully compatible with React Server Actions on Next.js, TanStack Start, and other platforms.
|
|
36
36
|
- **🔠 Standard Schema Support**: Works out of the box with Zod, Valibot, ArkType, and other schema validators.
|
|
37
37
|
- **🗃️ Native Types**: Supports native types like Date, File, Blob, BigInt, URL, and more.
|
|
@@ -54,6 +54,7 @@ You can find the full documentation [here](https://orpc.unnoq.com).
|
|
|
54
54
|
- [@orpc/nest](https://www.npmjs.com/package/@orpc/nest): Deeply integrate oRPC with [NestJS](https://nestjs.com/).
|
|
55
55
|
- [@orpc/react](https://www.npmjs.com/package/@orpc/react): Utilities for integrating oRPC with React and React Server Actions.
|
|
56
56
|
- [@orpc/tanstack-query](https://www.npmjs.com/package/@orpc/tanstack-query): [TanStack Query](https://tanstack.com/query/latest) integration.
|
|
57
|
+
- [@orpc/experimental-react-swr](https://www.npmjs.com/package/@orpc/experimental-react-swr): [SWR](https://swr.vercel.app/) integration.
|
|
57
58
|
- [@orpc/vue-colada](https://www.npmjs.com/package/@orpc/vue-colada): Integration with [Pinia Colada](https://pinia-colada.esm.dev/).
|
|
58
59
|
- [@orpc/hey-api](https://www.npmjs.com/package/@orpc/hey-api): [Hey API](https://heyapi.dev/) integration.
|
|
59
60
|
- [@orpc/zod](https://www.npmjs.com/package/@orpc/zod): More schemas that [Zod](https://zod.dev/) doesn't support yet.
|
|
@@ -1,23 +1,36 @@
|
|
|
1
|
+
import { Interceptor } from '@orpc/shared';
|
|
1
2
|
import { StandardRequest, StandardLazyResponse } from '@orpc/standard-server';
|
|
2
3
|
import { ToFetchRequestOptions } from '@orpc/standard-server-fetch';
|
|
3
4
|
import { b as ClientContext, c as ClientOptions } from '../../shared/client.BOYsZIRq.mjs';
|
|
4
|
-
import { f as StandardLinkClient } from '../../shared/client.Bwgm6dgk.mjs';
|
|
5
|
+
import { a as StandardLinkPlugin, f as StandardLinkClient } from '../../shared/client.Bwgm6dgk.mjs';
|
|
5
6
|
import { f as StandardRPCLinkOptions, g as StandardRPCLink } from '../../shared/client.Ycwr4Tuo.mjs';
|
|
6
|
-
import '@orpc/shared';
|
|
7
7
|
|
|
8
|
-
interface
|
|
9
|
-
|
|
8
|
+
interface LinkFetchPlugin<T extends ClientContext> extends StandardLinkPlugin<T> {
|
|
9
|
+
initRuntimeAdapter?(options: LinkFetchClientOptions<T>): void;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
interface LinkFetchInterceptorOptions<T extends ClientContext> extends ClientOptions<T> {
|
|
13
|
+
request: Request;
|
|
14
|
+
init: {
|
|
10
15
|
redirect?: Request['redirect'];
|
|
11
|
-
}
|
|
16
|
+
};
|
|
17
|
+
path: readonly string[];
|
|
18
|
+
input: unknown;
|
|
19
|
+
}
|
|
20
|
+
interface LinkFetchClientOptions<T extends ClientContext> extends ToFetchRequestOptions {
|
|
21
|
+
fetch?: (request: Request, init: LinkFetchInterceptorOptions<T>['init'], options: ClientOptions<T>, path: readonly string[], input: unknown) => Promise<Response>;
|
|
22
|
+
adapterInterceptors?: Interceptor<LinkFetchInterceptorOptions<T>, Promise<Response>>[];
|
|
23
|
+
plugins?: LinkFetchPlugin<T>[];
|
|
12
24
|
}
|
|
13
25
|
declare class LinkFetchClient<T extends ClientContext> implements StandardLinkClient<T> {
|
|
14
26
|
private readonly fetch;
|
|
15
27
|
private readonly toFetchRequestOptions;
|
|
28
|
+
private readonly adapterInterceptors;
|
|
16
29
|
constructor(options: LinkFetchClientOptions<T>);
|
|
17
|
-
call(
|
|
30
|
+
call(standardRequest: StandardRequest, options: ClientOptions<T>, path: readonly string[], input: unknown): Promise<StandardLazyResponse>;
|
|
18
31
|
}
|
|
19
32
|
|
|
20
|
-
interface RPCLinkOptions<T extends ClientContext> extends
|
|
33
|
+
interface RPCLinkOptions<T extends ClientContext> extends LinkFetchClientOptions<T>, Omit<StandardRPCLinkOptions<T>, 'plugins'> {
|
|
21
34
|
}
|
|
22
35
|
/**
|
|
23
36
|
* The RPC Link communicates with the server using the RPC protocol.
|
|
@@ -30,4 +43,4 @@ declare class RPCLink<T extends ClientContext> extends StandardRPCLink<T> {
|
|
|
30
43
|
}
|
|
31
44
|
|
|
32
45
|
export { LinkFetchClient, RPCLink };
|
|
33
|
-
export type { LinkFetchClientOptions, RPCLinkOptions };
|
|
46
|
+
export type { LinkFetchClientOptions, LinkFetchInterceptorOptions, RPCLinkOptions };
|
|
@@ -1,23 +1,36 @@
|
|
|
1
|
+
import { Interceptor } from '@orpc/shared';
|
|
1
2
|
import { StandardRequest, StandardLazyResponse } from '@orpc/standard-server';
|
|
2
3
|
import { ToFetchRequestOptions } from '@orpc/standard-server-fetch';
|
|
3
4
|
import { b as ClientContext, c as ClientOptions } from '../../shared/client.BOYsZIRq.js';
|
|
4
|
-
import { f as StandardLinkClient } from '../../shared/client.BG98rYdO.js';
|
|
5
|
+
import { a as StandardLinkPlugin, f as StandardLinkClient } from '../../shared/client.BG98rYdO.js';
|
|
5
6
|
import { f as StandardRPCLinkOptions, g as StandardRPCLink } from '../../shared/client.C176log5.js';
|
|
6
|
-
import '@orpc/shared';
|
|
7
7
|
|
|
8
|
-
interface
|
|
9
|
-
|
|
8
|
+
interface LinkFetchPlugin<T extends ClientContext> extends StandardLinkPlugin<T> {
|
|
9
|
+
initRuntimeAdapter?(options: LinkFetchClientOptions<T>): void;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
interface LinkFetchInterceptorOptions<T extends ClientContext> extends ClientOptions<T> {
|
|
13
|
+
request: Request;
|
|
14
|
+
init: {
|
|
10
15
|
redirect?: Request['redirect'];
|
|
11
|
-
}
|
|
16
|
+
};
|
|
17
|
+
path: readonly string[];
|
|
18
|
+
input: unknown;
|
|
19
|
+
}
|
|
20
|
+
interface LinkFetchClientOptions<T extends ClientContext> extends ToFetchRequestOptions {
|
|
21
|
+
fetch?: (request: Request, init: LinkFetchInterceptorOptions<T>['init'], options: ClientOptions<T>, path: readonly string[], input: unknown) => Promise<Response>;
|
|
22
|
+
adapterInterceptors?: Interceptor<LinkFetchInterceptorOptions<T>, Promise<Response>>[];
|
|
23
|
+
plugins?: LinkFetchPlugin<T>[];
|
|
12
24
|
}
|
|
13
25
|
declare class LinkFetchClient<T extends ClientContext> implements StandardLinkClient<T> {
|
|
14
26
|
private readonly fetch;
|
|
15
27
|
private readonly toFetchRequestOptions;
|
|
28
|
+
private readonly adapterInterceptors;
|
|
16
29
|
constructor(options: LinkFetchClientOptions<T>);
|
|
17
|
-
call(
|
|
30
|
+
call(standardRequest: StandardRequest, options: ClientOptions<T>, path: readonly string[], input: unknown): Promise<StandardLazyResponse>;
|
|
18
31
|
}
|
|
19
32
|
|
|
20
|
-
interface RPCLinkOptions<T extends ClientContext> extends
|
|
33
|
+
interface RPCLinkOptions<T extends ClientContext> extends LinkFetchClientOptions<T>, Omit<StandardRPCLinkOptions<T>, 'plugins'> {
|
|
21
34
|
}
|
|
22
35
|
/**
|
|
23
36
|
* The RPC Link communicates with the server using the RPC protocol.
|
|
@@ -30,4 +43,4 @@ declare class RPCLink<T extends ClientContext> extends StandardRPCLink<T> {
|
|
|
30
43
|
}
|
|
31
44
|
|
|
32
45
|
export { LinkFetchClient, RPCLink };
|
|
33
|
-
export type { LinkFetchClientOptions, RPCLinkOptions };
|
|
46
|
+
export type { LinkFetchClientOptions, LinkFetchInterceptorOptions, RPCLinkOptions };
|
|
@@ -1,20 +1,36 @@
|
|
|
1
|
+
import { toArray, intercept } from '@orpc/shared';
|
|
1
2
|
import { toFetchRequest, toStandardLazyResponse } from '@orpc/standard-server-fetch';
|
|
2
|
-
import '
|
|
3
|
-
import { c as StandardRPCLink } from '../../shared/client.B7Wgunl_.mjs';
|
|
3
|
+
import { C as CompositeStandardLinkPlugin, c as StandardRPCLink } from '../../shared/client.DKmRtVO2.mjs';
|
|
4
4
|
import '@orpc/standard-server';
|
|
5
|
-
import '../../shared/client.
|
|
5
|
+
import '../../shared/client.txdq_i5V.mjs';
|
|
6
|
+
|
|
7
|
+
class CompositeLinkFetchPlugin extends CompositeStandardLinkPlugin {
|
|
8
|
+
initRuntimeAdapter(options) {
|
|
9
|
+
for (const plugin of this.plugins) {
|
|
10
|
+
plugin.initRuntimeAdapter?.(options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
}
|
|
6
14
|
|
|
7
15
|
class LinkFetchClient {
|
|
8
16
|
fetch;
|
|
9
17
|
toFetchRequestOptions;
|
|
18
|
+
adapterInterceptors;
|
|
10
19
|
constructor(options) {
|
|
11
|
-
|
|
20
|
+
const plugin = new CompositeLinkFetchPlugin(options.plugins);
|
|
21
|
+
plugin.initRuntimeAdapter(options);
|
|
22
|
+
this.fetch = options.fetch ?? globalThis.fetch.bind(globalThis);
|
|
12
23
|
this.toFetchRequestOptions = options;
|
|
24
|
+
this.adapterInterceptors = toArray(options.adapterInterceptors);
|
|
13
25
|
}
|
|
14
|
-
async call(
|
|
15
|
-
const
|
|
16
|
-
const fetchResponse = await
|
|
17
|
-
|
|
26
|
+
async call(standardRequest, options, path, input) {
|
|
27
|
+
const request = toFetchRequest(standardRequest, this.toFetchRequestOptions);
|
|
28
|
+
const fetchResponse = await intercept(
|
|
29
|
+
this.adapterInterceptors,
|
|
30
|
+
{ ...options, request, path, input, init: { redirect: "manual" } },
|
|
31
|
+
({ request: request2, path: path2, input: input2, init, ...options2 }) => this.fetch(request2, init, options2, path2, input2)
|
|
32
|
+
);
|
|
33
|
+
const lazyResponse = toStandardLazyResponse(fetchResponse, { signal: request.signal });
|
|
18
34
|
return lazyResponse;
|
|
19
35
|
}
|
|
20
36
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { ClientPeer } from '@orpc/standard-server-peer';
|
|
2
2
|
import '@orpc/shared';
|
|
3
|
-
import { c as StandardRPCLink } from '../../shared/client.
|
|
3
|
+
import { c as StandardRPCLink } from '../../shared/client.DKmRtVO2.mjs';
|
|
4
4
|
import '@orpc/standard-server';
|
|
5
|
-
import '../../shared/client.
|
|
5
|
+
import '../../shared/client.txdq_i5V.mjs';
|
|
6
6
|
|
|
7
7
|
function postMessagePortMessage(port, data) {
|
|
8
8
|
port.postMessage(data);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { C as CompositeStandardLinkPlugin, a as STANDARD_RPC_JSON_SERIALIZER_BUILT_IN_TYPES, S as StandardLink, b as StandardRPCJsonSerializer, c as StandardRPCLink, d as StandardRPCLinkCodec, e as StandardRPCSerializer, g as getMalformedResponseErrorCode, t as toHttpPath } from '../../shared/client.
|
|
1
|
+
export { C as CompositeStandardLinkPlugin, a as STANDARD_RPC_JSON_SERIALIZER_BUILT_IN_TYPES, S as StandardLink, b as StandardRPCJsonSerializer, c as StandardRPCLink, d as StandardRPCLinkCodec, e as StandardRPCSerializer, g as getMalformedResponseErrorCode, t as toHttpPath } from '../../shared/client.DKmRtVO2.mjs';
|
|
2
2
|
import '@orpc/shared';
|
|
3
3
|
import '@orpc/standard-server';
|
|
4
|
-
import '../../shared/client.
|
|
4
|
+
import '../../shared/client.txdq_i5V.mjs';
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { readAsBuffer } from '@orpc/shared';
|
|
2
2
|
import { ClientPeer } from '@orpc/standard-server-peer';
|
|
3
|
-
import { c as StandardRPCLink } from '../../shared/client.
|
|
3
|
+
import { c as StandardRPCLink } from '../../shared/client.DKmRtVO2.mjs';
|
|
4
4
|
import '@orpc/standard-server';
|
|
5
|
-
import '../../shared/client.
|
|
5
|
+
import '../../shared/client.txdq_i5V.mjs';
|
|
6
6
|
|
|
7
7
|
const WEBSOCKET_CONNECTING = 0;
|
|
8
8
|
class LinkWebsocketClient {
|
package/dist/index.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export { C as COMMON_ORPC_ERROR_DEFS, O as ORPCError, d as createORPCErrorFromJson, a as fallbackORPCErrorMessage, f as fallbackORPCErrorStatus, c as isORPCErrorJson, b as isORPCErrorStatus, m as mapEventIterator, t as toORPCError } from './shared/client.BngOL3Ai.mjs';
|
|
3
|
-
import { isTypescriptObject } from '@orpc/shared';
|
|
1
|
+
import { preventNativeAwait, isTypescriptObject } from '@orpc/shared';
|
|
4
2
|
export { AsyncIteratorClass, EventPublisher, asyncIteratorToStream as eventIteratorToStream, onError, onFinish, onStart, onSuccess, streamToAsyncIteratorClass as streamToEventIterator } from '@orpc/shared';
|
|
3
|
+
import { i as isDefinedError } from './shared/client.txdq_i5V.mjs';
|
|
4
|
+
export { C as COMMON_ORPC_ERROR_DEFS, O as ORPCError, d as createORPCErrorFromJson, a as fallbackORPCErrorMessage, f as fallbackORPCErrorStatus, c as isORPCErrorJson, b as isORPCErrorStatus, m as mapEventIterator, t as toORPCError } from './shared/client.txdq_i5V.mjs';
|
|
5
5
|
export { ErrorEvent } from '@orpc/standard-server';
|
|
6
6
|
|
|
7
7
|
async function safe(promise) {
|
|
@@ -49,7 +49,7 @@ function createORPCClient(link, options = {}) {
|
|
|
49
49
|
});
|
|
50
50
|
}
|
|
51
51
|
});
|
|
52
|
-
return recursive;
|
|
52
|
+
return preventNativeAwait(recursive);
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
function createSafeClient(client) {
|
package/dist/plugins/index.mjs
CHANGED
|
@@ -330,7 +330,7 @@ class ClientRetryPlugin {
|
|
|
330
330
|
if (!isAsyncIteratorObject(output)) {
|
|
331
331
|
return output;
|
|
332
332
|
}
|
|
333
|
-
return async function* () {
|
|
333
|
+
return (async function* () {
|
|
334
334
|
let current = output;
|
|
335
335
|
try {
|
|
336
336
|
while (true) {
|
|
@@ -359,7 +359,7 @@ class ClientRetryPlugin {
|
|
|
359
359
|
} finally {
|
|
360
360
|
await current.return?.();
|
|
361
361
|
}
|
|
362
|
-
}();
|
|
362
|
+
})();
|
|
363
363
|
});
|
|
364
364
|
}
|
|
365
365
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { toArray, runWithSpan, ORPC_NAME, isAsyncIteratorObject, asyncIteratorWithSpan, intercept, getGlobalOtelConfig, isObject, value, stringifyJSON } from '@orpc/shared';
|
|
2
2
|
import { mergeStandardHeaders, ErrorEvent } from '@orpc/standard-server';
|
|
3
|
-
import { C as COMMON_ORPC_ERROR_DEFS, b as isORPCErrorStatus, c as isORPCErrorJson, d as createORPCErrorFromJson, O as ORPCError, m as mapEventIterator, t as toORPCError } from './client.
|
|
3
|
+
import { C as COMMON_ORPC_ERROR_DEFS, b as isORPCErrorStatus, c as isORPCErrorJson, d as createORPCErrorFromJson, O as ORPCError, m as mapEventIterator, t as toORPCError } from './client.txdq_i5V.mjs';
|
|
4
4
|
|
|
5
5
|
class CompositeStandardLinkPlugin {
|
|
6
6
|
plugins;
|
|
@@ -362,6 +362,9 @@ class StandardRPCSerializer {
|
|
|
362
362
|
return this.#deserialize(data);
|
|
363
363
|
}
|
|
364
364
|
#deserialize(data) {
|
|
365
|
+
if (data === void 0) {
|
|
366
|
+
return void 0;
|
|
367
|
+
}
|
|
365
368
|
if (!(data instanceof FormData)) {
|
|
366
369
|
return this.jsonSerializer.deserialize(data.json, data.meta ?? []);
|
|
367
370
|
}
|
|
@@ -142,19 +142,22 @@ function createORPCErrorFromJson(json, options = {}) {
|
|
|
142
142
|
}
|
|
143
143
|
|
|
144
144
|
function mapEventIterator(iterator, maps) {
|
|
145
|
+
const mapError = async (error) => {
|
|
146
|
+
let mappedError = await maps.error(error);
|
|
147
|
+
if (mappedError !== error) {
|
|
148
|
+
const meta = getEventMeta(error);
|
|
149
|
+
if (meta && isTypescriptObject(mappedError)) {
|
|
150
|
+
mappedError = withEventMeta(mappedError, meta);
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
return mappedError;
|
|
154
|
+
};
|
|
145
155
|
return new AsyncIteratorClass(async () => {
|
|
146
156
|
const { done, value } = await (async () => {
|
|
147
157
|
try {
|
|
148
158
|
return await iterator.next();
|
|
149
159
|
} catch (error) {
|
|
150
|
-
|
|
151
|
-
if (mappedError !== error) {
|
|
152
|
-
const meta = getEventMeta(error);
|
|
153
|
-
if (meta && isTypescriptObject(mappedError)) {
|
|
154
|
-
mappedError = withEventMeta(mappedError, meta);
|
|
155
|
-
}
|
|
156
|
-
}
|
|
157
|
-
throw mappedError;
|
|
160
|
+
throw await mapError(error);
|
|
158
161
|
}
|
|
159
162
|
})();
|
|
160
163
|
let mappedValue = await maps.value(value, done);
|
|
@@ -166,7 +169,11 @@ function mapEventIterator(iterator, maps) {
|
|
|
166
169
|
}
|
|
167
170
|
return { done, value: mappedValue };
|
|
168
171
|
}, async () => {
|
|
169
|
-
|
|
172
|
+
try {
|
|
173
|
+
await iterator.return?.();
|
|
174
|
+
} catch (error) {
|
|
175
|
+
throw await mapError(error);
|
|
176
|
+
}
|
|
170
177
|
});
|
|
171
178
|
}
|
|
172
179
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orpc/client",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.0-next.
|
|
4
|
+
"version": "0.0.0-next.7b2677a",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://orpc.unnoq.com",
|
|
7
7
|
"repository": {
|
|
@@ -49,13 +49,13 @@
|
|
|
49
49
|
"dist"
|
|
50
50
|
],
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@orpc/
|
|
53
|
-
"@orpc/
|
|
54
|
-
"@orpc/standard-server-
|
|
55
|
-
"@orpc/standard-server": "0.0.0-next.
|
|
52
|
+
"@orpc/standard-server": "0.0.0-next.7b2677a",
|
|
53
|
+
"@orpc/shared": "0.0.0-next.7b2677a",
|
|
54
|
+
"@orpc/standard-server-fetch": "0.0.0-next.7b2677a",
|
|
55
|
+
"@orpc/standard-server-peer": "0.0.0-next.7b2677a"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"zod": "^4.
|
|
58
|
+
"zod": "^4.1.3"
|
|
59
59
|
},
|
|
60
60
|
"scripts": {
|
|
61
61
|
"build": "unbuild",
|