@slack-clone-org/contracts 1.0.9 → 1.0.11

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.
@@ -24,8 +24,8 @@ export interface GetAccountResponse {
24
24
  accountId: string;
25
25
  phoneNumber: string;
26
26
  email: string;
27
- isPhoneVerified: string;
28
- isEmailVerified: string;
27
+ isPhoneVerified: boolean;
28
+ isEmailVerified: boolean;
29
29
  role: GlobalRole;
30
30
  }
31
31
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@slack-clone-org/contracts",
3
- "version": "1.0.9",
3
+ "version": "1.0.11",
4
4
  "description": "Shared gRPC contracts and TypeScript definitions for Slack Clone microservices",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -16,8 +16,8 @@ message GetAccountResponse {
16
16
  string account_id = 1;
17
17
  string phone_number = 2;
18
18
  string email = 3;
19
- string is_phone_verified = 4;
20
- string is_email_verified = 5;
19
+ bool is_phone_verified = 4;
20
+ bool is_email_verified = 5;
21
21
  GlobalRole role = 6;
22
22
  }
23
23