@glissandoo/lib 1.50.0 → 1.51.0

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.
@@ -23,6 +23,10 @@ var NotificationActions;
23
23
  NotificationActions["PerformanceAssistanceDecline"] = "performance.assistance.decline";
24
24
  NotificationActions["PerformanceAssistanceConfirmByAdmin"] = "performance.assistance.confirm.byAdmin";
25
25
  NotificationActions["PerformanceAssistanceDeclineByAdmin"] = "performance.assistance.decline.byAdmin";
26
+ NotificationActions["PerformanceInterestConfirm"] = "performance.interest.confirm";
27
+ NotificationActions["PerformanceInterestLose"] = "performance.interest.lose";
28
+ NotificationActions["PerformanceSelectionSelect"] = "performance.selection.select";
29
+ NotificationActions["PerformanceSelectionDeselect"] = "performance.selection.deselect";
26
30
  NotificationActions["PerformanceCancel"] = "performance.cancel";
27
31
  NotificationActions["PerformanceCreate"] = "performance.create";
28
32
  NotificationActions["PerformanceEditAttendance"] = "performance.edit.attendance";
@@ -34,7 +38,9 @@ var NotificationActions;
34
38
  NotificationActions["PerformanceEditStage"] = "performance.edit.stage";
35
39
  NotificationActions["PerformanceEditResponseDeadline"] = "performance.edit.responseDeadline";
36
40
  NotificationActions["PerformanceReminderDatetimeToConfirmed"] = "performance.reminderDatetime.confirmed";
37
- NotificationActions["PerformanceReminderDeadlineToPending"] = "performance.reminderDeadline.pending";
41
+ NotificationActions["PerformanceReminderDeadlineSoonToPending"] = "performance.reminderDeadlineSoon.pending";
42
+ NotificationActions["PerformanceReminderDeadlineEndedInSelectionModeOpen"] = "performance.reminderDeadlineEnded.selectionModeOpen";
43
+ NotificationActions["PerformanceReminderDeadlineEndedInSelectionModeClosedOrNotActive"] = "performance.reminderDeadlineEnded.selectionModeClosedOrNotActive";
38
44
  NotificationActions["PerformancePlayersAdd"] = "performance.players.add";
39
45
  NotificationActions["PerformancePlayersRemove"] = "performance.players.remove";
40
46
  NotificationActions["PerformanceReminder"] = "performance.reminder";
@@ -43,6 +49,10 @@ var NotificationActions;
43
49
  NotificationActions["PracticeAssistanceDecline"] = "practice.assistance.decline";
44
50
  NotificationActions["PracticeAssistanceConfirmByAdmin"] = "practice.assistance.confirm.byAdmin";
45
51
  NotificationActions["PracticeAssistanceDeclineByAdmin"] = "practice.assistance.decline.byAdmin";
52
+ NotificationActions["PracticeInterestConfirm"] = "practice.interest.confirm";
53
+ NotificationActions["PracticeInterestLose"] = "practice.interest.lose";
54
+ NotificationActions["PracticeSelectionSelect"] = "practice.selection.select";
55
+ NotificationActions["PracticeSelectionDeselect"] = "practice.selection.deselect";
46
56
  NotificationActions["PracticeCancel"] = "practice.cancel";
47
57
  NotificationActions["PracticeCreate"] = "practice.create";
48
58
  NotificationActions["PracticeEditAttendance"] = "practice.edit.attendance";
@@ -54,7 +64,9 @@ var NotificationActions;
54
64
  NotificationActions["PracticeEditStage"] = "practice.edit.stage";
55
65
  NotificationActions["PracticeEditResponseDeadline"] = "practice.edit.responseDeadline";
56
66
  NotificationActions["PracticeReminderDatetimeToConfirmed"] = "practice.reminderDatetime.confirmed";
57
- NotificationActions["PracticeReminderDeadlineToPending"] = "practice.reminderDeadline.pending";
67
+ NotificationActions["PracticeReminderDeadlineSoonToPending"] = "practice.reminderDeadlineSoon.pending";
68
+ NotificationActions["PracticeReminderDeadlineEndedInSelectionModeOpen"] = "practice.reminderDeadlineEnded.selectionModeOpen";
69
+ NotificationActions["PracticeReminderDeadlineEndedInSelectionModeClosedOrNotActive"] = "practice.reminderDeadlineEnded.selectionModeClosedOrNotActive";
58
70
  NotificationActions["PracticePlayersAdd"] = "practice.players.add";
59
71
  NotificationActions["PracticePlayersRemove"] = "practice.players.remove";
60
72
  NotificationActions["PracticeReminder"] = "practice.reminder";
@@ -14,7 +14,9 @@ export declare enum UserAppConfig {
14
14
  }
15
15
  export declare enum UserNotificationSettings {
16
16
  AttendanceConfirmed = "enabled_attendance_confirmed",
17
- AttendanceDeclined = "enabled_attendance_declined"
17
+ AttendanceDeclined = "enabled_attendance_declined",
18
+ InterestConfirmed = "enabled_interest_confirmed",
19
+ InterestLost = "enabled_interest_lost"
18
20
  }
19
21
  export declare enum UserEmailSettings {
20
22
  ReminderBiweeklyEvents = "enabled_reminder_biweekly_events"
@@ -20,6 +20,8 @@ var UserNotificationSettings;
20
20
  (function (UserNotificationSettings) {
21
21
  UserNotificationSettings["AttendanceConfirmed"] = "enabled_attendance_confirmed";
22
22
  UserNotificationSettings["AttendanceDeclined"] = "enabled_attendance_declined";
23
+ UserNotificationSettings["InterestConfirmed"] = "enabled_interest_confirmed";
24
+ UserNotificationSettings["InterestLost"] = "enabled_interest_lost";
23
25
  })(UserNotificationSettings = exports.UserNotificationSettings || (exports.UserNotificationSettings = {}));
24
26
  var UserEmailSettings;
25
27
  (function (UserEmailSettings) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glissandoo/lib",
3
- "version": "1.50.0",
3
+ "version": "1.51.0",
4
4
  "description": "Glissandoo library js",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",