@trii/types 2.10.318 → 2.10.320

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.
@@ -0,0 +1,30 @@
1
+ export interface IUserNotificationsConfig {
2
+ id: string;
3
+ spaceId: string;
4
+ userId: string;
5
+ conversations: UserConfig_Conversations;
6
+ chat: UserConfig_Chat;
7
+ tickets: UserConfig_Tickets;
8
+ }
9
+ export declare class UserConfig_Conversations {
10
+ newConversation: UserConfig_SendTo;
11
+ transferIn: UserConfig_SendTo;
12
+ newMessage: UserConfig_SendTo;
13
+ responseTimeOut: UserConfig_SendTo;
14
+ reminders: UserConfig_SendTo;
15
+ }
16
+ export declare class UserConfig_Chat {
17
+ newConversation: UserConfig_SendTo;
18
+ newMessage: UserConfig_SendTo;
19
+ }
20
+ export declare class UserConfig_Tickets {
21
+ newTicketAssigned: UserConfig_SendTo;
22
+ transferIn: UserConfig_SendTo;
23
+ newContactMessage: UserConfig_SendTo;
24
+ firstResponseTimeOut: UserConfig_SendTo;
25
+ resolutionTimeOut: UserConfig_SendTo;
26
+ }
27
+ export declare class UserConfig_SendTo {
28
+ email: boolean;
29
+ push: boolean;
30
+ }
@@ -0,0 +1,8 @@
1
+ export class UserConfig_Conversations {
2
+ }
3
+ export class UserConfig_Chat {
4
+ }
5
+ export class UserConfig_Tickets {
6
+ }
7
+ export class UserConfig_SendTo {
8
+ }
@@ -1 +1,2 @@
1
1
  export * from './Notification';
2
+ export * from './UserNotificationsConfig';
@@ -1 +1,2 @@
1
1
  export * from './Notification';
2
+ export * from './UserNotificationsConfig';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trii/types",
3
- "version": "2.10.318",
3
+ "version": "2.10.320",
4
4
  "description": "Types definitions for Trii projects - ",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",