@rodrigobeber/patoai-dtos 4.7.29 → 4.7.31
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.
|
@@ -33,3 +33,15 @@ export interface WebChatThreadStageCountsResponseDto {
|
|
|
33
33
|
counts: WebChatThreadStageCountDto[];
|
|
34
34
|
totalCount: number;
|
|
35
35
|
}
|
|
36
|
+
/** Identidade enxuta de um lead/thread, usada para selecionar todos conforme os filtros (sem carregar o card inteiro). */
|
|
37
|
+
export interface WebChatThreadIdentityDto {
|
|
38
|
+
idThread: string;
|
|
39
|
+
userId: string;
|
|
40
|
+
userName: string;
|
|
41
|
+
idStage: number | null;
|
|
42
|
+
}
|
|
43
|
+
/** Resolve todas as identidades de leads que batem com os filtros (estágio único ou board inteiro). */
|
|
44
|
+
export interface WebChatSelectionResponseDto {
|
|
45
|
+
items: WebChatThreadIdentityDto[];
|
|
46
|
+
total: number;
|
|
47
|
+
}
|
|
@@ -113,6 +113,8 @@ export interface WizardIngestUrlRequestDto {
|
|
|
113
113
|
}
|
|
114
114
|
export interface WizardMaterialResponseDto {
|
|
115
115
|
material: WizardMaterialDto;
|
|
116
|
+
/** Frase de reconhecimento do agente gerada ao anexar (o frontend mostra como msg do assistente). */
|
|
117
|
+
ack?: string | null;
|
|
116
118
|
}
|
|
117
119
|
export interface WizardMaterialsResponseDto {
|
|
118
120
|
materials: WizardMaterialDto[];
|