@rodrigobeber/patoai-dtos 3.4.13 → 3.4.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.
@@ -1,4 +1,4 @@
1
1
  export * from './message';
2
+ export * from './set-manual-mode.dto';
2
3
  export * from './thread.dto';
3
4
  export * from './thread-processing.dto';
4
- export * from './escalate.dto';
@@ -15,6 +15,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./message"), exports);
18
+ __exportStar(require("./set-manual-mode.dto"), exports);
18
19
  __exportStar(require("./thread.dto"), exports);
19
20
  __exportStar(require("./thread-processing.dto"), exports);
20
- __exportStar(require("./escalate.dto"), exports);
@@ -1,9 +1,5 @@
1
1
  export interface SetManualModeDto {
2
2
  idThread: number;
3
- idCrew: number;
4
3
  idHuman: number | null;
5
4
  manual: boolean;
6
- reason: string;
7
- manually: boolean;
8
- crm: boolean;
9
5
  }
@@ -0,0 +1,5 @@
1
+ export interface SetThreadManualModeDto {
2
+ idThread: number;
3
+ idHuman: number | null;
4
+ manual: boolean;
5
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1 @@
1
+ export * from './set-lead-stage.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("./set-lead-stage.dto"), exports);
@@ -0,0 +1,4 @@
1
+ export interface SetLeadStageDto {
2
+ idLead: number;
3
+ idStage: number;
4
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/dist/index.d.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from './ai';
2
2
  export * from './auth';
3
3
  export * from './chat';
4
+ export * from './crm';
4
5
  export * from './crew';
5
6
  export * from './organization';
6
7
  export * from './run';
package/dist/index.js CHANGED
@@ -17,6 +17,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./ai"), exports);
18
18
  __exportStar(require("./auth"), exports);
19
19
  __exportStar(require("./chat"), exports);
20
+ __exportStar(require("./crm"), exports);
20
21
  __exportStar(require("./crew"), exports);
21
22
  __exportStar(require("./organization"), exports);
22
23
  __exportStar(require("./run"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rodrigobeber/patoai-dtos",
3
- "version": "3.4.13",
3
+ "version": "3.4.15",
4
4
  "description": "Data Transfer Objects for PatoAI",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",