evo360-types 1.3.348 → 1.3.349

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.
@@ -34,6 +34,8 @@ export interface IInboxItem {
34
34
  assigned_user_id?: string | null;
35
35
  /** Who is currently attending: 'ai', 'human', or null (unassigned) */
36
36
  attendant_type?: 'ai' | 'human' | null;
37
+ postponed_until?: Date | null;
38
+ is_postponed: boolean;
37
39
  last_message_at?: Date;
38
40
  last_inbound_at?: Date;
39
41
  last_message_preview?: string;
@@ -47,6 +47,8 @@ export interface IInboxItem {
47
47
  assigned_user_id?: string | null;
48
48
  /** Who is currently attending: 'ai', 'human', or null (unassigned) */
49
49
  attendant_type?: 'ai' | 'human' | null;
50
+ postponed_until?: Date | null;
51
+ is_postponed: boolean;
50
52
  last_message_at?: Date;
51
53
  last_inbound_at?: Date;
52
54
  last_message_preview?: string;
@@ -35,6 +35,7 @@ export interface ITicket extends IFireDoc {
35
35
  last_message_preview?: string;
36
36
  last_message_channel_id?: string;
37
37
  assigned_user_id?: string | null;
38
+ postponed_until?: Date | null;
38
39
  created_by?: ITicketCreatedBy;
39
40
  [key: string]: unknown;
40
41
  }
@@ -55,6 +55,8 @@ export interface ITicket extends IFireDoc {
55
55
 
56
56
  assigned_user_id?: string | null;
57
57
 
58
+ postponed_until?: Date | null;
59
+
58
60
  created_by?: ITicketCreatedBy;
59
61
 
60
62
  [key: string]: unknown;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "evo360-types",
3
- "version": "1.3.348",
3
+ "version": "1.3.349",
4
4
  "description": "HREVO360 Shared Types",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",