@rodrigobeber/patoai-dtos 4.2.6 → 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.
- package/dist/crew/credit-mode.enum.d.ts +4 -0
- package/dist/crew/credit-mode.enum.js +8 -0
- package/dist/crew/crew.dto.d.ts +2 -1
- package/dist/crew/follow-up-mode.enum.d.ts +11 -0
- package/dist/crew/follow-up-mode.enum.js +15 -0
- package/dist/crew/index.d.ts +2 -0
- package/dist/crew/index.js +2 -0
- package/dist/webchat/crew/webchat-crew.dto.d.ts +2 -2
- package/package.json +1 -1
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CreditModeEnum = void 0;
|
|
4
|
+
var CreditModeEnum;
|
|
5
|
+
(function (CreditModeEnum) {
|
|
6
|
+
CreditModeEnum["USER"] = "user";
|
|
7
|
+
CreditModeEnum["BOTH"] = "both"; // Conta conversa se user E assistant mandaram msg no dia
|
|
8
|
+
})(CreditModeEnum || (exports.CreditModeEnum = CreditModeEnum = {}));
|
package/dist/crew/crew.dto.d.ts
CHANGED
|
@@ -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:
|
|
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 = {}));
|
package/dist/crew/index.d.ts
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
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';
|
|
6
7
|
export * from './vision.enum';
|
|
7
8
|
export * from './permission-type.enum';
|
|
9
|
+
export * from './credit-mode.enum';
|
package/dist/crew/index.js
CHANGED
|
@@ -16,8 +16,10 @@ 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);
|
|
22
23
|
__exportStar(require("./vision.enum"), exports);
|
|
23
24
|
__exportStar(require("./permission-type.enum"), exports);
|
|
25
|
+
__exportStar(require("./credit-mode.enum"), 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:
|
|
27
|
+
followUp: FollowUpModeEnum;
|
|
28
28
|
followUps: WebChatFollowUpDto[];
|
|
29
29
|
}
|