@rodrigobeber/patoai-dtos 4.8.0 → 4.8.1

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.
@@ -30,6 +30,13 @@ export interface ProvisionCrewDto {
30
30
  actionPhrase?: string;
31
31
  dealPhrase?: string;
32
32
  spinYaml?: string;
33
+ /**
34
+ * SDR "direto" (demanda ativa): quando false, o agente NAO usa SPIN — nasce com crm.spin=false,
35
+ * funil curto movido por tx_set_stage e roteiro em prompt normal (directRoteiro). Ausente/true = SPIN.
36
+ */
37
+ useSpin?: boolean;
38
+ /** Roteiro livre (qualificar + quando executar a acao + tom) do SDR direto. Espelha o papel do spinYaml. */
39
+ directRoteiro?: string;
33
40
  stageNames?: WizardStageNamesDto;
34
41
  /** Sugestoes de settings derivadas do briefing (mapeadas sobre os defaults). */
35
42
  settings?: ProvisionSettingsDto;
@@ -84,6 +84,10 @@ export interface WizardGenerateResponseDto {
84
84
  actionPhrase?: string;
85
85
  dealPhrase?: string;
86
86
  spinYaml?: string;
87
+ /** SDR direto (demanda ativa): false = sem SPIN (funil curto + roteiro normal). Ausente/true = SPIN. */
88
+ useSpin?: boolean;
89
+ /** Roteiro livre do SDR direto (qualificar + quando executar a ação + tom). Preenchido quando useSpin=false. */
90
+ directRoteiro?: string;
87
91
  stageNames?: WizardStageNamesDto;
88
92
  escalationRules?: WizardEscalationRuleDto[];
89
93
  followUpConfig?: WizardFollowUpConfigDto;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rodrigobeber/patoai-dtos",
3
- "version": "4.8.0",
3
+ "version": "4.8.1",
4
4
  "description": "Data Transfer Objects for PatoAI",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",