@trii/types 2.10.608 → 2.10.609
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/Users/UserTrii.d.ts +4 -4
- package/dist/Users/UserTrii.js +1 -13
- package/package.json +1 -1
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;
|