@rodrigobeber/patoai-dtos 4.7.8 → 4.7.9
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.
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { SdrSubType, WizardStageNamesDto } from '../wizard/wizard.dto';
|
|
1
2
|
export type ProvisionAgentType = 'sdr' | 'support';
|
|
2
3
|
export interface ProvisionCrewDto {
|
|
3
4
|
companyName: string;
|
|
@@ -8,6 +9,11 @@ export interface ProvisionCrewDto {
|
|
|
8
9
|
audience: string;
|
|
9
10
|
behavior: string;
|
|
10
11
|
domains?: ProvisionDomainDto[];
|
|
12
|
+
sdrSubType?: SdrSubType;
|
|
13
|
+
actionPhrase?: string;
|
|
14
|
+
dealPhrase?: string;
|
|
15
|
+
spinYaml?: string;
|
|
16
|
+
stageNames?: WizardStageNamesDto;
|
|
11
17
|
}
|
|
12
18
|
export interface ProvisionDomainDto {
|
|
13
19
|
title: string;
|
|
@@ -15,6 +15,12 @@ export interface WizardChatResponseDto {
|
|
|
15
15
|
export interface WizardGenerateRequestDto {
|
|
16
16
|
sessionId: string;
|
|
17
17
|
}
|
|
18
|
+
export type SdrSubType = 'link' | 'agenda' | 'scalate';
|
|
19
|
+
export interface WizardStageNamesDto {
|
|
20
|
+
calledByUser: string;
|
|
21
|
+
action: string;
|
|
22
|
+
actionDone: string;
|
|
23
|
+
}
|
|
18
24
|
export interface WizardGenerateResponseDto {
|
|
19
25
|
companyName: string;
|
|
20
26
|
agentName: string;
|
|
@@ -24,6 +30,11 @@ export interface WizardGenerateResponseDto {
|
|
|
24
30
|
audience: string;
|
|
25
31
|
behavior: string;
|
|
26
32
|
domains: WizardDomainDto[];
|
|
33
|
+
sdrSubType?: SdrSubType;
|
|
34
|
+
actionPhrase?: string;
|
|
35
|
+
dealPhrase?: string;
|
|
36
|
+
spinYaml?: string;
|
|
37
|
+
stageNames?: WizardStageNamesDto;
|
|
27
38
|
}
|
|
28
39
|
export interface WizardDomainDto {
|
|
29
40
|
title: string;
|
|
@@ -31,7 +42,7 @@ export interface WizardDomainDto {
|
|
|
31
42
|
}
|
|
32
43
|
export interface WizardRefineRequestDto {
|
|
33
44
|
sessionId: string;
|
|
34
|
-
field: 'about' | 'role' | 'audience' | 'behavior';
|
|
45
|
+
field: 'about' | 'role' | 'audience' | 'behavior' | 'spinYaml';
|
|
35
46
|
currentValue: string;
|
|
36
47
|
instruction: string;
|
|
37
48
|
}
|