@secrecy/trpc-api-types 1.33.0-feat-groups-identity.11 → 1.33.0-feat-groups-identity.13

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +11 -6
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -1611,13 +1611,16 @@ declare var appRouter: _trpc_server.TRPCBuiltRouter<{
1611
1611
  totalItems: number;
1612
1612
  };
1613
1613
  data: {
1614
- keyPairs: {
1614
+ filteredIdentities: {
1615
+ kind: "USER_APP";
1616
+ identityPubKey: string;
1617
+ userId: string;
1615
1618
  appId: string;
1616
1619
  encPriv: string;
1617
- pub: string;
1618
1620
  }[];
1619
1621
  nodes: {
1620
1622
  id: string;
1623
+ ownerAppId: string;
1621
1624
  name: string;
1622
1625
  sharedCount: number;
1623
1626
  totalSize: bigint;
@@ -1625,9 +1628,10 @@ declare var appRouter: _trpc_server.TRPCBuiltRouter<{
1625
1628
  updatedAt: Date;
1626
1629
  deletedAt: Date | null;
1627
1630
  access: {
1628
- appId: string;
1631
+ identityPubKey: string;
1632
+ sharedByPubKey: string;
1629
1633
  nameKey: string;
1630
- } | null;
1634
+ };
1631
1635
  history: {
1632
1636
  dataId: string;
1633
1637
  storageType: "s3" | "cold" | "lite";
@@ -1638,8 +1642,9 @@ declare var appRouter: _trpc_server.TRPCBuiltRouter<{
1638
1642
  id: string;
1639
1643
  name: string;
1640
1644
  nameKey: string | null;
1641
- pubKey: string;
1642
- }[] | null;
1645
+ identityPubKey: string;
1646
+ sharedByPubKey: string;
1647
+ }[];
1643
1648
  }[];
1644
1649
  };
1645
1650
  };
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.11",
3
+ "version": "1.33.0-feat-groups-identity.13",
4
4
  "license": "MIT",
5
5
  "publishConfig": {
6
6
  "access": "public"