@orpc/client 0.0.0-next.f17a1a0 → 0.0.0-next.f21e305
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 +31 -21
- package/dist/adapters/fetch/index.d.mts +46 -0
- package/dist/adapters/fetch/index.d.ts +46 -0
- package/dist/adapters/fetch/index.mjs +45 -0
- 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 +72 -0
- package/dist/adapters/standard/index.d.mts +11 -0
- package/dist/adapters/standard/index.d.ts +11 -0
- package/dist/adapters/standard/index.mjs +5 -0
- package/dist/adapters/websocket/index.d.mts +29 -0
- package/dist/adapters/websocket/index.d.ts +29 -0
- package/dist/adapters/websocket/index.mjs +46 -0
- package/dist/index.d.mts +230 -0
- package/dist/index.d.ts +230 -0
- package/dist/index.mjs +111 -0
- package/dist/plugins/index.d.mts +202 -0
- package/dist/plugins/index.d.ts +202 -0
- package/dist/plugins/index.mjs +406 -0
- package/dist/shared/client.BG98rYdO.d.ts +45 -0
- package/dist/shared/client.BIYmXux0.mjs +397 -0
- package/dist/shared/client.BOYsZIRq.d.mts +29 -0
- package/dist/shared/client.BOYsZIRq.d.ts +29 -0
- package/dist/shared/client.Bwgm6dgk.d.mts +45 -0
- package/dist/shared/client.C9Q9FzmH.mjs +208 -0
- package/dist/shared/client.CVVVqf1Y.d.ts +91 -0
- package/dist/shared/client._Y_enhib.d.mts +91 -0
- package/package.json +30 -24
- package/dist/chunk-4FUUNP74.js +0 -212
- package/dist/chunk-OGAGXWCU.js +0 -281
- package/dist/fetch.js +0 -128
- package/dist/index.js +0 -81
- package/dist/openapi.js +0 -231
- package/dist/rpc.js +0 -10
- package/dist/src/adapters/fetch/index.d.ts +0 -3
- package/dist/src/adapters/fetch/rpc-link.d.ts +0 -98
- package/dist/src/adapters/fetch/types.d.ts +0 -5
- package/dist/src/client.d.ts +0 -9
- package/dist/src/dynamic-link.d.ts +0 -12
- package/dist/src/error.d.ts +0 -106
- package/dist/src/event-iterator-state.d.ts +0 -9
- package/dist/src/event-iterator.d.ts +0 -12
- package/dist/src/index.d.ts +0 -9
- package/dist/src/openapi/bracket-notation.d.ts +0 -9
- package/dist/src/openapi/index.d.ts +0 -4
- package/dist/src/openapi/json-serializer.d.ts +0 -7
- package/dist/src/openapi/serializer.d.ts +0 -11
- package/dist/src/rpc/index.d.ts +0 -3
- package/dist/src/rpc/json-serializer.d.ts +0 -12
- package/dist/src/rpc/serializer.d.ts +0 -9
- package/dist/src/types.d.ts +0 -29
- package/dist/src/utils.d.ts +0 -5
@@ -0,0 +1,406 @@
|
|
1
|
+
import { isAsyncIteratorObject, defer, value, splitInHalf, toArray, stringifyJSON, AsyncIteratorClass } from '@orpc/shared';
|
2
|
+
import { toBatchRequest, parseBatchResponse, toBatchAbortSignal } from '@orpc/standard-server/batch';
|
3
|
+
import { replicateStandardLazyResponse, getEventMeta } from '@orpc/standard-server';
|
4
|
+
|
5
|
+
class BatchLinkPlugin {
|
6
|
+
groups;
|
7
|
+
maxSize;
|
8
|
+
batchUrl;
|
9
|
+
maxUrlLength;
|
10
|
+
batchHeaders;
|
11
|
+
mapRequestItem;
|
12
|
+
exclude;
|
13
|
+
mode;
|
14
|
+
pending;
|
15
|
+
order = 5e6;
|
16
|
+
constructor(options) {
|
17
|
+
this.groups = options.groups;
|
18
|
+
this.pending = /* @__PURE__ */ new Map();
|
19
|
+
this.maxSize = options.maxSize ?? 10;
|
20
|
+
this.maxUrlLength = options.maxUrlLength ?? 2083;
|
21
|
+
this.mode = options.mode ?? "streaming";
|
22
|
+
this.batchUrl = options.url ?? (([options2]) => `${options2.request.url.origin}${options2.request.url.pathname}/__batch__`);
|
23
|
+
this.batchHeaders = options.headers ?? (([options2, ...rest]) => {
|
24
|
+
const headers = {};
|
25
|
+
for (const [key, value2] of Object.entries(options2.request.headers)) {
|
26
|
+
if (rest.every((item) => item.request.headers[key] === value2)) {
|
27
|
+
headers[key] = value2;
|
28
|
+
}
|
29
|
+
}
|
30
|
+
return headers;
|
31
|
+
});
|
32
|
+
this.mapRequestItem = options.mapRequestItem ?? (({ request, batchHeaders }) => {
|
33
|
+
const headers = {};
|
34
|
+
for (const [key, value2] of Object.entries(request.headers)) {
|
35
|
+
if (batchHeaders[key] !== value2) {
|
36
|
+
headers[key] = value2;
|
37
|
+
}
|
38
|
+
}
|
39
|
+
return {
|
40
|
+
method: request.method,
|
41
|
+
url: request.url,
|
42
|
+
headers,
|
43
|
+
body: request.body,
|
44
|
+
signal: request.signal
|
45
|
+
};
|
46
|
+
});
|
47
|
+
this.exclude = options.exclude ?? (() => false);
|
48
|
+
}
|
49
|
+
init(options) {
|
50
|
+
options.clientInterceptors ??= [];
|
51
|
+
options.clientInterceptors.push((options2) => {
|
52
|
+
if (options2.request.headers["x-orpc-batch"] !== "1") {
|
53
|
+
return options2.next();
|
54
|
+
}
|
55
|
+
return options2.next({
|
56
|
+
...options2,
|
57
|
+
request: {
|
58
|
+
...options2.request,
|
59
|
+
headers: {
|
60
|
+
...options2.request.headers,
|
61
|
+
"x-orpc-batch": void 0
|
62
|
+
}
|
63
|
+
}
|
64
|
+
});
|
65
|
+
});
|
66
|
+
options.clientInterceptors.push((options2) => {
|
67
|
+
if (this.exclude(options2) || options2.request.body instanceof Blob || options2.request.body instanceof FormData || isAsyncIteratorObject(options2.request.body) || options2.request.signal?.aborted) {
|
68
|
+
return options2.next();
|
69
|
+
}
|
70
|
+
const group = this.groups.find((group2) => group2.condition(options2));
|
71
|
+
if (!group) {
|
72
|
+
return options2.next();
|
73
|
+
}
|
74
|
+
return new Promise((resolve, reject) => {
|
75
|
+
this.#enqueueRequest(group, options2, resolve, reject);
|
76
|
+
defer(() => this.#processPendingBatches());
|
77
|
+
});
|
78
|
+
});
|
79
|
+
}
|
80
|
+
#enqueueRequest(group, options, resolve, reject) {
|
81
|
+
const items = this.pending.get(group);
|
82
|
+
if (items) {
|
83
|
+
items.push([options, resolve, reject]);
|
84
|
+
} else {
|
85
|
+
this.pending.set(group, [[options, resolve, reject]]);
|
86
|
+
}
|
87
|
+
}
|
88
|
+
async #processPendingBatches() {
|
89
|
+
const pending = this.pending;
|
90
|
+
this.pending = /* @__PURE__ */ new Map();
|
91
|
+
for (const [group, items] of pending) {
|
92
|
+
const getItems = items.filter(([options]) => options.request.method === "GET");
|
93
|
+
const restItems = items.filter(([options]) => options.request.method !== "GET");
|
94
|
+
this.#executeBatch("GET", group, getItems);
|
95
|
+
this.#executeBatch("POST", group, restItems);
|
96
|
+
}
|
97
|
+
}
|
98
|
+
async #executeBatch(method, group, groupItems) {
|
99
|
+
if (!groupItems.length) {
|
100
|
+
return;
|
101
|
+
}
|
102
|
+
const batchItems = groupItems;
|
103
|
+
if (batchItems.length === 1) {
|
104
|
+
batchItems[0][0].next().then(batchItems[0][1]).catch(batchItems[0][2]);
|
105
|
+
return;
|
106
|
+
}
|
107
|
+
try {
|
108
|
+
const options = batchItems.map(([options2]) => options2);
|
109
|
+
const maxSize = await value(this.maxSize, options);
|
110
|
+
if (batchItems.length > maxSize) {
|
111
|
+
const [first, second] = splitInHalf(batchItems);
|
112
|
+
this.#executeBatch(method, group, first);
|
113
|
+
this.#executeBatch(method, group, second);
|
114
|
+
return;
|
115
|
+
}
|
116
|
+
const batchUrl = new URL(await value(this.batchUrl, options));
|
117
|
+
const batchHeaders = await value(this.batchHeaders, options);
|
118
|
+
const mappedItems = batchItems.map(([options2]) => this.mapRequestItem({ ...options2, batchUrl, batchHeaders }));
|
119
|
+
const batchRequest = toBatchRequest({
|
120
|
+
method,
|
121
|
+
url: batchUrl,
|
122
|
+
headers: batchHeaders,
|
123
|
+
requests: mappedItems
|
124
|
+
});
|
125
|
+
const maxUrlLength = await value(this.maxUrlLength, options);
|
126
|
+
if (batchRequest.url.toString().length > maxUrlLength) {
|
127
|
+
const [first, second] = splitInHalf(batchItems);
|
128
|
+
this.#executeBatch(method, group, first);
|
129
|
+
this.#executeBatch(method, group, second);
|
130
|
+
return;
|
131
|
+
}
|
132
|
+
const mode = value(this.mode, options);
|
133
|
+
try {
|
134
|
+
const lazyResponse = await options[0].next({
|
135
|
+
request: { ...batchRequest, headers: { ...batchRequest.headers, "x-orpc-batch": mode } },
|
136
|
+
signal: batchRequest.signal,
|
137
|
+
context: group.context,
|
138
|
+
input: group.input,
|
139
|
+
path: toArray(group.path)
|
140
|
+
});
|
141
|
+
const parsed = parseBatchResponse({ ...lazyResponse, body: await lazyResponse.body() });
|
142
|
+
for await (const item of parsed) {
|
143
|
+
batchItems[item.index]?.[1]({ ...item, body: () => Promise.resolve(item.body) });
|
144
|
+
}
|
145
|
+
} catch (err) {
|
146
|
+
if (batchRequest.signal?.aborted && batchRequest.signal.reason === err) {
|
147
|
+
for (const [{ signal }, , reject] of batchItems) {
|
148
|
+
if (signal?.aborted) {
|
149
|
+
reject(signal.reason);
|
150
|
+
}
|
151
|
+
}
|
152
|
+
}
|
153
|
+
throw err;
|
154
|
+
}
|
155
|
+
throw new Error("Something went wrong make batch response not contains enough responses. This can be a bug please report it.");
|
156
|
+
} catch (error) {
|
157
|
+
for (const [, , reject] of batchItems) {
|
158
|
+
reject(error);
|
159
|
+
}
|
160
|
+
}
|
161
|
+
}
|
162
|
+
}
|
163
|
+
|
164
|
+
class DedupeRequestsPlugin {
|
165
|
+
#groups;
|
166
|
+
#filter;
|
167
|
+
order = 4e6;
|
168
|
+
// make sure execute before batch plugin
|
169
|
+
#queue = /* @__PURE__ */ new Map();
|
170
|
+
constructor(options) {
|
171
|
+
this.#groups = options.groups;
|
172
|
+
this.#filter = options.filter ?? (({ request }) => request.method === "GET");
|
173
|
+
}
|
174
|
+
init(options) {
|
175
|
+
options.clientInterceptors ??= [];
|
176
|
+
options.clientInterceptors.push((options2) => {
|
177
|
+
if (options2.request.body instanceof Blob || options2.request.body instanceof FormData || options2.request.body instanceof URLSearchParams || isAsyncIteratorObject(options2.request.body) || !this.#filter(options2)) {
|
178
|
+
return options2.next();
|
179
|
+
}
|
180
|
+
const group = this.#groups.find((group2) => group2.condition(options2));
|
181
|
+
if (!group) {
|
182
|
+
return options2.next();
|
183
|
+
}
|
184
|
+
return new Promise((resolve, reject) => {
|
185
|
+
this.#enqueue(group, options2, resolve, reject);
|
186
|
+
defer(() => this.#dequeue());
|
187
|
+
});
|
188
|
+
});
|
189
|
+
}
|
190
|
+
#enqueue(group, options, resolve, reject) {
|
191
|
+
let queue = this.#queue.get(group);
|
192
|
+
if (!queue) {
|
193
|
+
this.#queue.set(group, queue = []);
|
194
|
+
}
|
195
|
+
const matched = queue.find((item) => {
|
196
|
+
const requestString1 = stringifyJSON({
|
197
|
+
body: item.options.request.body,
|
198
|
+
headers: item.options.request.headers,
|
199
|
+
method: item.options.request.method,
|
200
|
+
url: item.options.request.url
|
201
|
+
});
|
202
|
+
const requestString2 = stringifyJSON({
|
203
|
+
body: options.request.body,
|
204
|
+
headers: options.request.headers,
|
205
|
+
method: options.request.method,
|
206
|
+
url: options.request.url
|
207
|
+
});
|
208
|
+
return requestString1 === requestString2;
|
209
|
+
});
|
210
|
+
if (matched) {
|
211
|
+
matched.signals.push(options.request.signal);
|
212
|
+
matched.resolves.push(resolve);
|
213
|
+
matched.rejects.push(reject);
|
214
|
+
} else {
|
215
|
+
queue.push({
|
216
|
+
options,
|
217
|
+
signals: [options.request.signal],
|
218
|
+
resolves: [resolve],
|
219
|
+
rejects: [reject]
|
220
|
+
});
|
221
|
+
}
|
222
|
+
}
|
223
|
+
async #dequeue() {
|
224
|
+
const promises = [];
|
225
|
+
for (const [group, items] of this.#queue) {
|
226
|
+
for (const { options, signals, resolves, rejects } of items) {
|
227
|
+
promises.push(
|
228
|
+
this.#execute(group, options, signals, resolves, rejects)
|
229
|
+
);
|
230
|
+
}
|
231
|
+
}
|
232
|
+
this.#queue.clear();
|
233
|
+
await Promise.all(promises);
|
234
|
+
}
|
235
|
+
async #execute(group, options, signals, resolves, rejects) {
|
236
|
+
try {
|
237
|
+
const dedupedRequest = {
|
238
|
+
...options.request,
|
239
|
+
signal: toBatchAbortSignal(signals)
|
240
|
+
};
|
241
|
+
const response = await options.next({
|
242
|
+
...options,
|
243
|
+
request: dedupedRequest,
|
244
|
+
signal: dedupedRequest.signal,
|
245
|
+
context: group.context
|
246
|
+
});
|
247
|
+
const replicatedResponses = replicateStandardLazyResponse(response, resolves.length);
|
248
|
+
for (const resolve of resolves) {
|
249
|
+
resolve(replicatedResponses.shift());
|
250
|
+
}
|
251
|
+
} catch (error) {
|
252
|
+
for (const reject of rejects) {
|
253
|
+
reject(error);
|
254
|
+
}
|
255
|
+
}
|
256
|
+
}
|
257
|
+
}
|
258
|
+
|
259
|
+
class ClientRetryPluginInvalidEventIteratorRetryResponse extends Error {
|
260
|
+
}
|
261
|
+
class ClientRetryPlugin {
|
262
|
+
defaultRetry;
|
263
|
+
defaultRetryDelay;
|
264
|
+
defaultShouldRetry;
|
265
|
+
defaultOnRetry;
|
266
|
+
constructor(options = {}) {
|
267
|
+
this.defaultRetry = options.default?.retry ?? 0;
|
268
|
+
this.defaultRetryDelay = options.default?.retryDelay ?? ((o) => o.lastEventRetry ?? 2e3);
|
269
|
+
this.defaultShouldRetry = options.default?.shouldRetry ?? true;
|
270
|
+
this.defaultOnRetry = options.default?.onRetry;
|
271
|
+
}
|
272
|
+
init(options) {
|
273
|
+
options.interceptors ??= [];
|
274
|
+
options.interceptors.push(async (interceptorOptions) => {
|
275
|
+
const maxAttempts = await value(
|
276
|
+
interceptorOptions.context.retry ?? this.defaultRetry,
|
277
|
+
interceptorOptions
|
278
|
+
);
|
279
|
+
const retryDelay = interceptorOptions.context.retryDelay ?? this.defaultRetryDelay;
|
280
|
+
const shouldRetry = interceptorOptions.context.shouldRetry ?? this.defaultShouldRetry;
|
281
|
+
const onRetry = interceptorOptions.context.onRetry ?? this.defaultOnRetry;
|
282
|
+
if (maxAttempts <= 0) {
|
283
|
+
return interceptorOptions.next();
|
284
|
+
}
|
285
|
+
let lastEventId = interceptorOptions.lastEventId;
|
286
|
+
let lastEventRetry;
|
287
|
+
let callback;
|
288
|
+
let attemptIndex = 0;
|
289
|
+
const next = async (initialError) => {
|
290
|
+
let currentError = initialError;
|
291
|
+
while (true) {
|
292
|
+
const updatedInterceptorOptions = { ...interceptorOptions, lastEventId };
|
293
|
+
if (currentError) {
|
294
|
+
if (attemptIndex >= maxAttempts) {
|
295
|
+
throw currentError.error;
|
296
|
+
}
|
297
|
+
const attemptOptions = {
|
298
|
+
...updatedInterceptorOptions,
|
299
|
+
attemptIndex,
|
300
|
+
error: currentError.error,
|
301
|
+
lastEventRetry
|
302
|
+
};
|
303
|
+
const shouldRetryBool = await value(
|
304
|
+
shouldRetry,
|
305
|
+
attemptOptions
|
306
|
+
);
|
307
|
+
if (!shouldRetryBool) {
|
308
|
+
throw currentError.error;
|
309
|
+
}
|
310
|
+
callback = onRetry?.(attemptOptions);
|
311
|
+
const retryDelayMs = await value(retryDelay, attemptOptions);
|
312
|
+
await new Promise((resolve) => setTimeout(resolve, retryDelayMs));
|
313
|
+
attemptIndex++;
|
314
|
+
}
|
315
|
+
try {
|
316
|
+
currentError = void 0;
|
317
|
+
return await interceptorOptions.next(updatedInterceptorOptions);
|
318
|
+
} catch (error) {
|
319
|
+
currentError = { error };
|
320
|
+
if (updatedInterceptorOptions.signal?.aborted) {
|
321
|
+
throw error;
|
322
|
+
}
|
323
|
+
} finally {
|
324
|
+
callback?.(!currentError);
|
325
|
+
callback = void 0;
|
326
|
+
}
|
327
|
+
}
|
328
|
+
};
|
329
|
+
const output = await next();
|
330
|
+
if (!isAsyncIteratorObject(output)) {
|
331
|
+
return output;
|
332
|
+
}
|
333
|
+
let current = output;
|
334
|
+
let isIteratorAborted = false;
|
335
|
+
return new AsyncIteratorClass(
|
336
|
+
async () => {
|
337
|
+
while (true) {
|
338
|
+
try {
|
339
|
+
const item = await current.next();
|
340
|
+
const meta = getEventMeta(item.value);
|
341
|
+
lastEventId = meta?.id ?? lastEventId;
|
342
|
+
lastEventRetry = meta?.retry ?? lastEventRetry;
|
343
|
+
return item;
|
344
|
+
} catch (error) {
|
345
|
+
const meta = getEventMeta(error);
|
346
|
+
lastEventId = meta?.id ?? lastEventId;
|
347
|
+
lastEventRetry = meta?.retry ?? lastEventRetry;
|
348
|
+
const maybeEventIterator = await next({ error });
|
349
|
+
if (!isAsyncIteratorObject(maybeEventIterator)) {
|
350
|
+
throw new ClientRetryPluginInvalidEventIteratorRetryResponse(
|
351
|
+
"RetryPlugin: Expected an Event Iterator, got a non-Event Iterator"
|
352
|
+
);
|
353
|
+
}
|
354
|
+
current = maybeEventIterator;
|
355
|
+
if (isIteratorAborted) {
|
356
|
+
await current.return?.();
|
357
|
+
throw error;
|
358
|
+
}
|
359
|
+
}
|
360
|
+
}
|
361
|
+
},
|
362
|
+
async (reason) => {
|
363
|
+
isIteratorAborted = true;
|
364
|
+
if (reason !== "next") {
|
365
|
+
await current.return?.();
|
366
|
+
}
|
367
|
+
}
|
368
|
+
);
|
369
|
+
});
|
370
|
+
}
|
371
|
+
}
|
372
|
+
|
373
|
+
class SimpleCsrfProtectionLinkPlugin {
|
374
|
+
headerName;
|
375
|
+
headerValue;
|
376
|
+
exclude;
|
377
|
+
constructor(options = {}) {
|
378
|
+
this.headerName = options.headerName ?? "x-csrf-token";
|
379
|
+
this.headerValue = options.headerValue ?? "orpc";
|
380
|
+
this.exclude = options.exclude ?? false;
|
381
|
+
}
|
382
|
+
order = 8e6;
|
383
|
+
init(options) {
|
384
|
+
options.clientInterceptors ??= [];
|
385
|
+
options.clientInterceptors.push(async (options2) => {
|
386
|
+
const excluded = await value(this.exclude, options2);
|
387
|
+
if (excluded) {
|
388
|
+
return options2.next();
|
389
|
+
}
|
390
|
+
const headerName = await value(this.headerName, options2);
|
391
|
+
const headerValue = await value(this.headerValue, options2);
|
392
|
+
return options2.next({
|
393
|
+
...options2,
|
394
|
+
request: {
|
395
|
+
...options2.request,
|
396
|
+
headers: {
|
397
|
+
...options2.request.headers,
|
398
|
+
[headerName]: headerValue
|
399
|
+
}
|
400
|
+
}
|
401
|
+
});
|
402
|
+
});
|
403
|
+
}
|
404
|
+
}
|
405
|
+
|
406
|
+
export { BatchLinkPlugin, ClientRetryPlugin, ClientRetryPluginInvalidEventIteratorRetryResponse, DedupeRequestsPlugin, SimpleCsrfProtectionLinkPlugin };
|
@@ -0,0 +1,45 @@
|
|
1
|
+
import { Interceptor } from '@orpc/shared';
|
2
|
+
import { StandardRequest, StandardLazyResponse } from '@orpc/standard-server';
|
3
|
+
import { b as ClientContext, c as ClientOptions, C as ClientLink } from './client.BOYsZIRq.js';
|
4
|
+
|
5
|
+
interface StandardLinkPlugin<T extends ClientContext> {
|
6
|
+
order?: number;
|
7
|
+
init?(options: StandardLinkOptions<T>): void;
|
8
|
+
}
|
9
|
+
declare class CompositeStandardLinkPlugin<T extends ClientContext, TPlugin extends StandardLinkPlugin<T>> implements StandardLinkPlugin<T> {
|
10
|
+
protected readonly plugins: TPlugin[];
|
11
|
+
constructor(plugins?: readonly TPlugin[]);
|
12
|
+
init(options: StandardLinkOptions<T>): void;
|
13
|
+
}
|
14
|
+
|
15
|
+
interface StandardLinkCodec<T extends ClientContext> {
|
16
|
+
encode(path: readonly string[], input: unknown, options: ClientOptions<T>): Promise<StandardRequest>;
|
17
|
+
decode(response: StandardLazyResponse, options: ClientOptions<T>, path: readonly string[], input: unknown): Promise<unknown>;
|
18
|
+
}
|
19
|
+
interface StandardLinkClient<T extends ClientContext> {
|
20
|
+
call(request: StandardRequest, options: ClientOptions<T>, path: readonly string[], input: unknown): Promise<StandardLazyResponse>;
|
21
|
+
}
|
22
|
+
|
23
|
+
interface StandardLinkInterceptorOptions<T extends ClientContext> extends ClientOptions<T> {
|
24
|
+
path: readonly string[];
|
25
|
+
input: unknown;
|
26
|
+
}
|
27
|
+
interface StandardLinkClientInterceptorOptions<T extends ClientContext> extends StandardLinkInterceptorOptions<T> {
|
28
|
+
request: StandardRequest;
|
29
|
+
}
|
30
|
+
interface StandardLinkOptions<T extends ClientContext> {
|
31
|
+
interceptors?: Interceptor<StandardLinkInterceptorOptions<T>, Promise<unknown>>[];
|
32
|
+
clientInterceptors?: Interceptor<StandardLinkClientInterceptorOptions<T>, Promise<StandardLazyResponse>>[];
|
33
|
+
plugins?: StandardLinkPlugin<T>[];
|
34
|
+
}
|
35
|
+
declare class StandardLink<T extends ClientContext> implements ClientLink<T> {
|
36
|
+
readonly codec: StandardLinkCodec<T>;
|
37
|
+
readonly sender: StandardLinkClient<T>;
|
38
|
+
private readonly interceptors;
|
39
|
+
private readonly clientInterceptors;
|
40
|
+
constructor(codec: StandardLinkCodec<T>, sender: StandardLinkClient<T>, options?: StandardLinkOptions<T>);
|
41
|
+
call(path: readonly string[], input: unknown, options: ClientOptions<T>): Promise<unknown>;
|
42
|
+
}
|
43
|
+
|
44
|
+
export { CompositeStandardLinkPlugin as C, StandardLink as d };
|
45
|
+
export type { StandardLinkClientInterceptorOptions as S, StandardLinkPlugin as a, StandardLinkOptions as b, StandardLinkInterceptorOptions as c, StandardLinkCodec as e, StandardLinkClient as f };
|