@rodrigobeber/patoai-dtos 4.8.11 → 4.8.13
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.
|
@@ -18,3 +18,4 @@ __exportStar(require("./webchat-asset.dto"), exports);
|
|
|
18
18
|
__exportStar(require("./webchat-create-asset.dto"), exports);
|
|
19
19
|
__exportStar(require("./webchat-update-asset.dto"), exports);
|
|
20
20
|
__exportStar(require("./webchat-asset-upload-url.dto"), exports);
|
|
21
|
+
__exportStar(require("./webchat-asset-usage.dto"), exports);
|
|
@@ -5,6 +5,15 @@ import { WebChatThreadListRequestDto } from "./webchat-thread-list.dto";
|
|
|
5
5
|
* Labels PT-BR ficam no frontend.
|
|
6
6
|
*/
|
|
7
7
|
export type WebChatLeadsExportColumn = 'name' | 'phone' | 'email' | 'stage' | 'temperature' | 'paid' | 'createdAt' | 'lastMessageAt' | 'summary' | 'observation' | 'tags' | 'responsible';
|
|
8
|
+
/**
|
|
9
|
+
* Corpo do POST de exportação de leads.
|
|
10
|
+
* `idThreads` é o recorte explícito da seleção do funil; ausente = todos os que batem com os filtros.
|
|
11
|
+
*/
|
|
12
|
+
export interface WebChatLeadsExportRequestDto {
|
|
13
|
+
filters: WebChatThreadListRequestDto;
|
|
14
|
+
columns?: WebChatLeadsExportColumn[];
|
|
15
|
+
idThreads?: string[];
|
|
16
|
+
}
|
|
8
17
|
/**
|
|
9
18
|
* Corpo do POST de exportação de conversas.
|
|
10
19
|
* Reusa o mesmo contrato de filtros da listagem de threads + um teto de leads.
|