@trii/types 2.10.609 → 2.10.610
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.
|
@@ -4,6 +4,7 @@ export interface IUserNotificationsConfig {
|
|
|
4
4
|
userId: string;
|
|
5
5
|
conversations: UserConfig_Conversations;
|
|
6
6
|
chat: UserConfig_Chat;
|
|
7
|
+
calendar: UserConfig_Calendar;
|
|
7
8
|
tickets: UserConfig_Tickets;
|
|
8
9
|
}
|
|
9
10
|
export declare class UserConfig_Conversations {
|
|
@@ -16,6 +17,9 @@ export declare class UserConfig_Conversations {
|
|
|
16
17
|
export declare class UserConfig_Chat {
|
|
17
18
|
reminders: UserConfig_SendTo;
|
|
18
19
|
}
|
|
20
|
+
export declare class UserConfig_Calendar {
|
|
21
|
+
reminders: UserConfig_SendTo;
|
|
22
|
+
}
|
|
19
23
|
export declare class UserConfig_Tickets {
|
|
20
24
|
newTicketAssigned: UserConfig_SendTo;
|
|
21
25
|
transferIn: UserConfig_SendTo;
|
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UserConfig_SendTo = exports.UserConfig_Tickets = exports.UserConfig_Chat = exports.UserConfig_Conversations = void 0;
|
|
3
|
+
exports.UserConfig_SendTo = exports.UserConfig_Tickets = exports.UserConfig_Calendar = exports.UserConfig_Chat = exports.UserConfig_Conversations = void 0;
|
|
4
4
|
class UserConfig_Conversations {
|
|
5
5
|
}
|
|
6
6
|
exports.UserConfig_Conversations = UserConfig_Conversations;
|
|
7
7
|
class UserConfig_Chat {
|
|
8
8
|
}
|
|
9
9
|
exports.UserConfig_Chat = UserConfig_Chat;
|
|
10
|
+
class UserConfig_Calendar {
|
|
11
|
+
}
|
|
12
|
+
exports.UserConfig_Calendar = UserConfig_Calendar;
|
|
10
13
|
class UserConfig_Tickets {
|
|
11
14
|
}
|
|
12
15
|
exports.UserConfig_Tickets = UserConfig_Tickets;
|