@rodrigobeber/patoai-dtos 4.6.61 → 4.6.63

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,2 +1,5 @@
1
1
  export * from './webchat-prompt.dto';
2
2
  export * from './webchat-update-prompt.dto';
3
+ export * from './webchat-create-prompt.dto';
4
+ export * from './webchat-context.dto';
5
+ export * from './webchat-update-context.dto';
@@ -16,3 +16,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./webchat-prompt.dto"), exports);
18
18
  __exportStar(require("./webchat-update-prompt.dto"), exports);
19
+ __exportStar(require("./webchat-create-prompt.dto"), exports);
20
+ __exportStar(require("./webchat-context.dto"), exports);
21
+ __exportStar(require("./webchat-update-context.dto"), exports);
@@ -0,0 +1,6 @@
1
+ export interface WebChatContextDto {
2
+ about: string | null;
3
+ business: string;
4
+ audience: string | null;
5
+ behavior: string | null;
6
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,6 @@
1
+ export interface WebChatCreatePromptDto {
2
+ title: string;
3
+ prompt: string;
4
+ type?: string;
5
+ maxLength?: number;
6
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -5,6 +5,7 @@ export interface WebChatPromptDto {
5
5
  title: string;
6
6
  prompt: string;
7
7
  type: RunEnum;
8
+ order: number;
8
9
  maxLength: number | null;
9
10
  canEdit: boolean;
10
11
  active: boolean;
@@ -0,0 +1,6 @@
1
+ export interface WebChatUpdateContextDto {
2
+ about?: string;
3
+ business?: string;
4
+ audience?: string;
5
+ behavior?: string;
6
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,6 +1,7 @@
1
1
  import { PromptStageModeEnum } from "../../prompt/prompt-stage-mode.enum";
2
2
  export interface WebChatUpdatePromptDto {
3
3
  prompt?: string;
4
+ type?: string;
4
5
  active?: boolean;
5
6
  stageMode?: PromptStageModeEnum | null;
6
7
  stageIds?: number[];
@@ -29,4 +29,5 @@ export interface WebChatCrewDto {
29
29
  followUps: WebChatFollowUpDto[];
30
30
  dist: string;
31
31
  maxBroadcastRate: number;
32
+ personal: boolean;
32
33
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rodrigobeber/patoai-dtos",
3
- "version": "4.6.61",
3
+ "version": "4.6.63",
4
4
  "description": "Data Transfer Objects for PatoAI",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",