@secrecy/trpc-api-types 1.33.0-fix-create-folder-permissions.1 → 1.33.0-fix-create-folder-permissions.3
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 +22 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1401,9 +1401,12 @@ declare var appRouter: _trpc_server.TRPCBuiltRouter<{
|
|
|
1401
1401
|
fromIdentityPubKey?: string | null | undefined;
|
|
1402
1402
|
dataId: string;
|
|
1403
1403
|
nodeId: string | null;
|
|
1404
|
-
key: string | null;
|
|
1405
1404
|
fileName: string;
|
|
1406
|
-
|
|
1405
|
+
encryptedAccesses: {
|
|
1406
|
+
pubKey: string;
|
|
1407
|
+
key: string | null;
|
|
1408
|
+
nameKey: string;
|
|
1409
|
+
}[];
|
|
1407
1410
|
};
|
|
1408
1411
|
output: {
|
|
1409
1412
|
id: string;
|
|
@@ -1993,13 +1996,27 @@ declare var appRouter: _trpc_server.TRPCBuiltRouter<{
|
|
|
1993
1996
|
createFolder: _trpc_server.TRPCMutationProcedure<{
|
|
1994
1997
|
input: {
|
|
1995
1998
|
fromIdentityPubKey?: string | null | undefined;
|
|
1999
|
+
id: string;
|
|
2000
|
+
nodeId: string;
|
|
2001
|
+
rights: "delete" | "read" | "write";
|
|
1996
2002
|
nameKey: string | null;
|
|
2003
|
+
isRoot: boolean;
|
|
2004
|
+
createdAt: Date;
|
|
2005
|
+
addAccess: "delete" | "read" | "write" | null;
|
|
2006
|
+
sharingAddAccess: "delete" | "read" | "write" | null;
|
|
2007
|
+
delAccess: "delete" | "read" | "write" | null;
|
|
2008
|
+
sharingDelAccess: "delete" | "read" | "write" | null;
|
|
2009
|
+
identityPubKey: string;
|
|
2010
|
+
sharedByPubKey: string;
|
|
2011
|
+
sharedByRootPubKey: string;
|
|
2012
|
+
initiatorAppId: string;
|
|
2013
|
+
initiatorUserId: string;
|
|
1997
2014
|
name: string;
|
|
1998
2015
|
parentId: string | null;
|
|
1999
|
-
encryptedAccesses
|
|
2016
|
+
encryptedAccesses: {
|
|
2000
2017
|
pubKey: string;
|
|
2001
2018
|
nameKey: string;
|
|
2002
|
-
}[]
|
|
2019
|
+
}[];
|
|
2003
2020
|
};
|
|
2004
2021
|
output: {
|
|
2005
2022
|
id: string;
|
|
@@ -2292,6 +2309,7 @@ declare var appRouter: _trpc_server.TRPCBuiltRouter<{
|
|
|
2292
2309
|
sharingDelAccess: "delete" | "read" | "write" | null;
|
|
2293
2310
|
identityPubKey: string;
|
|
2294
2311
|
sharedByPubKey: string;
|
|
2312
|
+
sharedByRootPubKey: string;
|
|
2295
2313
|
initiatorAppId: string;
|
|
2296
2314
|
initiatorUserId: string;
|
|
2297
2315
|
};
|