@rodrigobeber/patoai-dtos 4.2.7 → 4.2.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.
@@ -1,6 +1,7 @@
1
1
  import { ProviderEnum } from "../ai";
2
2
  import { MediaEnum } from "../chat";
3
3
  import { CrmDto } from "../crm/crm.dto";
4
+ import { FollowUpModeEnum } from "./follow-up-mode.enum";
4
5
  import { VisionEnum } from "./vision.enum";
5
6
  export interface CrewLocaleDto {
6
7
  hours12: boolean;
@@ -23,7 +24,7 @@ export interface CrewSettingsDto {
23
24
  escalate: boolean;
24
25
  typingSpeed: number;
25
26
  agenda: boolean;
26
- followUp: boolean;
27
+ followUp: FollowUpModeEnum;
27
28
  userInfo: boolean;
28
29
  vision: VisionEnum;
29
30
  window: number;
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Modo de follow-up do crew.
3
+ * - off: Follow-up desativado
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)
6
+ */
7
+ export declare enum FollowUpModeEnum {
8
+ OFF = "off",
9
+ NORMAL = "normal",
10
+ FULL = "full"
11
+ }
@@ -0,0 +1,15 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.FollowUpModeEnum = void 0;
4
+ /**
5
+ * Modo de follow-up do crew.
6
+ * - off: Follow-up desativado
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)
9
+ */
10
+ var FollowUpModeEnum;
11
+ (function (FollowUpModeEnum) {
12
+ FollowUpModeEnum["OFF"] = "off";
13
+ FollowUpModeEnum["NORMAL"] = "normal";
14
+ FollowUpModeEnum["FULL"] = "full";
15
+ })(FollowUpModeEnum || (exports.FollowUpModeEnum = FollowUpModeEnum = {}));
@@ -1,5 +1,6 @@
1
1
  export * from './crew.dto';
2
2
  export * from './crew-completion.dto';
3
+ export * from './follow-up-mode.enum';
3
4
  export * from './get-provider.dto';
4
5
  export * from './online-mode.enum';
5
6
  export * from './unit.dto';
@@ -16,6 +16,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./crew.dto"), exports);
18
18
  __exportStar(require("./crew-completion.dto"), exports);
19
+ __exportStar(require("./follow-up-mode.enum"), exports);
19
20
  __exportStar(require("./get-provider.dto"), exports);
20
21
  __exportStar(require("./online-mode.enum"), exports);
21
22
  __exportStar(require("./unit.dto"), exports);
@@ -1,4 +1,4 @@
1
- import { OnlineModeEnum, PermissionTypeEnum } from "../../crew";
1
+ import { FollowUpModeEnum, OnlineModeEnum, PermissionTypeEnum } from "../../crew";
2
2
  import { MemberRoleEnum } from "../../organization";
3
3
  import { WebChatCrmDto } from "../crm";
4
4
  import { WebChatFollowUpDto } from "../follow-up/webchat-followup.dto";
@@ -24,6 +24,6 @@ export interface WebChatCrewDto {
24
24
  credits: boolean;
25
25
  awake: boolean;
26
26
  hasHours: boolean;
27
- followUp: boolean;
27
+ followUp: FollowUpModeEnum;
28
28
  followUps: WebChatFollowUpDto[];
29
29
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rodrigobeber/patoai-dtos",
3
- "version": "4.2.7",
3
+ "version": "4.2.8",
4
4
  "description": "Data Transfer Objects for PatoAI",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",