@orpc/client 0.0.0-next.a4ecb29 → 0.0.0-next.a6dec3e

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,12 +1,73 @@
1
- import { C as ClientPlugin, S as StandardLinkOptions } from '../shared/client.DrOAzyMB.mjs';
2
- export { a as CompositeClientPlugin } from '../shared/client.DrOAzyMB.mjs';
3
1
  import { Value } from '@orpc/shared';
4
- import { C as ClientOptionsOut, a as ClientContext } from '../shared/client.CupM8eRP.mjs';
5
- import '@orpc/standard-server';
2
+ import { StandardHeaders, StandardRequest } from '@orpc/standard-server';
3
+ import { S as StandardLinkClientInterceptorOptions, a as StandardLinkPlugin, b as StandardLinkOptions, c as StandardLinkInterceptorOptions } from '../shared/client.Bt2hFtM_.mjs';
4
+ import { a as ClientContext } from '../shared/client.CipPQkhk.mjs';
6
5
 
7
- interface ClientRetryPluginAttemptOptions {
8
- eventIteratorLastRetry: number | undefined;
9
- eventIteratorLastEventId: string | undefined;
6
+ interface BatchLinkPluginGroup<T extends ClientContext> {
7
+ condition(options: StandardLinkClientInterceptorOptions<T>): boolean;
8
+ context: T;
9
+ path?: readonly string[];
10
+ input?: unknown;
11
+ }
12
+ interface BatchLinkPluginOptions<T extends ClientContext> {
13
+ groups: readonly [BatchLinkPluginGroup<T>, ...BatchLinkPluginGroup<T>[]];
14
+ /**
15
+ * The maximum number of requests in the batch.
16
+ *
17
+ * @default 10
18
+ */
19
+ maxSize?: Value<number, [readonly [StandardLinkClientInterceptorOptions<T>, ...StandardLinkClientInterceptorOptions<T>[]]]>;
20
+ /**
21
+ * Defines the URL to use for the batch request.
22
+ *
23
+ * @default the URL of the first request in the batch + '/__batch__'
24
+ */
25
+ url?: Value<string | URL, [readonly [StandardLinkClientInterceptorOptions<T>, ...StandardLinkClientInterceptorOptions<T>[]]]>;
26
+ /**
27
+ * The maximum length of the URL.
28
+ *
29
+ * @default 2083
30
+ */
31
+ maxUrlLength?: Value<number, [readonly [StandardLinkClientInterceptorOptions<T>, ...StandardLinkClientInterceptorOptions<T>[]]]>;
32
+ /**
33
+ * Defines the HTTP headers to use for the batch request.
34
+ *
35
+ * @default The same headers of all requests in the batch
36
+ */
37
+ headers?: Value<StandardHeaders, [readonly [StandardLinkClientInterceptorOptions<T>, ...StandardLinkClientInterceptorOptions<T>[]]]>;
38
+ /**
39
+ * Map the batch request items before sending them.
40
+ *
41
+ * @default Removes headers that are duplicated in the batch headers.
42
+ */
43
+ mapRequestItem?: (options: StandardLinkClientInterceptorOptions<T> & {
44
+ batchUrl: URL;
45
+ batchHeaders: StandardHeaders;
46
+ }) => StandardRequest;
47
+ /**
48
+ * Exclude a request from the batch.
49
+ *
50
+ * @default () => false
51
+ */
52
+ exclude?: (options: StandardLinkClientInterceptorOptions<T>) => boolean;
53
+ }
54
+ declare class BatchLinkPlugin<T extends ClientContext> implements StandardLinkPlugin<T> {
55
+ #private;
56
+ private readonly groups;
57
+ private readonly maxSize;
58
+ private readonly batchUrl;
59
+ private readonly maxUrlLength;
60
+ private readonly batchHeaders;
61
+ private readonly mapRequestItem;
62
+ private readonly exclude;
63
+ private pending;
64
+ order: number;
65
+ constructor(options: BatchLinkPluginOptions<T>);
66
+ init(options: StandardLinkOptions<T>): void;
67
+ }
68
+
69
+ interface ClientRetryPluginAttemptOptions<T extends ClientContext> extends StandardLinkInterceptorOptions<T> {
70
+ lastEventRetry: number | undefined;
10
71
  attemptIndex: number;
11
72
  error: unknown;
12
73
  }
@@ -17,40 +78,30 @@ interface ClientRetryPluginContext {
17
78
  *
18
79
  * @default 0
19
80
  */
20
- retry?: number;
81
+ retry?: Value<number, [StandardLinkInterceptorOptions<ClientRetryPluginContext>]>;
21
82
  /**
22
83
  * Delay (in ms) before retrying.
23
84
  *
24
- * @default (o) => o.eventIteratorLastRetry ?? 2000
85
+ * @default (o) => o.lastEventRetry ?? 2000
25
86
  */
26
- retryDelay?: Value<number, [
27
- attemptOptions: ClientRetryPluginAttemptOptions,
28
- clientOptions: ClientOptionsOut<ClientRetryPluginContext>,
29
- path: readonly string[],
30
- input: unknown
31
- ]>;
87
+ retryDelay?: Value<number, [ClientRetryPluginAttemptOptions<ClientRetryPluginContext>]>;
32
88
  /**
33
89
  * Determine should retry or not.
34
90
  *
35
91
  * @default true
36
92
  */
37
- shouldRetry?: Value<boolean, [
38
- attemptOptions: ClientRetryPluginAttemptOptions,
39
- clientOptions: ClientOptionsOut<ClientRetryPluginContext>,
40
- path: readonly string[],
41
- input: unknown
42
- ]>;
93
+ shouldRetry?: Value<boolean, [ClientRetryPluginAttemptOptions<ClientRetryPluginContext>]>;
43
94
  /**
44
95
  * The hook called when retrying, and return the unsubscribe function.
45
96
  */
46
- onRetry?: (options: ClientRetryPluginAttemptOptions, clientOptions: ClientOptionsOut<ClientRetryPluginContext>, path: readonly string[], input: unknown) => void | (() => void);
97
+ onRetry?: (options: ClientRetryPluginAttemptOptions<ClientRetryPluginContext>) => void | (() => void);
47
98
  }
48
99
  declare class ClientRetryPluginInvalidEventIteratorRetryResponse extends Error {
49
100
  }
50
101
  interface ClientRetryPluginOptions {
51
102
  default?: ClientRetryPluginContext;
52
103
  }
53
- declare class ClientRetryPlugin<T extends ClientContext & ClientRetryPluginContext> implements ClientPlugin<T> {
104
+ declare class ClientRetryPlugin<T extends ClientRetryPluginContext> implements StandardLinkPlugin<T> {
54
105
  private readonly defaultRetry;
55
106
  private readonly defaultRetryDelay;
56
107
  private readonly defaultShouldRetry;
@@ -59,4 +110,34 @@ declare class ClientRetryPlugin<T extends ClientContext & ClientRetryPluginConte
59
110
  init(options: StandardLinkOptions<T>): void;
60
111
  }
61
112
 
62
- export { ClientPlugin, ClientRetryPlugin, type ClientRetryPluginAttemptOptions, type ClientRetryPluginContext, ClientRetryPluginInvalidEventIteratorRetryResponse, type ClientRetryPluginOptions };
113
+ interface SimpleCsrfProtectionLinkPluginOptions<T extends ClientContext> {
114
+ /**
115
+ * The name of the header to check.
116
+ *
117
+ * @default 'x-csrf-token'
118
+ */
119
+ headerName?: Value<string, [options: StandardLinkClientInterceptorOptions<T>]>;
120
+ /**
121
+ * The value of the header to check.
122
+ *
123
+ * @default 'orpc'
124
+ *
125
+ */
126
+ headerValue?: Value<string, [options: StandardLinkClientInterceptorOptions<T>]>;
127
+ /**
128
+ * Exclude a procedure from the plugin.
129
+ *
130
+ * @default false
131
+ */
132
+ exclude?: Value<boolean, [options: StandardLinkClientInterceptorOptions<T>]>;
133
+ }
134
+ declare class SimpleCsrfProtectionLinkPlugin<T extends ClientContext> implements StandardLinkPlugin<T> {
135
+ private readonly headerName;
136
+ private readonly headerValue;
137
+ private readonly exclude;
138
+ constructor(options?: SimpleCsrfProtectionLinkPluginOptions<T>);
139
+ order: number;
140
+ init(options: StandardLinkOptions<T>): void;
141
+ }
142
+
143
+ export { BatchLinkPlugin, type BatchLinkPluginGroup, type BatchLinkPluginOptions, ClientRetryPlugin, type ClientRetryPluginAttemptOptions, type ClientRetryPluginContext, ClientRetryPluginInvalidEventIteratorRetryResponse, type ClientRetryPluginOptions, SimpleCsrfProtectionLinkPlugin, type SimpleCsrfProtectionLinkPluginOptions };
@@ -1,12 +1,73 @@
1
- import { C as ClientPlugin, S as StandardLinkOptions } from '../shared/client.aGal-uGY.js';
2
- export { a as CompositeClientPlugin } from '../shared/client.aGal-uGY.js';
3
1
  import { Value } from '@orpc/shared';
4
- import { C as ClientOptionsOut, a as ClientContext } from '../shared/client.CupM8eRP.js';
5
- import '@orpc/standard-server';
2
+ import { StandardHeaders, StandardRequest } from '@orpc/standard-server';
3
+ import { S as StandardLinkClientInterceptorOptions, a as StandardLinkPlugin, b as StandardLinkOptions, c as StandardLinkInterceptorOptions } from '../shared/client.FvDtk0Vr.js';
4
+ import { a as ClientContext } from '../shared/client.CipPQkhk.js';
6
5
 
7
- interface ClientRetryPluginAttemptOptions {
8
- eventIteratorLastRetry: number | undefined;
9
- eventIteratorLastEventId: string | undefined;
6
+ interface BatchLinkPluginGroup<T extends ClientContext> {
7
+ condition(options: StandardLinkClientInterceptorOptions<T>): boolean;
8
+ context: T;
9
+ path?: readonly string[];
10
+ input?: unknown;
11
+ }
12
+ interface BatchLinkPluginOptions<T extends ClientContext> {
13
+ groups: readonly [BatchLinkPluginGroup<T>, ...BatchLinkPluginGroup<T>[]];
14
+ /**
15
+ * The maximum number of requests in the batch.
16
+ *
17
+ * @default 10
18
+ */
19
+ maxSize?: Value<number, [readonly [StandardLinkClientInterceptorOptions<T>, ...StandardLinkClientInterceptorOptions<T>[]]]>;
20
+ /**
21
+ * Defines the URL to use for the batch request.
22
+ *
23
+ * @default the URL of the first request in the batch + '/__batch__'
24
+ */
25
+ url?: Value<string | URL, [readonly [StandardLinkClientInterceptorOptions<T>, ...StandardLinkClientInterceptorOptions<T>[]]]>;
26
+ /**
27
+ * The maximum length of the URL.
28
+ *
29
+ * @default 2083
30
+ */
31
+ maxUrlLength?: Value<number, [readonly [StandardLinkClientInterceptorOptions<T>, ...StandardLinkClientInterceptorOptions<T>[]]]>;
32
+ /**
33
+ * Defines the HTTP headers to use for the batch request.
34
+ *
35
+ * @default The same headers of all requests in the batch
36
+ */
37
+ headers?: Value<StandardHeaders, [readonly [StandardLinkClientInterceptorOptions<T>, ...StandardLinkClientInterceptorOptions<T>[]]]>;
38
+ /**
39
+ * Map the batch request items before sending them.
40
+ *
41
+ * @default Removes headers that are duplicated in the batch headers.
42
+ */
43
+ mapRequestItem?: (options: StandardLinkClientInterceptorOptions<T> & {
44
+ batchUrl: URL;
45
+ batchHeaders: StandardHeaders;
46
+ }) => StandardRequest;
47
+ /**
48
+ * Exclude a request from the batch.
49
+ *
50
+ * @default () => false
51
+ */
52
+ exclude?: (options: StandardLinkClientInterceptorOptions<T>) => boolean;
53
+ }
54
+ declare class BatchLinkPlugin<T extends ClientContext> implements StandardLinkPlugin<T> {
55
+ #private;
56
+ private readonly groups;
57
+ private readonly maxSize;
58
+ private readonly batchUrl;
59
+ private readonly maxUrlLength;
60
+ private readonly batchHeaders;
61
+ private readonly mapRequestItem;
62
+ private readonly exclude;
63
+ private pending;
64
+ order: number;
65
+ constructor(options: BatchLinkPluginOptions<T>);
66
+ init(options: StandardLinkOptions<T>): void;
67
+ }
68
+
69
+ interface ClientRetryPluginAttemptOptions<T extends ClientContext> extends StandardLinkInterceptorOptions<T> {
70
+ lastEventRetry: number | undefined;
10
71
  attemptIndex: number;
11
72
  error: unknown;
12
73
  }
@@ -17,40 +78,30 @@ interface ClientRetryPluginContext {
17
78
  *
18
79
  * @default 0
19
80
  */
20
- retry?: number;
81
+ retry?: Value<number, [StandardLinkInterceptorOptions<ClientRetryPluginContext>]>;
21
82
  /**
22
83
  * Delay (in ms) before retrying.
23
84
  *
24
- * @default (o) => o.eventIteratorLastRetry ?? 2000
85
+ * @default (o) => o.lastEventRetry ?? 2000
25
86
  */
26
- retryDelay?: Value<number, [
27
- attemptOptions: ClientRetryPluginAttemptOptions,
28
- clientOptions: ClientOptionsOut<ClientRetryPluginContext>,
29
- path: readonly string[],
30
- input: unknown
31
- ]>;
87
+ retryDelay?: Value<number, [ClientRetryPluginAttemptOptions<ClientRetryPluginContext>]>;
32
88
  /**
33
89
  * Determine should retry or not.
34
90
  *
35
91
  * @default true
36
92
  */
37
- shouldRetry?: Value<boolean, [
38
- attemptOptions: ClientRetryPluginAttemptOptions,
39
- clientOptions: ClientOptionsOut<ClientRetryPluginContext>,
40
- path: readonly string[],
41
- input: unknown
42
- ]>;
93
+ shouldRetry?: Value<boolean, [ClientRetryPluginAttemptOptions<ClientRetryPluginContext>]>;
43
94
  /**
44
95
  * The hook called when retrying, and return the unsubscribe function.
45
96
  */
46
- onRetry?: (options: ClientRetryPluginAttemptOptions, clientOptions: ClientOptionsOut<ClientRetryPluginContext>, path: readonly string[], input: unknown) => void | (() => void);
97
+ onRetry?: (options: ClientRetryPluginAttemptOptions<ClientRetryPluginContext>) => void | (() => void);
47
98
  }
48
99
  declare class ClientRetryPluginInvalidEventIteratorRetryResponse extends Error {
49
100
  }
50
101
  interface ClientRetryPluginOptions {
51
102
  default?: ClientRetryPluginContext;
52
103
  }
53
- declare class ClientRetryPlugin<T extends ClientContext & ClientRetryPluginContext> implements ClientPlugin<T> {
104
+ declare class ClientRetryPlugin<T extends ClientRetryPluginContext> implements StandardLinkPlugin<T> {
54
105
  private readonly defaultRetry;
55
106
  private readonly defaultRetryDelay;
56
107
  private readonly defaultShouldRetry;
@@ -59,4 +110,34 @@ declare class ClientRetryPlugin<T extends ClientContext & ClientRetryPluginConte
59
110
  init(options: StandardLinkOptions<T>): void;
60
111
  }
61
112
 
62
- export { ClientPlugin, ClientRetryPlugin, type ClientRetryPluginAttemptOptions, type ClientRetryPluginContext, ClientRetryPluginInvalidEventIteratorRetryResponse, type ClientRetryPluginOptions };
113
+ interface SimpleCsrfProtectionLinkPluginOptions<T extends ClientContext> {
114
+ /**
115
+ * The name of the header to check.
116
+ *
117
+ * @default 'x-csrf-token'
118
+ */
119
+ headerName?: Value<string, [options: StandardLinkClientInterceptorOptions<T>]>;
120
+ /**
121
+ * The value of the header to check.
122
+ *
123
+ * @default 'orpc'
124
+ *
125
+ */
126
+ headerValue?: Value<string, [options: StandardLinkClientInterceptorOptions<T>]>;
127
+ /**
128
+ * Exclude a procedure from the plugin.
129
+ *
130
+ * @default false
131
+ */
132
+ exclude?: Value<boolean, [options: StandardLinkClientInterceptorOptions<T>]>;
133
+ }
134
+ declare class SimpleCsrfProtectionLinkPlugin<T extends ClientContext> implements StandardLinkPlugin<T> {
135
+ private readonly headerName;
136
+ private readonly headerValue;
137
+ private readonly exclude;
138
+ constructor(options?: SimpleCsrfProtectionLinkPluginOptions<T>);
139
+ order: number;
140
+ init(options: StandardLinkOptions<T>): void;
141
+ }
142
+
143
+ export { BatchLinkPlugin, type BatchLinkPluginGroup, type BatchLinkPluginOptions, ClientRetryPlugin, type ClientRetryPluginAttemptOptions, type ClientRetryPluginContext, ClientRetryPluginInvalidEventIteratorRetryResponse, type ClientRetryPluginOptions, SimpleCsrfProtectionLinkPlugin, type SimpleCsrfProtectionLinkPluginOptions };
@@ -1,7 +1,152 @@
1
- export { C as CompositeClientPlugin } from '../shared/client.CvnV7_uV.mjs';
2
- import { isAsyncIteratorObject, value } from '@orpc/shared';
1
+ import { isAsyncIteratorObject, value, splitInHalf, toArray } from '@orpc/shared';
2
+ import { toBatchRequest, parseBatchResponse } from '@orpc/standard-server/batch';
3
3
  import { getEventMeta } from '@orpc/standard-server';
4
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
+
5
150
  class ClientRetryPluginInvalidEventIteratorRetryResponse extends Error {
6
151
  }
7
152
  class ClientRetryPlugin {
@@ -11,72 +156,57 @@ class ClientRetryPlugin {
11
156
  defaultOnRetry;
12
157
  constructor(options = {}) {
13
158
  this.defaultRetry = options.default?.retry ?? 0;
14
- this.defaultRetryDelay = options.default?.retryDelay ?? ((o) => o.eventIteratorLastRetry ?? 2e3);
159
+ this.defaultRetryDelay = options.default?.retryDelay ?? ((o) => o.lastEventRetry ?? 2e3);
15
160
  this.defaultShouldRetry = options.default?.shouldRetry ?? true;
16
161
  this.defaultOnRetry = options.default?.onRetry;
17
162
  }
18
163
  init(options) {
19
164
  options.interceptors ??= [];
20
165
  options.interceptors.push(async (interceptorOptions) => {
21
- const maxAttempts = interceptorOptions.options.context.retry ?? this.defaultRetry;
22
- const retryDelay = interceptorOptions.options.context.retryDelay ?? this.defaultRetryDelay;
23
- const shouldRetry = interceptorOptions.options.context.shouldRetry ?? this.defaultShouldRetry;
24
- 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;
25
173
  if (maxAttempts <= 0) {
26
174
  return interceptorOptions.next();
27
175
  }
28
- let eventIteratorLastEventId = interceptorOptions.options.lastEventId;
29
- let eventIteratorLastRetry;
176
+ let lastEventId = interceptorOptions.lastEventId;
177
+ let lastEventRetry;
30
178
  let unsubscribe;
31
179
  let attemptIndex = 0;
32
180
  const next = async (initial) => {
33
181
  let current = initial;
34
182
  while (true) {
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
- eventIteratorLastEventId,
43
- eventIteratorLastRetry
192
+ lastEventRetry
44
193
  };
45
194
  const shouldRetryBool = await value(
46
195
  shouldRetry,
47
- attemptOptions,
48
- interceptorOptions.options,
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
- interceptorOptions.options,
58
- interceptorOptions.path,
59
- interceptorOptions.input
60
- );
61
- const retryDelayMs = await value(
62
- retryDelay,
63
- attemptOptions,
64
- interceptorOptions.options,
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 newClientOptions = { ...interceptorOptions.options, lastEventId: eventIteratorLastEventId };
73
- const output2 = await interceptorOptions.next({
74
- ...interceptorOptions,
75
- options: newClientOptions
76
- });
77
- return output2;
207
+ return await interceptorOptions.next(updatedInterceptorOptions);
78
208
  } catch (error) {
79
- if (interceptorOptions.options.signal?.aborted === true) {
209
+ if (updatedInterceptorOptions.signal?.aborted === true) {
80
210
  throw error;
81
211
  }
82
212
  current = { error };
@@ -97,16 +227,16 @@ class ClientRetryPlugin {
97
227
  try {
98
228
  const item = await current.next();
99
229
  const meta = getEventMeta(item.value);
100
- eventIteratorLastEventId = meta?.id ?? eventIteratorLastEventId;
101
- eventIteratorLastRetry = meta?.retry ?? eventIteratorLastRetry;
230
+ lastEventId = meta?.id ?? lastEventId;
231
+ lastEventRetry = meta?.retry ?? lastEventRetry;
102
232
  if (item.done) {
103
233
  return item.value;
104
234
  }
105
235
  yield item.value;
106
236
  } catch (error) {
107
237
  const meta = getEventMeta(error);
108
- eventIteratorLastEventId = meta?.id ?? eventIteratorLastEventId;
109
- eventIteratorLastRetry = meta?.retry ?? eventIteratorLastRetry;
238
+ lastEventId = meta?.id ?? lastEventId;
239
+ lastEventRetry = meta?.retry ?? lastEventRetry;
110
240
  const maybeEventIterator = await next({ error });
111
241
  if (!isAsyncIteratorObject(maybeEventIterator)) {
112
242
  throw new ClientRetryPluginInvalidEventIteratorRetryResponse(
@@ -124,4 +254,37 @@ class ClientRetryPlugin {
124
254
  }
125
255
  }
126
256
 
127
- 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 };
@@ -0,0 +1,45 @@
1
+ import { Interceptor, ThrowableError } from '@orpc/shared';
2
+ import { StandardRequest, StandardLazyResponse } from '@orpc/standard-server';
3
+ import { a as ClientContext, b as ClientOptions, C as ClientLink } from './client.CipPQkhk.mjs';
4
+
5
+ interface StandardLinkCodec<T extends ClientContext> {
6
+ encode(path: readonly string[], input: unknown, options: ClientOptions<T>): Promise<StandardRequest>;
7
+ decode(response: StandardLazyResponse, options: ClientOptions<T>, path: readonly string[], input: unknown): Promise<unknown>;
8
+ }
9
+ interface StandardLinkClient<T extends ClientContext> {
10
+ call(request: StandardRequest, options: ClientOptions<T>, path: readonly string[], input: unknown): Promise<StandardLazyResponse>;
11
+ }
12
+
13
+ interface StandardLinkPlugin<T extends ClientContext> {
14
+ order?: number;
15
+ init?(options: StandardLinkOptions<T>): void;
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
+ }
30
+ interface StandardLinkOptions<T extends ClientContext> {
31
+ interceptors?: Interceptor<StandardLinkInterceptorOptions<T>, unknown, ThrowableError>[];
32
+ clientInterceptors?: Interceptor<StandardLinkClientInterceptorOptions<T>, StandardLazyResponse, ThrowableError>[];
33
+ plugins?: StandardLinkPlugin<T>[];
34
+ }
35
+ declare class StandardLink<T extends ClientContext> implements ClientLink<T> {
36
+ #private;
37
+ readonly codec: StandardLinkCodec<T>;
38
+ readonly sender: StandardLinkClient<T>;
39
+ private readonly interceptors;
40
+ private readonly clientInterceptors;
41
+ constructor(codec: StandardLinkCodec<T>, sender: StandardLinkClient<T>, options?: StandardLinkOptions<T>);
42
+ call(path: readonly string[], input: unknown, options: ClientOptions<T>): Promise<unknown>;
43
+ }
44
+
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 };