@trii/types 2.10.608 → 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;
|
package/dist/Users/UserTrii.d.ts
CHANGED
|
@@ -33,20 +33,20 @@ export interface SipExtension {
|
|
|
33
33
|
sipPort: string;
|
|
34
34
|
isOMLAccount: boolean;
|
|
35
35
|
}
|
|
36
|
-
export
|
|
36
|
+
export interface UserUpdate {
|
|
37
37
|
spaceId: string;
|
|
38
38
|
uid: string;
|
|
39
39
|
name: string;
|
|
40
40
|
imageUrl: string;
|
|
41
41
|
}
|
|
42
|
-
export
|
|
42
|
+
export interface UserPresence {
|
|
43
43
|
spaceId: string;
|
|
44
44
|
uid: string;
|
|
45
45
|
status: UserStatus;
|
|
46
46
|
statusMessage: string;
|
|
47
47
|
statusLastSeen: Date;
|
|
48
48
|
}
|
|
49
|
-
export
|
|
49
|
+
export interface UserTrii {
|
|
50
50
|
uid: string;
|
|
51
51
|
email: string;
|
|
52
52
|
phone: string;
|
|
@@ -96,7 +96,7 @@ export interface NotificationConfig {
|
|
|
96
96
|
}
|
|
97
97
|
export type NotificationVolumeLevel = 'quiet' | 'normal' | 'loud';
|
|
98
98
|
export type NotificationSound = 'classic' | 'chime' | 'ding' | 'echo' | 'notify' | 'ring' | 'tada' | 'none';
|
|
99
|
-
export
|
|
99
|
+
export interface StorageAzureSAS {
|
|
100
100
|
sas: string;
|
|
101
101
|
expireAt: Date;
|
|
102
102
|
}
|
package/dist/Users/UserTrii.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.UserStatus = void 0;
|
|
4
4
|
var UserStatus;
|
|
5
5
|
(function (UserStatus) {
|
|
6
6
|
UserStatus[UserStatus["OFFLINE"] = 0] = "OFFLINE";
|
|
@@ -8,15 +8,3 @@ var UserStatus;
|
|
|
8
8
|
UserStatus[UserStatus["AWAY"] = 2] = "AWAY";
|
|
9
9
|
UserStatus[UserStatus["BUSY"] = 3] = "BUSY";
|
|
10
10
|
})(UserStatus || (exports.UserStatus = UserStatus = {}));
|
|
11
|
-
class UserUpdate {
|
|
12
|
-
}
|
|
13
|
-
exports.UserUpdate = UserUpdate;
|
|
14
|
-
class UserPresence {
|
|
15
|
-
}
|
|
16
|
-
exports.UserPresence = UserPresence;
|
|
17
|
-
class UserTrii {
|
|
18
|
-
}
|
|
19
|
-
exports.UserTrii = UserTrii;
|
|
20
|
-
class StorageAzureSAS {
|
|
21
|
-
}
|
|
22
|
-
exports.StorageAzureSAS = StorageAzureSAS;
|