@secrecy/trpc-api-types 1.33.0-feat-groups-identity.21 → 1.33.0-feat-groups-identity.23
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 -3
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -5441,9 +5441,10 @@ declare var appRouter: _trpc_server.TRPCBuiltRouter<{
|
|
|
5441
5441
|
kind: "GROUP";
|
|
5442
5442
|
identityPubKey: string;
|
|
5443
5443
|
groupId: string;
|
|
5444
|
+
groupOwnerPubKey: string;
|
|
5444
5445
|
encPriv: string;
|
|
5445
5446
|
sharedByPubKey: string;
|
|
5446
|
-
|
|
5447
|
+
groupRole: "ADMIN" | "MEMBER";
|
|
5447
5448
|
})[];
|
|
5448
5449
|
};
|
|
5449
5450
|
meta: any;
|
|
@@ -5471,9 +5472,10 @@ declare var appRouter: _trpc_server.TRPCBuiltRouter<{
|
|
|
5471
5472
|
kind: "GROUP";
|
|
5472
5473
|
identityPubKey: string;
|
|
5473
5474
|
groupId: string;
|
|
5475
|
+
groupOwnerPubKey: string;
|
|
5474
5476
|
encPriv: string;
|
|
5475
5477
|
sharedByPubKey: string;
|
|
5476
|
-
|
|
5478
|
+
groupRole: "ADMIN" | "MEMBER";
|
|
5477
5479
|
})[] | null;
|
|
5478
5480
|
};
|
|
5479
5481
|
meta: any;
|
|
@@ -6357,6 +6359,7 @@ declare var appRouter: _trpc_server.TRPCBuiltRouter<{
|
|
|
6357
6359
|
kind: "GROUP";
|
|
6358
6360
|
identityPubKey: string;
|
|
6359
6361
|
groupId: string;
|
|
6362
|
+
groupOwnerPubKey: string;
|
|
6360
6363
|
};
|
|
6361
6364
|
};
|
|
6362
6365
|
meta: any;
|
|
@@ -6375,6 +6378,7 @@ declare var appRouter: _trpc_server.TRPCBuiltRouter<{
|
|
|
6375
6378
|
kind: "GROUP";
|
|
6376
6379
|
identityPubKey: string;
|
|
6377
6380
|
groupId: string;
|
|
6381
|
+
groupOwnerPubKey: string;
|
|
6378
6382
|
})[];
|
|
6379
6383
|
};
|
|
6380
6384
|
meta: any;
|
|
@@ -6392,9 +6396,10 @@ declare var appRouter: _trpc_server.TRPCBuiltRouter<{
|
|
|
6392
6396
|
kind: "GROUP";
|
|
6393
6397
|
identityPubKey: string;
|
|
6394
6398
|
groupId: string;
|
|
6399
|
+
groupOwnerPubKey: string;
|
|
6395
6400
|
encPriv: string;
|
|
6396
6401
|
sharedByPubKey: string;
|
|
6397
|
-
|
|
6402
|
+
groupRole: "ADMIN" | "MEMBER";
|
|
6398
6403
|
})[];
|
|
6399
6404
|
};
|
|
6400
6405
|
meta: any;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@secrecy/trpc-api-types",
|
|
3
|
-
"version": "1.33.0-feat-groups-identity.
|
|
3
|
+
"version": "1.33.0-feat-groups-identity.23",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"types": "./dist/index.d.ts",
|
|
24
24
|
"type": "module",
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@trpc/server": "11.
|
|
26
|
+
"@trpc/server": "11.6.0",
|
|
27
27
|
"@neondatabase/api-client": "^2.1.0",
|
|
28
|
-
"zod": "4.1.
|
|
28
|
+
"zod": "4.1.11"
|
|
29
29
|
}
|
|
30
30
|
}
|