@orpc/client 1.14.11 → 1.14.12
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 +68 -52
- package/dist/adapters/fetch/index.d.mts +35 -54
- package/dist/adapters/fetch/index.d.ts +35 -54
- package/dist/adapters/fetch/index.mjs +27 -74
- package/dist/adapters/message-port/index.d.mts +30 -25
- package/dist/adapters/message-port/index.d.ts +30 -25
- package/dist/adapters/message-port/index.mjs +30 -39
- package/dist/adapters/standard/index.d.mts +9 -59
- package/dist/adapters/standard/index.d.ts +9 -59
- package/dist/adapters/standard/index.mjs +5 -5
- package/dist/adapters/websocket/index.d.mts +21 -113
- package/dist/adapters/websocket/index.d.ts +21 -113
- package/dist/adapters/websocket/index.mjs +37 -95
- package/dist/index.d.mts +184 -75
- package/dist/index.d.ts +184 -75
- package/dist/index.mjs +63 -74
- package/dist/plugins/index.d.mts +122 -191
- package/dist/plugins/index.d.ts +122 -191
- package/dist/plugins/index.mjs +281 -627
- package/dist/shared/client.2jUAqzYU.d.ts +45 -0
- package/dist/shared/client.B3pNRBih.d.ts +91 -0
- package/dist/shared/client.BFAVy68H.d.mts +91 -0
- package/dist/shared/client.BLtwTQUg.mjs +40 -0
- package/dist/shared/client.C1VUaWTu.mjs +404 -0
- package/dist/shared/client.CpCa3si8.d.mts +45 -0
- package/dist/shared/client.DrCRv_sG.mjs +174 -0
- package/dist/shared/client.i2uoJbEp.d.mts +83 -0
- package/dist/shared/client.i2uoJbEp.d.ts +83 -0
- package/package.json +7 -7
- package/dist/shared/client.8f4DNmdE.d.mts +0 -96
- package/dist/shared/client.BBZBQID8.d.mts +0 -167
- package/dist/shared/client.BBZBQID8.d.ts +0 -167
- package/dist/shared/client.BMKYqpdy.d.ts +0 -96
- package/dist/shared/client.BRJnOJ0R.mjs +0 -174
- package/dist/shared/client.BdItY5DT.d.mts +0 -111
- package/dist/shared/client.BdItY5DT.d.ts +0 -111
- package/dist/shared/client.Dnfj8jnT.mjs +0 -92
- package/dist/shared/client.DqYwRDUO.mjs +0 -343
|
@@ -1,111 +0,0 @@
|
|
|
1
|
-
import { StandardBody } from '@standardserver/core';
|
|
2
|
-
import { Segment } from '@orpc/shared';
|
|
3
|
-
|
|
4
|
-
type RPCJsonSerializationMeta = [type: string, ...path: Segment[]];
|
|
5
|
-
type RPCJsonSerialization = {
|
|
6
|
-
json: unknown;
|
|
7
|
-
meta?: RPCJsonSerializationMeta[] | undefined;
|
|
8
|
-
maps?: undefined;
|
|
9
|
-
blobs?: undefined;
|
|
10
|
-
} | {
|
|
11
|
-
json: unknown;
|
|
12
|
-
meta?: RPCJsonSerializationMeta[] | undefined;
|
|
13
|
-
maps: Segment[][];
|
|
14
|
-
blobs: Blob[];
|
|
15
|
-
};
|
|
16
|
-
interface RPCJsonSerializerHandler {
|
|
17
|
-
condition(value: unknown): boolean;
|
|
18
|
-
serialize(value: any): unknown;
|
|
19
|
-
deserialize(serialized: any): unknown;
|
|
20
|
-
/**
|
|
21
|
-
* If false, the result of this serializer will not be further processed by other serializers,
|
|
22
|
-
* even if it matches their conditions and treat it as final serialized value.
|
|
23
|
-
* This can be useful for serializers that return primitive values, which should not be further processed.
|
|
24
|
-
* to improve performance and avoid potential issues with other serializers.
|
|
25
|
-
*
|
|
26
|
-
* @default false
|
|
27
|
-
*/
|
|
28
|
-
isTerminal?: boolean;
|
|
29
|
-
}
|
|
30
|
-
interface RPCJsonSerializerOptions {
|
|
31
|
-
/**
|
|
32
|
-
* Extend or override the built-in type handlers used during serialization and deserialization.
|
|
33
|
-
*
|
|
34
|
-
* Each key is a unique type identifier (e.g. `"date"`, `"bigint"`) and maps to a handler
|
|
35
|
-
* that defines how to detect, serialize, and deserialize values of that type.
|
|
36
|
-
*
|
|
37
|
-
* **Extending:** Add new keys to support custom types:
|
|
38
|
-
* ```ts
|
|
39
|
-
* handlers: {
|
|
40
|
-
* buffer: {
|
|
41
|
-
* condition: (v) => v instanceof Buffer,
|
|
42
|
-
* serialize: (v: Buffer) => v.toString('base64'),
|
|
43
|
-
* deserialize: (s: string) => Buffer.from(s, 'base64'),
|
|
44
|
-
* isTerminal: true,
|
|
45
|
-
* }
|
|
46
|
-
* }
|
|
47
|
-
* ```
|
|
48
|
-
*
|
|
49
|
-
* **Overriding:** Use an existing key to replace a built-in handler:
|
|
50
|
-
* ```ts
|
|
51
|
-
* handlers: {
|
|
52
|
-
* date: {
|
|
53
|
-
* condition: (v) => v instanceof Date,
|
|
54
|
-
* serialize: (v: Date) => v.getTime(),
|
|
55
|
-
* deserialize: (n: number) => new Date(n),
|
|
56
|
-
* isTerminal: true,
|
|
57
|
-
* }
|
|
58
|
-
* }
|
|
59
|
-
* ```
|
|
60
|
-
*
|
|
61
|
-
* **Disabling:** Set a key to `undefined` to remove a built-in handler:
|
|
62
|
-
* ```ts
|
|
63
|
-
* handlers: { regexp: undefined }
|
|
64
|
-
* ```
|
|
65
|
-
*
|
|
66
|
-
* Built-in type keys: `undefined`, `bigint`, `date`, `nan`, `url`, `regexp`, `set`, `map`.
|
|
67
|
-
*/
|
|
68
|
-
handlers?: Record<string, undefined | RPCJsonSerializerHandler> | undefined;
|
|
69
|
-
/**
|
|
70
|
-
* If true, properties with undefined values will be omitted during serialization.
|
|
71
|
-
*
|
|
72
|
-
* @default true
|
|
73
|
-
*/
|
|
74
|
-
omitUndefinedProperties?: boolean | undefined;
|
|
75
|
-
}
|
|
76
|
-
declare class RPCJsonSerializer {
|
|
77
|
-
private readonly handlers;
|
|
78
|
-
private readonly omitUndefinedProperties;
|
|
79
|
-
constructor(options?: RPCJsonSerializerOptions);
|
|
80
|
-
serialize(data: unknown): RPCJsonSerialization;
|
|
81
|
-
private serializeValue;
|
|
82
|
-
deserialize(serialized: RPCJsonSerialization): unknown;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
interface RPCSerializerSerializeOptions {
|
|
86
|
-
/**
|
|
87
|
-
* Use FormData for serialization when nested blobs are present.
|
|
88
|
-
* Does not apply to root-level Blob values.
|
|
89
|
-
*
|
|
90
|
-
* @default true
|
|
91
|
-
*/
|
|
92
|
-
useFormDataForBlobFields?: boolean;
|
|
93
|
-
}
|
|
94
|
-
interface RPCSerializerOptions extends RPCJsonSerializerOptions {
|
|
95
|
-
/**
|
|
96
|
-
* Default options for serialize method
|
|
97
|
-
*/
|
|
98
|
-
serialize?: RPCSerializerSerializeOptions | undefined;
|
|
99
|
-
}
|
|
100
|
-
declare class RPCSerializer {
|
|
101
|
-
private readonly jsonSerializer;
|
|
102
|
-
private readonly defaultSerializeOptions;
|
|
103
|
-
constructor(options?: RPCSerializerOptions);
|
|
104
|
-
serialize(data: unknown, options?: RPCSerializerSerializeOptions): StandardBody;
|
|
105
|
-
private serializeValue;
|
|
106
|
-
deserialize(data: StandardBody): unknown;
|
|
107
|
-
private deserializeValue;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
export { RPCJsonSerializer as b, RPCSerializer as e };
|
|
111
|
-
export type { RPCJsonSerialization as R, RPCJsonSerializationMeta as a, RPCJsonSerializerHandler as c, RPCJsonSerializerOptions as d, RPCSerializerOptions as f, RPCSerializerSerializeOptions as g };
|
|
@@ -1,111 +0,0 @@
|
|
|
1
|
-
import { StandardBody } from '@standardserver/core';
|
|
2
|
-
import { Segment } from '@orpc/shared';
|
|
3
|
-
|
|
4
|
-
type RPCJsonSerializationMeta = [type: string, ...path: Segment[]];
|
|
5
|
-
type RPCJsonSerialization = {
|
|
6
|
-
json: unknown;
|
|
7
|
-
meta?: RPCJsonSerializationMeta[] | undefined;
|
|
8
|
-
maps?: undefined;
|
|
9
|
-
blobs?: undefined;
|
|
10
|
-
} | {
|
|
11
|
-
json: unknown;
|
|
12
|
-
meta?: RPCJsonSerializationMeta[] | undefined;
|
|
13
|
-
maps: Segment[][];
|
|
14
|
-
blobs: Blob[];
|
|
15
|
-
};
|
|
16
|
-
interface RPCJsonSerializerHandler {
|
|
17
|
-
condition(value: unknown): boolean;
|
|
18
|
-
serialize(value: any): unknown;
|
|
19
|
-
deserialize(serialized: any): unknown;
|
|
20
|
-
/**
|
|
21
|
-
* If false, the result of this serializer will not be further processed by other serializers,
|
|
22
|
-
* even if it matches their conditions and treat it as final serialized value.
|
|
23
|
-
* This can be useful for serializers that return primitive values, which should not be further processed.
|
|
24
|
-
* to improve performance and avoid potential issues with other serializers.
|
|
25
|
-
*
|
|
26
|
-
* @default false
|
|
27
|
-
*/
|
|
28
|
-
isTerminal?: boolean;
|
|
29
|
-
}
|
|
30
|
-
interface RPCJsonSerializerOptions {
|
|
31
|
-
/**
|
|
32
|
-
* Extend or override the built-in type handlers used during serialization and deserialization.
|
|
33
|
-
*
|
|
34
|
-
* Each key is a unique type identifier (e.g. `"date"`, `"bigint"`) and maps to a handler
|
|
35
|
-
* that defines how to detect, serialize, and deserialize values of that type.
|
|
36
|
-
*
|
|
37
|
-
* **Extending:** Add new keys to support custom types:
|
|
38
|
-
* ```ts
|
|
39
|
-
* handlers: {
|
|
40
|
-
* buffer: {
|
|
41
|
-
* condition: (v) => v instanceof Buffer,
|
|
42
|
-
* serialize: (v: Buffer) => v.toString('base64'),
|
|
43
|
-
* deserialize: (s: string) => Buffer.from(s, 'base64'),
|
|
44
|
-
* isTerminal: true,
|
|
45
|
-
* }
|
|
46
|
-
* }
|
|
47
|
-
* ```
|
|
48
|
-
*
|
|
49
|
-
* **Overriding:** Use an existing key to replace a built-in handler:
|
|
50
|
-
* ```ts
|
|
51
|
-
* handlers: {
|
|
52
|
-
* date: {
|
|
53
|
-
* condition: (v) => v instanceof Date,
|
|
54
|
-
* serialize: (v: Date) => v.getTime(),
|
|
55
|
-
* deserialize: (n: number) => new Date(n),
|
|
56
|
-
* isTerminal: true,
|
|
57
|
-
* }
|
|
58
|
-
* }
|
|
59
|
-
* ```
|
|
60
|
-
*
|
|
61
|
-
* **Disabling:** Set a key to `undefined` to remove a built-in handler:
|
|
62
|
-
* ```ts
|
|
63
|
-
* handlers: { regexp: undefined }
|
|
64
|
-
* ```
|
|
65
|
-
*
|
|
66
|
-
* Built-in type keys: `undefined`, `bigint`, `date`, `nan`, `url`, `regexp`, `set`, `map`.
|
|
67
|
-
*/
|
|
68
|
-
handlers?: Record<string, undefined | RPCJsonSerializerHandler> | undefined;
|
|
69
|
-
/**
|
|
70
|
-
* If true, properties with undefined values will be omitted during serialization.
|
|
71
|
-
*
|
|
72
|
-
* @default true
|
|
73
|
-
*/
|
|
74
|
-
omitUndefinedProperties?: boolean | undefined;
|
|
75
|
-
}
|
|
76
|
-
declare class RPCJsonSerializer {
|
|
77
|
-
private readonly handlers;
|
|
78
|
-
private readonly omitUndefinedProperties;
|
|
79
|
-
constructor(options?: RPCJsonSerializerOptions);
|
|
80
|
-
serialize(data: unknown): RPCJsonSerialization;
|
|
81
|
-
private serializeValue;
|
|
82
|
-
deserialize(serialized: RPCJsonSerialization): unknown;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
interface RPCSerializerSerializeOptions {
|
|
86
|
-
/**
|
|
87
|
-
* Use FormData for serialization when nested blobs are present.
|
|
88
|
-
* Does not apply to root-level Blob values.
|
|
89
|
-
*
|
|
90
|
-
* @default true
|
|
91
|
-
*/
|
|
92
|
-
useFormDataForBlobFields?: boolean;
|
|
93
|
-
}
|
|
94
|
-
interface RPCSerializerOptions extends RPCJsonSerializerOptions {
|
|
95
|
-
/**
|
|
96
|
-
* Default options for serialize method
|
|
97
|
-
*/
|
|
98
|
-
serialize?: RPCSerializerSerializeOptions | undefined;
|
|
99
|
-
}
|
|
100
|
-
declare class RPCSerializer {
|
|
101
|
-
private readonly jsonSerializer;
|
|
102
|
-
private readonly defaultSerializeOptions;
|
|
103
|
-
constructor(options?: RPCSerializerOptions);
|
|
104
|
-
serialize(data: unknown, options?: RPCSerializerSerializeOptions): StandardBody;
|
|
105
|
-
private serializeValue;
|
|
106
|
-
deserialize(data: StandardBody): unknown;
|
|
107
|
-
private deserializeValue;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
export { RPCJsonSerializer as b, RPCSerializer as e };
|
|
111
|
-
export type { RPCJsonSerialization as R, RPCJsonSerializationMeta as a, RPCJsonSerializerHandler as c, RPCJsonSerializerOptions as d, RPCSerializerOptions as f, RPCSerializerSerializeOptions as g };
|
|
@@ -1,92 +0,0 @@
|
|
|
1
|
-
import { resolveMaybeOptionalOptions, getConstructor } from '@orpc/shared';
|
|
2
|
-
|
|
3
|
-
const COMMON_ERROR_STATUS_MAP = {
|
|
4
|
-
BAD_REQUEST: 400,
|
|
5
|
-
UNAUTHORIZED: 401,
|
|
6
|
-
PAYMENT_REQUIRED: 402,
|
|
7
|
-
FORBIDDEN: 403,
|
|
8
|
-
NOT_FOUND: 404,
|
|
9
|
-
METHOD_NOT_SUPPORTED: 405,
|
|
10
|
-
NOT_ACCEPTABLE: 406,
|
|
11
|
-
TIMEOUT: 408,
|
|
12
|
-
CONFLICT: 409,
|
|
13
|
-
GONE: 410,
|
|
14
|
-
PRECONDITION_FAILED: 412,
|
|
15
|
-
PAYLOAD_TOO_LARGE: 413,
|
|
16
|
-
UNSUPPORTED_MEDIA_TYPE: 415,
|
|
17
|
-
UNPROCESSABLE_CONTENT: 422,
|
|
18
|
-
PRECONDITION_REQUIRED: 428,
|
|
19
|
-
TOO_MANY_REQUESTS: 429,
|
|
20
|
-
CLIENT_CLOSED_REQUEST: 499,
|
|
21
|
-
INTERNAL_SERVER_ERROR: 500,
|
|
22
|
-
NOT_IMPLEMENTED: 501,
|
|
23
|
-
BAD_GATEWAY: 502,
|
|
24
|
-
SERVICE_UNAVAILABLE: 503,
|
|
25
|
-
GATEWAY_TIMEOUT: 504
|
|
26
|
-
};
|
|
27
|
-
let ORPCErrorConstructors;
|
|
28
|
-
class ORPCError extends Error {
|
|
29
|
-
static {
|
|
30
|
-
const ORPC_ERROR_CONSTRUCTORS_SYMBOL = Symbol.for("ORPC_ERROR_CONSTRUCTORS");
|
|
31
|
-
void (globalThis[ORPC_ERROR_CONSTRUCTORS_SYMBOL] ??= /* @__PURE__ */ new WeakSet());
|
|
32
|
-
ORPCErrorConstructors = globalThis[ORPC_ERROR_CONSTRUCTORS_SYMBOL];
|
|
33
|
-
ORPCErrorConstructors.add(ORPCError);
|
|
34
|
-
}
|
|
35
|
-
/**
|
|
36
|
-
* @info
|
|
37
|
-
* The `__branch` property is used for type branding, helping TypeScript distinguish
|
|
38
|
-
* an `ORPCError` instance from plain objects with a similar structure.
|
|
39
|
-
*/
|
|
40
|
-
name = "ORPCError";
|
|
41
|
-
/**
|
|
42
|
-
* Indicates whether the error matches a definition in the procedure's `.errors` map.
|
|
43
|
-
*/
|
|
44
|
-
defined = false;
|
|
45
|
-
/**
|
|
46
|
-
* Indicates whether the error's type is inferable at the TypeScript level.
|
|
47
|
-
* This is typically true when the error is explicitly defined or returned within a handler.
|
|
48
|
-
*/
|
|
49
|
-
inferable = false;
|
|
50
|
-
code;
|
|
51
|
-
data;
|
|
52
|
-
constructor(code, ...rest) {
|
|
53
|
-
const options = resolveMaybeOptionalOptions(rest);
|
|
54
|
-
const message = options.message ?? code.split("_").map((word) => word.charAt(0).toUpperCase() + word.slice(1).toLowerCase()).join(" ");
|
|
55
|
-
super(message, options);
|
|
56
|
-
this.code = code;
|
|
57
|
-
this.data = options.data;
|
|
58
|
-
}
|
|
59
|
-
toJSON() {
|
|
60
|
-
return {
|
|
61
|
-
defined: this.defined,
|
|
62
|
-
inferable: this.inferable,
|
|
63
|
-
code: this.code,
|
|
64
|
-
message: this.message,
|
|
65
|
-
data: this.data
|
|
66
|
-
};
|
|
67
|
-
}
|
|
68
|
-
/**
|
|
69
|
-
* Workaround for Next.js where different contexts use separate
|
|
70
|
-
* dependency graphs, causing multiple ORPCError constructors existing and breaking
|
|
71
|
-
* `instanceof` checks across contexts.
|
|
72
|
-
*
|
|
73
|
-
* This is particularly problematic with "Optimized SSR", where orpc-client
|
|
74
|
-
* executes in one context but is invoked from another. When an error is thrown
|
|
75
|
-
* in the execution context, `instanceof ORPCError` checks fail in the
|
|
76
|
-
* invocation context due to separate class constructors.
|
|
77
|
-
*
|
|
78
|
-
* @todo Remove this and related code if Next.js resolves the multiple dependency graph issue.
|
|
79
|
-
*/
|
|
80
|
-
static [Symbol.hasInstance](instance) {
|
|
81
|
-
if (!ORPCErrorConstructors.has(this)) {
|
|
82
|
-
return super[Symbol.hasInstance](instance);
|
|
83
|
-
}
|
|
84
|
-
const constructor = getConstructor(instance);
|
|
85
|
-
if (constructor && ORPCErrorConstructors.has(constructor)) {
|
|
86
|
-
return true;
|
|
87
|
-
}
|
|
88
|
-
return super[Symbol.hasInstance](instance);
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
export { COMMON_ERROR_STATUS_MAP as C, ORPCError as O };
|
|
@@ -1,343 +0,0 @@
|
|
|
1
|
-
import { isPlainObject, wrapAsyncIterator, isTypescriptObject, isAsyncIteratorObject, stringifyJSON } from '@orpc/shared';
|
|
2
|
-
import { getEventMeta, withEventMeta, ErrorEvent } from '@standardserver/core';
|
|
3
|
-
import { O as ORPCError } from './client.Dnfj8jnT.mjs';
|
|
4
|
-
|
|
5
|
-
function isInferableError(error) {
|
|
6
|
-
return error instanceof ORPCError && error.inferable;
|
|
7
|
-
}
|
|
8
|
-
function toORPCError(error) {
|
|
9
|
-
return error instanceof ORPCError ? error : new ORPCError("INTERNAL_SERVER_ERROR", { cause: error });
|
|
10
|
-
}
|
|
11
|
-
function isORPCErrorJson(json) {
|
|
12
|
-
if (!isPlainObject(json)) {
|
|
13
|
-
return false;
|
|
14
|
-
}
|
|
15
|
-
const validKeys = ["defined", "inferable", "code", "message", "data"];
|
|
16
|
-
if (Object.keys(json).some((k) => !validKeys.includes(k))) {
|
|
17
|
-
return false;
|
|
18
|
-
}
|
|
19
|
-
return "defined" in json && typeof json.defined === "boolean" && "inferable" in json && typeof json.inferable === "boolean" && "code" in json && typeof json.code === "string" && "message" in json && typeof json.message === "string";
|
|
20
|
-
}
|
|
21
|
-
function createORPCErrorFromJson(json, options = {}) {
|
|
22
|
-
const error = new ORPCError(json.code, {
|
|
23
|
-
...json,
|
|
24
|
-
...options
|
|
25
|
-
});
|
|
26
|
-
error.defined = json.defined;
|
|
27
|
-
error.inferable = json.inferable;
|
|
28
|
-
return error;
|
|
29
|
-
}
|
|
30
|
-
function cloneORPCError(error) {
|
|
31
|
-
const cloned = new ORPCError(error.code, {
|
|
32
|
-
...error,
|
|
33
|
-
message: error.message,
|
|
34
|
-
data: error.data,
|
|
35
|
-
cause: error.cause
|
|
36
|
-
});
|
|
37
|
-
cloned.stack = error.stack;
|
|
38
|
-
cloned.defined = error.defined;
|
|
39
|
-
cloned.inferable = error.inferable;
|
|
40
|
-
return cloned;
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
function wrapAsyncIteratorPreservingEventMeta(iterator, { mapResult, mapError, ...rest }) {
|
|
44
|
-
return wrapAsyncIterator(iterator, {
|
|
45
|
-
...rest,
|
|
46
|
-
mapResult: mapResult && (async (result) => {
|
|
47
|
-
const mapped = await mapResult(result);
|
|
48
|
-
if (mapped.value !== result.value) {
|
|
49
|
-
const meta = getEventMeta(result.value);
|
|
50
|
-
if (meta && isTypescriptObject(mapped.value)) {
|
|
51
|
-
return { done: mapped.done, value: withEventMeta(mapped.value, meta) };
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
return mapped;
|
|
55
|
-
}),
|
|
56
|
-
mapError: mapError && (async (error) => {
|
|
57
|
-
const mapped = await mapError(error);
|
|
58
|
-
if (mapped !== error) {
|
|
59
|
-
const meta = getEventMeta(error);
|
|
60
|
-
if (meta && isTypescriptObject(mapped)) {
|
|
61
|
-
return withEventMeta(mapped, meta);
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
return mapped;
|
|
65
|
-
})
|
|
66
|
-
});
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
const REGEX_STRING_PATTERN = /^\/(.*)\/([a-z]*)$/;
|
|
70
|
-
const DEFAULT_RPC_JSON_SERIALIZER_HANDLERS = {
|
|
71
|
-
undefined: {
|
|
72
|
-
condition(data) {
|
|
73
|
-
return data === void 0;
|
|
74
|
-
},
|
|
75
|
-
serialize() {
|
|
76
|
-
return null;
|
|
77
|
-
},
|
|
78
|
-
deserialize() {
|
|
79
|
-
return void 0;
|
|
80
|
-
},
|
|
81
|
-
isTerminal: true
|
|
82
|
-
},
|
|
83
|
-
bigint: {
|
|
84
|
-
condition(data) {
|
|
85
|
-
return typeof data === "bigint";
|
|
86
|
-
},
|
|
87
|
-
serialize(data) {
|
|
88
|
-
return data.toString();
|
|
89
|
-
},
|
|
90
|
-
deserialize(serialized) {
|
|
91
|
-
return BigInt(serialized);
|
|
92
|
-
},
|
|
93
|
-
isTerminal: true
|
|
94
|
-
},
|
|
95
|
-
date: {
|
|
96
|
-
condition(data) {
|
|
97
|
-
return data instanceof Date;
|
|
98
|
-
},
|
|
99
|
-
serialize(data) {
|
|
100
|
-
if (Number.isNaN(data.getTime())) {
|
|
101
|
-
return null;
|
|
102
|
-
}
|
|
103
|
-
return data.toISOString();
|
|
104
|
-
},
|
|
105
|
-
deserialize(serialized) {
|
|
106
|
-
return new Date(serialized ?? "Invalid Date");
|
|
107
|
-
},
|
|
108
|
-
isTerminal: true
|
|
109
|
-
},
|
|
110
|
-
nan: {
|
|
111
|
-
condition(data) {
|
|
112
|
-
return typeof data === "number" && Number.isNaN(data);
|
|
113
|
-
},
|
|
114
|
-
serialize() {
|
|
115
|
-
return null;
|
|
116
|
-
},
|
|
117
|
-
deserialize() {
|
|
118
|
-
return Number.NaN;
|
|
119
|
-
},
|
|
120
|
-
isTerminal: true
|
|
121
|
-
},
|
|
122
|
-
url: {
|
|
123
|
-
condition(data) {
|
|
124
|
-
return data instanceof URL;
|
|
125
|
-
},
|
|
126
|
-
serialize(data) {
|
|
127
|
-
return data.toString();
|
|
128
|
-
},
|
|
129
|
-
deserialize(serialized) {
|
|
130
|
-
return new URL(serialized);
|
|
131
|
-
},
|
|
132
|
-
isTerminal: true
|
|
133
|
-
},
|
|
134
|
-
regexp: {
|
|
135
|
-
condition(data) {
|
|
136
|
-
return data instanceof RegExp;
|
|
137
|
-
},
|
|
138
|
-
serialize(data) {
|
|
139
|
-
return data.toString();
|
|
140
|
-
},
|
|
141
|
-
deserialize(serialized) {
|
|
142
|
-
const [, pattern, flags] = serialized.match(REGEX_STRING_PATTERN);
|
|
143
|
-
return new RegExp(pattern, flags);
|
|
144
|
-
},
|
|
145
|
-
isTerminal: true
|
|
146
|
-
},
|
|
147
|
-
set: {
|
|
148
|
-
condition(data) {
|
|
149
|
-
return data instanceof Set;
|
|
150
|
-
},
|
|
151
|
-
serialize(data) {
|
|
152
|
-
return Array.from(data);
|
|
153
|
-
},
|
|
154
|
-
deserialize(serialized) {
|
|
155
|
-
return new Set(serialized);
|
|
156
|
-
}
|
|
157
|
-
},
|
|
158
|
-
map: {
|
|
159
|
-
condition(data) {
|
|
160
|
-
return data instanceof Map;
|
|
161
|
-
},
|
|
162
|
-
serialize(data) {
|
|
163
|
-
return Array.from(data.entries());
|
|
164
|
-
},
|
|
165
|
-
deserialize(serialized) {
|
|
166
|
-
return new Map(serialized);
|
|
167
|
-
}
|
|
168
|
-
}
|
|
169
|
-
};
|
|
170
|
-
class RPCJsonSerializer {
|
|
171
|
-
handlers;
|
|
172
|
-
omitUndefinedProperties;
|
|
173
|
-
constructor(options = {}) {
|
|
174
|
-
this.handlers = {
|
|
175
|
-
...DEFAULT_RPC_JSON_SERIALIZER_HANDLERS,
|
|
176
|
-
...options.handlers
|
|
177
|
-
};
|
|
178
|
-
this.omitUndefinedProperties = options.omitUndefinedProperties !== false;
|
|
179
|
-
}
|
|
180
|
-
serialize(data) {
|
|
181
|
-
const [json, meta_, maps, blobs] = this.serializeValue(data, [], [], [], []);
|
|
182
|
-
const meta = meta_.length === 0 ? void 0 : meta_;
|
|
183
|
-
if (maps.length === 0) {
|
|
184
|
-
return { json, meta };
|
|
185
|
-
}
|
|
186
|
-
return { json, meta, maps, blobs };
|
|
187
|
-
}
|
|
188
|
-
serializeValue(data, segments, meta, maps, blobs) {
|
|
189
|
-
for (const key in this.handlers) {
|
|
190
|
-
const handler = this.handlers[key];
|
|
191
|
-
if (handler && handler.condition(data)) {
|
|
192
|
-
const serialized = handler.serialize(data);
|
|
193
|
-
if (handler.isTerminal) {
|
|
194
|
-
meta.push([key, ...segments]);
|
|
195
|
-
return [serialized, meta, maps, blobs];
|
|
196
|
-
}
|
|
197
|
-
const result = this.serializeValue(serialized, segments, meta, maps, blobs);
|
|
198
|
-
meta.push([key, ...segments]);
|
|
199
|
-
return result;
|
|
200
|
-
}
|
|
201
|
-
}
|
|
202
|
-
if (data instanceof Blob) {
|
|
203
|
-
maps.push(segments);
|
|
204
|
-
blobs.push(data);
|
|
205
|
-
return [data, meta, maps, blobs];
|
|
206
|
-
}
|
|
207
|
-
if (Array.isArray(data)) {
|
|
208
|
-
const json = data.map((v, i) => {
|
|
209
|
-
return this.serializeValue(v, [...segments, i], meta, maps, blobs)[0];
|
|
210
|
-
});
|
|
211
|
-
return [json, meta, maps, blobs];
|
|
212
|
-
}
|
|
213
|
-
if (isPlainObject(data)) {
|
|
214
|
-
const json = {};
|
|
215
|
-
for (const k in data) {
|
|
216
|
-
const v = data[k];
|
|
217
|
-
if (k === "toJSON" && typeof v === "function") {
|
|
218
|
-
continue;
|
|
219
|
-
}
|
|
220
|
-
if (v === void 0 && this.omitUndefinedProperties) {
|
|
221
|
-
continue;
|
|
222
|
-
}
|
|
223
|
-
json[k] = this.serializeValue(v, [...segments, k], meta, maps, blobs)[0];
|
|
224
|
-
}
|
|
225
|
-
return [json, meta, maps, blobs];
|
|
226
|
-
}
|
|
227
|
-
return [data, meta, maps, blobs];
|
|
228
|
-
}
|
|
229
|
-
deserialize(serialized) {
|
|
230
|
-
const ref = { data: serialized.json };
|
|
231
|
-
if (serialized.blobs?.length) {
|
|
232
|
-
serialized.maps.forEach((segments, i) => {
|
|
233
|
-
let currentRef = ref;
|
|
234
|
-
let preSegment = "data";
|
|
235
|
-
segments.forEach((segment) => {
|
|
236
|
-
currentRef = currentRef[preSegment];
|
|
237
|
-
preSegment = segment;
|
|
238
|
-
if (!Object.hasOwn(currentRef, preSegment)) {
|
|
239
|
-
throw new Error(`Security error: Invalid serialized data. Segment "${preSegment}" does not exist.`);
|
|
240
|
-
}
|
|
241
|
-
});
|
|
242
|
-
currentRef[preSegment] = serialized.blobs[i];
|
|
243
|
-
});
|
|
244
|
-
}
|
|
245
|
-
serialized.meta?.forEach((item) => {
|
|
246
|
-
const type = item[0];
|
|
247
|
-
let currentRef = ref;
|
|
248
|
-
let preSegment = "data";
|
|
249
|
-
for (let i = 1; i < item.length; i++) {
|
|
250
|
-
currentRef = currentRef[preSegment];
|
|
251
|
-
preSegment = item[i];
|
|
252
|
-
if (!Object.hasOwn(currentRef, preSegment)) {
|
|
253
|
-
throw new Error(`Security error: Invalid serialized data. Segment "${preSegment}" does not exist.`);
|
|
254
|
-
}
|
|
255
|
-
}
|
|
256
|
-
currentRef[preSegment] = this.handlers[type].deserialize(currentRef[preSegment]);
|
|
257
|
-
});
|
|
258
|
-
return ref.data;
|
|
259
|
-
}
|
|
260
|
-
}
|
|
261
|
-
|
|
262
|
-
class RPCSerializer {
|
|
263
|
-
jsonSerializer;
|
|
264
|
-
defaultSerializeOptions;
|
|
265
|
-
constructor(options = {}) {
|
|
266
|
-
this.jsonSerializer = new RPCJsonSerializer(options);
|
|
267
|
-
this.defaultSerializeOptions = options.serialize;
|
|
268
|
-
}
|
|
269
|
-
serialize(data, options = {}) {
|
|
270
|
-
if (data === void 0 || data instanceof ReadableStream || data instanceof Blob) {
|
|
271
|
-
return data;
|
|
272
|
-
}
|
|
273
|
-
if (isAsyncIteratorObject(data)) {
|
|
274
|
-
return wrapAsyncIteratorPreservingEventMeta(data, {
|
|
275
|
-
mapResult: (result) => {
|
|
276
|
-
if (result.value === void 0) {
|
|
277
|
-
return result;
|
|
278
|
-
}
|
|
279
|
-
return { done: result.done, value: this.serializeValue(result.value, options) };
|
|
280
|
-
},
|
|
281
|
-
mapError: (e) => new ErrorEvent(
|
|
282
|
-
this.serializeValue(toORPCError(e).toJSON(), { ...options, useFormDataForBlobFields: false }),
|
|
283
|
-
{ cause: e }
|
|
284
|
-
)
|
|
285
|
-
});
|
|
286
|
-
}
|
|
287
|
-
return this.serializeValue(data, options);
|
|
288
|
-
}
|
|
289
|
-
serializeValue(data, options) {
|
|
290
|
-
const useFormDataForBlobs = options.useFormDataForBlobFields ?? this.defaultSerializeOptions?.useFormDataForBlobFields ?? true;
|
|
291
|
-
const { json, meta, maps, blobs } = this.jsonSerializer.serialize(data);
|
|
292
|
-
if (!useFormDataForBlobs || !blobs?.length) {
|
|
293
|
-
return { json, meta };
|
|
294
|
-
}
|
|
295
|
-
const form = new FormData();
|
|
296
|
-
form.set("data", stringifyJSON({ json, meta, maps }));
|
|
297
|
-
blobs.forEach((blob, i) => {
|
|
298
|
-
form.set(i.toString(), blob);
|
|
299
|
-
});
|
|
300
|
-
return form;
|
|
301
|
-
}
|
|
302
|
-
deserialize(data) {
|
|
303
|
-
if (data === void 0 || data instanceof ReadableStream || data instanceof Blob) {
|
|
304
|
-
return data;
|
|
305
|
-
}
|
|
306
|
-
if (isAsyncIteratorObject(data)) {
|
|
307
|
-
return wrapAsyncIteratorPreservingEventMeta(data, {
|
|
308
|
-
mapResult: (result) => {
|
|
309
|
-
if (result.value === void 0) {
|
|
310
|
-
return result;
|
|
311
|
-
}
|
|
312
|
-
return { done: result.done, value: this.deserializeValue(result.value) };
|
|
313
|
-
},
|
|
314
|
-
mapError: (e) => {
|
|
315
|
-
if (!(e instanceof ErrorEvent)) {
|
|
316
|
-
return e;
|
|
317
|
-
}
|
|
318
|
-
const deserialized = this.deserializeValue(e.data);
|
|
319
|
-
if (isORPCErrorJson(deserialized)) {
|
|
320
|
-
return createORPCErrorFromJson(deserialized, { cause: e });
|
|
321
|
-
}
|
|
322
|
-
return new ErrorEvent(deserialized, { cause: e });
|
|
323
|
-
}
|
|
324
|
-
});
|
|
325
|
-
}
|
|
326
|
-
return this.deserializeValue(data);
|
|
327
|
-
}
|
|
328
|
-
deserializeValue(data) {
|
|
329
|
-
if (!(data instanceof FormData)) {
|
|
330
|
-
return this.jsonSerializer.deserialize(data);
|
|
331
|
-
}
|
|
332
|
-
const serialized = JSON.parse(data.get("data"));
|
|
333
|
-
const blobs = [];
|
|
334
|
-
for (const [key, value] of data) {
|
|
335
|
-
if (value instanceof Blob) {
|
|
336
|
-
blobs[Number(key)] = value;
|
|
337
|
-
}
|
|
338
|
-
}
|
|
339
|
-
return this.jsonSerializer.deserialize({ ...serialized, blobs });
|
|
340
|
-
}
|
|
341
|
-
}
|
|
342
|
-
|
|
343
|
-
export { RPCSerializer as R, isInferableError as a, RPCJsonSerializer as b, createORPCErrorFromJson as c, cloneORPCError as d, isORPCErrorJson as i, toORPCError as t, wrapAsyncIteratorPreservingEventMeta as w };
|