@rodrigobeber/patoai-dtos 4.7.29 → 4.7.30

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
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rodrigobeber/patoai-dtos",
3
- "version": "4.7.29",
3
+ "version": "4.7.30",
4
4
  "description": "Data Transfer Objects for PatoAI",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",