@requ1emz/contracts 1.0.6 → 1.0.7

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/auth.ts CHANGED
@@ -13,7 +13,6 @@ export const protobufPackage = "auth.v1";
13
13
  export interface SendRegistrationRequest {
14
14
  email: string;
15
15
  password: string;
16
- username: string;
17
16
  }
18
17
 
19
18
  export interface SendRegistationResponse {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@requ1emz/contracts",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
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
@@ -11,7 +11,6 @@ service AuthService {
11
11
  message SendRegistrationRequest {
12
12
  string email = 1;
13
13
  string password = 2;
14
- string username = 3;
15
14
  }
16
15
 
17
16
  message SendRegistationResponse {