@trpc/client 10.0.0-alpha.24 → 10.0.0-alpha.25

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.
@@ -1,6 +1,5 @@
1
1
  import type { AnyRouter } from '@trpc/server';
2
2
  import { TRPCClient as Client, CreateTRPCClientOptions } from './internals/TRPCClient';
3
3
  export declare function createTRPCClient<TRouter extends AnyRouter>(opts: CreateTRPCClientOptions<TRouter>): Client<TRouter>;
4
- export declare type TRPCClient<TRouter extends AnyRouter> = Client<TRouter>;
5
- export type { TRPCRequestOptions, CreateTRPCClientOptions, } from './internals/TRPCClient';
4
+ export type { TRPCRequestOptions, CreateTRPCClientOptions, TRPCClient, } from './internals/TRPCClient';
6
5
  //# sourceMappingURL=createTRPCClient.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"createTRPCClient.d.ts","sourceRoot":"","sources":["../src/createTRPCClient.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAC9C,OAAO,EACL,UAAU,IAAI,MAAM,EACpB,uBAAuB,EACxB,MAAM,wBAAwB,CAAC;AAEhC,wBAAgB,gBAAgB,CAAC,OAAO,SAAS,SAAS,EACxD,IAAI,EAAE,uBAAuB,CAAC,OAAO,CAAC,mBAGvC;AAED,oBAAY,UAAU,CAAC,OAAO,SAAS,SAAS,IAAI,MAAM,CAAC,OAAO,CAAC,CAAC;AAEpE,YAAY,EACV,kBAAkB,EAClB,uBAAuB,GACxB,MAAM,wBAAwB,CAAC"}
1
+ {"version":3,"file":"createTRPCClient.d.ts","sourceRoot":"","sources":["../src/createTRPCClient.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAC9C,OAAO,EACL,UAAU,IAAI,MAAM,EACpB,uBAAuB,EACxB,MAAM,wBAAwB,CAAC;AAEhC,wBAAgB,gBAAgB,CAAC,OAAO,SAAS,SAAS,EACxD,IAAI,EAAE,uBAAuB,CAAC,OAAO,CAAC,mBAGvC;AAED,YAAY,EACV,kBAAkB,EAClB,uBAAuB,EACvB,UAAU,GACX,MAAM,wBAAwB,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trpc/client",
3
- "version": "10.0.0-alpha.24",
3
+ "version": "10.0.0-alpha.25",
4
4
  "description": "tRPC Client lib",
5
5
  "author": "KATT",
6
6
  "license": "MIT",
@@ -41,13 +41,13 @@
41
41
  "@babel/runtime": "^7.9.0"
42
42
  },
43
43
  "peerDependencies": {
44
- "@trpc/server": "10.0.0-alpha.24"
44
+ "@trpc/server": "10.0.0-alpha.25"
45
45
  },
46
46
  "devDependencies": {
47
- "@trpc/server": "10.0.0-alpha.24"
47
+ "@trpc/server": "10.0.0-alpha.25"
48
48
  },
49
49
  "publishConfig": {
50
50
  "access": "public"
51
51
  },
52
- "gitHead": "a3ecf56d83dd9774aaf885e83e9ccfe363fbab48"
52
+ "gitHead": "7f35cc8aaf813e5f83fe3d7b8f4bfd851779aa99"
53
53
  }
@@ -11,9 +11,8 @@ export function createTRPCClient<TRouter extends AnyRouter>(
11
11
  return new Client<TRouter>(opts);
12
12
  }
13
13
 
14
- export type TRPCClient<TRouter extends AnyRouter> = Client<TRouter>;
15
-
16
14
  export type {
17
15
  TRPCRequestOptions,
18
16
  CreateTRPCClientOptions,
17
+ TRPCClient,
19
18
  } from './internals/TRPCClient';