@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.
@@ -33,20 +33,20 @@ export interface SipExtension {
33
33
  sipPort: string;
34
34
  isOMLAccount: boolean;
35
35
  }
36
- export declare class UserUpdate {
36
+ export interface UserUpdate {
37
37
  spaceId: string;
38
38
  uid: string;
39
39
  name: string;
40
40
  imageUrl: string;
41
41
  }
42
- export declare class UserPresence {
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 declare class UserTrii {
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 declare class StorageAzureSAS {
99
+ export interface StorageAzureSAS {
100
100
  sas: string;
101
101
  expireAt: Date;
102
102
  }
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.StorageAzureSAS = exports.UserTrii = exports.UserPresence = exports.UserUpdate = exports.UserStatus = void 0;
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trii/types",
3
- "version": "2.10.608",
3
+ "version": "2.10.609",
4
4
  "description": "Types definitions for Trii projects - ",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",