@trii/types 2.10.606 → 2.10.608

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.
@@ -14,6 +14,7 @@ export interface IEvent {
14
14
  relatedTicket: any;
15
15
  relatedDebt: any;
16
16
  startAt: Date;
17
+ endAt: Date;
17
18
  /**Event duration expressed in minutes */
18
19
  duration: number;
19
20
  allDay: boolean;
@@ -27,6 +28,7 @@ export interface IEvent {
27
28
  parentId?: string;
28
29
  originalOccurrenceDate?: Date;
29
30
  notifications: IEventNotification[];
31
+ sharedWith: UserInfo[];
30
32
  createdAt: Date;
31
33
  createdBy: UserInfo;
32
34
  finalized: boolean;
@@ -84,11 +84,18 @@ export declare class UserTrii {
84
84
  regCon_country: string;
85
85
  nameFormat: string;
86
86
  theme: string;
87
+ notificationsConfig: NotificationConfig;
87
88
  socialFacebookID: string;
88
89
  socialInstagramID: string;
89
90
  socialLinkedinID: string;
90
91
  socialTwitterID: string;
91
92
  }
93
+ export interface NotificationConfig {
94
+ volume: NotificationVolumeLevel;
95
+ sound: NotificationSound;
96
+ }
97
+ export type NotificationVolumeLevel = 'quiet' | 'normal' | 'loud';
98
+ export type NotificationSound = 'classic' | 'chime' | 'ding' | 'echo' | 'notify' | 'ring' | 'tada' | 'none';
92
99
  export declare class StorageAzureSAS {
93
100
  sas: string;
94
101
  expireAt: Date;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trii/types",
3
- "version": "2.10.606",
3
+ "version": "2.10.608",
4
4
  "description": "Types definitions for Trii projects - ",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",