@eyenest/contracts 1.1.0 → 1.1.1

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/user.ts CHANGED
@@ -12,7 +12,6 @@ export const protobufPackage = "user.v1";
12
12
 
13
13
  export interface GetByEmailRequest {
14
14
  email: string;
15
- password: string;
16
15
  }
17
16
 
18
17
  export interface GetByEmailResponse {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eyenest/contracts",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Protobuf definitions and generated TypeScript types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
package/proto/user.proto CHANGED
@@ -10,7 +10,6 @@ service UserService {
10
10
 
11
11
  message GetByEmailRequest {
12
12
  string email = 1;
13
- string password = 2;
14
13
  }
15
14
 
16
15
  message GetByEmailResponse {