@rodrigobeber/patoai-dtos 4.7.51 → 4.7.52
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.
|
@@ -9,6 +9,7 @@ import { WebChatFollowUpDto } from "../webchat/follow-up/webchat-followup.dto";
|
|
|
9
9
|
import { WebChatHandoffDto } from "../webchat/handoff/webchat-handoff.dto";
|
|
10
10
|
import { WebChatHoursResponseDto } from "../webchat/organization/webchat-hours.dto";
|
|
11
11
|
import { WebChatTriggerDto } from "../webchat/automation/webchat-trigger.dto";
|
|
12
|
+
import { WebChatReminderDto } from "../webchat/reminder/webchat-reminder.dto";
|
|
12
13
|
export interface SupportCrewConfigRequestDto {
|
|
13
14
|
idCrew: number;
|
|
14
15
|
idAccount: number;
|
|
@@ -25,6 +26,44 @@ export interface SupportAttendeeNameTitleDto {
|
|
|
25
26
|
attendeeName: boolean;
|
|
26
27
|
attendeeNameMask: string | null;
|
|
27
28
|
}
|
|
29
|
+
export interface SupportAgentBehaviorDto {
|
|
30
|
+
debounce: number;
|
|
31
|
+
typingSpeed: number;
|
|
32
|
+
}
|
|
33
|
+
export interface SupportAgendaAccountDto {
|
|
34
|
+
email: string;
|
|
35
|
+
host: string | null;
|
|
36
|
+
connected: boolean;
|
|
37
|
+
active: boolean;
|
|
38
|
+
}
|
|
39
|
+
export interface SupportAgendaHoursDto {
|
|
40
|
+
weekday: number;
|
|
41
|
+
startTime: string;
|
|
42
|
+
endTime: string;
|
|
43
|
+
}
|
|
44
|
+
export interface SupportAgendaProfessionalDto {
|
|
45
|
+
name: string;
|
|
46
|
+
active: boolean;
|
|
47
|
+
}
|
|
48
|
+
export interface SupportAgendaDto {
|
|
49
|
+
type: string;
|
|
50
|
+
active: boolean;
|
|
51
|
+
title: string | null;
|
|
52
|
+
kind: string | null;
|
|
53
|
+
fixedLocation: string | null;
|
|
54
|
+
duration: number | null;
|
|
55
|
+
offset: number | null;
|
|
56
|
+
generalRules: string | null;
|
|
57
|
+
informAvailabilityRules: string | null;
|
|
58
|
+
checklistRules: string | null;
|
|
59
|
+
summaryRule: string | null;
|
|
60
|
+
descriptionRule: string | null;
|
|
61
|
+
availability: string | null;
|
|
62
|
+
turns: string | null;
|
|
63
|
+
accounts?: SupportAgendaAccountDto[];
|
|
64
|
+
hours?: SupportAgendaHoursDto[];
|
|
65
|
+
professionals?: SupportAgendaProfessionalDto[];
|
|
66
|
+
}
|
|
28
67
|
export interface SupportCrewConfigDto {
|
|
29
68
|
crew?: WebChatCrewDto;
|
|
30
69
|
crewHours?: WebChatCrewHoursResponseDto[];
|
|
@@ -38,6 +77,9 @@ export interface SupportCrewConfigDto {
|
|
|
38
77
|
crmIntegration?: WebChatCrewCrmDto;
|
|
39
78
|
members?: MemberWithAccountDto[];
|
|
40
79
|
attendeeNameTitle?: SupportAttendeeNameTitleDto;
|
|
80
|
+
reminders?: WebChatReminderDto[];
|
|
81
|
+
agentBehavior?: SupportAgentBehaviorDto;
|
|
82
|
+
agenda?: SupportAgendaDto;
|
|
41
83
|
advancedVisible: boolean;
|
|
42
84
|
omittedSections: string[];
|
|
43
85
|
}
|