@taskora-uni/contracts 9.0.0 → 9.1.0

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.
@@ -19,6 +19,7 @@ export interface WorkspaceUserSummary {
19
19
  accountId: string;
20
20
  firstName: string;
21
21
  lastName: string;
22
+ email: string;
22
23
  }
23
24
  export interface ProjectMemberInput {
24
25
  accountId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taskora-uni/contracts",
3
- "version": "9.0.0",
3
+ "version": "9.1.0",
4
4
  "description": "Shared protobuf contracts and generated TypeScript bindings for Taskora Uni backend services.",
5
5
  "license": "MIT",
6
6
  "type": "commonjs",
@@ -30,6 +30,7 @@ message WorkspaceUserSummary {
30
30
  string account_id = 1;
31
31
  string first_name = 2;
32
32
  string last_name = 3;
33
+ string email = 4;
33
34
  }
34
35
 
35
36
  message ProjectMemberInput {