@orpc/client 0.0.0-next.9e880d7 → 0.0.0-next.9f1bc8b
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 +26 -22
- package/dist/adapters/fetch/index.d.mts +16 -13
- package/dist/adapters/fetch/index.d.ts +16 -13
- package/dist/adapters/fetch/index.mjs +5 -13
- package/dist/adapters/message-port/index.d.mts +59 -0
- package/dist/adapters/message-port/index.d.ts +59 -0
- package/dist/adapters/message-port/index.mjs +71 -0
- package/dist/adapters/standard/index.d.mts +8 -103
- package/dist/adapters/standard/index.d.ts +8 -103
- package/dist/adapters/standard/index.mjs +2 -3
- package/dist/adapters/websocket/index.d.mts +29 -0
- package/dist/adapters/websocket/index.d.ts +29 -0
- package/dist/adapters/websocket/index.mjs +44 -0
- package/dist/index.d.mts +36 -23
- package/dist/index.d.ts +36 -23
- package/dist/index.mjs +35 -33
- package/dist/plugins/index.d.mts +165 -25
- package/dist/plugins/index.d.ts +165 -25
- package/dist/plugins/index.mjs +313 -51
- package/dist/shared/client.4TS_0JaO.d.mts +29 -0
- package/dist/shared/client.4TS_0JaO.d.ts +29 -0
- package/dist/shared/client.7UM0t5o-.d.ts +91 -0
- package/dist/shared/client.BMoG_EdN.d.mts +46 -0
- package/dist/shared/client.BX0_8bnM.mjs +172 -0
- package/dist/shared/client.BdD8cpjs.d.mts +91 -0
- package/dist/shared/client.C0KbSWlC.d.ts +46 -0
- package/dist/shared/{client.cZd8JfIk.mjs → client.CQCGVpTM.mjs} +56 -64
- package/package.json +16 -5
- package/dist/shared/client.45nqoGFI.d.mts +0 -42
- package/dist/shared/client.45nqoGFI.d.ts +0 -42
- package/dist/shared/client.CS0uVV6J.d.mts +0 -81
- package/dist/shared/client.CmE0kcXu.d.ts +0 -81
- package/dist/shared/client.CvnV7_uV.mjs +0 -12
- package/dist/shared/client.XAn8cDTM.mjs +0 -266
|
@@ -1,59 +1,42 @@
|
|
|
1
|
-
import { intercept,
|
|
2
|
-
import {
|
|
3
|
-
import { C as
|
|
4
|
-
import { ErrorEvent } from '@orpc/standard-server';
|
|
1
|
+
import { toArray, intercept, isObject, value, isAsyncIteratorObject, stringifyJSON } from '@orpc/shared';
|
|
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.BX0_8bnM.mjs';
|
|
5
4
|
|
|
6
|
-
class
|
|
5
|
+
class CompositeStandardLinkPlugin {
|
|
6
|
+
plugins;
|
|
7
|
+
constructor(plugins = []) {
|
|
8
|
+
this.plugins = [...plugins].sort((a, b) => (a.order ?? 0) - (b.order ?? 0));
|
|
9
|
+
}
|
|
10
|
+
init(options) {
|
|
11
|
+
for (const plugin of this.plugins) {
|
|
12
|
+
plugin.init?.(options);
|
|
13
|
+
}
|
|
14
|
+
}
|
|
7
15
|
}
|
|
16
|
+
|
|
8
17
|
class StandardLink {
|
|
9
|
-
constructor(codec, sender, options) {
|
|
18
|
+
constructor(codec, sender, options = {}) {
|
|
10
19
|
this.codec = codec;
|
|
11
20
|
this.sender = sender;
|
|
12
|
-
const plugin = new
|
|
21
|
+
const plugin = new CompositeStandardLinkPlugin(options.plugins);
|
|
13
22
|
plugin.init(options);
|
|
14
|
-
this.
|
|
15
|
-
this.
|
|
16
|
-
this.eventIteratorShouldRetry = options.eventIteratorShouldRetry ?? true;
|
|
17
|
-
this.interceptors = options.interceptors ?? [];
|
|
18
|
-
this.clientInterceptors = options.clientInterceptors ?? [];
|
|
23
|
+
this.interceptors = toArray(options.interceptors);
|
|
24
|
+
this.clientInterceptors = toArray(options.clientInterceptors);
|
|
19
25
|
}
|
|
20
|
-
eventIteratorMaxRetries;
|
|
21
|
-
eventIteratorRetryDelay;
|
|
22
|
-
eventIteratorShouldRetry;
|
|
23
26
|
interceptors;
|
|
24
27
|
clientInterceptors;
|
|
25
28
|
call(path, input, options) {
|
|
26
|
-
return intercept(this.interceptors, { path, input
|
|
29
|
+
return intercept(this.interceptors, { ...options, path, input }, async ({ path: path2, input: input2, ...options2 }) => {
|
|
27
30
|
const output = await this.#call(path2, input2, options2);
|
|
28
|
-
|
|
29
|
-
return output;
|
|
30
|
-
}
|
|
31
|
-
return createAutoRetryEventIterator(output, async (reconnectOptions) => {
|
|
32
|
-
const maxRetries = await value(this.eventIteratorMaxRetries, reconnectOptions, options2, path2, input2);
|
|
33
|
-
if (options2.signal?.aborted || reconnectOptions.retryTimes > maxRetries) {
|
|
34
|
-
return null;
|
|
35
|
-
}
|
|
36
|
-
const shouldRetry = await value(this.eventIteratorShouldRetry, reconnectOptions, options2, path2, input2);
|
|
37
|
-
if (!shouldRetry) {
|
|
38
|
-
return null;
|
|
39
|
-
}
|
|
40
|
-
const retryDelay = await value(this.eventIteratorRetryDelay, reconnectOptions, options2, path2, input2);
|
|
41
|
-
await new Promise((resolve) => setTimeout(resolve, retryDelay));
|
|
42
|
-
const updatedOptions = { ...options2, lastEventId: reconnectOptions.lastEventId };
|
|
43
|
-
const maybeIterator = await this.#call(path2, input2, updatedOptions);
|
|
44
|
-
if (!isAsyncIteratorObject(maybeIterator)) {
|
|
45
|
-
throw new InvalidEventIteratorRetryResponse("Invalid Event Iterator retry response");
|
|
46
|
-
}
|
|
47
|
-
return maybeIterator;
|
|
48
|
-
}, options2.lastEventId);
|
|
31
|
+
return output;
|
|
49
32
|
});
|
|
50
33
|
}
|
|
51
34
|
async #call(path, input, options) {
|
|
52
35
|
const request = await this.codec.encode(path, input, options);
|
|
53
36
|
const response = await intercept(
|
|
54
37
|
this.clientInterceptors,
|
|
55
|
-
{ request },
|
|
56
|
-
({ request: request2 }) => this.sender.call(request2,
|
|
38
|
+
{ ...options, input, path, request },
|
|
39
|
+
({ input: input2, path: path2, request: request2, ...options2 }) => this.sender.call(request2, options2, path2, input2)
|
|
57
40
|
);
|
|
58
41
|
const output = await this.codec.decode(response, options, path, input);
|
|
59
42
|
return output;
|
|
@@ -137,6 +120,9 @@ class StandardRPCJsonSerializer {
|
|
|
137
120
|
if (isObject(data)) {
|
|
138
121
|
const json = {};
|
|
139
122
|
for (const k in data) {
|
|
123
|
+
if (k === "toJSON" && typeof data[k] === "function") {
|
|
124
|
+
continue;
|
|
125
|
+
}
|
|
140
126
|
json[k] = this.serialize(data[k], [...segments, k], meta, maps, blobs)[0];
|
|
141
127
|
}
|
|
142
128
|
return [json, meta, maps, blobs];
|
|
@@ -203,6 +189,13 @@ class StandardRPCJsonSerializer {
|
|
|
203
189
|
}
|
|
204
190
|
}
|
|
205
191
|
|
|
192
|
+
function toHttpPath(path) {
|
|
193
|
+
return `/${path.map(encodeURIComponent).join("/")}`;
|
|
194
|
+
}
|
|
195
|
+
function getMalformedResponseErrorCode(status) {
|
|
196
|
+
return Object.entries(COMMON_ORPC_ERROR_DEFS).find(([, def]) => def.status === status)?.[0] ?? "MALFORMED_ORPC_ERROR_RESPONSE";
|
|
197
|
+
}
|
|
198
|
+
|
|
206
199
|
class StandardRPCLinkCodec {
|
|
207
200
|
constructor(serializer, options) {
|
|
208
201
|
this.serializer = serializer;
|
|
@@ -219,23 +212,18 @@ class StandardRPCLinkCodec {
|
|
|
219
212
|
headers;
|
|
220
213
|
async encode(path, input, options) {
|
|
221
214
|
const expectedMethod = await value(this.expectedMethod, options, path, input);
|
|
222
|
-
|
|
215
|
+
let headers = await value(this.headers, options, path, input);
|
|
223
216
|
const baseUrl = await value(this.baseUrl, options, path, input);
|
|
224
|
-
const url = new URL(
|
|
217
|
+
const url = new URL(baseUrl);
|
|
218
|
+
url.pathname = `${url.pathname.replace(/\/$/, "")}${toHttpPath(path)}`;
|
|
225
219
|
if (options.lastEventId !== void 0) {
|
|
226
|
-
|
|
227
|
-
headers["last-event-id"] = [...headers["last-event-id"], options.lastEventId];
|
|
228
|
-
} else if (headers["last-event-id"] !== void 0) {
|
|
229
|
-
headers["last-event-id"] = [headers["last-event-id"], options.lastEventId];
|
|
230
|
-
} else {
|
|
231
|
-
headers["last-event-id"] = options.lastEventId;
|
|
232
|
-
}
|
|
220
|
+
headers = mergeStandardHeaders(headers, { "last-event-id": options.lastEventId });
|
|
233
221
|
}
|
|
234
222
|
const serialized = this.serializer.serialize(input);
|
|
235
|
-
if (expectedMethod === "GET" && !(serialized instanceof FormData) && !
|
|
223
|
+
if (expectedMethod === "GET" && !(serialized instanceof FormData) && !isAsyncIteratorObject(serialized)) {
|
|
236
224
|
const maxUrlLength = await value(this.maxUrlLength, options, path, input);
|
|
237
225
|
const getUrl = new URL(url);
|
|
238
|
-
getUrl.searchParams.append("data", stringifyJSON(serialized)
|
|
226
|
+
getUrl.searchParams.append("data", stringifyJSON(serialized));
|
|
239
227
|
if (getUrl.toString().length <= maxUrlLength) {
|
|
240
228
|
return {
|
|
241
229
|
body: void 0,
|
|
@@ -255,7 +243,7 @@ class StandardRPCLinkCodec {
|
|
|
255
243
|
};
|
|
256
244
|
}
|
|
257
245
|
async decode(response) {
|
|
258
|
-
const isOk = response.status
|
|
246
|
+
const isOk = !isORPCErrorStatus(response.status);
|
|
259
247
|
const deserialized = await (async () => {
|
|
260
248
|
let isBodyOk = false;
|
|
261
249
|
try {
|
|
@@ -274,11 +262,12 @@ class StandardRPCLinkCodec {
|
|
|
274
262
|
}
|
|
275
263
|
})();
|
|
276
264
|
if (!isOk) {
|
|
277
|
-
if (
|
|
278
|
-
throw
|
|
265
|
+
if (isORPCErrorJson(deserialized)) {
|
|
266
|
+
throw createORPCErrorFromJson(deserialized);
|
|
279
267
|
}
|
|
280
|
-
throw new
|
|
281
|
-
|
|
268
|
+
throw new ORPCError(getMalformedResponseErrorCode(response.status), {
|
|
269
|
+
status: response.status,
|
|
270
|
+
data: { ...response, body: deserialized }
|
|
282
271
|
});
|
|
283
272
|
}
|
|
284
273
|
return deserialized;
|
|
@@ -304,9 +293,6 @@ class StandardRPCSerializer {
|
|
|
304
293
|
return this.#serialize(data, true);
|
|
305
294
|
}
|
|
306
295
|
#serialize(data, enableFormData) {
|
|
307
|
-
if (data === void 0 || data instanceof Blob) {
|
|
308
|
-
return data;
|
|
309
|
-
}
|
|
310
296
|
const [json, meta_, maps, blobs] = this.jsonSerializer.serialize(data);
|
|
311
297
|
const meta = meta_.length === 0 ? void 0 : meta_;
|
|
312
298
|
if (!enableFormData || blobs.length === 0) {
|
|
@@ -331,8 +317,8 @@ class StandardRPCSerializer {
|
|
|
331
317
|
return e;
|
|
332
318
|
}
|
|
333
319
|
const deserialized = this.#deserialize(e.data);
|
|
334
|
-
if (
|
|
335
|
-
return
|
|
320
|
+
if (isORPCErrorJson(deserialized)) {
|
|
321
|
+
return createORPCErrorFromJson(deserialized, { cause: e });
|
|
336
322
|
}
|
|
337
323
|
return new ErrorEvent({
|
|
338
324
|
data: deserialized,
|
|
@@ -344,9 +330,6 @@ class StandardRPCSerializer {
|
|
|
344
330
|
return this.#deserialize(data);
|
|
345
331
|
}
|
|
346
332
|
#deserialize(data) {
|
|
347
|
-
if (data === void 0 || data instanceof Blob) {
|
|
348
|
-
return data;
|
|
349
|
-
}
|
|
350
333
|
if (!(data instanceof FormData)) {
|
|
351
334
|
return this.jsonSerializer.deserialize(data.json, data.meta ?? []);
|
|
352
335
|
}
|
|
@@ -360,4 +343,13 @@ class StandardRPCSerializer {
|
|
|
360
343
|
}
|
|
361
344
|
}
|
|
362
345
|
|
|
363
|
-
|
|
346
|
+
class StandardRPCLink extends StandardLink {
|
|
347
|
+
constructor(linkClient, options) {
|
|
348
|
+
const jsonSerializer = new StandardRPCJsonSerializer(options);
|
|
349
|
+
const serializer = new StandardRPCSerializer(jsonSerializer);
|
|
350
|
+
const linkCodec = new StandardRPCLinkCodec(serializer, options);
|
|
351
|
+
super(linkCodec, linkClient, options);
|
|
352
|
+
}
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
export { CompositeStandardLinkPlugin as C, StandardLink as S, STANDARD_RPC_JSON_SERIALIZER_BUILT_IN_TYPES as a, StandardRPCJsonSerializer as b, StandardRPCLink as c, StandardRPCLinkCodec as d, StandardRPCSerializer as e, getMalformedResponseErrorCode as g, toHttpPath as t };
|
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.9f1bc8b",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://orpc.unnoq.com",
|
|
7
7
|
"repository": {
|
|
@@ -33,18 +33,29 @@
|
|
|
33
33
|
"types": "./dist/adapters/fetch/index.d.mts",
|
|
34
34
|
"import": "./dist/adapters/fetch/index.mjs",
|
|
35
35
|
"default": "./dist/adapters/fetch/index.mjs"
|
|
36
|
+
},
|
|
37
|
+
"./websocket": {
|
|
38
|
+
"types": "./dist/adapters/websocket/index.d.mts",
|
|
39
|
+
"import": "./dist/adapters/websocket/index.mjs",
|
|
40
|
+
"default": "./dist/adapters/websocket/index.mjs"
|
|
41
|
+
},
|
|
42
|
+
"./message-port": {
|
|
43
|
+
"types": "./dist/adapters/message-port/index.d.mts",
|
|
44
|
+
"import": "./dist/adapters/message-port/index.mjs",
|
|
45
|
+
"default": "./dist/adapters/message-port/index.mjs"
|
|
36
46
|
}
|
|
37
47
|
},
|
|
38
48
|
"files": [
|
|
39
49
|
"dist"
|
|
40
50
|
],
|
|
41
51
|
"dependencies": {
|
|
42
|
-
"@orpc/shared": "0.0.0-next.
|
|
43
|
-
"@orpc/standard-server": "0.0.0-next.
|
|
44
|
-
"@orpc/standard-server-fetch": "0.0.0-next.
|
|
52
|
+
"@orpc/shared": "0.0.0-next.9f1bc8b",
|
|
53
|
+
"@orpc/standard-server": "0.0.0-next.9f1bc8b",
|
|
54
|
+
"@orpc/standard-server-fetch": "0.0.0-next.9f1bc8b",
|
|
55
|
+
"@orpc/standard-server-peer": "0.0.0-next.9f1bc8b"
|
|
45
56
|
},
|
|
46
57
|
"devDependencies": {
|
|
47
|
-
"zod": "^3.
|
|
58
|
+
"zod": "^3.25.49"
|
|
48
59
|
},
|
|
49
60
|
"scripts": {
|
|
50
61
|
"build": "unbuild",
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
type ClientContext = Record<string, any>;
|
|
2
|
-
type ClientOptions<TClientContext extends ClientContext> = {
|
|
3
|
-
signal?: AbortSignal;
|
|
4
|
-
lastEventId?: string | undefined;
|
|
5
|
-
} & (Record<never, never> extends TClientContext ? {
|
|
6
|
-
context?: TClientContext;
|
|
7
|
-
} : {
|
|
8
|
-
context: TClientContext;
|
|
9
|
-
});
|
|
10
|
-
type ClientRest<TClientContext extends ClientContext, TInput> = Record<never, never> extends TClientContext ? undefined extends TInput ? [input?: TInput, options?: ClientOptions<TClientContext>] : [input: TInput, options?: ClientOptions<TClientContext>] : [input: TInput, options: ClientOptions<TClientContext>];
|
|
11
|
-
type ClientPromiseResult<TOutput, TError extends Error> = Promise<TOutput> & {
|
|
12
|
-
__error?: {
|
|
13
|
-
type: TError;
|
|
14
|
-
};
|
|
15
|
-
};
|
|
16
|
-
interface Client<TClientContext extends ClientContext, TInput, TOutput, TError extends Error> {
|
|
17
|
-
(...rest: ClientRest<TClientContext, TInput>): ClientPromiseResult<TOutput, TError>;
|
|
18
|
-
}
|
|
19
|
-
type NestedClient<TClientContext extends ClientContext> = Client<TClientContext, any, any, any> | {
|
|
20
|
-
[k: string]: NestedClient<TClientContext>;
|
|
21
|
-
};
|
|
22
|
-
type InferClientContext<T extends NestedClient<any>> = T extends NestedClient<infer U> ? U : never;
|
|
23
|
-
type ClientOptionsOut<TClientContext extends ClientContext> = ClientOptions<TClientContext> & {
|
|
24
|
-
context: TClientContext;
|
|
25
|
-
};
|
|
26
|
-
interface ClientLink<TClientContext extends ClientContext> {
|
|
27
|
-
call: (path: readonly string[], input: unknown, options: ClientOptionsOut<TClientContext>) => Promise<unknown>;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
declare function mapEventIterator<TYield, TReturn, TNext, TMap = TYield | TReturn>(iterator: AsyncIterator<TYield, TReturn, TNext>, maps: {
|
|
31
|
-
value: (value: NoInfer<TYield | TReturn>, done: boolean | undefined) => Promise<TMap>;
|
|
32
|
-
error: (error: unknown) => Promise<unknown>;
|
|
33
|
-
}): AsyncGenerator<TMap, TMap, TNext>;
|
|
34
|
-
interface EventIteratorReconnectOptions {
|
|
35
|
-
lastRetry: number | undefined;
|
|
36
|
-
lastEventId: string | undefined;
|
|
37
|
-
retryTimes: number;
|
|
38
|
-
error: unknown;
|
|
39
|
-
}
|
|
40
|
-
declare function createAutoRetryEventIterator<TYield, TReturn>(initial: AsyncIterator<TYield, TReturn, void>, reconnect: (options: EventIteratorReconnectOptions) => Promise<AsyncIterator<TYield, TReturn, void> | null>, initialLastEventId: string | undefined): AsyncGenerator<TYield, TReturn, void>;
|
|
41
|
-
|
|
42
|
-
export { type ClientOptionsOut as C, type EventIteratorReconnectOptions as E, type InferClientContext as I, type NestedClient as N, type ClientContext as a, type ClientLink as b, type ClientPromiseResult as c, createAutoRetryEventIterator as d, type ClientOptions as e, type ClientRest as f, type Client as g, mapEventIterator as m };
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
type ClientContext = Record<string, any>;
|
|
2
|
-
type ClientOptions<TClientContext extends ClientContext> = {
|
|
3
|
-
signal?: AbortSignal;
|
|
4
|
-
lastEventId?: string | undefined;
|
|
5
|
-
} & (Record<never, never> extends TClientContext ? {
|
|
6
|
-
context?: TClientContext;
|
|
7
|
-
} : {
|
|
8
|
-
context: TClientContext;
|
|
9
|
-
});
|
|
10
|
-
type ClientRest<TClientContext extends ClientContext, TInput> = Record<never, never> extends TClientContext ? undefined extends TInput ? [input?: TInput, options?: ClientOptions<TClientContext>] : [input: TInput, options?: ClientOptions<TClientContext>] : [input: TInput, options: ClientOptions<TClientContext>];
|
|
11
|
-
type ClientPromiseResult<TOutput, TError extends Error> = Promise<TOutput> & {
|
|
12
|
-
__error?: {
|
|
13
|
-
type: TError;
|
|
14
|
-
};
|
|
15
|
-
};
|
|
16
|
-
interface Client<TClientContext extends ClientContext, TInput, TOutput, TError extends Error> {
|
|
17
|
-
(...rest: ClientRest<TClientContext, TInput>): ClientPromiseResult<TOutput, TError>;
|
|
18
|
-
}
|
|
19
|
-
type NestedClient<TClientContext extends ClientContext> = Client<TClientContext, any, any, any> | {
|
|
20
|
-
[k: string]: NestedClient<TClientContext>;
|
|
21
|
-
};
|
|
22
|
-
type InferClientContext<T extends NestedClient<any>> = T extends NestedClient<infer U> ? U : never;
|
|
23
|
-
type ClientOptionsOut<TClientContext extends ClientContext> = ClientOptions<TClientContext> & {
|
|
24
|
-
context: TClientContext;
|
|
25
|
-
};
|
|
26
|
-
interface ClientLink<TClientContext extends ClientContext> {
|
|
27
|
-
call: (path: readonly string[], input: unknown, options: ClientOptionsOut<TClientContext>) => Promise<unknown>;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
declare function mapEventIterator<TYield, TReturn, TNext, TMap = TYield | TReturn>(iterator: AsyncIterator<TYield, TReturn, TNext>, maps: {
|
|
31
|
-
value: (value: NoInfer<TYield | TReturn>, done: boolean | undefined) => Promise<TMap>;
|
|
32
|
-
error: (error: unknown) => Promise<unknown>;
|
|
33
|
-
}): AsyncGenerator<TMap, TMap, TNext>;
|
|
34
|
-
interface EventIteratorReconnectOptions {
|
|
35
|
-
lastRetry: number | undefined;
|
|
36
|
-
lastEventId: string | undefined;
|
|
37
|
-
retryTimes: number;
|
|
38
|
-
error: unknown;
|
|
39
|
-
}
|
|
40
|
-
declare function createAutoRetryEventIterator<TYield, TReturn>(initial: AsyncIterator<TYield, TReturn, void>, reconnect: (options: EventIteratorReconnectOptions) => Promise<AsyncIterator<TYield, TReturn, void> | null>, initialLastEventId: string | undefined): AsyncGenerator<TYield, TReturn, void>;
|
|
41
|
-
|
|
42
|
-
export { type ClientOptionsOut as C, type EventIteratorReconnectOptions as E, type InferClientContext as I, type NestedClient as N, type ClientContext as a, type ClientLink as b, type ClientPromiseResult as c, createAutoRetryEventIterator as d, type ClientOptions as e, type ClientRest as f, type Client as g, mapEventIterator as m };
|
|
@@ -1,81 +0,0 @@
|
|
|
1
|
-
import { Value, Interceptor } from '@orpc/shared';
|
|
2
|
-
import { StandardRequest, StandardLazyResponse } from '@orpc/standard-server';
|
|
3
|
-
import { a as ClientContext, C as ClientOptionsOut, E as EventIteratorReconnectOptions, b as ClientLink } from './client.45nqoGFI.mjs';
|
|
4
|
-
|
|
5
|
-
interface StandardLinkCodec<T extends ClientContext> {
|
|
6
|
-
encode(path: readonly string[], input: unknown, options: ClientOptionsOut<any>): Promise<StandardRequest>;
|
|
7
|
-
decode(response: StandardLazyResponse, options: ClientOptionsOut<T>, path: readonly string[], input: unknown): Promise<unknown>;
|
|
8
|
-
}
|
|
9
|
-
interface StandardLinkClient<T extends ClientContext> {
|
|
10
|
-
call(request: StandardRequest, options: ClientOptionsOut<T>, path: readonly string[], input: unknown): Promise<StandardLazyResponse>;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
declare class InvalidEventIteratorRetryResponse extends Error {
|
|
14
|
-
}
|
|
15
|
-
interface StandardLinkOptions<T extends ClientContext> {
|
|
16
|
-
/**
|
|
17
|
-
* Maximum retry attempts for **consecutive failures** before throwing
|
|
18
|
-
*
|
|
19
|
-
* @default 5
|
|
20
|
-
*/
|
|
21
|
-
eventIteratorMaxRetries?: Value<number, [
|
|
22
|
-
reconnectOptions: EventIteratorReconnectOptions,
|
|
23
|
-
options: ClientOptionsOut<T>,
|
|
24
|
-
path: readonly string[],
|
|
25
|
-
input: unknown
|
|
26
|
-
]>;
|
|
27
|
-
/**
|
|
28
|
-
* Delay (in ms) before retrying an event iterator call.
|
|
29
|
-
*
|
|
30
|
-
* @default (o) => o.lastRetry ?? (1000 * 2 ** o.retryTimes)
|
|
31
|
-
*/
|
|
32
|
-
eventIteratorRetryDelay?: Value<number, [
|
|
33
|
-
reconnectOptions: EventIteratorReconnectOptions,
|
|
34
|
-
options: ClientOptionsOut<T>,
|
|
35
|
-
path: readonly string[],
|
|
36
|
-
input: unknown
|
|
37
|
-
]>;
|
|
38
|
-
/**
|
|
39
|
-
* Function to determine if an error is retryable.
|
|
40
|
-
*
|
|
41
|
-
* @default true
|
|
42
|
-
*/
|
|
43
|
-
eventIteratorShouldRetry?: Value<boolean, [
|
|
44
|
-
reconnectOptions: EventIteratorReconnectOptions,
|
|
45
|
-
options: ClientOptionsOut<T>,
|
|
46
|
-
path: readonly string[],
|
|
47
|
-
input: unknown
|
|
48
|
-
]>;
|
|
49
|
-
interceptors?: Interceptor<{
|
|
50
|
-
path: readonly string[];
|
|
51
|
-
input: unknown;
|
|
52
|
-
options: ClientOptionsOut<T>;
|
|
53
|
-
}, unknown, unknown>[];
|
|
54
|
-
clientInterceptors?: Interceptor<{
|
|
55
|
-
request: StandardRequest;
|
|
56
|
-
}, StandardLazyResponse, unknown>[];
|
|
57
|
-
plugins?: ClientPlugin<T>[];
|
|
58
|
-
}
|
|
59
|
-
declare class StandardLink<T extends ClientContext> implements ClientLink<T> {
|
|
60
|
-
#private;
|
|
61
|
-
readonly codec: StandardLinkCodec<T>;
|
|
62
|
-
readonly sender: StandardLinkClient<T>;
|
|
63
|
-
private readonly eventIteratorMaxRetries;
|
|
64
|
-
private readonly eventIteratorRetryDelay;
|
|
65
|
-
private readonly eventIteratorShouldRetry;
|
|
66
|
-
private readonly interceptors;
|
|
67
|
-
private readonly clientInterceptors;
|
|
68
|
-
constructor(codec: StandardLinkCodec<T>, sender: StandardLinkClient<T>, options: StandardLinkOptions<T>);
|
|
69
|
-
call(path: readonly string[], input: unknown, options: ClientOptionsOut<T>): Promise<unknown>;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
interface ClientPlugin<T extends ClientContext> {
|
|
73
|
-
init?(options: StandardLinkOptions<T>): void;
|
|
74
|
-
}
|
|
75
|
-
declare class CompositeClientPlugin<T extends ClientContext> implements ClientPlugin<T> {
|
|
76
|
-
private readonly plugins;
|
|
77
|
-
constructor(plugins?: ClientPlugin<T>[]);
|
|
78
|
-
init(options: StandardLinkOptions<T>): void;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
export { type ClientPlugin as C, InvalidEventIteratorRetryResponse as I, type StandardLinkOptions as S, CompositeClientPlugin as a, type StandardLinkClient as b, type StandardLinkCodec as c, StandardLink as d };
|
|
@@ -1,81 +0,0 @@
|
|
|
1
|
-
import { Value, Interceptor } from '@orpc/shared';
|
|
2
|
-
import { StandardRequest, StandardLazyResponse } from '@orpc/standard-server';
|
|
3
|
-
import { a as ClientContext, C as ClientOptionsOut, E as EventIteratorReconnectOptions, b as ClientLink } from './client.45nqoGFI.js';
|
|
4
|
-
|
|
5
|
-
interface StandardLinkCodec<T extends ClientContext> {
|
|
6
|
-
encode(path: readonly string[], input: unknown, options: ClientOptionsOut<any>): Promise<StandardRequest>;
|
|
7
|
-
decode(response: StandardLazyResponse, options: ClientOptionsOut<T>, path: readonly string[], input: unknown): Promise<unknown>;
|
|
8
|
-
}
|
|
9
|
-
interface StandardLinkClient<T extends ClientContext> {
|
|
10
|
-
call(request: StandardRequest, options: ClientOptionsOut<T>, path: readonly string[], input: unknown): Promise<StandardLazyResponse>;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
declare class InvalidEventIteratorRetryResponse extends Error {
|
|
14
|
-
}
|
|
15
|
-
interface StandardLinkOptions<T extends ClientContext> {
|
|
16
|
-
/**
|
|
17
|
-
* Maximum retry attempts for **consecutive failures** before throwing
|
|
18
|
-
*
|
|
19
|
-
* @default 5
|
|
20
|
-
*/
|
|
21
|
-
eventIteratorMaxRetries?: Value<number, [
|
|
22
|
-
reconnectOptions: EventIteratorReconnectOptions,
|
|
23
|
-
options: ClientOptionsOut<T>,
|
|
24
|
-
path: readonly string[],
|
|
25
|
-
input: unknown
|
|
26
|
-
]>;
|
|
27
|
-
/**
|
|
28
|
-
* Delay (in ms) before retrying an event iterator call.
|
|
29
|
-
*
|
|
30
|
-
* @default (o) => o.lastRetry ?? (1000 * 2 ** o.retryTimes)
|
|
31
|
-
*/
|
|
32
|
-
eventIteratorRetryDelay?: Value<number, [
|
|
33
|
-
reconnectOptions: EventIteratorReconnectOptions,
|
|
34
|
-
options: ClientOptionsOut<T>,
|
|
35
|
-
path: readonly string[],
|
|
36
|
-
input: unknown
|
|
37
|
-
]>;
|
|
38
|
-
/**
|
|
39
|
-
* Function to determine if an error is retryable.
|
|
40
|
-
*
|
|
41
|
-
* @default true
|
|
42
|
-
*/
|
|
43
|
-
eventIteratorShouldRetry?: Value<boolean, [
|
|
44
|
-
reconnectOptions: EventIteratorReconnectOptions,
|
|
45
|
-
options: ClientOptionsOut<T>,
|
|
46
|
-
path: readonly string[],
|
|
47
|
-
input: unknown
|
|
48
|
-
]>;
|
|
49
|
-
interceptors?: Interceptor<{
|
|
50
|
-
path: readonly string[];
|
|
51
|
-
input: unknown;
|
|
52
|
-
options: ClientOptionsOut<T>;
|
|
53
|
-
}, unknown, unknown>[];
|
|
54
|
-
clientInterceptors?: Interceptor<{
|
|
55
|
-
request: StandardRequest;
|
|
56
|
-
}, StandardLazyResponse, unknown>[];
|
|
57
|
-
plugins?: ClientPlugin<T>[];
|
|
58
|
-
}
|
|
59
|
-
declare class StandardLink<T extends ClientContext> implements ClientLink<T> {
|
|
60
|
-
#private;
|
|
61
|
-
readonly codec: StandardLinkCodec<T>;
|
|
62
|
-
readonly sender: StandardLinkClient<T>;
|
|
63
|
-
private readonly eventIteratorMaxRetries;
|
|
64
|
-
private readonly eventIteratorRetryDelay;
|
|
65
|
-
private readonly eventIteratorShouldRetry;
|
|
66
|
-
private readonly interceptors;
|
|
67
|
-
private readonly clientInterceptors;
|
|
68
|
-
constructor(codec: StandardLinkCodec<T>, sender: StandardLinkClient<T>, options: StandardLinkOptions<T>);
|
|
69
|
-
call(path: readonly string[], input: unknown, options: ClientOptionsOut<T>): Promise<unknown>;
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
interface ClientPlugin<T extends ClientContext> {
|
|
73
|
-
init?(options: StandardLinkOptions<T>): void;
|
|
74
|
-
}
|
|
75
|
-
declare class CompositeClientPlugin<T extends ClientContext> implements ClientPlugin<T> {
|
|
76
|
-
private readonly plugins;
|
|
77
|
-
constructor(plugins?: ClientPlugin<T>[]);
|
|
78
|
-
init(options: StandardLinkOptions<T>): void;
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
export { type ClientPlugin as C, InvalidEventIteratorRetryResponse as I, type StandardLinkOptions as S, CompositeClientPlugin as a, type StandardLinkClient as b, type StandardLinkCodec as c, StandardLink as d };
|