chelys 2.7.8 → 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/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/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
|
+
}
|