@eyenest/contracts 1.2.1 → 1.2.2

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/gen/ts/auth.ts CHANGED
@@ -46,6 +46,7 @@ export interface GetUserByIdRequest {
46
46
  export interface GetUserByIdResponse {
47
47
  id: string;
48
48
  name: string;
49
+ email: string;
49
50
  }
50
51
 
51
52
  export const AUTH_V1_PACKAGE_NAME = "auth.v1";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eyenest/contracts",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "Protobuf definitions and generated TypeScript types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
package/proto/auth.proto CHANGED
@@ -46,6 +46,7 @@ message GetUserByIdRequest {
46
46
  message GetUserByIdResponse {
47
47
  string id = 1;
48
48
  string name = 2;
49
+ string email = 3;
49
50
  }
50
51
 
51
52