@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.
- package/generated/account.ts +2 -2
- package/package.json +1 -1
- package/proto/account.proto +2 -2
package/generated/account.ts
CHANGED
package/package.json
CHANGED
package/proto/account.proto
CHANGED
|
@@ -16,8 +16,8 @@ message GetAccountResponse {
|
|
|
16
16
|
string account_id = 1;
|
|
17
17
|
string phone_number = 2;
|
|
18
18
|
string email = 3;
|
|
19
|
-
|
|
20
|
-
|
|
19
|
+
bool is_phone_verified = 4;
|
|
20
|
+
bool is_email_verified = 5;
|
|
21
21
|
GlobalRole role = 6;
|
|
22
22
|
}
|
|
23
23
|
|