@secrecy/trpc-api-types 1.33.0-feat-groups-identity.23 → 1.33.0-feat-groups-identity.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.
- package/dist/index.d.ts +11 -9
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -291,6 +291,17 @@ declare var appRouter: _trpc_server.TRPCBuiltRouter<{
|
|
|
291
291
|
meta: any;
|
|
292
292
|
}>;
|
|
293
293
|
userPublicKey: _trpc_server.TRPCQueryProcedure<{
|
|
294
|
+
input: {
|
|
295
|
+
id: string;
|
|
296
|
+
appId?: string | undefined;
|
|
297
|
+
};
|
|
298
|
+
output: {
|
|
299
|
+
appId: string;
|
|
300
|
+
publicKey: string;
|
|
301
|
+
};
|
|
302
|
+
meta: any;
|
|
303
|
+
}>;
|
|
304
|
+
usersPublicKey: _trpc_server.TRPCQueryProcedure<{
|
|
294
305
|
input: {
|
|
295
306
|
userId: string;
|
|
296
307
|
appId?: string | undefined;
|
|
@@ -6205,15 +6216,6 @@ declare var appRouter: _trpc_server.TRPCBuiltRouter<{
|
|
|
6205
6216
|
};
|
|
6206
6217
|
meta: any;
|
|
6207
6218
|
}>;
|
|
6208
|
-
publicKey: _trpc_server.TRPCQueryProcedure<{
|
|
6209
|
-
input: {
|
|
6210
|
-
id: string;
|
|
6211
|
-
};
|
|
6212
|
-
output: {
|
|
6213
|
-
pub: string;
|
|
6214
|
-
};
|
|
6215
|
-
meta: any;
|
|
6216
|
-
}>;
|
|
6217
6219
|
self: _trpc_server.TRPCQueryProcedure<{
|
|
6218
6220
|
input: {
|
|
6219
6221
|
t?: number | undefined;
|