@requ1emz/contracts 1.0.39 → 1.0.40
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/family.ts +4 -3
- package/package.json +1 -1
- package/proto/family.proto +4 -3
package/gen/family.ts
CHANGED
|
@@ -17,11 +17,11 @@ export interface CreateFamilyRequest {
|
|
|
17
17
|
|
|
18
18
|
export interface DeleteFamilyRequest {
|
|
19
19
|
userId: string;
|
|
20
|
-
familyId: string;
|
|
21
20
|
}
|
|
22
21
|
|
|
23
22
|
export interface DeleteFamilyResponse {
|
|
24
23
|
status: boolean;
|
|
24
|
+
description: string;
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
export interface GetFamilyRequest {
|
|
@@ -30,12 +30,12 @@ export interface GetFamilyRequest {
|
|
|
30
30
|
|
|
31
31
|
export interface InviteUserRequest {
|
|
32
32
|
adminId: string;
|
|
33
|
-
|
|
34
|
-
invitedUserId: string;
|
|
33
|
+
invitedUserEmail: string;
|
|
35
34
|
}
|
|
36
35
|
|
|
37
36
|
export interface InviteUserResponse {
|
|
38
37
|
status: boolean;
|
|
38
|
+
description: string;
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
export interface FamilyResponse {
|
|
@@ -57,6 +57,7 @@ export interface AddMemberRequest {
|
|
|
57
57
|
|
|
58
58
|
export interface AddMemberResponse {
|
|
59
59
|
status: boolean;
|
|
60
|
+
description: string;
|
|
60
61
|
}
|
|
61
62
|
|
|
62
63
|
export interface RemoveMemberRequest {
|
package/package.json
CHANGED
package/proto/family.proto
CHANGED
|
@@ -18,11 +18,11 @@ message CreateFamilyRequest {
|
|
|
18
18
|
|
|
19
19
|
message DeleteFamilyRequest {
|
|
20
20
|
string user_id = 1;
|
|
21
|
-
string family_id = 2;
|
|
22
21
|
}
|
|
23
22
|
|
|
24
23
|
message DeleteFamilyResponse {
|
|
25
24
|
bool status = 1;
|
|
25
|
+
string description = 2;
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
message GetFamilyRequest {
|
|
@@ -31,12 +31,12 @@ message GetFamilyRequest {
|
|
|
31
31
|
|
|
32
32
|
message InviteUserRequest {
|
|
33
33
|
string admin_id = 1;
|
|
34
|
-
string
|
|
35
|
-
string invited_user_id = 3;
|
|
34
|
+
string invited_user_email = 3;
|
|
36
35
|
}
|
|
37
36
|
|
|
38
37
|
message InviteUserResponse {
|
|
39
38
|
bool status = 1;
|
|
39
|
+
string description = 2;
|
|
40
40
|
}
|
|
41
41
|
|
|
42
42
|
message FamilyResponse {
|
|
@@ -58,6 +58,7 @@ message AddMemberRequest {
|
|
|
58
58
|
|
|
59
59
|
message AddMemberResponse {
|
|
60
60
|
bool status = 1;
|
|
61
|
+
string description = 2;
|
|
61
62
|
}
|
|
62
63
|
|
|
63
64
|
message RemoveMemberRequest {
|