@orpc/standard-server 0.43.0 → 0.45.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.
package/README.md ADDED
@@ -0,0 +1,68 @@
1
+ <div align="center">
2
+ <image align="center" src="https://orpc.unnoq.com/logo.webp" width=280 alt="oRPC logo" />
3
+ </div>
4
+
5
+ <h1></h1>
6
+
7
+ <div align="center">
8
+ <a href="https://codecov.io/gh/unnoq/orpc">
9
+ <img alt="codecov" src="https://codecov.io/gh/unnoq/orpc/branch/main/graph/badge.svg">
10
+ </a>
11
+ <a href="https://www.npmjs.com/package/@orpc/standard-server">
12
+ <img alt="weekly downloads" src="https://img.shields.io/npm/dw/%40orpc%2Fstandard-server?logo=npm" />
13
+ </a>
14
+ <a href="https://github.com/unnoq/orpc/blob/main/LICENSE">
15
+ <img alt="MIT License" src="https://img.shields.io/github/license/unnoq/orpc?logo=open-source-initiative" />
16
+ </a>
17
+ <a href="https://discord.gg/TXEbwRBvQn">
18
+ <img alt="Discord" src="https://img.shields.io/discord/1308966753044398161?color=7389D8&label&logo=discord&logoColor=ffffff" />
19
+ </a>
20
+ </div>
21
+
22
+ <h3 align="center">Typesafe APIs Made Simple 🪄</h3>
23
+
24
+ **oRPC is a powerful combination of RPC and OpenAPI**, makes it easy to build APIs that are end-to-end type-safe and adhere to OpenAPI standards, ensuring a smooth and enjoyable developer experience.
25
+
26
+ ---
27
+
28
+ ## Highlights
29
+
30
+ - **End-to-End Type Safety 🔒**: Ensure complete type safety from inputs to outputs and errors, bridging server and client seamlessly.
31
+ - **First-Class OpenAPI 📄**: Adheres to the OpenAPI standard out of the box, ensuring seamless integration and comprehensive API documentation.
32
+ - **Contract-First Development 📜**: (Optional) Define your API contract upfront and implement it with confidence.
33
+ - **Exceptional Developer Experience ✨**: Enjoy a streamlined workflow with robust typing and clear, in-code documentation.
34
+ - **Multi-Runtime Support 🌍**: Run your code seamlessly on Cloudflare, Deno, Bun, Node.js, and more.
35
+ - **Framework Integrations 🧩**: Supports Tanstack Query (React, Vue), Pinia Colada, and more.
36
+ - **Server Actions ⚡️**: Fully compatible with React Server Actions on Next.js, TanStack Start, and more.
37
+ - **Standard Schema Support 🗂️**: Effortlessly work with Zod, Valibot, ArkType, and others right out of the box.
38
+ - **Fast & Lightweight 💨**: Built on native APIs across all runtimes – optimized for speed and efficiency.
39
+ - **Native Types 📦**: Enjoy built-in support for Date, File, Blob, BigInt, URL and more with no extra setup.
40
+ - **Lazy Router ⏱️**: Improve cold start times with our lazy routing feature.
41
+ - **SSE & Streaming 📡**: Provides SSE and streaming features – perfect for real-time notifications and AI-powered streaming responses.
42
+ - **Reusability 🔄**: Write once and reuse your code across multiple purposes effortlessly.
43
+ - **Extendability 🔌**: Easily enhance oRPC with plugins, middleware, and interceptors.
44
+ - **Reliability 🛡️**: Well-tested, fully TypeScript, production-ready, and MIT licensed for peace of mind.
45
+ - **Simplicity 💡**: Enjoy straightforward, clean code with no hidden magic.
46
+
47
+ ## Documentation
48
+
49
+ You can find the full documentation [here](https://orpc.unnoq.com).
50
+
51
+ ## Packages
52
+
53
+ - [@orpc/contract](https://www.npmjs.com/package/@orpc/contract): Build your API contract.
54
+ - [@orpc/server](https://www.npmjs.com/package/@orpc/server): Build your API or implement API contract.
55
+ - [@orpc/client](https://www.npmjs.com/package/@orpc/client): Consume your API on the client with type-safety.
56
+ - [@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
+ - [@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
+ - [@orpc/vue-colada](https://www.npmjs.com/package/@orpc/vue-colada): Integration with [Pinia Colada](https://pinia-colada.esm.dev/).
59
+ - [@orpc/openapi](https://www.npmjs.com/package/@orpc/openapi): Generate OpenAPI specs and handle OpenAPI requests.
60
+ - [@orpc/zod](https://www.npmjs.com/package/@orpc/zod): More schemas that [Zod](https://zod.dev/) doesn't support yet.
61
+
62
+ ## `@orpc/standard-server`
63
+
64
+ This package is designed to be used as a base for other server implementations.
65
+
66
+ ## License
67
+
68
+ Distributed under the MIT License. See [LICENSE](https://github.com/unnoq/orpc/blob/main/LICENSE) for more information.
@@ -0,0 +1,79 @@
1
+ export { contentDisposition, parse as parseContentDisposition } from '@tinyhttp/content-disposition';
2
+
3
+ interface EventMessage {
4
+ event: string | undefined;
5
+ id: string | undefined;
6
+ data: string | undefined;
7
+ /**
8
+ * The number of milliseconds to wait before retrying the event source if error occurs.
9
+ */
10
+ retry: number | undefined;
11
+ comments: string[];
12
+ }
13
+
14
+ declare function decodeEventMessage(encoded: string): EventMessage;
15
+ interface EventDecoderOptions {
16
+ onEvent?: (event: EventMessage) => void;
17
+ }
18
+ declare class EventDecoder {
19
+ private options;
20
+ private incomplete;
21
+ constructor(options?: EventDecoderOptions);
22
+ feed(chunk: string): void;
23
+ end(): void;
24
+ }
25
+ declare class EventDecoderStream extends TransformStream<string, EventMessage> {
26
+ constructor();
27
+ }
28
+
29
+ declare function assertEventId(id: string): void;
30
+ declare function assertEventName(event: string): void;
31
+ declare function assertEventRetry(retry: number): void;
32
+ declare function assertEventComment(comment: string): void;
33
+ declare function encodeEventData(data: string | undefined): string;
34
+ declare function encodeEventComments(comments: string[] | undefined): string;
35
+ declare function encodeEventMessage(message: Partial<EventMessage>): string;
36
+
37
+ declare class EventEncoderError extends TypeError {
38
+ }
39
+ declare class EventDecoderError extends TypeError {
40
+ }
41
+ interface ErrorEventOptions extends ErrorOptions {
42
+ message?: string;
43
+ data?: unknown;
44
+ }
45
+ declare class ErrorEvent extends Error {
46
+ data: unknown;
47
+ constructor(options?: ErrorEventOptions);
48
+ }
49
+
50
+ type EventMeta = Partial<Pick<EventMessage, 'retry' | 'id' | 'comments'>>;
51
+ declare function withEventMeta<T extends object>(container: T, meta: EventMeta): T;
52
+ declare function getEventMeta(container: unknown): EventMeta | undefined;
53
+
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
+ /**
60
+ * Can be { request: Request } or { request: IncomingMessage, response: ServerResponse } based on the adapter.
61
+ */
62
+ raw: Record<string, unknown>;
63
+ method: string;
64
+ url: URL;
65
+ headers: StandardHeaders;
66
+ /**
67
+ * The body has been parsed base on the content-type header.
68
+ * This method can safely call multiple times (cached).
69
+ */
70
+ body: () => Promise<StandardBody>;
71
+ signal: AbortSignal | undefined;
72
+ }
73
+ interface StandardResponse {
74
+ status: number;
75
+ headers: StandardHeaders;
76
+ body: StandardBody;
77
+ }
78
+
79
+ export { ErrorEvent, type ErrorEventOptions, EventDecoder, EventDecoderError, type EventDecoderOptions, EventDecoderStream, EventEncoderError, type EventMessage, type EventMeta, type StandardBody, type StandardHeaders, type StandardRequest, type StandardResponse, assertEventComment, assertEventId, assertEventName, assertEventRetry, decodeEventMessage, encodeEventComments, encodeEventData, encodeEventMessage, getEventMeta, withEventMeta };
@@ -0,0 +1,79 @@
1
+ export { contentDisposition, parse as parseContentDisposition } from '@tinyhttp/content-disposition';
2
+
3
+ interface EventMessage {
4
+ event: string | undefined;
5
+ id: string | undefined;
6
+ data: string | undefined;
7
+ /**
8
+ * The number of milliseconds to wait before retrying the event source if error occurs.
9
+ */
10
+ retry: number | undefined;
11
+ comments: string[];
12
+ }
13
+
14
+ declare function decodeEventMessage(encoded: string): EventMessage;
15
+ interface EventDecoderOptions {
16
+ onEvent?: (event: EventMessage) => void;
17
+ }
18
+ declare class EventDecoder {
19
+ private options;
20
+ private incomplete;
21
+ constructor(options?: EventDecoderOptions);
22
+ feed(chunk: string): void;
23
+ end(): void;
24
+ }
25
+ declare class EventDecoderStream extends TransformStream<string, EventMessage> {
26
+ constructor();
27
+ }
28
+
29
+ declare function assertEventId(id: string): void;
30
+ declare function assertEventName(event: string): void;
31
+ declare function assertEventRetry(retry: number): void;
32
+ declare function assertEventComment(comment: string): void;
33
+ declare function encodeEventData(data: string | undefined): string;
34
+ declare function encodeEventComments(comments: string[] | undefined): string;
35
+ declare function encodeEventMessage(message: Partial<EventMessage>): string;
36
+
37
+ declare class EventEncoderError extends TypeError {
38
+ }
39
+ declare class EventDecoderError extends TypeError {
40
+ }
41
+ interface ErrorEventOptions extends ErrorOptions {
42
+ message?: string;
43
+ data?: unknown;
44
+ }
45
+ declare class ErrorEvent extends Error {
46
+ data: unknown;
47
+ constructor(options?: ErrorEventOptions);
48
+ }
49
+
50
+ type EventMeta = Partial<Pick<EventMessage, 'retry' | 'id' | 'comments'>>;
51
+ declare function withEventMeta<T extends object>(container: T, meta: EventMeta): T;
52
+ declare function getEventMeta(container: unknown): EventMeta | undefined;
53
+
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
+ /**
60
+ * Can be { request: Request } or { request: IncomingMessage, response: ServerResponse } based on the adapter.
61
+ */
62
+ raw: Record<string, unknown>;
63
+ method: string;
64
+ url: URL;
65
+ headers: StandardHeaders;
66
+ /**
67
+ * The body has been parsed base on the content-type header.
68
+ * This method can safely call multiple times (cached).
69
+ */
70
+ body: () => Promise<StandardBody>;
71
+ signal: AbortSignal | undefined;
72
+ }
73
+ interface StandardResponse {
74
+ status: number;
75
+ headers: StandardHeaders;
76
+ body: StandardBody;
77
+ }
78
+
79
+ export { ErrorEvent, type ErrorEventOptions, EventDecoder, EventDecoderError, type EventDecoderOptions, EventDecoderStream, EventEncoderError, type EventMessage, type EventMeta, type StandardBody, type StandardHeaders, type StandardRequest, type StandardResponse, assertEventComment, assertEventId, assertEventName, assertEventRetry, decodeEventMessage, encodeEventComments, encodeEventData, encodeEventMessage, getEventMeta, withEventMeta };
@@ -1,38 +1,35 @@
1
- // src/event-source/errors.ts
2
- var EventEncoderError = class extends TypeError {
3
- };
4
- var EventDecoderError = class extends TypeError {
5
- };
6
- var ErrorEvent = class extends Error {
1
+ import { isTypescriptObject } from '@orpc/shared';
2
+ export { contentDisposition, parse as parseContentDisposition } from '@tinyhttp/content-disposition';
3
+
4
+ class EventEncoderError extends TypeError {
5
+ }
6
+ class EventDecoderError extends TypeError {
7
+ }
8
+ class ErrorEvent extends Error {
7
9
  data;
8
10
  constructor(options) {
9
11
  super(options?.message ?? "An error event was received", options);
10
12
  this.data = options?.data;
11
13
  }
12
- };
13
- var UnknownEvent = class extends ErrorEvent {
14
- };
14
+ }
15
15
 
16
- // src/event-source/decoder.ts
17
16
  function decodeEventMessage(encoded) {
18
17
  const lines = encoded.replace(/\n+$/, "").split(/\n/);
19
18
  const message = {
20
- data: "",
19
+ data: void 0,
21
20
  event: void 0,
22
21
  id: void 0,
23
- retry: void 0
22
+ retry: void 0,
23
+ comments: []
24
24
  };
25
25
  for (const line of lines) {
26
- const index = line.indexOf(": ");
27
- if (index === -1) {
28
- throw new EventDecoderError(`Invalid EventSource message line: ${line}`);
29
- }
30
- const key = line.slice(0, index);
31
- const value = line.slice(index + 2);
32
- if (key !== "data" && key in message && message[key] !== void 0) {
33
- throw new EventDecoderError(`Duplicate EventSource message key: ${key}`);
34
- }
35
- if (key === "data") {
26
+ const index = line.indexOf(":");
27
+ const key = index === -1 ? line : line.slice(0, index);
28
+ const value = index === -1 ? "" : line.slice(index + 1).replace(/^\s/, "");
29
+ if (index === 0) {
30
+ message.comments.push(value);
31
+ } else if (key === "data") {
32
+ message.data ??= "";
36
33
  message.data += `${value}
37
34
  `;
38
35
  } else if (key === "event") {
@@ -41,18 +38,15 @@ function decodeEventMessage(encoded) {
41
38
  message.id = value;
42
39
  } else if (key === "retry") {
43
40
  const maybeInteger = Number.parseInt(value);
44
- if (!Number.isInteger(maybeInteger) || maybeInteger < 0 || maybeInteger.toString() !== value) {
45
- throw new EventDecoderError(`Invalid EventSource message retry value: ${value}`);
41
+ if (Number.isInteger(maybeInteger) && maybeInteger >= 0 && maybeInteger.toString() === value) {
42
+ message.retry = maybeInteger;
46
43
  }
47
- message.retry = maybeInteger;
48
- } else {
49
- throw new EventDecoderError(`Unknown EventSource message key: ${key}`);
50
44
  }
51
45
  }
52
- message.data = message.data.replace(/\n$/, "");
46
+ message.data = message.data?.replace(/\n$/, "");
53
47
  return message;
54
48
  }
55
- var EventDecoder = class {
49
+ class EventDecoder {
56
50
  constructor(options = {}) {
57
51
  this.options = options;
58
52
  }
@@ -63,12 +57,9 @@ var EventDecoder = class {
63
57
  if (lastCompleteIndex === -1) {
64
58
  return;
65
59
  }
66
- const completes = this.incomplete.slice(0, lastCompleteIndex + 2).split(/\n{2,}/);
60
+ const completes = this.incomplete.slice(0, lastCompleteIndex).split(/\n\n/);
67
61
  this.incomplete = this.incomplete.slice(lastCompleteIndex + 2);
68
62
  for (const encoded of completes) {
69
- if (!encoded) {
70
- continue;
71
- }
72
63
  const message = decodeEventMessage(`${encoded}
73
64
 
74
65
  `);
@@ -79,10 +70,12 @@ var EventDecoder = class {
79
70
  this.incomplete = "";
80
71
  }
81
72
  end() {
82
- this.feed("\n\n");
73
+ if (this.incomplete) {
74
+ throw new EventDecoderError("EventSource ended before complete");
75
+ }
83
76
  }
84
- };
85
- var EventDecoderStream = class extends TransformStream {
77
+ }
78
+ class EventDecoderStream extends TransformStream {
86
79
  constructor() {
87
80
  let decoder;
88
81
  super({
@@ -101,9 +94,8 @@ var EventDecoderStream = class extends TransformStream {
101
94
  }
102
95
  });
103
96
  }
104
- };
97
+ }
105
98
 
106
- // src/event-source/encoder.ts
107
99
  function assertEventId(id) {
108
100
  if (id.includes("\n")) {
109
101
  throw new EventEncoderError("Event-source id must not contain a newline character");
@@ -119,8 +111,13 @@ function assertEventRetry(retry) {
119
111
  throw new EventEncoderError("Event-source retry must be a integer and >= 0");
120
112
  }
121
113
  }
114
+ function assertEventComment(comment) {
115
+ if (comment.includes("\n")) {
116
+ throw new EventEncoderError("Event-source comment must not contain a newline character");
117
+ }
118
+ }
122
119
  function encodeEventData(data) {
123
- const lines = data ? data.split(/\n/) : [""];
120
+ const lines = data?.split(/\n/) ?? [];
124
121
  let output = "";
125
122
  for (const line of lines) {
126
123
  output += `data: ${line}
@@ -128,8 +125,18 @@ function encodeEventData(data) {
128
125
  }
129
126
  return output;
130
127
  }
128
+ function encodeEventComments(comments) {
129
+ let output = "";
130
+ for (const comment of comments ?? []) {
131
+ assertEventComment(comment);
132
+ output += `: ${comment}
133
+ `;
134
+ }
135
+ return output;
136
+ }
131
137
  function encodeEventMessage(message) {
132
138
  let output = "";
139
+ output += encodeEventComments(message.comments);
133
140
  if (message.event !== void 0) {
134
141
  assertEventName(message.event);
135
142
  output += `event: ${message.event}
@@ -150,11 +157,7 @@ function encodeEventMessage(message) {
150
157
  return output;
151
158
  }
152
159
 
153
- // src/event-source/meta.ts
154
- var EVENT_SOURCE_META_SYMBOL = Symbol("ORPC_EVENT_SOURCE_META");
155
- function isEventMetaContainer(value) {
156
- return !!value && (typeof value === "object" || typeof value === "function");
157
- }
160
+ const EVENT_SOURCE_META_SYMBOL = Symbol("ORPC_EVENT_SOURCE_META");
158
161
  function withEventMeta(container, meta) {
159
162
  if (meta.id !== void 0) {
160
163
  assertEventId(meta.id);
@@ -162,6 +165,11 @@ function withEventMeta(container, meta) {
162
165
  if (meta.retry !== void 0) {
163
166
  assertEventRetry(meta.retry);
164
167
  }
168
+ if (meta.comments !== void 0) {
169
+ for (const comment of meta.comments) {
170
+ assertEventComment(comment);
171
+ }
172
+ }
165
173
  return new Proxy(container, {
166
174
  get(target, prop, receiver) {
167
175
  if (prop === EVENT_SOURCE_META_SYMBOL) {
@@ -172,54 +180,7 @@ function withEventMeta(container, meta) {
172
180
  });
173
181
  }
174
182
  function getEventMeta(container) {
175
- return isEventMetaContainer(container) ? Reflect.get(container, EVENT_SOURCE_META_SYMBOL) : void 0;
183
+ return isTypescriptObject(container) ? Reflect.get(container, EVENT_SOURCE_META_SYMBOL) : void 0;
176
184
  }
177
185
 
178
- // src/utils.ts
179
- import { contentDisposition, parse } from "@tinyhttp/content-disposition";
180
- function once(fn) {
181
- let cached;
182
- return () => {
183
- if (cached) {
184
- return cached.result;
185
- }
186
- const result = fn();
187
- cached = { result };
188
- return result;
189
- };
190
- }
191
- function parseEmptyableJSON(text) {
192
- if (!text) {
193
- return void 0;
194
- }
195
- return JSON.parse(text);
196
- }
197
- function isAsyncIteratorObject(maybe) {
198
- if (!maybe || typeof maybe !== "object") {
199
- return false;
200
- }
201
- return Symbol.asyncIterator in maybe && typeof maybe[Symbol.asyncIterator] === "function";
202
- }
203
- export {
204
- ErrorEvent,
205
- EventDecoder,
206
- EventDecoderError,
207
- EventDecoderStream,
208
- EventEncoderError,
209
- UnknownEvent,
210
- assertEventId,
211
- assertEventName,
212
- assertEventRetry,
213
- contentDisposition,
214
- decodeEventMessage,
215
- encodeEventData,
216
- encodeEventMessage,
217
- getEventMeta,
218
- isAsyncIteratorObject,
219
- isEventMetaContainer,
220
- once,
221
- parse as parseContentDisposition,
222
- parseEmptyableJSON,
223
- withEventMeta
224
- };
225
- //# sourceMappingURL=index.js.map
186
+ export { ErrorEvent, EventDecoder, EventDecoderError, EventDecoderStream, EventEncoderError, assertEventComment, assertEventId, assertEventName, assertEventRetry, decodeEventMessage, encodeEventComments, encodeEventData, encodeEventMessage, getEventMeta, withEventMeta };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@orpc/standard-server",
3
3
  "type": "module",
4
- "version": "0.43.0",
4
+ "version": "0.45.0",
5
5
  "license": "MIT",
6
6
  "homepage": "https://unnoq.com",
7
7
  "repository": {
@@ -14,25 +14,20 @@
14
14
  ],
15
15
  "exports": {
16
16
  ".": {
17
- "types": "./dist/src/index.d.ts",
18
- "import": "./dist/index.js",
19
- "default": "./dist/index.js"
20
- },
21
- "./🔒/*": {
22
- "types": "./dist/src/*.d.ts"
17
+ "types": "./dist/index.d.mts",
18
+ "import": "./dist/index.mjs",
19
+ "default": "./dist/index.mjs"
23
20
  }
24
21
  },
25
22
  "files": [
26
- "!**/*.map",
27
- "!**/*.tsbuildinfo",
28
23
  "dist"
29
24
  ],
30
25
  "dependencies": {
31
26
  "@tinyhttp/content-disposition": "^2.2.2",
32
- "type-fest": "^4.34.1"
27
+ "@orpc/shared": "0.45.0"
33
28
  },
34
29
  "scripts": {
35
- "build": "tsup --clean --sourcemap --entry.index=src/index.ts --format=esm --onSuccess='tsc -b --noCheck'",
30
+ "build": "unbuild",
36
31
  "build:watch": "pnpm run build --watch",
37
32
  "type:check": "tsc -b"
38
33
  }
@@ -1,16 +0,0 @@
1
- import type { EventMessage } from './types';
2
- export declare function decodeEventMessage(encoded: string): EventMessage;
3
- export interface EventDecoderOptions {
4
- onEvent?: (event: EventMessage) => void;
5
- }
6
- export declare class EventDecoder {
7
- private options;
8
- private incomplete;
9
- constructor(options?: EventDecoderOptions);
10
- feed(chunk: string): void;
11
- end(): void;
12
- }
13
- export declare class EventDecoderStream extends TransformStream<string, EventMessage> {
14
- constructor();
15
- }
16
- //# sourceMappingURL=decoder.d.ts.map
@@ -1,7 +0,0 @@
1
- import type { EventMessage } from './types';
2
- export declare function assertEventId(id: string): void;
3
- export declare function assertEventName(event: string): void;
4
- export declare function assertEventRetry(retry: number): void;
5
- export declare function encodeEventData(data: string | undefined): string;
6
- export declare function encodeEventMessage(message: Partial<EventMessage>): string;
7
- //# sourceMappingURL=encoder.d.ts.map
@@ -1,16 +0,0 @@
1
- import type { JsonValue } from 'type-fest';
2
- export declare class EventEncoderError extends TypeError {
3
- }
4
- export declare class EventDecoderError extends TypeError {
5
- }
6
- export interface ErrorEventOptions extends ErrorOptions {
7
- message?: string;
8
- data?: undefined | JsonValue;
9
- }
10
- export declare class ErrorEvent extends Error {
11
- data: undefined | JsonValue;
12
- constructor(options?: ErrorEventOptions);
13
- }
14
- export declare class UnknownEvent extends ErrorEvent {
15
- }
16
- //# sourceMappingURL=errors.d.ts.map
@@ -1,6 +0,0 @@
1
- export * from './decoder';
2
- export * from './encoder';
3
- export * from './errors';
4
- export * from './meta';
5
- export * from './types';
6
- //# sourceMappingURL=index.d.ts.map
@@ -1,6 +0,0 @@
1
- import type { EventMessage } from './types';
2
- export type EventMeta = Partial<Pick<EventMessage, 'retry' | 'id'>>;
3
- export declare function isEventMetaContainer(value: unknown): value is Record<PropertyKey, unknown>;
4
- export declare function withEventMeta<T extends object>(container: T, meta: EventMeta): T;
5
- export declare function getEventMeta(container: unknown): EventMeta | undefined;
6
- //# sourceMappingURL=meta.d.ts.map
@@ -1,10 +0,0 @@
1
- export interface EventMessage {
2
- event: string | undefined;
3
- id: string | undefined;
4
- data: string;
5
- /**
6
- * The number of milliseconds to wait before retrying the event source if error occurs.
7
- */
8
- retry: number | undefined;
9
- }
10
- //# sourceMappingURL=types.d.ts.map
@@ -1,4 +0,0 @@
1
- export * from './event-source';
2
- export * from './types';
3
- export * from './utils';
4
- //# sourceMappingURL=index.d.ts.map
@@ -1,27 +0,0 @@
1
- import type { JsonValue } from 'type-fest';
2
- export type { JsonValue };
3
- export interface StandardHeaders {
4
- [key: string]: string | string[] | undefined;
5
- }
6
- export type StandardBody = undefined | JsonValue | Blob | URLSearchParams | FormData | AsyncIterator<JsonValue | void, JsonValue | void, undefined>;
7
- export interface StandardRequest {
8
- /**
9
- * Can be { request: Request } or { request: IncomingMessage, response: ServerResponse } based on the adapter.
10
- */
11
- raw: Record<string, unknown>;
12
- method: string;
13
- url: URL;
14
- headers: StandardHeaders;
15
- /**
16
- * The body has been parsed base on the content-type header.
17
- * This method can safely call multiple times (cached).
18
- */
19
- body: () => Promise<StandardBody>;
20
- signal: AbortSignal | undefined;
21
- }
22
- export interface StandardResponse {
23
- status: number;
24
- headers: StandardHeaders;
25
- body: StandardBody;
26
- }
27
- //# sourceMappingURL=types.d.ts.map
@@ -1,6 +0,0 @@
1
- import type { JsonValue } from 'type-fest';
2
- export declare function once<T extends () => any>(fn: T): () => ReturnType<T>;
3
- export declare function parseEmptyableJSON(text: string): JsonValue | undefined;
4
- export declare function isAsyncIteratorObject(maybe: unknown): maybe is AsyncIteratorObject<any, any, any>;
5
- export { contentDisposition, parse as parseContentDisposition } from '@tinyhttp/content-disposition';
6
- //# sourceMappingURL=utils.d.ts.map