@trii/types 2.10.354 → 2.10.356

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.
@@ -1,6 +1,6 @@
1
1
  import UserType from './UserType';
2
2
  import { UserProfile, UserRole } from './UserProfile';
3
- export declare class UserInfo {
3
+ export interface UserInfo {
4
4
  id: string;
5
5
  name: string;
6
6
  imageUrl: string;
@@ -11,6 +11,8 @@ export declare class UserInfo {
11
11
  userType: UserType;
12
12
  verifiedAccount: boolean;
13
13
  status: UserStatus;
14
+ statusMessage: string;
15
+ statusLastSeen: Date;
14
16
  email: string;
15
17
  phone: string;
16
18
  sipNumber: string;
@@ -30,6 +32,19 @@ export interface SipExtension {
30
32
  sipDomain: string;
31
33
  isOMLAccount: boolean;
32
34
  }
35
+ export declare class UserUpdate {
36
+ spaceId: string;
37
+ uid: string;
38
+ name: string;
39
+ imageUrl: string;
40
+ }
41
+ export declare class UserPresence {
42
+ spaceId: string;
43
+ uid: string;
44
+ status: UserStatus;
45
+ statusMessage: string;
46
+ statusLastSeen: Date;
47
+ }
33
48
  export declare class UserTrii {
34
49
  uid: string;
35
50
  email: string;
@@ -1,5 +1,3 @@
1
- export class UserInfo {
2
- }
3
1
  export var UserStatus;
4
2
  (function (UserStatus) {
5
3
  UserStatus[UserStatus["OFFLINE"] = 0] = "OFFLINE";
@@ -7,6 +5,10 @@ export var UserStatus;
7
5
  UserStatus[UserStatus["AWAY"] = 2] = "AWAY";
8
6
  UserStatus[UserStatus["BUSY"] = 3] = "BUSY";
9
7
  })(UserStatus || (UserStatus = {}));
8
+ export class UserUpdate {
9
+ }
10
+ export class UserPresence {
11
+ }
10
12
  export class UserTrii {
11
13
  }
12
14
  export class StorageAzureSAS {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trii/types",
3
- "version": "2.10.354",
3
+ "version": "2.10.356",
4
4
  "description": "Types definitions for Trii projects - ",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",