@orpc/client 0.0.0-next.1d55ec0 → 0.0.0-next.55d0b4f

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/dist/index.js CHANGED
@@ -80,3 +80,4 @@ export {
80
80
  createProcedureClient,
81
81
  createRouterClient
82
82
  };
83
+ //# sourceMappingURL=index.js.map
@@ -4,3 +4,4 @@ export * from './procedure';
4
4
  export * from './router';
5
5
  export * from '@orpc/shared/error';
6
6
  export declare const createORPCClient: typeof createRouterClient;
7
+ //# sourceMappingURL=index.d.ts.map
@@ -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
@@ -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.1d55ec0",
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
- "!dist/*.tsbuildinfo",
27
+ "!**/*.map",
28
+ "!**/*.tsbuildinfo",
28
29
  "dist"
29
30
  ],
30
31
  "peerDependencies": {
31
- "@orpc/contract": "0.0.0-next.1d55ec0",
32
- "@orpc/server": "0.0.0-next.1d55ec0"
32
+ "@orpc/contract": "0.0.0-next.55d0b4f",
33
+ "@orpc/server": "0.0.0-next.55d0b4f"
33
34
  },
34
35
  "dependencies": {
35
- "@orpc/shared": "0.0.0-next.1d55ec0",
36
- "@orpc/transformer": "0.0.0-next.1d55ec0"
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
  }