chelys 2.7.4 → 2.7.5
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/dist/invite.d.ts +11 -7
- package/package.json +1 -1
package/dist/invite.d.ts
CHANGED
|
@@ -4,10 +4,8 @@ export interface Invite {
|
|
|
4
4
|
createdBy: string;
|
|
5
5
|
date: string;
|
|
6
6
|
}
|
|
7
|
-
export interface
|
|
8
|
-
uid: string;
|
|
7
|
+
export interface Inviter {
|
|
9
8
|
displayName: string;
|
|
10
|
-
email: string;
|
|
11
9
|
photoURL: string;
|
|
12
10
|
}
|
|
13
11
|
export interface InvReqNew {
|
|
@@ -17,10 +15,6 @@ export interface InvReqDelete {
|
|
|
17
15
|
}
|
|
18
16
|
export interface InvReqGetAll {
|
|
19
17
|
}
|
|
20
|
-
export interface InvReqCheck {
|
|
21
|
-
id: string;
|
|
22
|
-
account: NewAccount;
|
|
23
|
-
}
|
|
24
18
|
export interface InvReqUnsubscribe {
|
|
25
19
|
}
|
|
26
20
|
export interface InvResCheck {
|
|
@@ -30,3 +24,13 @@ export interface InvResUpdate {
|
|
|
30
24
|
status: "added" | "modified" | "removed";
|
|
31
25
|
invite: Invite;
|
|
32
26
|
}
|
|
27
|
+
export interface InvResGET {
|
|
28
|
+
isValid: boolean;
|
|
29
|
+
inviter: Inviter;
|
|
30
|
+
}
|
|
31
|
+
export interface InvReqPOST {
|
|
32
|
+
idToken: string;
|
|
33
|
+
}
|
|
34
|
+
export interface InvResPOST {
|
|
35
|
+
response: ResponseStatus;
|
|
36
|
+
}
|