@in.pulse-crm/sdk 2.8.3 → 2.8.4
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.
|
@@ -59,6 +59,10 @@ export interface WppChat {
|
|
|
59
59
|
priority: WppChatPriority;
|
|
60
60
|
avatarUrl?: string;
|
|
61
61
|
isFinished: boolean;
|
|
62
|
+
startedAt: Date;
|
|
63
|
+
finishedAt?: Date | null;
|
|
64
|
+
finishedBy?: number | null;
|
|
65
|
+
isSchedule: boolean;
|
|
62
66
|
}
|
|
63
67
|
export interface WppSector {
|
|
64
68
|
id: number;
|
package/package.json
CHANGED
|
@@ -64,6 +64,10 @@ export interface WppChat {
|
|
|
64
64
|
priority: WppChatPriority;
|
|
65
65
|
avatarUrl?: string;
|
|
66
66
|
isFinished: boolean;
|
|
67
|
+
startedAt: Date;
|
|
68
|
+
finishedAt?: Date | null;
|
|
69
|
+
finishedBy?: number | null;
|
|
70
|
+
isSchedule: boolean;
|
|
67
71
|
}
|
|
68
72
|
|
|
69
73
|
export interface WppSector {
|
|
@@ -158,4 +162,4 @@ export interface Schedule {
|
|
|
158
162
|
scheduledBy: number;
|
|
159
163
|
scheduledFor: number;
|
|
160
164
|
contact: WppContact;
|
|
161
|
-
}
|
|
165
|
+
}
|