@orpc/standard-server 1.0.0-beta.4 → 1.0.0-beta.6

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 CHANGED
@@ -53,6 +53,7 @@ You can find the full documentation [here](https://orpc.unnoq.com).
53
53
  - [@orpc/contract](https://www.npmjs.com/package/@orpc/contract): Build your API contract.
54
54
  - [@orpc/server](https://www.npmjs.com/package/@orpc/server): Build your API or implement API contract.
55
55
  - [@orpc/client](https://www.npmjs.com/package/@orpc/client): Consume your API on the client with type-safety.
56
+ - [@orpc/react](https://www.npmjs.com/package/@orpc/react): Utilities for integrating oRPC with React and React Server Actions.
56
57
  - [@orpc/react-query](https://www.npmjs.com/package/@orpc/react-query): Integration with [React Query](https://tanstack.com/query/latest/docs/framework/react/overview).
57
58
  - [@orpc/vue-query](https://www.npmjs.com/package/@orpc/vue-query): Integration with [Vue Query](https://tanstack.com/query/latest/docs/framework/vue/overview).
58
59
  - [@orpc/solid-query](https://www.npmjs.com/package/@orpc/solid-query): Integration with [Solid Query](https://tanstack.com/query/latest/docs/framework/solid/overview).
@@ -0,0 +1,23 @@
1
+ import { S as StandardHeaders, b as StandardRequest, d as StandardResponse } from '../shared/standard-server.R_NaHlxw.mjs';
2
+
3
+ interface ToBatchRequestOptions {
4
+ url: URL;
5
+ method: 'GET' | 'POST';
6
+ headers: StandardHeaders;
7
+ requests: readonly StandardRequest[];
8
+ }
9
+ declare function toBatchRequest(options: ToBatchRequestOptions): StandardRequest;
10
+ declare function parseBatchRequest(request: StandardRequest): StandardRequest[];
11
+
12
+ interface BatchResponseBodyItem extends StandardResponse {
13
+ index: number;
14
+ }
15
+ interface ToBatchResponseOptions extends StandardResponse {
16
+ body: AsyncIteratorObject<BatchResponseBodyItem>;
17
+ }
18
+ declare function toBatchResponse(options: ToBatchResponseOptions): StandardResponse;
19
+ declare function parseBatchResponse(response: StandardResponse): AsyncGenerator<BatchResponseBodyItem>;
20
+
21
+ declare function toBatchAbortSignal(signals: readonly (AbortSignal | undefined)[]): AbortSignal;
22
+
23
+ export { type BatchResponseBodyItem, type ToBatchRequestOptions, type ToBatchResponseOptions, parseBatchRequest, parseBatchResponse, toBatchAbortSignal, toBatchRequest, toBatchResponse };
@@ -0,0 +1,23 @@
1
+ import { S as StandardHeaders, b as StandardRequest, d as StandardResponse } from '../shared/standard-server.R_NaHlxw.js';
2
+
3
+ interface ToBatchRequestOptions {
4
+ url: URL;
5
+ method: 'GET' | 'POST';
6
+ headers: StandardHeaders;
7
+ requests: readonly StandardRequest[];
8
+ }
9
+ declare function toBatchRequest(options: ToBatchRequestOptions): StandardRequest;
10
+ declare function parseBatchRequest(request: StandardRequest): StandardRequest[];
11
+
12
+ interface BatchResponseBodyItem extends StandardResponse {
13
+ index: number;
14
+ }
15
+ interface ToBatchResponseOptions extends StandardResponse {
16
+ body: AsyncIteratorObject<BatchResponseBodyItem>;
17
+ }
18
+ declare function toBatchResponse(options: ToBatchResponseOptions): StandardResponse;
19
+ declare function parseBatchResponse(response: StandardResponse): AsyncGenerator<BatchResponseBodyItem>;
20
+
21
+ declare function toBatchAbortSignal(signals: readonly (AbortSignal | undefined)[]): AbortSignal;
22
+
23
+ export { type BatchResponseBodyItem, type ToBatchRequestOptions, type ToBatchResponseOptions, parseBatchRequest, parseBatchResponse, toBatchAbortSignal, toBatchRequest, toBatchResponse };
@@ -0,0 +1,85 @@
1
+ import { stringifyJSON, parseEmptyableJSON, isAsyncIteratorObject, isObject } from '@orpc/shared';
2
+
3
+ function toBatchAbortSignal(signals) {
4
+ const realSignals = signals.filter((signal) => signal !== void 0);
5
+ const controller = new AbortController();
6
+ const abortedSignals = realSignals.filter((signal) => signal.aborted);
7
+ if (abortedSignals.length && abortedSignals.length === realSignals.length) {
8
+ controller.abort();
9
+ }
10
+ for (const signal of realSignals) {
11
+ signal.addEventListener("abort", () => {
12
+ abortedSignals.push(signal);
13
+ if (abortedSignals.length === realSignals.length) {
14
+ controller.abort();
15
+ }
16
+ });
17
+ }
18
+ return controller.signal;
19
+ }
20
+
21
+ function toBatchRequest(options) {
22
+ const url = new URL(options.url);
23
+ let body;
24
+ const batchRequestItems = options.requests.map((request) => ({
25
+ body: request.body,
26
+ headers: request.headers,
27
+ method: request.method,
28
+ url: request.url
29
+ }));
30
+ if (options.method === "GET") {
31
+ url.searchParams.append("batch", stringifyJSON(batchRequestItems));
32
+ } else if (options.method === "POST") {
33
+ body = batchRequestItems;
34
+ }
35
+ return {
36
+ method: options.method,
37
+ url,
38
+ headers: options.headers,
39
+ body,
40
+ signal: toBatchAbortSignal(options.requests.map((request) => request.signal))
41
+ };
42
+ }
43
+ function parseBatchRequest(request) {
44
+ const items = request.method === "GET" ? parseEmptyableJSON(request.url.searchParams.getAll("batch").at(-1)) : request.body;
45
+ if (!Array.isArray(items)) {
46
+ throw new TypeError("Invalid batch request");
47
+ }
48
+ return items.map((item) => {
49
+ return {
50
+ method: item.method,
51
+ url: new URL(item.url),
52
+ headers: item.headers,
53
+ body: item.body,
54
+ signal: request.signal
55
+ };
56
+ });
57
+ }
58
+
59
+ function toBatchResponse(options) {
60
+ return options;
61
+ }
62
+ function parseBatchResponse(response) {
63
+ const body = response.body;
64
+ if (!isAsyncIteratorObject(body)) {
65
+ throw new TypeError("Invalid batch response", {
66
+ cause: response
67
+ });
68
+ }
69
+ return async function* () {
70
+ try {
71
+ for await (const item of body) {
72
+ if (!isObject(item) || !("index" in item) || !("status" in item) || !("headers" in item)) {
73
+ throw new TypeError("Invalid batch response", {
74
+ cause: item
75
+ });
76
+ }
77
+ yield item;
78
+ }
79
+ } finally {
80
+ await body.return?.();
81
+ }
82
+ }();
83
+ }
84
+
85
+ export { parseBatchRequest, parseBatchResponse, toBatchAbortSignal, toBatchRequest, toBatchResponse };
package/dist/index.d.mts CHANGED
@@ -1,4 +1,5 @@
1
- export { contentDisposition, parse as parseContentDisposition } from '@tinyhttp/content-disposition';
1
+ import { S as StandardHeaders } from './shared/standard-server.R_NaHlxw.mjs';
2
+ export { a as StandardBody, c as StandardLazyRequest, e as StandardLazyResponse, b as StandardRequest, d as StandardResponse } from './shared/standard-server.R_NaHlxw.mjs';
2
3
 
3
4
  interface EventMessage {
4
5
  event: string | undefined;
@@ -51,53 +52,8 @@ type EventMeta = Partial<Pick<EventMessage, 'retry' | 'id' | 'comments'>>;
51
52
  declare function withEventMeta<T extends object>(container: T, meta: EventMeta): T;
52
53
  declare function getEventMeta(container: unknown): EventMeta | undefined;
53
54
 
54
- interface StandardHeaders {
55
- [key: string]: string | string[] | undefined;
56
- }
57
- type StandardBody = undefined | unknown | Blob | URLSearchParams | FormData | AsyncIterator<unknown | void, unknown | void, undefined>;
58
- interface StandardRequest {
59
- method: string;
60
- url: URL;
61
- headers: StandardHeaders;
62
- /**
63
- * The body has been parsed based on the content-type header.
64
- */
65
- body: StandardBody;
66
- signal: AbortSignal | undefined;
67
- }
68
- interface StandardLazyRequest extends Omit<StandardRequest, 'body'> {
69
- /**
70
- * Can be { adapter: 'fetch', request: Request } | { adapter: 'node', request: IncomingMessage, response: ServerResponse }
71
- */
72
- raw: Record<string, unknown> & {
73
- adapter: string;
74
- };
75
- /**
76
- * The body has been parsed based on the content-type header.
77
- * This method can safely call multiple times (cached).
78
- */
79
- body: () => Promise<StandardBody>;
80
- }
81
- interface StandardResponse {
82
- status: number;
83
- headers: StandardHeaders;
84
- /**
85
- * The body has been parsed based on the content-type header.
86
- */
87
- body: StandardBody;
88
- }
89
- interface StandardLazyResponse extends Omit<StandardResponse, 'body'> {
90
- /**
91
- * Can be { adapter: 'fetch', response: Response }
92
- */
93
- raw: Record<string, unknown> & {
94
- adapter: string;
95
- };
96
- /**
97
- * The body has been parsed based on the content-type header.
98
- * This method can safely call multiple times (cached).
99
- */
100
- body: () => Promise<StandardBody>;
101
- }
55
+ declare function generateContentDisposition(filename: string): string;
56
+ declare function getFilenameFromContentDisposition(contentDisposition: string): string | undefined;
57
+ declare function mergeStandardHeaders(a: StandardHeaders, b: StandardHeaders): StandardHeaders;
102
58
 
103
- export { ErrorEvent, type ErrorEventOptions, EventDecoder, EventDecoderError, type EventDecoderOptions, EventDecoderStream, EventEncoderError, type EventMessage, type EventMeta, type StandardBody, type StandardHeaders, type StandardLazyRequest, type StandardLazyResponse, type StandardRequest, type StandardResponse, assertEventComment, assertEventId, assertEventName, assertEventRetry, decodeEventMessage, encodeEventComments, encodeEventData, encodeEventMessage, getEventMeta, withEventMeta };
59
+ export { ErrorEvent, type ErrorEventOptions, EventDecoder, EventDecoderError, type EventDecoderOptions, EventDecoderStream, EventEncoderError, type EventMessage, type EventMeta, StandardHeaders, assertEventComment, assertEventId, assertEventName, assertEventRetry, decodeEventMessage, encodeEventComments, encodeEventData, encodeEventMessage, generateContentDisposition, getEventMeta, getFilenameFromContentDisposition, mergeStandardHeaders, withEventMeta };
package/dist/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
- export { contentDisposition, parse as parseContentDisposition } from '@tinyhttp/content-disposition';
1
+ import { S as StandardHeaders } from './shared/standard-server.R_NaHlxw.js';
2
+ export { a as StandardBody, c as StandardLazyRequest, e as StandardLazyResponse, b as StandardRequest, d as StandardResponse } from './shared/standard-server.R_NaHlxw.js';
2
3
 
3
4
  interface EventMessage {
4
5
  event: string | undefined;
@@ -51,53 +52,8 @@ type EventMeta = Partial<Pick<EventMessage, 'retry' | 'id' | 'comments'>>;
51
52
  declare function withEventMeta<T extends object>(container: T, meta: EventMeta): T;
52
53
  declare function getEventMeta(container: unknown): EventMeta | undefined;
53
54
 
54
- interface StandardHeaders {
55
- [key: string]: string | string[] | undefined;
56
- }
57
- type StandardBody = undefined | unknown | Blob | URLSearchParams | FormData | AsyncIterator<unknown | void, unknown | void, undefined>;
58
- interface StandardRequest {
59
- method: string;
60
- url: URL;
61
- headers: StandardHeaders;
62
- /**
63
- * The body has been parsed based on the content-type header.
64
- */
65
- body: StandardBody;
66
- signal: AbortSignal | undefined;
67
- }
68
- interface StandardLazyRequest extends Omit<StandardRequest, 'body'> {
69
- /**
70
- * Can be { adapter: 'fetch', request: Request } | { adapter: 'node', request: IncomingMessage, response: ServerResponse }
71
- */
72
- raw: Record<string, unknown> & {
73
- adapter: string;
74
- };
75
- /**
76
- * The body has been parsed based on the content-type header.
77
- * This method can safely call multiple times (cached).
78
- */
79
- body: () => Promise<StandardBody>;
80
- }
81
- interface StandardResponse {
82
- status: number;
83
- headers: StandardHeaders;
84
- /**
85
- * The body has been parsed based on the content-type header.
86
- */
87
- body: StandardBody;
88
- }
89
- interface StandardLazyResponse extends Omit<StandardResponse, 'body'> {
90
- /**
91
- * Can be { adapter: 'fetch', response: Response }
92
- */
93
- raw: Record<string, unknown> & {
94
- adapter: string;
95
- };
96
- /**
97
- * The body has been parsed based on the content-type header.
98
- * This method can safely call multiple times (cached).
99
- */
100
- body: () => Promise<StandardBody>;
101
- }
55
+ declare function generateContentDisposition(filename: string): string;
56
+ declare function getFilenameFromContentDisposition(contentDisposition: string): string | undefined;
57
+ declare function mergeStandardHeaders(a: StandardHeaders, b: StandardHeaders): StandardHeaders;
102
58
 
103
- export { ErrorEvent, type ErrorEventOptions, EventDecoder, EventDecoderError, type EventDecoderOptions, EventDecoderStream, EventEncoderError, type EventMessage, type EventMeta, type StandardBody, type StandardHeaders, type StandardLazyRequest, type StandardLazyResponse, type StandardRequest, type StandardResponse, assertEventComment, assertEventId, assertEventName, assertEventRetry, decodeEventMessage, encodeEventComments, encodeEventData, encodeEventMessage, getEventMeta, withEventMeta };
59
+ export { ErrorEvent, type ErrorEventOptions, EventDecoder, EventDecoderError, type EventDecoderOptions, EventDecoderStream, EventEncoderError, type EventMessage, type EventMeta, StandardHeaders, assertEventComment, assertEventId, assertEventName, assertEventRetry, decodeEventMessage, encodeEventComments, encodeEventData, encodeEventMessage, generateContentDisposition, getEventMeta, getFilenameFromContentDisposition, mergeStandardHeaders, withEventMeta };
package/dist/index.mjs CHANGED
@@ -1,5 +1,4 @@
1
- import { isTypescriptObject } from '@orpc/shared';
2
- export { contentDisposition, parse as parseContentDisposition } from '@tinyhttp/content-disposition';
1
+ import { isTypescriptObject, toArray } from '@orpc/shared';
3
2
 
4
3
  class EventEncoderError extends TypeError {
5
4
  }
@@ -183,4 +182,37 @@ function getEventMeta(container) {
183
182
  return isTypescriptObject(container) ? Reflect.get(container, EVENT_SOURCE_META_SYMBOL) : void 0;
184
183
  }
185
184
 
186
- export { ErrorEvent, EventDecoder, EventDecoderError, EventDecoderStream, EventEncoderError, assertEventComment, assertEventId, assertEventName, assertEventRetry, decodeEventMessage, encodeEventComments, encodeEventData, encodeEventMessage, getEventMeta, withEventMeta };
185
+ function generateContentDisposition(filename) {
186
+ const escapedFileName = filename.replace(/"/g, '\\"');
187
+ const encodedFilenameStar = encodeURIComponent(filename).replace(/['()*]/g, (c) => `%${c.charCodeAt(0).toString(16).toUpperCase()}`).replace(/%(7C|60|5E)/g, (str, hex) => String.fromCharCode(Number.parseInt(hex, 16)));
188
+ return `inline; filename="${escapedFileName}"; filename*=utf-8''${encodedFilenameStar}`;
189
+ }
190
+ function getFilenameFromContentDisposition(contentDisposition) {
191
+ const encodedFilenameStarMatch = contentDisposition.match(/filename\*=(UTF-8'')?([^;]*)/i);
192
+ if (encodedFilenameStarMatch && typeof encodedFilenameStarMatch[2] === "string") {
193
+ return decodeURIComponent(encodedFilenameStarMatch[2]);
194
+ }
195
+ const encodedFilenameMatch = contentDisposition.match(/filename="((?:\\"|[^"])*)"/i);
196
+ if (encodedFilenameMatch && typeof encodedFilenameMatch[1] === "string") {
197
+ return encodedFilenameMatch[1].replace(/\\"/g, '"');
198
+ }
199
+ }
200
+ function mergeStandardHeaders(a, b) {
201
+ const merged = { ...a };
202
+ for (const key in b) {
203
+ if (Array.isArray(b[key])) {
204
+ merged[key] = [...toArray(merged[key]), ...b[key]];
205
+ } else if (b[key] !== void 0) {
206
+ if (Array.isArray(merged[key])) {
207
+ merged[key] = [...merged[key], b[key]];
208
+ } else if (merged[key] !== void 0) {
209
+ merged[key] = [merged[key], b[key]];
210
+ } else {
211
+ merged[key] = b[key];
212
+ }
213
+ }
214
+ }
215
+ return merged;
216
+ }
217
+
218
+ export { ErrorEvent, EventDecoder, EventDecoderError, EventDecoderStream, EventEncoderError, assertEventComment, assertEventId, assertEventName, assertEventRetry, decodeEventMessage, encodeEventComments, encodeEventData, encodeEventMessage, generateContentDisposition, getEventMeta, getFilenameFromContentDisposition, mergeStandardHeaders, withEventMeta };
@@ -0,0 +1,38 @@
1
+ interface StandardHeaders {
2
+ [key: string]: string | string[] | undefined;
3
+ }
4
+ type StandardBody = undefined | unknown | Blob | URLSearchParams | FormData | AsyncIterator<unknown | void, unknown | void, undefined>;
5
+ interface StandardRequest {
6
+ method: string;
7
+ url: URL;
8
+ headers: StandardHeaders;
9
+ /**
10
+ * The body has been parsed based on the content-type header.
11
+ */
12
+ body: StandardBody;
13
+ signal: AbortSignal | undefined;
14
+ }
15
+ interface StandardLazyRequest extends Omit<StandardRequest, 'body'> {
16
+ /**
17
+ * The body has been parsed based on the content-type header.
18
+ * This method can safely call multiple times (cached).
19
+ */
20
+ body: () => Promise<StandardBody>;
21
+ }
22
+ interface StandardResponse {
23
+ status: number;
24
+ headers: StandardHeaders;
25
+ /**
26
+ * The body has been parsed based on the content-type header.
27
+ */
28
+ body: StandardBody;
29
+ }
30
+ interface StandardLazyResponse extends Omit<StandardResponse, 'body'> {
31
+ /**
32
+ * The body has been parsed based on the content-type header.
33
+ * This method can safely call multiple times (cached).
34
+ */
35
+ body: () => Promise<StandardBody>;
36
+ }
37
+
38
+ export type { StandardHeaders as S, StandardBody as a, StandardRequest as b, StandardLazyRequest as c, StandardResponse as d, StandardLazyResponse as e };
@@ -0,0 +1,38 @@
1
+ interface StandardHeaders {
2
+ [key: string]: string | string[] | undefined;
3
+ }
4
+ type StandardBody = undefined | unknown | Blob | URLSearchParams | FormData | AsyncIterator<unknown | void, unknown | void, undefined>;
5
+ interface StandardRequest {
6
+ method: string;
7
+ url: URL;
8
+ headers: StandardHeaders;
9
+ /**
10
+ * The body has been parsed based on the content-type header.
11
+ */
12
+ body: StandardBody;
13
+ signal: AbortSignal | undefined;
14
+ }
15
+ interface StandardLazyRequest extends Omit<StandardRequest, 'body'> {
16
+ /**
17
+ * The body has been parsed based on the content-type header.
18
+ * This method can safely call multiple times (cached).
19
+ */
20
+ body: () => Promise<StandardBody>;
21
+ }
22
+ interface StandardResponse {
23
+ status: number;
24
+ headers: StandardHeaders;
25
+ /**
26
+ * The body has been parsed based on the content-type header.
27
+ */
28
+ body: StandardBody;
29
+ }
30
+ interface StandardLazyResponse extends Omit<StandardResponse, 'body'> {
31
+ /**
32
+ * The body has been parsed based on the content-type header.
33
+ * This method can safely call multiple times (cached).
34
+ */
35
+ body: () => Promise<StandardBody>;
36
+ }
37
+
38
+ export type { StandardHeaders as S, StandardBody as a, StandardRequest as b, StandardLazyRequest as c, StandardResponse as d, StandardLazyResponse as e };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@orpc/standard-server",
3
3
  "type": "module",
4
- "version": "1.0.0-beta.4",
4
+ "version": "1.0.0-beta.6",
5
5
  "license": "MIT",
6
6
  "homepage": "https://unnoq.com",
7
7
  "repository": {
@@ -17,14 +17,18 @@
17
17
  "types": "./dist/index.d.mts",
18
18
  "import": "./dist/index.mjs",
19
19
  "default": "./dist/index.mjs"
20
+ },
21
+ "./batch": {
22
+ "types": "./dist/batch/index.d.mts",
23
+ "import": "./dist/batch/index.mjs",
24
+ "default": "./dist/batch/index.mjs"
20
25
  }
21
26
  },
22
27
  "files": [
23
28
  "dist"
24
29
  ],
25
30
  "dependencies": {
26
- "@tinyhttp/content-disposition": "^2.2.2",
27
- "@orpc/shared": "1.0.0-beta.4"
31
+ "@orpc/shared": "1.0.0-beta.6"
28
32
  },
29
33
  "scripts": {
30
34
  "build": "unbuild",