@duvdu-v1/duvdu 1.1.142 → 1.1.143
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/build/types/notification.type.d.ts +3 -1
- package/build/types/notification.type.js +2 -0
- package/build/types/notification_details.d.ts +8 -0
- package/build/types/notification_details.js +8 -0
- package/build/types/socket-channel.d.ts +2 -5
- package/build/types/socket-channel.js +1 -4
- package/package.json +1 -1
|
@@ -4,5 +4,7 @@ export declare enum NotificationType {
|
|
|
4
4
|
new_producer_contract = "new_producer_contract",
|
|
5
5
|
updated_producer_contract = "updated_producer_contract",
|
|
6
6
|
new_project_contract = "new_project_contract",
|
|
7
|
-
update_project_contract = "update_project_contract"
|
|
7
|
+
update_project_contract = "update_project_contract",
|
|
8
|
+
new_team_contract = "new_team_contract",
|
|
9
|
+
update_team_contract = "update_team_contract"
|
|
8
10
|
}
|
|
@@ -9,4 +9,6 @@ var NotificationType;
|
|
|
9
9
|
NotificationType["updated_producer_contract"] = "updated_producer_contract";
|
|
10
10
|
NotificationType["new_project_contract"] = "new_project_contract";
|
|
11
11
|
NotificationType["update_project_contract"] = "update_project_contract";
|
|
12
|
+
NotificationType["new_team_contract"] = "new_team_contract";
|
|
13
|
+
NotificationType["update_team_contract"] = "update_team_contract";
|
|
12
14
|
})(NotificationType || (exports.NotificationType = NotificationType = {}));
|
|
@@ -30,4 +30,12 @@ exports.NotificationDetails = {
|
|
|
30
30
|
title: 'update project contract',
|
|
31
31
|
message: 'update project contract'
|
|
32
32
|
},
|
|
33
|
+
newTeamContract: {
|
|
34
|
+
title: 'new Team contract',
|
|
35
|
+
message: 'new Team contract'
|
|
36
|
+
},
|
|
37
|
+
updateTeamContract: {
|
|
38
|
+
title: 'update Team contract',
|
|
39
|
+
message: 'update Team contract'
|
|
40
|
+
},
|
|
33
41
|
};
|
|
@@ -2,9 +2,6 @@ export declare enum Channels {
|
|
|
2
2
|
notification = "notification",
|
|
3
3
|
new_message = "new_message",
|
|
4
4
|
new_follower = "new_follower",
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
new_project_contract = "new_project_contract",
|
|
8
|
-
update_project_contract = "update_project_contract",
|
|
9
|
-
new_contract = "new_contract"
|
|
5
|
+
new_contract = "new_contract",
|
|
6
|
+
update_contract = "update_contract"
|
|
10
7
|
}
|
|
@@ -6,9 +6,6 @@ var Channels;
|
|
|
6
6
|
Channels["notification"] = "notification";
|
|
7
7
|
Channels["new_message"] = "new_message";
|
|
8
8
|
Channels["new_follower"] = "new_follower";
|
|
9
|
-
Channels["new_producer_contract"] = "new_producer_contract";
|
|
10
|
-
Channels["updated_producer_contract"] = "updated_producer_contract";
|
|
11
|
-
Channels["new_project_contract"] = "new_project_contract";
|
|
12
|
-
Channels["update_project_contract"] = "update_project_contract";
|
|
13
9
|
Channels["new_contract"] = "new_contract";
|
|
10
|
+
Channels["update_contract"] = "update_contract";
|
|
14
11
|
})(Channels || (exports.Channels = Channels = {}));
|