@orpc/client 0.0.0-next.1d55ec0 → 0.0.0-next.55d0b4f
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.js +1 -0
- package/dist/src/index.d.ts +1 -0
- package/dist/src/procedure.d.ts +1 -0
- package/dist/src/router.d.ts +1 -0
- package/package.json +10 -8
package/dist/index.js
CHANGED
package/dist/src/index.d.ts
CHANGED
package/dist/src/procedure.d.ts
CHANGED
@@ -24,3 +24,4 @@ export interface CreateProcedureClientOptions {
|
|
24
24
|
path: string[];
|
25
25
|
}
|
26
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
CHANGED
@@ -31,3 +31,4 @@ export interface CreateRouterClientOptions {
|
|
31
31
|
path?: string[];
|
32
32
|
}
|
33
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
|
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.55d0b4f",
|
5
5
|
"license": "MIT",
|
6
6
|
"homepage": "https://orpc.unnoq.com",
|
7
7
|
"repository": {
|
@@ -24,22 +24,24 @@
|
|
24
24
|
}
|
25
25
|
},
|
26
26
|
"files": [
|
27
|
-
"
|
27
|
+
"!**/*.map",
|
28
|
+
"!**/*.tsbuildinfo",
|
28
29
|
"dist"
|
29
30
|
],
|
30
31
|
"peerDependencies": {
|
31
|
-
"@orpc/contract": "0.0.0-next.
|
32
|
-
"@orpc/server": "0.0.0-next.
|
32
|
+
"@orpc/contract": "0.0.0-next.55d0b4f",
|
33
|
+
"@orpc/server": "0.0.0-next.55d0b4f"
|
33
34
|
},
|
34
35
|
"dependencies": {
|
35
|
-
"@orpc/
|
36
|
-
"@orpc/
|
36
|
+
"@orpc/transformer": "0.0.0-next.55d0b4f",
|
37
|
+
"@orpc/shared": "0.0.0-next.55d0b4f"
|
37
38
|
},
|
38
39
|
"devDependencies": {
|
39
|
-
"zod": "^3.23.8"
|
40
|
+
"zod": "^3.23.8",
|
41
|
+
"@orpc/openapi": "0.0.0-next.55d0b4f"
|
40
42
|
},
|
41
43
|
"scripts": {
|
42
|
-
"build": "tsup --clean --entry.index=src/index.ts --format=esm --onSuccess='tsc -b --noCheck'",
|
44
|
+
"build": "tsup --clean --sourcemap --entry.index=src/index.ts --format=esm --onSuccess='tsc -b --noCheck'",
|
43
45
|
"build:watch": "pnpm run build --watch",
|
44
46
|
"type:check": "tsc -b"
|
45
47
|
}
|