@fullactivities/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/account.ts +2 -2
- package/package.json +1 -1
- package/proto/account.proto +2 -2
package/gen/account.ts
CHANGED
|
@@ -22,8 +22,8 @@ export interface GetAccountRequest {
|
|
|
22
22
|
|
|
23
23
|
export interface GetAccountResponse {
|
|
24
24
|
id: string;
|
|
25
|
-
email
|
|
26
|
-
phone
|
|
25
|
+
email?: string | undefined;
|
|
26
|
+
phone?: string | undefined;
|
|
27
27
|
isEmailVerified: boolean;
|
|
28
28
|
isPhoneVerified: boolean;
|
|
29
29
|
role: Role;
|
package/package.json
CHANGED
package/proto/account.proto
CHANGED
|
@@ -12,8 +12,8 @@ message GetAccountRequest {
|
|
|
12
12
|
|
|
13
13
|
message GetAccountResponse {
|
|
14
14
|
string id = 1;
|
|
15
|
-
string email = 2;
|
|
16
|
-
string phone = 3;
|
|
15
|
+
optional string email = 2;
|
|
16
|
+
optional string phone = 3;
|
|
17
17
|
bool is_email_verified = 4;
|
|
18
18
|
bool is_phone_verified = 5;
|
|
19
19
|
Role role = 6;
|