@taskora-uni/contracts 8.1.0 → 9.0.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.
@@ -16,6 +16,7 @@ export interface UpdateMyProfileRequest {
16
16
  lastName: string;
17
17
  }
18
18
  export interface Profile {
19
+ id: string;
19
20
  firstName: string;
20
21
  lastName: string;
21
22
  email: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taskora-uni/contracts",
3
- "version": "8.1.0",
3
+ "version": "9.0.0",
4
4
  "description": "Shared protobuf contracts and generated TypeScript bindings for Taskora Uni backend services.",
5
5
  "license": "MIT",
6
6
  "type": "commonjs",
@@ -26,9 +26,10 @@ message UpdateMyProfileRequest {
26
26
  }
27
27
 
28
28
  message Profile {
29
- string first_name = 1;
30
- string last_name = 2;
31
- string email = 3;
32
- SystemRole system_role = 4;
33
- google.protobuf.Timestamp created_at = 5;
29
+ string id = 1;
30
+ string first_name = 2;
31
+ string last_name = 3;
32
+ string email = 4;
33
+ SystemRole system_role = 5;
34
+ google.protobuf.Timestamp created_at = 6;
34
35
  }