@orpc/client 0.0.0-next.aa57fb6 → 0.0.0-next.aac73c2
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 +101 -0
- package/dist/adapters/fetch/index.d.mts +26 -0
- package/dist/adapters/fetch/index.d.ts +26 -0
- package/dist/adapters/fetch/index.mjs +32 -0
- package/dist/adapters/standard/index.d.mts +9 -0
- package/dist/adapters/standard/index.d.ts +9 -0
- package/dist/adapters/standard/index.mjs +4 -0
- package/dist/index.d.mts +152 -0
- package/dist/index.d.ts +152 -0
- package/dist/index.mjs +65 -0
- package/dist/plugins/index.d.mts +61 -0
- package/dist/plugins/index.d.ts +61 -0
- package/dist/plugins/index.mjs +126 -0
- package/dist/shared/client.BZZMKcrk.d.ts +39 -0
- package/dist/shared/client.Bnaxb-CE.d.mts +30 -0
- package/dist/shared/client.Bnaxb-CE.d.ts +30 -0
- package/dist/shared/client.D77bw0hs.mjs +333 -0
- package/dist/shared/client.D_TnaeH1.d.mts +39 -0
- package/dist/shared/client.DczFzIj1.d.ts +103 -0
- package/dist/shared/client.DnHi1dp8.d.mts +103 -0
- package/dist/shared/client.jKEwIsRd.mjs +175 -0
- package/package.json +23 -17
- package/dist/index.js +0 -83
- package/dist/src/index.d.ts +0 -7
- package/dist/src/procedure.d.ts +0 -27
- package/dist/src/router.d.ts +0 -34
@@ -0,0 +1,103 @@
|
|
1
|
+
import { a as ClientContext, b as ClientOptions, d as HTTPMethod } from './client.Bnaxb-CE.js';
|
2
|
+
import { c as StandardLinkCodec, a as StandardLinkOptions } from './client.BZZMKcrk.js';
|
3
|
+
import { Segment, Value } from '@orpc/shared';
|
4
|
+
import { StandardHeaders, StandardRequest, StandardLazyResponse } from '@orpc/standard-server';
|
5
|
+
|
6
|
+
declare const STANDARD_RPC_JSON_SERIALIZER_BUILT_IN_TYPES: {
|
7
|
+
readonly BIGINT: 0;
|
8
|
+
readonly DATE: 1;
|
9
|
+
readonly NAN: 2;
|
10
|
+
readonly UNDEFINED: 3;
|
11
|
+
readonly URL: 4;
|
12
|
+
readonly REGEXP: 5;
|
13
|
+
readonly SET: 6;
|
14
|
+
readonly MAP: 7;
|
15
|
+
};
|
16
|
+
type StandardRPCJsonSerializedMetaItem = readonly [type: number, ...path: Segment[]];
|
17
|
+
type StandardRPCJsonSerialized = [json: unknown, meta: StandardRPCJsonSerializedMetaItem[], maps: Segment[][], blobs: Blob[]];
|
18
|
+
interface StandardRPCCustomJsonSerializer {
|
19
|
+
type: number;
|
20
|
+
condition(data: unknown): boolean;
|
21
|
+
serialize(data: any): unknown;
|
22
|
+
deserialize(serialized: any): unknown;
|
23
|
+
}
|
24
|
+
interface StandardRPCJsonSerializerOptions {
|
25
|
+
customJsonSerializers?: readonly StandardRPCCustomJsonSerializer[];
|
26
|
+
}
|
27
|
+
declare class StandardRPCJsonSerializer {
|
28
|
+
private readonly customSerializers;
|
29
|
+
constructor(options?: StandardRPCJsonSerializerOptions);
|
30
|
+
serialize(data: unknown, segments?: Segment[], meta?: StandardRPCJsonSerializedMetaItem[], maps?: Segment[][], blobs?: Blob[]): StandardRPCJsonSerialized;
|
31
|
+
deserialize(json: unknown, meta: readonly StandardRPCJsonSerializedMetaItem[]): unknown;
|
32
|
+
deserialize(json: unknown, meta: readonly StandardRPCJsonSerializedMetaItem[], maps: readonly Segment[][], getBlob: (index: number) => Blob): unknown;
|
33
|
+
}
|
34
|
+
|
35
|
+
declare class StandardRPCSerializer {
|
36
|
+
#private;
|
37
|
+
private readonly jsonSerializer;
|
38
|
+
constructor(jsonSerializer: StandardRPCJsonSerializer);
|
39
|
+
serialize(data: unknown): object;
|
40
|
+
deserialize(data: unknown): unknown;
|
41
|
+
}
|
42
|
+
|
43
|
+
interface StandardRPCLinkCodecOptions<T extends ClientContext> {
|
44
|
+
/**
|
45
|
+
* Base url for all requests.
|
46
|
+
*/
|
47
|
+
url: Value<string | URL, [
|
48
|
+
options: ClientOptions<T>,
|
49
|
+
path: readonly string[],
|
50
|
+
input: unknown
|
51
|
+
]>;
|
52
|
+
/**
|
53
|
+
* The maximum length of the URL.
|
54
|
+
*
|
55
|
+
* @default 2083
|
56
|
+
*/
|
57
|
+
maxUrlLength?: Value<number, [
|
58
|
+
options: ClientOptions<T>,
|
59
|
+
path: readonly string[],
|
60
|
+
input: unknown
|
61
|
+
]>;
|
62
|
+
/**
|
63
|
+
* The method used to make the request.
|
64
|
+
*
|
65
|
+
* @default 'POST'
|
66
|
+
*/
|
67
|
+
method?: Value<HTTPMethod, [
|
68
|
+
options: ClientOptions<T>,
|
69
|
+
path: readonly string[],
|
70
|
+
input: unknown
|
71
|
+
]>;
|
72
|
+
/**
|
73
|
+
* The method to use when the payload cannot safely pass to the server with method return from method function.
|
74
|
+
* GET is not allowed, it's very dangerous.
|
75
|
+
*
|
76
|
+
* @default 'POST'
|
77
|
+
*/
|
78
|
+
fallbackMethod?: Exclude<HTTPMethod, 'GET'>;
|
79
|
+
/**
|
80
|
+
* Inject headers to the request.
|
81
|
+
*/
|
82
|
+
headers?: Value<StandardHeaders, [
|
83
|
+
options: ClientOptions<T>,
|
84
|
+
path: readonly string[],
|
85
|
+
input: unknown
|
86
|
+
]>;
|
87
|
+
}
|
88
|
+
declare class StandardRPCLinkCodec<T extends ClientContext> implements StandardLinkCodec<T> {
|
89
|
+
private readonly serializer;
|
90
|
+
private readonly baseUrl;
|
91
|
+
private readonly maxUrlLength;
|
92
|
+
private readonly fallbackMethod;
|
93
|
+
private readonly expectedMethod;
|
94
|
+
private readonly headers;
|
95
|
+
constructor(serializer: StandardRPCSerializer, options: StandardRPCLinkCodecOptions<T>);
|
96
|
+
encode(path: readonly string[], input: unknown, options: ClientOptions<T>): Promise<StandardRequest>;
|
97
|
+
decode(response: StandardLazyResponse): Promise<unknown>;
|
98
|
+
}
|
99
|
+
|
100
|
+
interface StandardRPCLinkOptions<T extends ClientContext> extends StandardLinkOptions<T>, StandardRPCLinkCodecOptions<T>, StandardRPCJsonSerializerOptions {
|
101
|
+
}
|
102
|
+
|
103
|
+
export { STANDARD_RPC_JSON_SERIALIZER_BUILT_IN_TYPES as S, type StandardRPCJsonSerializedMetaItem as a, type StandardRPCJsonSerialized as b, type StandardRPCCustomJsonSerializer as c, type StandardRPCJsonSerializerOptions as d, StandardRPCJsonSerializer as e, type StandardRPCLinkOptions as f, type StandardRPCLinkCodecOptions as g, StandardRPCLinkCodec as h, StandardRPCSerializer as i };
|
@@ -0,0 +1,103 @@
|
|
1
|
+
import { a as ClientContext, b as ClientOptions, d as HTTPMethod } from './client.Bnaxb-CE.mjs';
|
2
|
+
import { c as StandardLinkCodec, a as StandardLinkOptions } from './client.D_TnaeH1.mjs';
|
3
|
+
import { Segment, Value } from '@orpc/shared';
|
4
|
+
import { StandardHeaders, StandardRequest, StandardLazyResponse } from '@orpc/standard-server';
|
5
|
+
|
6
|
+
declare const STANDARD_RPC_JSON_SERIALIZER_BUILT_IN_TYPES: {
|
7
|
+
readonly BIGINT: 0;
|
8
|
+
readonly DATE: 1;
|
9
|
+
readonly NAN: 2;
|
10
|
+
readonly UNDEFINED: 3;
|
11
|
+
readonly URL: 4;
|
12
|
+
readonly REGEXP: 5;
|
13
|
+
readonly SET: 6;
|
14
|
+
readonly MAP: 7;
|
15
|
+
};
|
16
|
+
type StandardRPCJsonSerializedMetaItem = readonly [type: number, ...path: Segment[]];
|
17
|
+
type StandardRPCJsonSerialized = [json: unknown, meta: StandardRPCJsonSerializedMetaItem[], maps: Segment[][], blobs: Blob[]];
|
18
|
+
interface StandardRPCCustomJsonSerializer {
|
19
|
+
type: number;
|
20
|
+
condition(data: unknown): boolean;
|
21
|
+
serialize(data: any): unknown;
|
22
|
+
deserialize(serialized: any): unknown;
|
23
|
+
}
|
24
|
+
interface StandardRPCJsonSerializerOptions {
|
25
|
+
customJsonSerializers?: readonly StandardRPCCustomJsonSerializer[];
|
26
|
+
}
|
27
|
+
declare class StandardRPCJsonSerializer {
|
28
|
+
private readonly customSerializers;
|
29
|
+
constructor(options?: StandardRPCJsonSerializerOptions);
|
30
|
+
serialize(data: unknown, segments?: Segment[], meta?: StandardRPCJsonSerializedMetaItem[], maps?: Segment[][], blobs?: Blob[]): StandardRPCJsonSerialized;
|
31
|
+
deserialize(json: unknown, meta: readonly StandardRPCJsonSerializedMetaItem[]): unknown;
|
32
|
+
deserialize(json: unknown, meta: readonly StandardRPCJsonSerializedMetaItem[], maps: readonly Segment[][], getBlob: (index: number) => Blob): unknown;
|
33
|
+
}
|
34
|
+
|
35
|
+
declare class StandardRPCSerializer {
|
36
|
+
#private;
|
37
|
+
private readonly jsonSerializer;
|
38
|
+
constructor(jsonSerializer: StandardRPCJsonSerializer);
|
39
|
+
serialize(data: unknown): object;
|
40
|
+
deserialize(data: unknown): unknown;
|
41
|
+
}
|
42
|
+
|
43
|
+
interface StandardRPCLinkCodecOptions<T extends ClientContext> {
|
44
|
+
/**
|
45
|
+
* Base url for all requests.
|
46
|
+
*/
|
47
|
+
url: Value<string | URL, [
|
48
|
+
options: ClientOptions<T>,
|
49
|
+
path: readonly string[],
|
50
|
+
input: unknown
|
51
|
+
]>;
|
52
|
+
/**
|
53
|
+
* The maximum length of the URL.
|
54
|
+
*
|
55
|
+
* @default 2083
|
56
|
+
*/
|
57
|
+
maxUrlLength?: Value<number, [
|
58
|
+
options: ClientOptions<T>,
|
59
|
+
path: readonly string[],
|
60
|
+
input: unknown
|
61
|
+
]>;
|
62
|
+
/**
|
63
|
+
* The method used to make the request.
|
64
|
+
*
|
65
|
+
* @default 'POST'
|
66
|
+
*/
|
67
|
+
method?: Value<HTTPMethod, [
|
68
|
+
options: ClientOptions<T>,
|
69
|
+
path: readonly string[],
|
70
|
+
input: unknown
|
71
|
+
]>;
|
72
|
+
/**
|
73
|
+
* The method to use when the payload cannot safely pass to the server with method return from method function.
|
74
|
+
* GET is not allowed, it's very dangerous.
|
75
|
+
*
|
76
|
+
* @default 'POST'
|
77
|
+
*/
|
78
|
+
fallbackMethod?: Exclude<HTTPMethod, 'GET'>;
|
79
|
+
/**
|
80
|
+
* Inject headers to the request.
|
81
|
+
*/
|
82
|
+
headers?: Value<StandardHeaders, [
|
83
|
+
options: ClientOptions<T>,
|
84
|
+
path: readonly string[],
|
85
|
+
input: unknown
|
86
|
+
]>;
|
87
|
+
}
|
88
|
+
declare class StandardRPCLinkCodec<T extends ClientContext> implements StandardLinkCodec<T> {
|
89
|
+
private readonly serializer;
|
90
|
+
private readonly baseUrl;
|
91
|
+
private readonly maxUrlLength;
|
92
|
+
private readonly fallbackMethod;
|
93
|
+
private readonly expectedMethod;
|
94
|
+
private readonly headers;
|
95
|
+
constructor(serializer: StandardRPCSerializer, options: StandardRPCLinkCodecOptions<T>);
|
96
|
+
encode(path: readonly string[], input: unknown, options: ClientOptions<T>): Promise<StandardRequest>;
|
97
|
+
decode(response: StandardLazyResponse): Promise<unknown>;
|
98
|
+
}
|
99
|
+
|
100
|
+
interface StandardRPCLinkOptions<T extends ClientContext> extends StandardLinkOptions<T>, StandardRPCLinkCodecOptions<T>, StandardRPCJsonSerializerOptions {
|
101
|
+
}
|
102
|
+
|
103
|
+
export { STANDARD_RPC_JSON_SERIALIZER_BUILT_IN_TYPES as S, type StandardRPCJsonSerializedMetaItem as a, type StandardRPCJsonSerialized as b, type StandardRPCCustomJsonSerializer as c, type StandardRPCJsonSerializerOptions as d, StandardRPCJsonSerializer as e, type StandardRPCLinkOptions as f, type StandardRPCLinkCodecOptions as g, StandardRPCLinkCodec as h, StandardRPCSerializer as i };
|
@@ -0,0 +1,175 @@
|
|
1
|
+
import { isObject, isTypescriptObject } from '@orpc/shared';
|
2
|
+
import { getEventMeta, withEventMeta } from '@orpc/standard-server';
|
3
|
+
|
4
|
+
const COMMON_ORPC_ERROR_DEFS = {
|
5
|
+
BAD_REQUEST: {
|
6
|
+
status: 400,
|
7
|
+
message: "Bad Request"
|
8
|
+
},
|
9
|
+
UNAUTHORIZED: {
|
10
|
+
status: 401,
|
11
|
+
message: "Unauthorized"
|
12
|
+
},
|
13
|
+
FORBIDDEN: {
|
14
|
+
status: 403,
|
15
|
+
message: "Forbidden"
|
16
|
+
},
|
17
|
+
NOT_FOUND: {
|
18
|
+
status: 404,
|
19
|
+
message: "Not Found"
|
20
|
+
},
|
21
|
+
METHOD_NOT_SUPPORTED: {
|
22
|
+
status: 405,
|
23
|
+
message: "Method Not Supported"
|
24
|
+
},
|
25
|
+
NOT_ACCEPTABLE: {
|
26
|
+
status: 406,
|
27
|
+
message: "Not Acceptable"
|
28
|
+
},
|
29
|
+
TIMEOUT: {
|
30
|
+
status: 408,
|
31
|
+
message: "Request Timeout"
|
32
|
+
},
|
33
|
+
CONFLICT: {
|
34
|
+
status: 409,
|
35
|
+
message: "Conflict"
|
36
|
+
},
|
37
|
+
PRECONDITION_FAILED: {
|
38
|
+
status: 412,
|
39
|
+
message: "Precondition Failed"
|
40
|
+
},
|
41
|
+
PAYLOAD_TOO_LARGE: {
|
42
|
+
status: 413,
|
43
|
+
message: "Payload Too Large"
|
44
|
+
},
|
45
|
+
UNSUPPORTED_MEDIA_TYPE: {
|
46
|
+
status: 415,
|
47
|
+
message: "Unsupported Media Type"
|
48
|
+
},
|
49
|
+
UNPROCESSABLE_CONTENT: {
|
50
|
+
status: 422,
|
51
|
+
message: "Unprocessable Content"
|
52
|
+
},
|
53
|
+
TOO_MANY_REQUESTS: {
|
54
|
+
status: 429,
|
55
|
+
message: "Too Many Requests"
|
56
|
+
},
|
57
|
+
CLIENT_CLOSED_REQUEST: {
|
58
|
+
status: 499,
|
59
|
+
message: "Client Closed Request"
|
60
|
+
},
|
61
|
+
INTERNAL_SERVER_ERROR: {
|
62
|
+
status: 500,
|
63
|
+
message: "Internal Server Error"
|
64
|
+
},
|
65
|
+
NOT_IMPLEMENTED: {
|
66
|
+
status: 501,
|
67
|
+
message: "Not Implemented"
|
68
|
+
},
|
69
|
+
BAD_GATEWAY: {
|
70
|
+
status: 502,
|
71
|
+
message: "Bad Gateway"
|
72
|
+
},
|
73
|
+
SERVICE_UNAVAILABLE: {
|
74
|
+
status: 503,
|
75
|
+
message: "Service Unavailable"
|
76
|
+
},
|
77
|
+
GATEWAY_TIMEOUT: {
|
78
|
+
status: 504,
|
79
|
+
message: "Gateway Timeout"
|
80
|
+
}
|
81
|
+
};
|
82
|
+
function fallbackORPCErrorStatus(code, status) {
|
83
|
+
return status ?? COMMON_ORPC_ERROR_DEFS[code]?.status ?? 500;
|
84
|
+
}
|
85
|
+
function fallbackORPCErrorMessage(code, message) {
|
86
|
+
return message || COMMON_ORPC_ERROR_DEFS[code]?.message || code;
|
87
|
+
}
|
88
|
+
class ORPCError extends Error {
|
89
|
+
defined;
|
90
|
+
code;
|
91
|
+
status;
|
92
|
+
data;
|
93
|
+
constructor(code, ...[options]) {
|
94
|
+
if (options?.status && !isORPCErrorStatus(options.status)) {
|
95
|
+
throw new Error("[ORPCError] Invalid error status code.");
|
96
|
+
}
|
97
|
+
const message = fallbackORPCErrorMessage(code, options?.message);
|
98
|
+
super(message, options);
|
99
|
+
this.code = code;
|
100
|
+
this.status = fallbackORPCErrorStatus(code, options?.status);
|
101
|
+
this.defined = options?.defined ?? false;
|
102
|
+
this.data = options?.data;
|
103
|
+
}
|
104
|
+
toJSON() {
|
105
|
+
return {
|
106
|
+
defined: this.defined,
|
107
|
+
code: this.code,
|
108
|
+
status: this.status,
|
109
|
+
message: this.message,
|
110
|
+
data: this.data
|
111
|
+
};
|
112
|
+
}
|
113
|
+
static fromJSON(json, options) {
|
114
|
+
return new ORPCError(json.code, {
|
115
|
+
...options,
|
116
|
+
...json
|
117
|
+
});
|
118
|
+
}
|
119
|
+
static isValidJSON(json) {
|
120
|
+
if (!isObject(json)) {
|
121
|
+
return false;
|
122
|
+
}
|
123
|
+
const validKeys = ["defined", "code", "status", "message", "data"];
|
124
|
+
if (Object.keys(json).some((k) => !validKeys.includes(k))) {
|
125
|
+
return false;
|
126
|
+
}
|
127
|
+
return "defined" in json && typeof json.defined === "boolean" && "code" in json && typeof json.code === "string" && "status" in json && typeof json.status === "number" && "message" in json && typeof json.message === "string";
|
128
|
+
}
|
129
|
+
}
|
130
|
+
function isDefinedError(error) {
|
131
|
+
return error instanceof ORPCError && error.defined;
|
132
|
+
}
|
133
|
+
function toORPCError(error) {
|
134
|
+
return error instanceof ORPCError ? error : new ORPCError("INTERNAL_SERVER_ERROR", {
|
135
|
+
message: "Internal server error",
|
136
|
+
cause: error
|
137
|
+
});
|
138
|
+
}
|
139
|
+
function isORPCErrorStatus(status) {
|
140
|
+
return status < 200 || status >= 400;
|
141
|
+
}
|
142
|
+
|
143
|
+
function mapEventIterator(iterator, maps) {
|
144
|
+
return async function* () {
|
145
|
+
try {
|
146
|
+
while (true) {
|
147
|
+
const { done, value } = await iterator.next();
|
148
|
+
let mappedValue = await maps.value(value, done);
|
149
|
+
if (mappedValue !== value) {
|
150
|
+
const meta = getEventMeta(value);
|
151
|
+
if (meta && isTypescriptObject(mappedValue)) {
|
152
|
+
mappedValue = withEventMeta(mappedValue, meta);
|
153
|
+
}
|
154
|
+
}
|
155
|
+
if (done) {
|
156
|
+
return mappedValue;
|
157
|
+
}
|
158
|
+
yield mappedValue;
|
159
|
+
}
|
160
|
+
} catch (error) {
|
161
|
+
let mappedError = await maps.error(error);
|
162
|
+
if (mappedError !== error) {
|
163
|
+
const meta = getEventMeta(error);
|
164
|
+
if (meta && isTypescriptObject(mappedError)) {
|
165
|
+
mappedError = withEventMeta(mappedError, meta);
|
166
|
+
}
|
167
|
+
}
|
168
|
+
throw mappedError;
|
169
|
+
} finally {
|
170
|
+
await iterator.return?.();
|
171
|
+
}
|
172
|
+
}();
|
173
|
+
}
|
174
|
+
|
175
|
+
export { COMMON_ORPC_ERROR_DEFS as C, ORPCError as O, fallbackORPCErrorMessage as a, isORPCErrorStatus as b, fallbackORPCErrorStatus as f, isDefinedError as i, mapEventIterator as m, toORPCError as t };
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@orpc/client",
|
3
3
|
"type": "module",
|
4
|
-
"version": "0.0.0-next.
|
4
|
+
"version": "0.0.0-next.aac73c2",
|
5
5
|
"license": "MIT",
|
6
6
|
"homepage": "https://orpc.unnoq.com",
|
7
7
|
"repository": {
|
@@ -15,33 +15,39 @@
|
|
15
15
|
],
|
16
16
|
"exports": {
|
17
17
|
".": {
|
18
|
-
"types": "./dist/
|
19
|
-
"import": "./dist/index.
|
20
|
-
"default": "./dist/index.
|
18
|
+
"types": "./dist/index.d.mts",
|
19
|
+
"import": "./dist/index.mjs",
|
20
|
+
"default": "./dist/index.mjs"
|
21
21
|
},
|
22
|
-
"
|
23
|
-
"types": "./dist/
|
22
|
+
"./plugins": {
|
23
|
+
"types": "./dist/plugins/index.d.mts",
|
24
|
+
"import": "./dist/plugins/index.mjs",
|
25
|
+
"default": "./dist/plugins/index.mjs"
|
26
|
+
},
|
27
|
+
"./standard": {
|
28
|
+
"types": "./dist/adapters/standard/index.d.mts",
|
29
|
+
"import": "./dist/adapters/standard/index.mjs",
|
30
|
+
"default": "./dist/adapters/standard/index.mjs"
|
31
|
+
},
|
32
|
+
"./fetch": {
|
33
|
+
"types": "./dist/adapters/fetch/index.d.mts",
|
34
|
+
"import": "./dist/adapters/fetch/index.mjs",
|
35
|
+
"default": "./dist/adapters/fetch/index.mjs"
|
24
36
|
}
|
25
37
|
},
|
26
38
|
"files": [
|
27
|
-
"!**/*.map",
|
28
|
-
"!**/*.tsbuildinfo",
|
29
39
|
"dist"
|
30
40
|
],
|
31
|
-
"peerDependencies": {
|
32
|
-
"@orpc/contract": "0.0.0-next.aa57fb6",
|
33
|
-
"@orpc/server": "0.0.0-next.aa57fb6"
|
34
|
-
},
|
35
41
|
"dependencies": {
|
36
|
-
"@orpc/shared": "0.0.0-next.
|
37
|
-
"@orpc/
|
42
|
+
"@orpc/shared": "0.0.0-next.aac73c2",
|
43
|
+
"@orpc/standard-server": "0.0.0-next.aac73c2",
|
44
|
+
"@orpc/standard-server-fetch": "0.0.0-next.aac73c2"
|
38
45
|
},
|
39
46
|
"devDependencies": {
|
40
|
-
"zod": "^3.
|
41
|
-
"@orpc/openapi": "0.0.0-next.aa57fb6"
|
47
|
+
"zod": "^3.24.2"
|
42
48
|
},
|
43
49
|
"scripts": {
|
44
|
-
"build": "
|
50
|
+
"build": "unbuild",
|
45
51
|
"build:watch": "pnpm run build --watch",
|
46
52
|
"type:check": "tsc -b"
|
47
53
|
}
|
package/dist/index.js
DELETED
@@ -1,83 +0,0 @@
|
|
1
|
-
// src/procedure.ts
|
2
|
-
import {
|
3
|
-
ORPC_HEADER,
|
4
|
-
ORPC_HEADER_VALUE
|
5
|
-
} from "@orpc/contract";
|
6
|
-
import { trim } from "@orpc/shared";
|
7
|
-
import { ORPCError } from "@orpc/shared/error";
|
8
|
-
import { ORPCDeserializer, ORPCSerializer } from "@orpc/transformer";
|
9
|
-
function createProcedureClient(options) {
|
10
|
-
const serializer = new ORPCSerializer();
|
11
|
-
const deserializer = new ORPCDeserializer();
|
12
|
-
const client = async (input) => {
|
13
|
-
const fetch_ = options.fetch ?? fetch;
|
14
|
-
const url = `${trim(options.baseURL, "/")}/${options.path.map(encodeURIComponent).join("/")}`;
|
15
|
-
let headers = await options.headers?.(input);
|
16
|
-
headers = headers instanceof Headers ? headers : new Headers(headers);
|
17
|
-
const { body, headers: headers_ } = serializer.serialize(input);
|
18
|
-
for (const [key, value] of headers_.entries()) {
|
19
|
-
headers.set(key, value);
|
20
|
-
}
|
21
|
-
headers.set(ORPC_HEADER, ORPC_HEADER_VALUE);
|
22
|
-
const response = await fetch_(url, {
|
23
|
-
method: "POST",
|
24
|
-
headers,
|
25
|
-
body
|
26
|
-
});
|
27
|
-
const json = await (async () => {
|
28
|
-
try {
|
29
|
-
return await deserializer.deserialize(response);
|
30
|
-
} catch (e) {
|
31
|
-
throw new ORPCError({
|
32
|
-
code: "INTERNAL_SERVER_ERROR",
|
33
|
-
message: "Cannot parse response.",
|
34
|
-
cause: e
|
35
|
-
});
|
36
|
-
}
|
37
|
-
})();
|
38
|
-
if (!response.ok) {
|
39
|
-
throw ORPCError.fromJSON(json) ?? new ORPCError({
|
40
|
-
status: response.status,
|
41
|
-
code: "INTERNAL_SERVER_ERROR",
|
42
|
-
message: "Internal server error"
|
43
|
-
});
|
44
|
-
}
|
45
|
-
return json;
|
46
|
-
};
|
47
|
-
return client;
|
48
|
-
}
|
49
|
-
|
50
|
-
// src/router.ts
|
51
|
-
function createRouterClient(options) {
|
52
|
-
const path = options?.path ?? [];
|
53
|
-
const client = new Proxy(
|
54
|
-
createProcedureClient({
|
55
|
-
baseURL: options.baseURL,
|
56
|
-
fetch: options.fetch,
|
57
|
-
headers: options.headers,
|
58
|
-
path
|
59
|
-
}),
|
60
|
-
{
|
61
|
-
get(target, key) {
|
62
|
-
if (typeof key !== "string") {
|
63
|
-
return Reflect.get(target, key);
|
64
|
-
}
|
65
|
-
return createRouterClient({
|
66
|
-
...options,
|
67
|
-
path: [...path, key]
|
68
|
-
});
|
69
|
-
}
|
70
|
-
}
|
71
|
-
);
|
72
|
-
return client;
|
73
|
-
}
|
74
|
-
|
75
|
-
// src/index.ts
|
76
|
-
export * from "@orpc/shared/error";
|
77
|
-
var createORPCClient = createRouterClient;
|
78
|
-
export {
|
79
|
-
createORPCClient,
|
80
|
-
createProcedureClient,
|
81
|
-
createRouterClient
|
82
|
-
};
|
83
|
-
//# sourceMappingURL=index.js.map
|
package/dist/src/index.d.ts
DELETED
package/dist/src/procedure.d.ts
DELETED
@@ -1,27 +0,0 @@
|
|
1
|
-
import type { Promisable } from '@orpc/shared';
|
2
|
-
import { type Schema, type SchemaInput, type SchemaOutput } from '@orpc/contract';
|
3
|
-
export interface ProcedureClient<TInputSchema extends Schema, TOutputSchema extends Schema, TFuncOutput extends SchemaOutput<TOutputSchema>> {
|
4
|
-
(input: SchemaInput<TInputSchema>): Promise<SchemaOutput<TOutputSchema, TFuncOutput>>;
|
5
|
-
}
|
6
|
-
export interface CreateProcedureClientOptions {
|
7
|
-
/**
|
8
|
-
* The base url of the server.
|
9
|
-
*/
|
10
|
-
baseURL: string;
|
11
|
-
/**
|
12
|
-
* The fetch function used to make the request.
|
13
|
-
* @default global fetch
|
14
|
-
*/
|
15
|
-
fetch?: typeof fetch;
|
16
|
-
/**
|
17
|
-
* The headers used to make the request.
|
18
|
-
* Invoked before the request is made.
|
19
|
-
*/
|
20
|
-
headers?: (input: unknown) => Promisable<Headers | Record<string, string>>;
|
21
|
-
/**
|
22
|
-
* The path of the procedure on server.
|
23
|
-
*/
|
24
|
-
path: string[];
|
25
|
-
}
|
26
|
-
export declare function createProcedureClient<TInputSchema extends Schema, TOutputSchema extends Schema, TFuncOutput extends SchemaOutput<TOutputSchema>>(options: CreateProcedureClientOptions): ProcedureClient<TInputSchema, TOutputSchema, TFuncOutput>;
|
27
|
-
//# sourceMappingURL=procedure.d.ts.map
|
package/dist/src/router.d.ts
DELETED
@@ -1,34 +0,0 @@
|
|
1
|
-
import type { ContractProcedure, ContractRouter, SchemaOutput } from '@orpc/contract';
|
2
|
-
import type { Lazy, Procedure, Router } from '@orpc/server';
|
3
|
-
import type { Promisable } from '@orpc/shared';
|
4
|
-
import { type ProcedureClient } from './procedure';
|
5
|
-
export type RouterClientWithContractRouter<TRouter extends ContractRouter> = {
|
6
|
-
[K in keyof TRouter]: TRouter[K] extends ContractProcedure<infer UInputSchema, infer UOutputSchema> ? ProcedureClient<UInputSchema, UOutputSchema, SchemaOutput<UOutputSchema>> : TRouter[K] extends ContractRouter ? RouterClientWithContractRouter<TRouter[K]> : never;
|
7
|
-
};
|
8
|
-
export type RouterClientWithRouter<TRouter extends Router<any>> = {
|
9
|
-
[K in keyof TRouter]: TRouter[K] extends Procedure<any, any, infer UInputSchema, infer UOutputSchema, infer UFuncOutput> | Lazy<Procedure<any, any, infer UInputSchema, infer UOutputSchema, infer UFuncOutput>> ? ProcedureClient<UInputSchema, UOutputSchema, UFuncOutput> : TRouter[K] extends Router<any> ? RouterClientWithRouter<TRouter[K]> : never;
|
10
|
-
};
|
11
|
-
export interface CreateRouterClientOptions {
|
12
|
-
/**
|
13
|
-
* The base url of the server.
|
14
|
-
*/
|
15
|
-
baseURL: string;
|
16
|
-
/**
|
17
|
-
* The fetch function used to make the request.
|
18
|
-
* @default global fetch
|
19
|
-
*/
|
20
|
-
fetch?: typeof fetch;
|
21
|
-
/**
|
22
|
-
* The headers used to make the request.
|
23
|
-
* Invoked before the request is made.
|
24
|
-
*/
|
25
|
-
headers?: (input: unknown) => Promisable<Headers | Record<string, string>>;
|
26
|
-
/**
|
27
|
-
* This used for internal purpose only.
|
28
|
-
*
|
29
|
-
* @internal
|
30
|
-
*/
|
31
|
-
path?: string[];
|
32
|
-
}
|
33
|
-
export declare function createRouterClient<TRouter extends Router<any> | ContractRouter>(options: CreateRouterClientOptions): TRouter extends Router<any> ? RouterClientWithRouter<TRouter> : TRouter extends ContractRouter ? RouterClientWithContractRouter<TRouter> : never;
|
34
|
-
//# sourceMappingURL=router.d.ts.map
|