@secrecy/trpc-api-types 1.36.1 → 1.37.0-dev.1

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +13 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -6927,6 +6927,19 @@ declare var appRouter: _trpc_server.TRPCBuiltRouter<{
6927
6927
  };
6928
6928
  meta: any;
6929
6929
  }>;
6930
+ publicKeys: _trpc_server.TRPCQueryProcedure<{
6931
+ input: {
6932
+ groupId: string;
6933
+ } | {
6934
+ groupIds: string[];
6935
+ };
6936
+ output: {
6937
+ publicKey: string;
6938
+ } | {
6939
+ publicKeys: Record<string, string>;
6940
+ };
6941
+ meta: any;
6942
+ }>;
6930
6943
  }>>;
6931
6944
  }>>;
6932
6945
  type AppRouter = typeof appRouter;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@secrecy/trpc-api-types",
3
- "version": "1.36.1",
3
+ "version": "1.37.0-dev.1",
4
4
  "license": "MIT",
5
5
  "publishConfig": {
6
6
  "access": "public"