chelys 2.7.6 → 2.7.9
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 +7 -1
- package/dist/message.d.ts +2 -0
- package/dist/message.js +2 -0
- package/dist/pantheon.d.ts +5 -0
- package/package.json +1 -1
package/dist/invite.d.ts
CHANGED
|
@@ -8,6 +8,12 @@ export interface Inviter {
|
|
|
8
8
|
displayName: string;
|
|
9
9
|
photoURL: string;
|
|
10
10
|
}
|
|
11
|
+
export interface NewAccount {
|
|
12
|
+
uid: string;
|
|
13
|
+
email: string;
|
|
14
|
+
displayName: string;
|
|
15
|
+
photoURL: string;
|
|
16
|
+
}
|
|
11
17
|
export interface InvReqNew {
|
|
12
18
|
}
|
|
13
19
|
export interface InvReqDelete {
|
|
@@ -29,7 +35,7 @@ export interface InvResGET {
|
|
|
29
35
|
inviter: Inviter;
|
|
30
36
|
}
|
|
31
37
|
export interface InvReqPOST {
|
|
32
|
-
|
|
38
|
+
newAccount: NewAccount;
|
|
33
39
|
}
|
|
34
40
|
export interface InvResPOST {
|
|
35
41
|
response: ResponseStatus;
|
package/dist/message.d.ts
CHANGED
|
@@ -30,7 +30,9 @@ export declare enum EventType {
|
|
|
30
30
|
INVITE_delete = "INVITE-delete",
|
|
31
31
|
INVITE_get_all = "INVITE-get-all",
|
|
32
32
|
INVITE_unsubscribe = "INVITE-unsubscribe",
|
|
33
|
+
PANTHEON_add = "PANTHEON-add",
|
|
33
34
|
PANTHEON_get_all = "PANTHEON-get-all",
|
|
35
|
+
PANTHEON_unsubscribe = "PANTHEON-unsubscribe",
|
|
34
36
|
USER_create = "USER-create",
|
|
35
37
|
USER_edit_profile = "USER-edit-profile",
|
|
36
38
|
USER_edit_roles = "USER-edit-roles",
|
package/dist/message.js
CHANGED
|
@@ -32,7 +32,9 @@ var EventType;
|
|
|
32
32
|
EventType["INVITE_delete"] = "INVITE-delete";
|
|
33
33
|
EventType["INVITE_get_all"] = "INVITE-get-all";
|
|
34
34
|
EventType["INVITE_unsubscribe"] = "INVITE-unsubscribe";
|
|
35
|
+
EventType["PANTHEON_add"] = "PANTHEON-add";
|
|
35
36
|
EventType["PANTHEON_get_all"] = "PANTHEON-get-all";
|
|
37
|
+
EventType["PANTHEON_unsubscribe"] = "PANTHEON-unsubscribe";
|
|
36
38
|
EventType["USER_create"] = "USER-create";
|
|
37
39
|
EventType["USER_edit_profile"] = "USER-edit-profile";
|
|
38
40
|
EventType["USER_edit_roles"] = "USER-edit-roles";
|
package/dist/pantheon.d.ts
CHANGED
|
@@ -12,8 +12,13 @@ export interface PantheonSong {
|
|
|
12
12
|
author: string;
|
|
13
13
|
users: string[];
|
|
14
14
|
}
|
|
15
|
+
export interface PantheonReqAdd {
|
|
16
|
+
pantheon: PantheonSong;
|
|
17
|
+
}
|
|
15
18
|
export interface PantheonReqGetAll {
|
|
16
19
|
}
|
|
17
20
|
export interface PantheonResUpdate {
|
|
18
21
|
pantheon: PantheonSong;
|
|
19
22
|
}
|
|
23
|
+
export interface PantheonReqUnsubscribe {
|
|
24
|
+
}
|