@rodrigobeber/patoai-dtos 4.6.71 → 4.6.73

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,6 @@
1
1
  export interface WebChatContextDto {
2
2
  about: string | null;
3
- business: string;
3
+ role: string;
4
4
  audience: string | null;
5
5
  behavior: string | null;
6
6
  }
@@ -1,6 +1,6 @@
1
1
  export interface WebChatUpdateContextDto {
2
2
  about?: string;
3
- business?: string;
3
+ role?: string;
4
4
  audience?: string;
5
5
  behavior?: string;
6
6
  }
@@ -1,13 +1,16 @@
1
1
  import { WebChatStageDto } from "./webchat-stage.dto";
2
2
  import { WebChatTagDto } from "./webchat-tag.dto";
3
- export declare enum MetricTypeEnum {
3
+ export declare enum CrmTypeEnum {
4
+ SUPPORT = "support",
5
+ LINK = "link",
4
6
  AGENDA = "agenda",
5
- QUALIFY = "qualify"
7
+ SCALATE = "scalate",
8
+ MIX = "mix"
6
9
  }
7
10
  export interface WebChatCrmDto {
8
11
  summary: boolean;
9
12
  spin: boolean;
10
- metricType: MetricTypeEnum | null;
13
+ type: CrmTypeEnum;
11
14
  showLastMessage: boolean;
12
15
  pipeline: WebChatStageDto[] | null;
13
16
  tags: WebChatTagDto[] | null;
@@ -1,8 +1,11 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.MetricTypeEnum = void 0;
4
- var MetricTypeEnum;
5
- (function (MetricTypeEnum) {
6
- MetricTypeEnum["AGENDA"] = "agenda";
7
- MetricTypeEnum["QUALIFY"] = "qualify";
8
- })(MetricTypeEnum || (exports.MetricTypeEnum = MetricTypeEnum = {}));
3
+ exports.CrmTypeEnum = void 0;
4
+ var CrmTypeEnum;
5
+ (function (CrmTypeEnum) {
6
+ CrmTypeEnum["SUPPORT"] = "support";
7
+ CrmTypeEnum["LINK"] = "link";
8
+ CrmTypeEnum["AGENDA"] = "agenda";
9
+ CrmTypeEnum["SCALATE"] = "scalate";
10
+ CrmTypeEnum["MIX"] = "mix";
11
+ })(CrmTypeEnum || (exports.CrmTypeEnum = CrmTypeEnum = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rodrigobeber/patoai-dtos",
3
- "version": "4.6.71",
3
+ "version": "4.6.73",
4
4
  "description": "Data Transfer Objects for PatoAI",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",