@yrarami-teacinema/contracts 1.0.5 → 1.0.6

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/account.ts CHANGED
@@ -24,8 +24,8 @@ export interface GetAccountResponse {
24
24
  id: string;
25
25
  phone: string;
26
26
  email: string;
27
- isPhoneVerified: string;
28
- isEmailVerified: string;
27
+ isPhoneVerified: boolean;
28
+ isEmailVerified: boolean;
29
29
  role: Role;
30
30
  }
31
31
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yrarami-teacinema/contracts",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "Protobufs for the TeaCinema project",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -14,8 +14,8 @@ message GetAccountResponse {
14
14
  string id = 1;
15
15
  string phone = 2;
16
16
  string email = 3;
17
- string is_phone_verified = 4;
18
- string is_email_verified = 5;
17
+ bool is_phone_verified = 4;
18
+ bool is_email_verified = 5;
19
19
  Role role = 6;
20
20
  }
21
21