@rodrigobeber/patoai-dtos 4.7.7 → 4.7.8

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.
package/dist/index.d.ts CHANGED
@@ -14,3 +14,4 @@ export * from './tool';
14
14
  export * from './uh';
15
15
  export * from './webchat';
16
16
  export * from './briefing';
17
+ export * from './wizard';
package/dist/index.js CHANGED
@@ -30,3 +30,4 @@ __exportStar(require("./tool"), exports);
30
30
  __exportStar(require("./uh"), exports);
31
31
  __exportStar(require("./webchat"), exports);
32
32
  __exportStar(require("./briefing"), exports);
33
+ __exportStar(require("./wizard"), exports);
@@ -0,0 +1 @@
1
+ export * from './wizard.dto';
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./wizard.dto"), exports);
@@ -0,0 +1,40 @@
1
+ export interface WizardStartResponseDto {
2
+ sessionId: string;
3
+ greeting: string;
4
+ }
5
+ export interface WizardChatRequestDto {
6
+ sessionId: string;
7
+ message: string;
8
+ }
9
+ export interface WizardChatResponseDto {
10
+ reply: string;
11
+ done: boolean;
12
+ detectedType: 'sdr' | 'support' | null;
13
+ detectedIndustry: string | null;
14
+ }
15
+ export interface WizardGenerateRequestDto {
16
+ sessionId: string;
17
+ }
18
+ export interface WizardGenerateResponseDto {
19
+ companyName: string;
20
+ agentName: string;
21
+ agentType: 'sdr' | 'support';
22
+ about: string;
23
+ role: string;
24
+ audience: string;
25
+ behavior: string;
26
+ domains: WizardDomainDto[];
27
+ }
28
+ export interface WizardDomainDto {
29
+ title: string;
30
+ content: string;
31
+ }
32
+ export interface WizardRefineRequestDto {
33
+ sessionId: string;
34
+ field: 'about' | 'role' | 'audience' | 'behavior';
35
+ currentValue: string;
36
+ instruction: string;
37
+ }
38
+ export interface WizardRefineResponseDto {
39
+ refined: string;
40
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rodrigobeber/patoai-dtos",
3
- "version": "4.7.7",
3
+ "version": "4.7.8",
4
4
  "description": "Data Transfer Objects for PatoAI",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",