@rodrigobeber/patoai-dtos 4.6.13 → 4.6.15

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.
Files changed (45) hide show
  1. package/dist/billing/billing-event.dto.d.ts +36 -0
  2. package/dist/billing/billing-rest.dto.d.ts +22 -0
  3. package/dist/briefing/ai-assist.dto.d.ts +34 -0
  4. package/dist/briefing/ai-assist.dto.js +2 -0
  5. package/dist/briefing/briefing-answer.dto.d.ts +14 -0
  6. package/dist/briefing/briefing-answer.dto.js +2 -0
  7. package/dist/briefing/briefing-document.dto.d.ts +9 -0
  8. package/dist/briefing/briefing-document.dto.js +2 -0
  9. package/dist/briefing/briefing-question.dto.d.ts +21 -0
  10. package/dist/briefing/briefing-question.dto.js +2 -0
  11. package/dist/briefing/briefing-section.dto.d.ts +10 -0
  12. package/dist/briefing/briefing-section.dto.js +2 -0
  13. package/dist/briefing/briefing-status.enum.d.ts +7 -0
  14. package/dist/briefing/briefing-status.enum.js +11 -0
  15. package/dist/briefing/briefing.dto.d.ts +32 -0
  16. package/dist/briefing/briefing.dto.js +2 -0
  17. package/dist/briefing/generated-prompt.dto.d.ts +56 -0
  18. package/dist/briefing/generated-prompt.dto.js +2 -0
  19. package/dist/briefing/index.d.ts +11 -0
  20. package/dist/briefing/index.js +27 -0
  21. package/dist/briefing/input-type.enum.d.ts +9 -0
  22. package/dist/briefing/input-type.enum.js +13 -0
  23. package/dist/briefing/pipeline-stage.enum.d.ts +8 -0
  24. package/dist/briefing/pipeline-stage.enum.js +12 -0
  25. package/dist/briefing/pipeline.dto.d.ts +13 -0
  26. package/dist/briefing/pipeline.dto.js +2 -0
  27. package/dist/chat/thread/message/owner-message.dto.d.ts +1 -0
  28. package/dist/chat/thread/message/user-message.dto.d.ts +1 -0
  29. package/dist/chat/thread/stop-follow-up.dto.d.ts +6 -0
  30. package/dist/chat/thread/stop-follow-up.dto.js +2 -0
  31. package/dist/crew/crew.dto.d.ts +1 -0
  32. package/dist/crew/follow-up-mode.enum.d.ts +1 -1
  33. package/dist/crew/follow-up-mode.enum.js +1 -1
  34. package/dist/index.d.ts +2 -0
  35. package/dist/index.js +2 -0
  36. package/dist/prompt/index.d.ts +1 -0
  37. package/dist/prompt/index.js +17 -0
  38. package/dist/webchat/agent/index.d.ts +0 -1
  39. package/dist/webchat/agent/index.js +0 -1
  40. package/dist/webchat/agent/webchat-prompt.dto.d.ts +1 -1
  41. package/dist/webchat/agent/webchat-update-prompt.dto.d.ts +1 -1
  42. package/dist/webchat/crew/webchat-crew.dto.d.ts +1 -0
  43. package/package.json +1 -1
  44. /package/dist/{webchat/agent → prompt}/prompt-stage-mode.enum.d.ts +0 -0
  45. /package/dist/{webchat/agent → prompt}/prompt-stage-mode.enum.js +0 -0
@@ -40,8 +40,44 @@ export interface BillingPaymentFailedDto {
40
40
  amount: number;
41
41
  invoiceId: string;
42
42
  }
43
+ export interface BillingSubscriptionUpgradedDto {
44
+ idCrew: number;
45
+ oldPlanName: string;
46
+ newPlanName: string;
47
+ newPlanSlug: string;
48
+ extraCreditsGranted: number;
49
+ amountCharged: number;
50
+ }
51
+ export interface BillingDowngradeScheduledDto {
52
+ idCrew: number;
53
+ currentPlanName: string;
54
+ targetPlanName: string;
55
+ targetPlanSlug: string;
56
+ effectiveAt: string;
57
+ }
58
+ export interface BillingDowngradeCancelledDto {
59
+ idCrew: number;
60
+ }
43
61
  export interface CrewCreatedDto {
44
62
  idCrew: number;
45
63
  ownerEmail: string;
46
64
  ownerName: string;
47
65
  }
66
+ export interface BillingCanOperateRequestDto {
67
+ idCrew: number;
68
+ }
69
+ export interface BillingCanOperateResponseDto {
70
+ allowed: boolean;
71
+ planCredits: number;
72
+ extraCredits: number;
73
+ hasPendingInvoice: boolean;
74
+ reason?: string;
75
+ }
76
+ export interface BillingCreditConsumedDto {
77
+ idCrew: number;
78
+ idThread: string;
79
+ date: string;
80
+ }
81
+ export interface BillingGetBalanceRequestDto {
82
+ idCrew: number;
83
+ }
@@ -44,6 +44,28 @@ export interface SubscriptionStatusDto {
44
44
  currentPeriodStart: string | null;
45
45
  currentPeriodEnd: string | null;
46
46
  cancelAtPeriodEnd: boolean;
47
+ pendingDowngradePlan: string | null;
48
+ }
49
+ export interface UpgradeSubscriptionDto {
50
+ idCrew: number;
51
+ newPlanSlug: string;
52
+ }
53
+ export interface DowngradeSubscriptionDto {
54
+ idCrew: number;
55
+ newPlanSlug: string;
56
+ }
57
+ export interface CancelDowngradeDto {
58
+ idCrew: number;
59
+ }
60
+ export interface BillingBalanceDto {
61
+ idCrew: number;
62
+ planCredits: number;
63
+ extraCredits: number;
64
+ totalCredits: number;
65
+ periodStart: string | null;
66
+ periodEnd: string | null;
67
+ planName: string | null;
68
+ planSlug: string | null;
47
69
  }
48
70
  export interface CreditTransactionDto {
49
71
  id: number;
@@ -0,0 +1,34 @@
1
+ export interface AiAssistRequestDto {
2
+ questionCode: string;
3
+ currentAnswers: Record<string, string>;
4
+ }
5
+ export interface AiAssistResponseDto {
6
+ suggestion: string;
7
+ tips: string | null;
8
+ }
9
+ export interface AiSummaryResponseDto {
10
+ summary: string;
11
+ }
12
+ export interface ImportFreeformRequestDto {
13
+ text: string;
14
+ }
15
+ export interface ImportResultDto {
16
+ suggestions: Record<string, string>;
17
+ source: 'freeform' | 'template';
18
+ }
19
+ export interface DraftSectionRequestDto {
20
+ sectionCode: string;
21
+ currentAnswers: Record<string, string>;
22
+ }
23
+ export interface DraftSectionResponseDto {
24
+ suggestions: Record<string, string>;
25
+ }
26
+ export interface BriefingTemplateDto {
27
+ id: number;
28
+ code: string;
29
+ title: string;
30
+ description: string;
31
+ icon: string;
32
+ agentType: string;
33
+ answers: Record<string, string>;
34
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,14 @@
1
+ export interface BriefingAnswerDto {
2
+ id: number;
3
+ idBriefing: number;
4
+ idQuestion: number;
5
+ questionCode: string;
6
+ value: string | null;
7
+ }
8
+ export interface BriefingAnswerSaveDto {
9
+ questionCode: string;
10
+ value: string | null;
11
+ }
12
+ export interface BriefingSubmitDto {
13
+ answers: BriefingAnswerSaveDto[];
14
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,9 @@
1
+ export interface BriefingDocumentDto {
2
+ id: number;
3
+ idBriefing: number;
4
+ fileName: string;
5
+ fileType: string | null;
6
+ fileSize: number | null;
7
+ s3Url: string | null;
8
+ createdAt: string;
9
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,21 @@
1
+ import { BriefingInputTypeEnum } from "./input-type.enum";
2
+ export interface BriefingQuestionOptionDto {
3
+ value: string;
4
+ label: string;
5
+ }
6
+ export interface BriefingQuestionDto {
7
+ id: number;
8
+ idSection: number;
9
+ code: string;
10
+ label: string;
11
+ description: string | null;
12
+ inputType: BriefingInputTypeEnum;
13
+ options: BriefingQuestionOptionDto[] | null;
14
+ placeholder: string | null;
15
+ isRequired: boolean;
16
+ isCritical: boolean;
17
+ validation: Record<string, any> | null;
18
+ nrOrder: number;
19
+ condition: Record<string, any> | null;
20
+ impactText: string | null;
21
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,10 @@
1
+ import { BriefingQuestionDto } from "./briefing-question.dto";
2
+ export interface BriefingSectionDto {
3
+ id: number;
4
+ code: string;
5
+ title: string;
6
+ description: string | null;
7
+ nrOrder: number;
8
+ condition: Record<string, any> | null;
9
+ questions: BriefingQuestionDto[];
10
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,7 @@
1
+ export declare enum BriefingStatusEnum {
2
+ DRAFT = "draft",
3
+ SUBMITTED = "submitted",
4
+ GENERATING = "generating",
5
+ GENERATED = "generated",
6
+ ERROR = "error"
7
+ }
@@ -0,0 +1,11 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.BriefingStatusEnum = void 0;
4
+ var BriefingStatusEnum;
5
+ (function (BriefingStatusEnum) {
6
+ BriefingStatusEnum["DRAFT"] = "draft";
7
+ BriefingStatusEnum["SUBMITTED"] = "submitted";
8
+ BriefingStatusEnum["GENERATING"] = "generating";
9
+ BriefingStatusEnum["GENERATED"] = "generated";
10
+ BriefingStatusEnum["ERROR"] = "error";
11
+ })(BriefingStatusEnum || (exports.BriefingStatusEnum = BriefingStatusEnum = {}));
@@ -0,0 +1,32 @@
1
+ import { BriefingAnswerDto } from "./briefing-answer.dto";
2
+ import { BriefingDocumentDto } from "./briefing-document.dto";
3
+ import { BriefingStatusEnum } from "./briefing-status.enum";
4
+ import { GeneratedPromptDto } from "./generated-prompt.dto";
5
+ import { PipelineStageEnum } from "./pipeline-stage.enum";
6
+ export interface BriefingDto {
7
+ id: number;
8
+ token: string;
9
+ clientName: string | null;
10
+ clientEmail: string | null;
11
+ clientPhone: string | null;
12
+ status: BriefingStatusEnum;
13
+ pipelineStage: PipelineStageEnum;
14
+ agentType: string | null;
15
+ hasCalendar: boolean;
16
+ hasEscalation: boolean;
17
+ hasSpin: boolean;
18
+ submittedAt: string | null;
19
+ generatedAt: string | null;
20
+ createdAt: string;
21
+ updatedAt: string;
22
+ }
23
+ export interface BriefingDetailDto extends BriefingDto {
24
+ answers: BriefingAnswerDto[];
25
+ documents: BriefingDocumentDto[];
26
+ generatedPrompt: GeneratedPromptDto | null;
27
+ }
28
+ export interface BriefingCreateDto {
29
+ clientName?: string;
30
+ clientEmail?: string;
31
+ clientPhone?: string;
32
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,56 @@
1
+ export interface GeneratedPromptDomainDto {
2
+ title: string;
3
+ content: string;
4
+ }
5
+ export interface GeneratedPromptEscalationDto {
6
+ stage: string;
7
+ conditions: string[];
8
+ }
9
+ export interface GeneratedPromptUserDto {
10
+ name: string;
11
+ email: string;
12
+ }
13
+ export interface GeneratedPromptUsersDto {
14
+ admin: GeneratedPromptUserDto;
15
+ attendants: GeneratedPromptUserDto[];
16
+ notes: string | null;
17
+ }
18
+ export interface GeneratedPromptIntegrationDto {
19
+ whatsappType: string | null;
20
+ whatsappNumber: string | null;
21
+ calendarProvider: string | null;
22
+ webhookPlatforms: string[];
23
+ otherChannels: string[];
24
+ externalCrm: string | null;
25
+ }
26
+ export interface GeneratedPromptDto {
27
+ id: number;
28
+ idBriefing: number;
29
+ version: number;
30
+ contextAbout: string | null;
31
+ contextBusiness: string | null;
32
+ contextAudience: string | null;
33
+ contextBehavior: string | null;
34
+ domainKnowledge: GeneratedPromptDomainDto[] | null;
35
+ escalationRules: GeneratedPromptEscalationDto[] | null;
36
+ spinConfig: Record<string, any> | null;
37
+ calendarConfig: Record<string, any> | null;
38
+ sqlVariables: Record<string, any> | null;
39
+ followUpConfig: Record<string, any> | null;
40
+ integration: GeneratedPromptIntegrationDto | null;
41
+ users: GeneratedPromptUsersDto | null;
42
+ rawOutput: string | null;
43
+ createdAt: string;
44
+ }
45
+ export interface GeneratedPromptUpdateDto {
46
+ contextAbout?: string;
47
+ contextBusiness?: string;
48
+ contextAudience?: string;
49
+ contextBehavior?: string;
50
+ domainKnowledge?: GeneratedPromptDomainDto[];
51
+ escalationRules?: GeneratedPromptEscalationDto[];
52
+ spinConfig?: Record<string, any>;
53
+ calendarConfig?: Record<string, any>;
54
+ sqlVariables?: Record<string, any>;
55
+ followUpConfig?: Record<string, any>;
56
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,11 @@
1
+ export * from './briefing-status.enum';
2
+ export * from './pipeline-stage.enum';
3
+ export * from './input-type.enum';
4
+ export * from './briefing-question.dto';
5
+ export * from './briefing-section.dto';
6
+ export * from './briefing-answer.dto';
7
+ export * from './briefing-document.dto';
8
+ export * from './generated-prompt.dto';
9
+ export * from './briefing.dto';
10
+ export * from './pipeline.dto';
11
+ export * from './ai-assist.dto';
@@ -0,0 +1,27 @@
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("./briefing-status.enum"), exports);
18
+ __exportStar(require("./pipeline-stage.enum"), exports);
19
+ __exportStar(require("./input-type.enum"), exports);
20
+ __exportStar(require("./briefing-question.dto"), exports);
21
+ __exportStar(require("./briefing-section.dto"), exports);
22
+ __exportStar(require("./briefing-answer.dto"), exports);
23
+ __exportStar(require("./briefing-document.dto"), exports);
24
+ __exportStar(require("./generated-prompt.dto"), exports);
25
+ __exportStar(require("./briefing.dto"), exports);
26
+ __exportStar(require("./pipeline.dto"), exports);
27
+ __exportStar(require("./ai-assist.dto"), exports);
@@ -0,0 +1,9 @@
1
+ export declare enum BriefingInputTypeEnum {
2
+ TEXT = "text",
3
+ TEXTAREA = "textarea",
4
+ SELECT = "select",
5
+ MULTISELECT = "multiselect",
6
+ NUMBER = "number",
7
+ BOOLEAN = "boolean",
8
+ FILE = "file"
9
+ }
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.BriefingInputTypeEnum = void 0;
4
+ var BriefingInputTypeEnum;
5
+ (function (BriefingInputTypeEnum) {
6
+ BriefingInputTypeEnum["TEXT"] = "text";
7
+ BriefingInputTypeEnum["TEXTAREA"] = "textarea";
8
+ BriefingInputTypeEnum["SELECT"] = "select";
9
+ BriefingInputTypeEnum["MULTISELECT"] = "multiselect";
10
+ BriefingInputTypeEnum["NUMBER"] = "number";
11
+ BriefingInputTypeEnum["BOOLEAN"] = "boolean";
12
+ BriefingInputTypeEnum["FILE"] = "file";
13
+ })(BriefingInputTypeEnum || (exports.BriefingInputTypeEnum = BriefingInputTypeEnum = {}));
@@ -0,0 +1,8 @@
1
+ export declare enum PipelineStageEnum {
2
+ RECEIVED = "received",
3
+ GENERATED = "generated",
4
+ REVIEW = "review",
5
+ IMPLEMENTATION = "implementation",
6
+ TESTING = "testing",
7
+ PUBLISHED = "published"
8
+ }
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PipelineStageEnum = void 0;
4
+ var PipelineStageEnum;
5
+ (function (PipelineStageEnum) {
6
+ PipelineStageEnum["RECEIVED"] = "received";
7
+ PipelineStageEnum["GENERATED"] = "generated";
8
+ PipelineStageEnum["REVIEW"] = "review";
9
+ PipelineStageEnum["IMPLEMENTATION"] = "implementation";
10
+ PipelineStageEnum["TESTING"] = "testing";
11
+ PipelineStageEnum["PUBLISHED"] = "published";
12
+ })(PipelineStageEnum || (exports.PipelineStageEnum = PipelineStageEnum = {}));
@@ -0,0 +1,13 @@
1
+ import { PipelineStageEnum } from "./pipeline-stage.enum";
2
+ export interface PipelineLogDto {
3
+ id: number;
4
+ idBriefing: number;
5
+ fromStage: string | null;
6
+ toStage: string;
7
+ notes: string | null;
8
+ createdAt: string;
9
+ }
10
+ export interface PipelineSummaryDto {
11
+ stage: PipelineStageEnum;
12
+ count: number;
13
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,5 +1,6 @@
1
1
  import { MediaInfoDto } from "../../media";
2
2
  export interface OwnerMessageDto {
3
+ idCrew: number;
3
4
  idThread: string;
4
5
  idChannel: number;
5
6
  at: Date;
@@ -1,5 +1,6 @@
1
1
  import { MediaInfoDto } from "../../media";
2
2
  export interface UserMessageDto {
3
+ idCrew: number;
3
4
  idThread: string;
4
5
  idChannel: number;
5
6
  at: Date;
@@ -0,0 +1,6 @@
1
+ import { StageTypeEnum } from "../../crm";
2
+ export interface StopFollowUpDto {
3
+ idCrew: number;
4
+ idThread: string;
5
+ stageType: StageTypeEnum | null;
6
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -29,6 +29,7 @@ export interface CrewSettingsDto {
29
29
  vision: VisionEnum;
30
30
  window: number;
31
31
  resetContext: boolean;
32
+ billing: boolean;
32
33
  }
33
34
  export interface CrewDto {
34
35
  id: number;
@@ -2,7 +2,7 @@
2
2
  * Modo de follow-up do crew.
3
3
  * - off: Follow-up desativado
4
4
  * - normal: Follow-up ativado, mas não reinicia contador em resposta do usuário
5
- * - full: Follow-up ativado com reinício do contador (comportamento padrão/completo)
5
+ * - full: Follow-up ativado com reinício do contador
6
6
  */
7
7
  export declare enum FollowUpModeEnum {
8
8
  OFF = "off",
@@ -5,7 +5,7 @@ exports.FollowUpModeEnum = void 0;
5
5
  * Modo de follow-up do crew.
6
6
  * - off: Follow-up desativado
7
7
  * - normal: Follow-up ativado, mas não reinicia contador em resposta do usuário
8
- * - full: Follow-up ativado com reinício do contador (comportamento padrão/completo)
8
+ * - full: Follow-up ativado com reinício do contador
9
9
  */
10
10
  var FollowUpModeEnum;
11
11
  (function (FollowUpModeEnum) {
package/dist/index.d.ts CHANGED
@@ -8,7 +8,9 @@ export * from './crm';
8
8
  export * from './crew';
9
9
  export * from './handoff';
10
10
  export * from './organization';
11
+ export * from './prompt';
11
12
  export * from './run';
12
13
  export * from './tool';
13
14
  export * from './uh';
14
15
  export * from './webchat';
16
+ export * from './briefing';
package/dist/index.js CHANGED
@@ -24,7 +24,9 @@ __exportStar(require("./crm"), exports);
24
24
  __exportStar(require("./crew"), exports);
25
25
  __exportStar(require("./handoff"), exports);
26
26
  __exportStar(require("./organization"), exports);
27
+ __exportStar(require("./prompt"), exports);
27
28
  __exportStar(require("./run"), exports);
28
29
  __exportStar(require("./tool"), exports);
29
30
  __exportStar(require("./uh"), exports);
30
31
  __exportStar(require("./webchat"), exports);
32
+ __exportStar(require("./briefing"), exports);
@@ -0,0 +1 @@
1
+ export * from './prompt-stage-mode.enum';
@@ -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("./prompt-stage-mode.enum"), exports);
@@ -1,3 +1,2 @@
1
- export * from './prompt-stage-mode.enum';
2
1
  export * from './webchat-prompt.dto';
3
2
  export * from './webchat-update-prompt.dto';
@@ -14,6 +14,5 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
- __exportStar(require("./prompt-stage-mode.enum"), exports);
18
17
  __exportStar(require("./webchat-prompt.dto"), exports);
19
18
  __exportStar(require("./webchat-update-prompt.dto"), exports);
@@ -1,4 +1,4 @@
1
- import { PromptStageModeEnum } from "./prompt-stage-mode.enum";
1
+ import { PromptStageModeEnum } from "../../prompt/prompt-stage-mode.enum";
2
2
  export interface WebChatPromptDto {
3
3
  id: number;
4
4
  title: string;
@@ -1,4 +1,4 @@
1
- import { PromptStageModeEnum } from "./prompt-stage-mode.enum";
1
+ import { PromptStageModeEnum } from "../../prompt/prompt-stage-mode.enum";
2
2
  export interface WebChatUpdatePromptDto {
3
3
  prompt?: string;
4
4
  active?: boolean;
@@ -22,6 +22,7 @@ export interface WebChatCrewDto {
22
22
  agenda: boolean;
23
23
  agendaPatoAI: boolean;
24
24
  credits: boolean;
25
+ billing: boolean;
25
26
  awake: boolean;
26
27
  hasHours: boolean;
27
28
  followUp: FollowUpModeEnum;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rodrigobeber/patoai-dtos",
3
- "version": "4.6.13",
3
+ "version": "4.6.15",
4
4
  "description": "Data Transfer Objects for PatoAI",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",