@secrecy/trpc-api-types 1.33.0-fix-create-folder-permissions.2 → 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 +19 -6
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1401,14 +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
|
-
|
|
1407
|
-
encryptedAccesses?: {
|
|
1405
|
+
encryptedAccesses: {
|
|
1408
1406
|
pubKey: string;
|
|
1409
1407
|
key: string | null;
|
|
1410
1408
|
nameKey: string;
|
|
1411
|
-
}[]
|
|
1409
|
+
}[];
|
|
1412
1410
|
};
|
|
1413
1411
|
output: {
|
|
1414
1412
|
id: string;
|
|
@@ -1998,13 +1996,27 @@ declare var appRouter: _trpc_server.TRPCBuiltRouter<{
|
|
|
1998
1996
|
createFolder: _trpc_server.TRPCMutationProcedure<{
|
|
1999
1997
|
input: {
|
|
2000
1998
|
fromIdentityPubKey?: string | null | undefined;
|
|
1999
|
+
id: string;
|
|
2000
|
+
nodeId: string;
|
|
2001
|
+
rights: "delete" | "read" | "write";
|
|
2001
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;
|
|
2002
2014
|
name: string;
|
|
2003
2015
|
parentId: string | null;
|
|
2004
|
-
encryptedAccesses
|
|
2016
|
+
encryptedAccesses: {
|
|
2005
2017
|
pubKey: string;
|
|
2006
2018
|
nameKey: string;
|
|
2007
|
-
}[]
|
|
2019
|
+
}[];
|
|
2008
2020
|
};
|
|
2009
2021
|
output: {
|
|
2010
2022
|
id: string;
|
|
@@ -2297,6 +2309,7 @@ declare var appRouter: _trpc_server.TRPCBuiltRouter<{
|
|
|
2297
2309
|
sharingDelAccess: "delete" | "read" | "write" | null;
|
|
2298
2310
|
identityPubKey: string;
|
|
2299
2311
|
sharedByPubKey: string;
|
|
2312
|
+
sharedByRootPubKey: string;
|
|
2300
2313
|
initiatorAppId: string;
|
|
2301
2314
|
initiatorUserId: string;
|
|
2302
2315
|
};
|