@rodrigobeber/patoai-dtos 4.7.15 → 4.7.17

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.
@@ -3,7 +3,7 @@ export interface WebChatCreateTriggerDto {
3
3
  idUnit: number;
4
4
  identifier: string;
5
5
  event: string;
6
- templateName: string;
6
+ templateName?: string | null;
7
7
  token?: string | null;
8
8
  delay?: number;
9
9
  followUp?: number | null;
@@ -4,7 +4,7 @@ export interface WebChatTriggerDto {
4
4
  idUnit: number;
5
5
  identifier: string;
6
6
  event: string;
7
- templateName: string;
7
+ templateName: string | null;
8
8
  token: string | null;
9
9
  delay: number;
10
10
  followUp: number | null;
@@ -1,5 +1,5 @@
1
1
  export interface WebChatUpdateTriggerDto {
2
- templateName?: string;
2
+ templateName?: string | null;
3
3
  token?: string | null;
4
4
  delay?: number;
5
5
  followUp?: number | null;
@@ -14,6 +14,7 @@ export interface WizardChatResponseDto {
14
14
  }
15
15
  export interface WizardGenerateRequestDto {
16
16
  sessionId: string;
17
+ structuredInput?: WizardStructuredInputDto;
17
18
  }
18
19
  export type SdrSubType = 'link' | 'agenda' | 'scalate' | 'mix';
19
20
  export interface WizardStageNamesDto {
@@ -30,10 +31,19 @@ export interface WizardFollowUpConfigDto {
30
31
  intervalMinutes: number[];
31
32
  giveUpAfterHours: number;
32
33
  }
33
- export interface WizardCalendarConfigDto {
34
- enabled: boolean;
35
- meetingType: string;
36
- durationMinutes: number;
34
+ export interface WizardPostSetupChecklistDto {
35
+ mustConfigure: string[];
36
+ shouldReview: string[];
37
+ }
38
+ export interface WizardStructuredInputDto {
39
+ agentType?: 'sdr' | 'support';
40
+ sdrSubType?: SdrSubType;
41
+ industry?: string;
42
+ behaviorStyle?: 'formal' | 'informal' | 'acolhedor' | 'direto';
43
+ behaviorEmojis?: 'sem_emojis' | 'emojis_moderados' | 'emojis_livres';
44
+ behaviorTraits?: string[];
45
+ calendarNeeded?: boolean;
46
+ agentName?: string;
37
47
  }
38
48
  export interface WizardPersonalityDto {
39
49
  defaultMode: string;
@@ -57,9 +67,10 @@ export interface WizardGenerateResponseDto {
57
67
  stageNames?: WizardStageNamesDto;
58
68
  escalationRules?: WizardEscalationRuleDto[];
59
69
  followUpConfig?: WizardFollowUpConfigDto;
60
- calendarConfig?: WizardCalendarConfigDto;
70
+ calendarConfig?: boolean;
61
71
  settingsHints?: Record<string, any>;
62
72
  personality?: WizardPersonalityDto;
73
+ postSetupChecklist?: WizardPostSetupChecklistDto;
63
74
  }
64
75
  export interface WizardDomainDto {
65
76
  title: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rodrigobeber/patoai-dtos",
3
- "version": "4.7.15",
3
+ "version": "4.7.17",
4
4
  "description": "Data Transfer Objects for PatoAI",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",