@secrecy/trpc-api-types 1.33.0-fix-create-folder-permissions.2 → 1.33.0-fix-create-folder-permissions.4
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 +5 -7
- 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,12 @@ declare var appRouter: _trpc_server.TRPCBuiltRouter<{
|
|
|
1998
1996
|
createFolder: _trpc_server.TRPCMutationProcedure<{
|
|
1999
1997
|
input: {
|
|
2000
1998
|
fromIdentityPubKey?: string | null | undefined;
|
|
2001
|
-
nameKey: string | null;
|
|
2002
1999
|
name: string;
|
|
2003
2000
|
parentId: string | null;
|
|
2004
|
-
encryptedAccesses
|
|
2001
|
+
encryptedAccesses: {
|
|
2005
2002
|
pubKey: string;
|
|
2006
2003
|
nameKey: string;
|
|
2007
|
-
}[]
|
|
2004
|
+
}[];
|
|
2008
2005
|
};
|
|
2009
2006
|
output: {
|
|
2010
2007
|
id: string;
|
|
@@ -2297,6 +2294,7 @@ declare var appRouter: _trpc_server.TRPCBuiltRouter<{
|
|
|
2297
2294
|
sharingDelAccess: "delete" | "read" | "write" | null;
|
|
2298
2295
|
identityPubKey: string;
|
|
2299
2296
|
sharedByPubKey: string;
|
|
2297
|
+
sharedByRootPubKey: string;
|
|
2300
2298
|
initiatorAppId: string;
|
|
2301
2299
|
initiatorUserId: string;
|
|
2302
2300
|
};
|