@mamindom/contracts 1.0.1 → 1.0.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/auth.ts CHANGED
@@ -41,7 +41,6 @@ export interface RegisterRequest {
41
41
  export interface AuthResponse {
42
42
  accessToken: string;
43
43
  refreshToken: string;
44
- isNewUser: boolean;
45
44
  }
46
45
 
47
46
  export const AUTH_V1_PACKAGE_NAME = "auth.v1";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mamindom/contracts",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "proto",
5
5
  "scripts": {
6
6
  "generate": "protoc -I ./proto ./proto/*.proto --ts_proto_out=./gen --ts_proto_opt=nestJs=true,package=omit"
package/proto/auth.proto CHANGED
@@ -47,5 +47,5 @@ message AuthResponse {
47
47
  string access_token = 1;
48
48
  string refresh_token = 2;
49
49
 
50
- bool is_new_user = 3;
50
+
51
51
  }