@secrecy/trpc-api-types 1.35.7 → 1.36.0
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 +8 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -6838,6 +6838,10 @@ declare var appRouter: _trpc_server.TRPCBuiltRouter<{
|
|
|
6838
6838
|
id: string;
|
|
6839
6839
|
identityPubKey: string;
|
|
6840
6840
|
name: string;
|
|
6841
|
+
members: {
|
|
6842
|
+
identityPubKey: string;
|
|
6843
|
+
role: "ADMIN" | "MEMBER";
|
|
6844
|
+
}[];
|
|
6841
6845
|
};
|
|
6842
6846
|
};
|
|
6843
6847
|
meta: any;
|
|
@@ -6851,6 +6855,10 @@ declare var appRouter: _trpc_server.TRPCBuiltRouter<{
|
|
|
6851
6855
|
id: string;
|
|
6852
6856
|
identityPubKey: string;
|
|
6853
6857
|
name: string;
|
|
6858
|
+
members: {
|
|
6859
|
+
identityPubKey: string;
|
|
6860
|
+
role: "ADMIN" | "MEMBER";
|
|
6861
|
+
}[];
|
|
6854
6862
|
}[];
|
|
6855
6863
|
};
|
|
6856
6864
|
meta: any;
|