@orpc/trpc 0.0.0-next.fe89a39 → 0.0.0-next.ff2168f
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 +8 -8
- package/dist/index.mjs +8 -20
- package/package.json +8 -9
package/README.md
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
-
<image align="center" src="https://orpc.
|
|
2
|
+
<image align="center" src="https://orpc.dev/logo.webp" width=280 alt="oRPC logo" />
|
|
3
3
|
</div>
|
|
4
4
|
|
|
5
5
|
<h1></h1>
|
|
6
6
|
|
|
7
7
|
<div align="center">
|
|
8
|
-
<a href="https://codecov.io/gh/
|
|
9
|
-
<img alt="codecov" src="https://codecov.io/gh/
|
|
8
|
+
<a href="https://codecov.io/gh/middleapi/orpc">
|
|
9
|
+
<img alt="codecov" src="https://codecov.io/gh/middleapi/orpc/branch/main/graph/badge.svg">
|
|
10
10
|
</a>
|
|
11
11
|
<a href="https://www.npmjs.com/package/@orpc/trpc">
|
|
12
12
|
<img alt="weekly downloads" src="https://img.shields.io/npm/dw/%40orpc%2Ftrpc?logo=npm" />
|
|
13
13
|
</a>
|
|
14
|
-
<a href="https://github.com/
|
|
15
|
-
<img alt="MIT License" src="https://img.shields.io/github/license/
|
|
14
|
+
<a href="https://github.com/middleapi/orpc/blob/main/LICENSE">
|
|
15
|
+
<img alt="MIT License" src="https://img.shields.io/github/license/middleapi/orpc?logo=open-source-initiative" />
|
|
16
16
|
</a>
|
|
17
17
|
<a href="https://discord.gg/TXEbwRBvQn">
|
|
18
18
|
<img alt="Discord" src="https://img.shields.io/discord/1308966753044398161?color=7389D8&label&logo=discord&logoColor=ffffff" />
|
|
19
19
|
</a>
|
|
20
|
-
<a href="https://deepwiki.com/
|
|
20
|
+
<a href="https://deepwiki.com/middleapi/orpc">
|
|
21
21
|
<img src="https://deepwiki.com/badge.svg" alt="Ask DeepWiki">
|
|
22
22
|
</a>
|
|
23
23
|
</div>
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
|
|
46
46
|
## Documentation
|
|
47
47
|
|
|
48
|
-
You can find the full documentation [here](https://orpc.
|
|
48
|
+
You can find the full documentation [here](https://orpc.dev).
|
|
49
49
|
|
|
50
50
|
## Packages
|
|
51
51
|
|
|
@@ -78,4 +78,4 @@ Bridge between [tRPC](https://trpc.io/) and oRPC
|
|
|
78
78
|
|
|
79
79
|
## License
|
|
80
80
|
|
|
81
|
-
Distributed under the MIT License. See [LICENSE](https://github.com/
|
|
81
|
+
Distributed under the MIT License. See [LICENSE](https://github.com/middleapi/orpc/blob/main/LICENSE) for more information.
|
package/dist/index.mjs
CHANGED
|
@@ -38,12 +38,14 @@ function toORPCProcedure(procedure) {
|
|
|
38
38
|
return new ORPC.Procedure({
|
|
39
39
|
errorMap: {},
|
|
40
40
|
meta: procedure._def.meta ?? {},
|
|
41
|
-
inputValidationIndex: 0,
|
|
42
|
-
outputValidationIndex: 0,
|
|
43
41
|
route: get(procedure._def.meta, ["route"]) ?? {},
|
|
44
42
|
middlewares: [],
|
|
45
|
-
inputSchema:
|
|
46
|
-
outputSchema:
|
|
43
|
+
inputSchema: toStandardSchema(procedure._def.inputs.at(-1)),
|
|
44
|
+
outputSchema: toStandardSchema(procedure._def.output),
|
|
45
|
+
inputValidationIndex: Number.NaN,
|
|
46
|
+
// disable input validation
|
|
47
|
+
outputValidationIndex: Number.NaN,
|
|
48
|
+
// disable output validation
|
|
47
49
|
handler: async ({ context, signal, path, input, lastEventId }) => {
|
|
48
50
|
try {
|
|
49
51
|
const trpcInput = lastEventId !== void 0 && (input === void 0 || isObject(input)) ? { ...input, lastEventId } : input;
|
|
@@ -86,25 +88,11 @@ function toORPCProcedure(procedure) {
|
|
|
86
88
|
}
|
|
87
89
|
});
|
|
88
90
|
}
|
|
89
|
-
function
|
|
91
|
+
function toStandardSchema(schema) {
|
|
90
92
|
if (!isTypescriptObject(schema) || !("~standard" in schema) || !isTypescriptObject(schema["~standard"])) {
|
|
91
93
|
return void 0;
|
|
92
94
|
}
|
|
93
|
-
return
|
|
94
|
-
get: (target, prop) => {
|
|
95
|
-
if (prop === "~standard") {
|
|
96
|
-
return new Proxy(target["~standard"], {
|
|
97
|
-
get: (target2, prop2) => {
|
|
98
|
-
if (prop2 === "validate") {
|
|
99
|
-
return (value) => ({ value });
|
|
100
|
-
}
|
|
101
|
-
return Reflect.get(target2, prop2, target2);
|
|
102
|
-
}
|
|
103
|
-
});
|
|
104
|
-
}
|
|
105
|
-
return Reflect.get(target, prop, target);
|
|
106
|
-
}
|
|
107
|
-
});
|
|
95
|
+
return schema;
|
|
108
96
|
}
|
|
109
97
|
|
|
110
98
|
export { toORPCRouter };
|
package/package.json
CHANGED
|
@@ -1,16 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@orpc/trpc",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.0-next.
|
|
4
|
+
"version": "0.0.0-next.ff2168f",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"homepage": "https://orpc.
|
|
6
|
+
"homepage": "https://orpc.dev",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "git+https://github.com/
|
|
9
|
+
"url": "git+https://github.com/middleapi/orpc.git",
|
|
10
10
|
"directory": "packages/trpc"
|
|
11
11
|
},
|
|
12
12
|
"keywords": [
|
|
13
|
-
"unnoq",
|
|
14
13
|
"orpc",
|
|
15
14
|
"trpc"
|
|
16
15
|
],
|
|
@@ -28,13 +27,13 @@
|
|
|
28
27
|
"@trpc/server": ">=11.4.2"
|
|
29
28
|
},
|
|
30
29
|
"dependencies": {
|
|
31
|
-
"@orpc/client": "0.0.0-next.
|
|
32
|
-
"@orpc/server": "0.0.0-next.
|
|
33
|
-
"@orpc/shared": "0.0.0-next.
|
|
30
|
+
"@orpc/client": "0.0.0-next.ff2168f",
|
|
31
|
+
"@orpc/server": "0.0.0-next.ff2168f",
|
|
32
|
+
"@orpc/shared": "0.0.0-next.ff2168f"
|
|
34
33
|
},
|
|
35
34
|
"devDependencies": {
|
|
36
|
-
"@trpc/server": "^11.
|
|
37
|
-
"zod": "^4.
|
|
35
|
+
"@trpc/server": "^11.8.1",
|
|
36
|
+
"zod": "^4.3.2"
|
|
38
37
|
},
|
|
39
38
|
"scripts": {
|
|
40
39
|
"build": "unbuild",
|