@orpc/client 0.52.0 → 0.53.0

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.
@@ -1,6 +1,152 @@
1
- import { isAsyncIteratorObject, value } from '@orpc/shared';
1
+ import { isAsyncIteratorObject, value, splitInHalf, toArray } from '@orpc/shared';
2
+ import { toBatchRequest, parseBatchResponse } from '@orpc/standard-server/batch';
2
3
  import { getEventMeta } from '@orpc/standard-server';
3
4
 
5
+ class BatchLinkPlugin {
6
+ groups;
7
+ maxSize;
8
+ batchUrl;
9
+ maxUrlLength;
10
+ batchHeaders;
11
+ mapRequestItem;
12
+ exclude;
13
+ pending;
14
+ order = 5e6;
15
+ constructor(options) {
16
+ this.groups = options.groups;
17
+ this.pending = /* @__PURE__ */ new Map();
18
+ this.maxSize = options.maxSize ?? 10;
19
+ this.maxUrlLength = options.maxUrlLength ?? 2083;
20
+ this.batchUrl = options.url ?? (([options2]) => `${options2.request.url.origin}${options2.request.url.pathname}/__batch__`);
21
+ this.batchHeaders = options.headers ?? (([options2, ...rest]) => {
22
+ const headers = {};
23
+ for (const [key, value2] of Object.entries(options2.request.headers)) {
24
+ if (rest.every((item) => item.request.headers[key] === value2)) {
25
+ headers[key] = value2;
26
+ }
27
+ }
28
+ return headers;
29
+ });
30
+ this.mapRequestItem = options.mapRequestItem ?? (({ request, batchHeaders }) => {
31
+ const headers = {};
32
+ for (const [key, value2] of Object.entries(request.headers)) {
33
+ if (batchHeaders[key] !== value2) {
34
+ headers[key] = value2;
35
+ }
36
+ }
37
+ return {
38
+ method: request.method,
39
+ url: request.url,
40
+ headers,
41
+ body: request.body,
42
+ signal: request.signal
43
+ };
44
+ });
45
+ this.exclude = options.exclude ?? (() => false);
46
+ }
47
+ init(options) {
48
+ options.clientInterceptors ??= [];
49
+ options.clientInterceptors.push((options2) => {
50
+ if (options2.request.headers["x-orpc-batch"] !== "1") {
51
+ return options2.next();
52
+ }
53
+ return options2.next({
54
+ ...options2,
55
+ request: {
56
+ ...options2.request,
57
+ headers: {
58
+ ...options2.request.headers,
59
+ "x-orpc-batch": void 0
60
+ }
61
+ }
62
+ });
63
+ });
64
+ options.clientInterceptors.push((options2) => {
65
+ if (this.exclude(options2) || options2.request.body instanceof Blob || options2.request.body instanceof FormData || isAsyncIteratorObject(options2.request.body)) {
66
+ return options2.next();
67
+ }
68
+ const group = this.groups.find((group2) => group2.condition(options2));
69
+ if (!group) {
70
+ return options2.next();
71
+ }
72
+ return new Promise((resolve, reject) => {
73
+ this.#enqueueRequest(group, options2, resolve, reject);
74
+ setTimeout(() => this.#processPendingBatches());
75
+ });
76
+ });
77
+ }
78
+ #enqueueRequest(group, options, resolve, reject) {
79
+ const items = this.pending.get(group);
80
+ if (items) {
81
+ items.push([options, resolve, reject]);
82
+ } else {
83
+ this.pending.set(group, [[options, resolve, reject]]);
84
+ }
85
+ }
86
+ async #processPendingBatches() {
87
+ const pending = this.pending;
88
+ this.pending = /* @__PURE__ */ new Map();
89
+ for (const [group, items] of pending) {
90
+ const getItems = items.filter(([options]) => options.request.method === "GET");
91
+ const restItems = items.filter(([options]) => options.request.method !== "GET");
92
+ this.#executeBatch("GET", group, getItems);
93
+ this.#executeBatch("POST", group, restItems);
94
+ }
95
+ }
96
+ async #executeBatch(method, group, groupItems) {
97
+ if (!groupItems.length) {
98
+ return;
99
+ }
100
+ const batchItems = groupItems;
101
+ if (batchItems.length === 1) {
102
+ batchItems[0][0].next().then(batchItems[0][1]).catch(batchItems[0][2]);
103
+ return;
104
+ }
105
+ try {
106
+ const options = batchItems.map(([options2]) => options2);
107
+ const maxSize = await value(this.maxSize, options);
108
+ if (batchItems.length > maxSize) {
109
+ const [first, second] = splitInHalf(batchItems);
110
+ this.#executeBatch(method, group, first);
111
+ this.#executeBatch(method, group, second);
112
+ return;
113
+ }
114
+ const batchUrl = new URL(await value(this.batchUrl, options));
115
+ const batchHeaders = await value(this.batchHeaders, options);
116
+ const mappedItems = batchItems.map(([options2]) => this.mapRequestItem({ ...options2, batchUrl, batchHeaders }));
117
+ const batchRequest = toBatchRequest({
118
+ method,
119
+ url: batchUrl,
120
+ headers: batchHeaders,
121
+ requests: mappedItems
122
+ });
123
+ const maxUrlLength = await value(this.maxUrlLength, options);
124
+ if (batchRequest.url.toString().length > maxUrlLength) {
125
+ const [first, second] = splitInHalf(batchItems);
126
+ this.#executeBatch(method, group, first);
127
+ this.#executeBatch(method, group, second);
128
+ return;
129
+ }
130
+ const lazyResponse = await options[0].next({
131
+ request: { ...batchRequest, headers: { ...batchRequest.headers, "x-orpc-batch": "1" } },
132
+ signal: batchRequest.signal,
133
+ context: group.context,
134
+ input: group.input,
135
+ path: toArray(group.path)
136
+ });
137
+ const parsed = parseBatchResponse({ ...lazyResponse, body: await lazyResponse.body() });
138
+ for await (const item of parsed) {
139
+ batchItems[item.index]?.[1]({ ...item, body: () => Promise.resolve(item.body) });
140
+ }
141
+ throw new Error("Something went wrong make batch response not contains enough responses. This can be a bug please report it.");
142
+ } catch (error) {
143
+ for (const [, , reject] of batchItems) {
144
+ reject(error);
145
+ }
146
+ }
147
+ }
148
+ }
149
+
4
150
  class ClientRetryPluginInvalidEventIteratorRetryResponse extends Error {
5
151
  }
6
152
  class ClientRetryPlugin {
@@ -17,65 +163,50 @@ class ClientRetryPlugin {
17
163
  init(options) {
18
164
  options.interceptors ??= [];
19
165
  options.interceptors.push(async (interceptorOptions) => {
20
- const maxAttempts = interceptorOptions.options.context.retry ?? this.defaultRetry;
21
- const retryDelay = interceptorOptions.options.context.retryDelay ?? this.defaultRetryDelay;
22
- const shouldRetry = interceptorOptions.options.context.shouldRetry ?? this.defaultShouldRetry;
23
- const onRetry = interceptorOptions.options.context.onRetry ?? this.defaultOnRetry;
166
+ const maxAttempts = await value(
167
+ interceptorOptions.context.retry ?? this.defaultRetry,
168
+ interceptorOptions
169
+ );
170
+ const retryDelay = interceptorOptions.context.retryDelay ?? this.defaultRetryDelay;
171
+ const shouldRetry = interceptorOptions.context.shouldRetry ?? this.defaultShouldRetry;
172
+ const onRetry = interceptorOptions.context.onRetry ?? this.defaultOnRetry;
24
173
  if (maxAttempts <= 0) {
25
174
  return interceptorOptions.next();
26
175
  }
27
- let lastEventId = interceptorOptions.options.lastEventId;
176
+ let lastEventId = interceptorOptions.lastEventId;
28
177
  let lastEventRetry;
29
178
  let unsubscribe;
30
179
  let attemptIndex = 0;
31
180
  const next = async (initial) => {
32
181
  let current = initial;
33
182
  while (true) {
34
- const newClientOptions = { ...interceptorOptions.options, lastEventId };
183
+ const updatedInterceptorOptions = { ...interceptorOptions, lastEventId };
35
184
  if (current) {
36
185
  if (attemptIndex >= maxAttempts) {
37
186
  throw current.error;
38
187
  }
39
188
  const attemptOptions = {
189
+ ...updatedInterceptorOptions,
40
190
  attemptIndex,
41
191
  error: current.error,
42
- lastEventId,
43
192
  lastEventRetry
44
193
  };
45
194
  const shouldRetryBool = await value(
46
195
  shouldRetry,
47
- attemptOptions,
48
- newClientOptions,
49
- interceptorOptions.path,
50
- interceptorOptions.input
196
+ attemptOptions
51
197
  );
52
198
  if (!shouldRetryBool) {
53
199
  throw current.error;
54
200
  }
55
- unsubscribe = onRetry?.(
56
- attemptOptions,
57
- newClientOptions,
58
- interceptorOptions.path,
59
- interceptorOptions.input
60
- );
61
- const retryDelayMs = await value(
62
- retryDelay,
63
- attemptOptions,
64
- newClientOptions,
65
- interceptorOptions.path,
66
- interceptorOptions.input
67
- );
201
+ unsubscribe = onRetry?.(attemptOptions);
202
+ const retryDelayMs = await value(retryDelay, attemptOptions);
68
203
  await new Promise((resolve) => setTimeout(resolve, retryDelayMs));
69
204
  attemptIndex++;
70
205
  }
71
206
  try {
72
- const output2 = await interceptorOptions.next({
73
- ...interceptorOptions,
74
- options: newClientOptions
75
- });
76
- return output2;
207
+ return await interceptorOptions.next(updatedInterceptorOptions);
77
208
  } catch (error) {
78
- if (newClientOptions.signal?.aborted === true) {
209
+ if (updatedInterceptorOptions.signal?.aborted === true) {
79
210
  throw error;
80
211
  }
81
212
  current = { error };
@@ -123,4 +254,37 @@ class ClientRetryPlugin {
123
254
  }
124
255
  }
125
256
 
126
- export { ClientRetryPlugin, ClientRetryPluginInvalidEventIteratorRetryResponse };
257
+ class SimpleCsrfProtectionLinkPlugin {
258
+ headerName;
259
+ headerValue;
260
+ exclude;
261
+ constructor(options = {}) {
262
+ this.headerName = options.headerName ?? "x-csrf-token";
263
+ this.headerValue = options.headerValue ?? "orpc";
264
+ this.exclude = options.exclude ?? false;
265
+ }
266
+ order = 8e6;
267
+ init(options) {
268
+ options.clientInterceptors ??= [];
269
+ options.clientInterceptors.push(async (options2) => {
270
+ const excluded = await value(this.exclude, options2);
271
+ if (excluded) {
272
+ return options2.next();
273
+ }
274
+ const headerName = await value(this.headerName, options2);
275
+ const headerValue = await value(this.headerValue, options2);
276
+ return options2.next({
277
+ ...options2,
278
+ request: {
279
+ ...options2.request,
280
+ headers: {
281
+ ...options2.request.headers,
282
+ [headerName]: headerValue
283
+ }
284
+ }
285
+ });
286
+ });
287
+ }
288
+ }
289
+
290
+ export { BatchLinkPlugin, ClientRetryPlugin, ClientRetryPluginInvalidEventIteratorRetryResponse, SimpleCsrfProtectionLinkPlugin };
@@ -1,6 +1,6 @@
1
1
  import { Interceptor, ThrowableError } from '@orpc/shared';
2
2
  import { StandardRequest, StandardLazyResponse } from '@orpc/standard-server';
3
- import { a as ClientContext, b as ClientOptions, C as ClientLink } from './client.C0lT7w02.js';
3
+ import { a as ClientContext, b as ClientOptions, C as ClientLink } from './client.CipPQkhk.mjs';
4
4
 
5
5
  interface StandardLinkCodec<T extends ClientContext> {
6
6
  encode(path: readonly string[], input: unknown, options: ClientOptions<T>): Promise<StandardRequest>;
@@ -10,20 +10,26 @@ interface StandardLinkClient<T extends ClientContext> {
10
10
  call(request: StandardRequest, options: ClientOptions<T>, path: readonly string[], input: unknown): Promise<StandardLazyResponse>;
11
11
  }
12
12
 
13
- declare class InvalidEventIteratorRetryResponse extends Error {
14
- }
15
13
  interface StandardLinkPlugin<T extends ClientContext> {
14
+ order?: number;
16
15
  init?(options: StandardLinkOptions<T>): void;
17
16
  }
17
+ declare class CompositeStandardLinkPlugin<T extends ClientContext, TPlugin extends StandardLinkPlugin<T>> implements StandardLinkPlugin<T> {
18
+ protected readonly plugins: TPlugin[];
19
+ constructor(plugins?: readonly TPlugin[]);
20
+ init(options: StandardLinkOptions<T>): void;
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
+ }
18
30
  interface StandardLinkOptions<T extends ClientContext> {
19
- interceptors?: Interceptor<{
20
- path: readonly string[];
21
- input: unknown;
22
- options: ClientOptions<T>;
23
- }, unknown, ThrowableError>[];
24
- clientInterceptors?: Interceptor<{
25
- request: StandardRequest;
26
- }, StandardLazyResponse, ThrowableError>[];
31
+ interceptors?: Interceptor<StandardLinkInterceptorOptions<T>, unknown, ThrowableError>[];
32
+ clientInterceptors?: Interceptor<StandardLinkClientInterceptorOptions<T>, StandardLazyResponse, ThrowableError>[];
27
33
  plugins?: StandardLinkPlugin<T>[];
28
34
  }
29
35
  declare class StandardLink<T extends ClientContext> implements ClientLink<T> {
@@ -36,4 +42,4 @@ declare class StandardLink<T extends ClientContext> implements ClientLink<T> {
36
42
  call(path: readonly string[], input: unknown, options: ClientOptions<T>): Promise<unknown>;
37
43
  }
38
44
 
39
- export { InvalidEventIteratorRetryResponse as I, type StandardLinkPlugin as S, type StandardLinkOptions as a, StandardLink as b, type StandardLinkCodec as c, type StandardLinkClient as d };
45
+ export { CompositeStandardLinkPlugin as C, type StandardLinkClientInterceptorOptions as S, type StandardLinkPlugin as a, type StandardLinkOptions as b, type StandardLinkInterceptorOptions as c, StandardLink as d, type StandardLinkCodec as e, type StandardLinkClient as f };
@@ -110,22 +110,6 @@ class ORPCError extends Error {
110
110
  data: this.data
111
111
  };
112
112
  }
113
- static fromJSON(json, options) {
114
- return new ORPCError(json.code, {
115
- ...options,
116
- ...json
117
- });
118
- }
119
- static isValidJSON(json) {
120
- if (!isObject(json)) {
121
- return false;
122
- }
123
- const validKeys = ["defined", "code", "status", "message", "data"];
124
- if (Object.keys(json).some((k) => !validKeys.includes(k))) {
125
- return false;
126
- }
127
- return "defined" in json && typeof json.defined === "boolean" && "code" in json && typeof json.code === "string" && "status" in json && typeof json.status === "number" && "message" in json && typeof json.message === "string";
128
- }
129
113
  }
130
114
  function isDefinedError(error) {
131
115
  return error instanceof ORPCError && error.defined;
@@ -139,6 +123,22 @@ function toORPCError(error) {
139
123
  function isORPCErrorStatus(status) {
140
124
  return status < 200 || status >= 400;
141
125
  }
126
+ function isORPCErrorJson(json) {
127
+ if (!isObject(json)) {
128
+ return false;
129
+ }
130
+ const validKeys = ["defined", "code", "status", "message", "data"];
131
+ if (Object.keys(json).some((k) => !validKeys.includes(k))) {
132
+ return false;
133
+ }
134
+ return "defined" in json && typeof json.defined === "boolean" && "code" in json && typeof json.code === "string" && "status" in json && typeof json.status === "number" && isORPCErrorStatus(json.status) && "message" in json && typeof json.message === "string";
135
+ }
136
+ function createORPCErrorFromJson(json, options = {}) {
137
+ return new ORPCError(json.code, {
138
+ ...options,
139
+ ...json
140
+ });
141
+ }
142
142
 
143
143
  function mapEventIterator(iterator, maps) {
144
144
  return async function* () {
@@ -172,4 +172,4 @@ function mapEventIterator(iterator, maps) {
172
172
  }();
173
173
  }
174
174
 
175
- export { COMMON_ORPC_ERROR_DEFS as C, ORPCError as O, fallbackORPCErrorMessage as a, isORPCErrorStatus as b, fallbackORPCErrorStatus as f, isDefinedError as i, mapEventIterator as m, toORPCError as t };
175
+ export { COMMON_ORPC_ERROR_DEFS as C, ORPCError as O, fallbackORPCErrorMessage as a, isORPCErrorStatus as b, isORPCErrorJson as c, createORPCErrorFromJson as d, fallbackORPCErrorStatus as f, isDefinedError as i, mapEventIterator as m, toORPCError as t };
@@ -3,13 +3,15 @@ import { PromiseWithError } from '@orpc/shared';
3
3
  type HTTPPath = `/${string}`;
4
4
  type HTTPMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
5
5
  type ClientContext = Record<PropertyKey, any>;
6
- type FriendlyClientOptions<TClientContext extends ClientContext> = {
6
+ interface ClientOptions<T extends ClientContext> {
7
7
  signal?: AbortSignal;
8
8
  lastEventId?: string | undefined;
9
- } & (Record<never, never> extends TClientContext ? {
10
- context?: TClientContext;
9
+ context: T;
10
+ }
11
+ type FriendlyClientOptions<T extends ClientContext> = Omit<ClientOptions<T>, 'context'> & (Record<never, never> extends T ? {
12
+ context?: T;
11
13
  } : {
12
- context: TClientContext;
14
+ context: T;
13
15
  });
14
16
  type ClientRest<TClientContext extends ClientContext, TInput> = Record<never, never> extends TClientContext ? undefined extends TInput ? [input?: TInput, options?: FriendlyClientOptions<TClientContext>] : [input: TInput, options?: FriendlyClientOptions<TClientContext>] : [input: TInput, options: FriendlyClientOptions<TClientContext>];
15
17
  type ClientPromiseResult<TOutput, TError> = PromiseWithError<TOutput, TError>;
@@ -20,9 +22,6 @@ type NestedClient<TClientContext extends ClientContext> = Client<TClientContext,
20
22
  [k: string]: NestedClient<TClientContext>;
21
23
  };
22
24
  type InferClientContext<T extends NestedClient<any>> = T extends NestedClient<infer U> ? U : never;
23
- type ClientOptions<TClientContext extends ClientContext> = FriendlyClientOptions<TClientContext> & {
24
- context: TClientContext;
25
- };
26
25
  interface ClientLink<TClientContext extends ClientContext> {
27
26
  call: (path: readonly string[], input: unknown, options: ClientOptions<TClientContext>) => Promise<unknown>;
28
27
  }
@@ -3,13 +3,15 @@ import { PromiseWithError } from '@orpc/shared';
3
3
  type HTTPPath = `/${string}`;
4
4
  type HTTPMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH';
5
5
  type ClientContext = Record<PropertyKey, any>;
6
- type FriendlyClientOptions<TClientContext extends ClientContext> = {
6
+ interface ClientOptions<T extends ClientContext> {
7
7
  signal?: AbortSignal;
8
8
  lastEventId?: string | undefined;
9
- } & (Record<never, never> extends TClientContext ? {
10
- context?: TClientContext;
9
+ context: T;
10
+ }
11
+ type FriendlyClientOptions<T extends ClientContext> = Omit<ClientOptions<T>, 'context'> & (Record<never, never> extends T ? {
12
+ context?: T;
11
13
  } : {
12
- context: TClientContext;
14
+ context: T;
13
15
  });
14
16
  type ClientRest<TClientContext extends ClientContext, TInput> = Record<never, never> extends TClientContext ? undefined extends TInput ? [input?: TInput, options?: FriendlyClientOptions<TClientContext>] : [input: TInput, options?: FriendlyClientOptions<TClientContext>] : [input: TInput, options: FriendlyClientOptions<TClientContext>];
15
17
  type ClientPromiseResult<TOutput, TError> = PromiseWithError<TOutput, TError>;
@@ -20,9 +22,6 @@ type NestedClient<TClientContext extends ClientContext> = Client<TClientContext,
20
22
  [k: string]: NestedClient<TClientContext>;
21
23
  };
22
24
  type InferClientContext<T extends NestedClient<any>> = T extends NestedClient<infer U> ? U : never;
23
- type ClientOptions<TClientContext extends ClientContext> = FriendlyClientOptions<TClientContext> & {
24
- context: TClientContext;
25
- };
26
25
  interface ClientLink<TClientContext extends ClientContext> {
27
26
  call: (path: readonly string[], input: unknown, options: ClientOptions<TClientContext>) => Promise<unknown>;
28
27
  }
@@ -1,5 +1,5 @@
1
- import { a as ClientContext, b as ClientOptions, d as HTTPMethod } from './client.C0lT7w02.mjs';
2
- import { c as StandardLinkCodec, a as StandardLinkOptions } from './client.5813Ufvs.mjs';
1
+ import { a as ClientContext, b as ClientOptions, d as HTTPMethod } from './client.CipPQkhk.mjs';
2
+ import { e as StandardLinkCodec, b as StandardLinkOptions, d as StandardLink, f as StandardLinkClient } from './client.Bt2hFtM_.mjs';
3
3
  import { Segment, Value } from '@orpc/shared';
4
4
  import { StandardHeaders, StandardRequest, StandardLazyResponse } from '@orpc/standard-server';
5
5
 
@@ -44,31 +44,19 @@ interface StandardRPCLinkCodecOptions<T extends ClientContext> {
44
44
  /**
45
45
  * Base url for all requests.
46
46
  */
47
- url: Value<string | URL, [
48
- options: ClientOptions<T>,
49
- path: readonly string[],
50
- input: unknown
51
- ]>;
47
+ url: Value<string | URL, [options: ClientOptions<T>, path: readonly string[], input: unknown]>;
52
48
  /**
53
49
  * The maximum length of the URL.
54
50
  *
55
51
  * @default 2083
56
52
  */
57
- maxUrlLength?: Value<number, [
58
- options: ClientOptions<T>,
59
- path: readonly string[],
60
- input: unknown
61
- ]>;
53
+ maxUrlLength?: Value<number, [options: ClientOptions<T>, path: readonly string[], input: unknown]>;
62
54
  /**
63
55
  * The method used to make the request.
64
56
  *
65
57
  * @default 'POST'
66
58
  */
67
- method?: Value<HTTPMethod, [
68
- options: ClientOptions<T>,
69
- path: readonly string[],
70
- input: unknown
71
- ]>;
59
+ method?: Value<HTTPMethod, [options: ClientOptions<T>, path: readonly string[], input: unknown]>;
72
60
  /**
73
61
  * The method to use when the payload cannot safely pass to the server with method return from method function.
74
62
  * GET is not allowed, it's very dangerous.
@@ -79,11 +67,7 @@ interface StandardRPCLinkCodecOptions<T extends ClientContext> {
79
67
  /**
80
68
  * Inject headers to the request.
81
69
  */
82
- headers?: Value<StandardHeaders, [
83
- options: ClientOptions<T>,
84
- path: readonly string[],
85
- input: unknown
86
- ]>;
70
+ headers?: Value<StandardHeaders, [options: ClientOptions<T>, path: readonly string[], input: unknown]>;
87
71
  }
88
72
  declare class StandardRPCLinkCodec<T extends ClientContext> implements StandardLinkCodec<T> {
89
73
  private readonly serializer;
@@ -99,5 +83,8 @@ declare class StandardRPCLinkCodec<T extends ClientContext> implements StandardL
99
83
 
100
84
  interface StandardRPCLinkOptions<T extends ClientContext> extends StandardLinkOptions<T>, StandardRPCLinkCodecOptions<T>, StandardRPCJsonSerializerOptions {
101
85
  }
86
+ declare class StandardRPCLink<T extends ClientContext> extends StandardLink<T> {
87
+ constructor(linkClient: StandardLinkClient<T>, options: StandardRPCLinkOptions<T>);
88
+ }
102
89
 
103
- export { STANDARD_RPC_JSON_SERIALIZER_BUILT_IN_TYPES as S, type StandardRPCJsonSerializedMetaItem as a, type StandardRPCJsonSerialized as b, type StandardRPCCustomJsonSerializer as c, type StandardRPCJsonSerializerOptions as d, StandardRPCJsonSerializer as e, type StandardRPCLinkOptions as f, type StandardRPCLinkCodecOptions as g, StandardRPCLinkCodec as h, StandardRPCSerializer as i };
90
+ export { STANDARD_RPC_JSON_SERIALIZER_BUILT_IN_TYPES as S, type StandardRPCJsonSerializedMetaItem as a, type StandardRPCJsonSerialized as b, type StandardRPCCustomJsonSerializer as c, type StandardRPCJsonSerializerOptions as d, StandardRPCJsonSerializer as e, type StandardRPCLinkOptions as f, StandardRPCLink as g, type StandardRPCLinkCodecOptions as h, StandardRPCLinkCodec as i, StandardRPCSerializer as j };
@@ -1,5 +1,5 @@
1
- import { a as ClientContext, b as ClientOptions, d as HTTPMethod } from './client.C0lT7w02.js';
2
- import { c as StandardLinkCodec, a as StandardLinkOptions } from './client.grRbC25r.js';
1
+ import { a as ClientContext, b as ClientOptions, d as HTTPMethod } from './client.CipPQkhk.js';
2
+ import { e as StandardLinkCodec, b as StandardLinkOptions, d as StandardLink, f as StandardLinkClient } from './client.FvDtk0Vr.js';
3
3
  import { Segment, Value } from '@orpc/shared';
4
4
  import { StandardHeaders, StandardRequest, StandardLazyResponse } from '@orpc/standard-server';
5
5
 
@@ -44,31 +44,19 @@ interface StandardRPCLinkCodecOptions<T extends ClientContext> {
44
44
  /**
45
45
  * Base url for all requests.
46
46
  */
47
- url: Value<string | URL, [
48
- options: ClientOptions<T>,
49
- path: readonly string[],
50
- input: unknown
51
- ]>;
47
+ url: Value<string | URL, [options: ClientOptions<T>, path: readonly string[], input: unknown]>;
52
48
  /**
53
49
  * The maximum length of the URL.
54
50
  *
55
51
  * @default 2083
56
52
  */
57
- maxUrlLength?: Value<number, [
58
- options: ClientOptions<T>,
59
- path: readonly string[],
60
- input: unknown
61
- ]>;
53
+ maxUrlLength?: Value<number, [options: ClientOptions<T>, path: readonly string[], input: unknown]>;
62
54
  /**
63
55
  * The method used to make the request.
64
56
  *
65
57
  * @default 'POST'
66
58
  */
67
- method?: Value<HTTPMethod, [
68
- options: ClientOptions<T>,
69
- path: readonly string[],
70
- input: unknown
71
- ]>;
59
+ method?: Value<HTTPMethod, [options: ClientOptions<T>, path: readonly string[], input: unknown]>;
72
60
  /**
73
61
  * The method to use when the payload cannot safely pass to the server with method return from method function.
74
62
  * GET is not allowed, it's very dangerous.
@@ -79,11 +67,7 @@ interface StandardRPCLinkCodecOptions<T extends ClientContext> {
79
67
  /**
80
68
  * Inject headers to the request.
81
69
  */
82
- headers?: Value<StandardHeaders, [
83
- options: ClientOptions<T>,
84
- path: readonly string[],
85
- input: unknown
86
- ]>;
70
+ headers?: Value<StandardHeaders, [options: ClientOptions<T>, path: readonly string[], input: unknown]>;
87
71
  }
88
72
  declare class StandardRPCLinkCodec<T extends ClientContext> implements StandardLinkCodec<T> {
89
73
  private readonly serializer;
@@ -99,5 +83,8 @@ declare class StandardRPCLinkCodec<T extends ClientContext> implements StandardL
99
83
 
100
84
  interface StandardRPCLinkOptions<T extends ClientContext> extends StandardLinkOptions<T>, StandardRPCLinkCodecOptions<T>, StandardRPCJsonSerializerOptions {
101
85
  }
86
+ declare class StandardRPCLink<T extends ClientContext> extends StandardLink<T> {
87
+ constructor(linkClient: StandardLinkClient<T>, options: StandardRPCLinkOptions<T>);
88
+ }
102
89
 
103
- export { STANDARD_RPC_JSON_SERIALIZER_BUILT_IN_TYPES as S, type StandardRPCJsonSerializedMetaItem as a, type StandardRPCJsonSerialized as b, type StandardRPCCustomJsonSerializer as c, type StandardRPCJsonSerializerOptions as d, StandardRPCJsonSerializer as e, type StandardRPCLinkOptions as f, type StandardRPCLinkCodecOptions as g, StandardRPCLinkCodec as h, StandardRPCSerializer as i };
90
+ export { STANDARD_RPC_JSON_SERIALIZER_BUILT_IN_TYPES as S, type StandardRPCJsonSerializedMetaItem as a, type StandardRPCJsonSerialized as b, type StandardRPCCustomJsonSerializer as c, type StandardRPCJsonSerializerOptions as d, StandardRPCJsonSerializer as e, type StandardRPCLinkOptions as f, StandardRPCLink as g, type StandardRPCLinkCodecOptions as h, StandardRPCLinkCodec as i, StandardRPCSerializer as j };
@@ -1,23 +1,32 @@
1
1
  import { toArray, intercept, isObject, value, isAsyncIteratorObject, stringifyJSON } from '@orpc/shared';
2
2
  import { mergeStandardHeaders, ErrorEvent } from '@orpc/standard-server';
3
- import { C as COMMON_ORPC_ERROR_DEFS, b as isORPCErrorStatus, O as ORPCError, m as mapEventIterator, t as toORPCError } from './client.jKEwIsRd.mjs';
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.CRWEpqLB.mjs';
4
4
 
5
- class InvalidEventIteratorRetryResponse extends Error {
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
+ }
6
15
  }
16
+
7
17
  class StandardLink {
8
18
  constructor(codec, sender, options = {}) {
9
19
  this.codec = codec;
10
20
  this.sender = sender;
11
- for (const plugin of toArray(options.plugins)) {
12
- plugin.init?.(options);
13
- }
21
+ const plugin = new CompositeStandardLinkPlugin(options.plugins);
22
+ plugin.init(options);
14
23
  this.interceptors = toArray(options.interceptors);
15
24
  this.clientInterceptors = toArray(options.clientInterceptors);
16
25
  }
17
26
  interceptors;
18
27
  clientInterceptors;
19
28
  call(path, input, options) {
20
- return intercept(this.interceptors, { path, input, options }, async ({ path: path2, input: input2, options: options2 }) => {
29
+ return intercept(this.interceptors, { ...options, path, input }, async ({ path: path2, input: input2, ...options2 }) => {
21
30
  const output = await this.#call(path2, input2, options2);
22
31
  return output;
23
32
  });
@@ -26,8 +35,8 @@ class StandardLink {
26
35
  const request = await this.codec.encode(path, input, options);
27
36
  const response = await intercept(
28
37
  this.clientInterceptors,
29
- { request },
30
- ({ request: request2 }) => this.sender.call(request2, options, path, input)
38
+ { ...options, input, path, request },
39
+ ({ input: input2, path: path2, request: request2, ...options2 }) => this.sender.call(request2, options2, path2, input2)
31
40
  );
32
41
  const output = await this.codec.decode(response, options, path, input);
33
42
  return output;
@@ -205,7 +214,8 @@ class StandardRPCLinkCodec {
205
214
  const expectedMethod = await value(this.expectedMethod, options, path, input);
206
215
  let headers = await value(this.headers, options, path, input);
207
216
  const baseUrl = await value(this.baseUrl, options, path, input);
208
- const url = new URL(`${baseUrl.toString().replace(/\/$/, "")}${toHttpPath(path)}`);
217
+ const url = new URL(baseUrl);
218
+ url.pathname = `${url.pathname.replace(/\/$/, "")}${toHttpPath(path)}`;
209
219
  if (options.lastEventId !== void 0) {
210
220
  headers = mergeStandardHeaders(headers, { "last-event-id": options.lastEventId });
211
221
  }
@@ -252,12 +262,12 @@ class StandardRPCLinkCodec {
252
262
  }
253
263
  })();
254
264
  if (!isOk) {
255
- if (ORPCError.isValidJSON(deserialized)) {
256
- throw ORPCError.fromJSON(deserialized);
265
+ if (isORPCErrorJson(deserialized)) {
266
+ throw createORPCErrorFromJson(deserialized);
257
267
  }
258
268
  throw new ORPCError(getMalformedResponseErrorCode(response.status), {
259
269
  status: response.status,
260
- data: deserialized
270
+ data: { ...response, body: deserialized }
261
271
  });
262
272
  }
263
273
  return deserialized;
@@ -307,8 +317,8 @@ class StandardRPCSerializer {
307
317
  return e;
308
318
  }
309
319
  const deserialized = this.#deserialize(e.data);
310
- if (ORPCError.isValidJSON(deserialized)) {
311
- return ORPCError.fromJSON(deserialized, { cause: e });
320
+ if (isORPCErrorJson(deserialized)) {
321
+ return createORPCErrorFromJson(deserialized, { cause: e });
312
322
  }
313
323
  return new ErrorEvent({
314
324
  data: deserialized,
@@ -333,4 +343,13 @@ class StandardRPCSerializer {
333
343
  }
334
344
  }
335
345
 
336
- export { InvalidEventIteratorRetryResponse as I, StandardLink as S, STANDARD_RPC_JSON_SERIALIZER_BUILT_IN_TYPES as a, StandardRPCJsonSerializer as b, StandardRPCLinkCodec as c, StandardRPCSerializer as d, getMalformedResponseErrorCode as g, toHttpPath as t };
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 };