@rodrigobeber/patoai-dtos 1.4.21 → 1.4.22

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.
@@ -5,4 +5,5 @@ export interface AiMessageDto {
5
5
  idAgent: number;
6
6
  idsMessages: number[];
7
7
  sentMessages: SentMessageDto[];
8
+ markedForOwner?: boolean;
8
9
  }
@@ -0,0 +1,5 @@
1
+ export interface AiResponseDto {
2
+ messageId: string;
3
+ content: string;
4
+ markedForOwner?: boolean;
5
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -14,4 +14,4 @@ export * from './instruction-file.dto';
14
14
  export * from './sync-assistant.dto';
15
15
  export * from './sync-assistant-files.dto';
16
16
  export * from './submit-tool-outputs.dto';
17
- export * from './ai-message.dto';
17
+ export * from './ai-response.dto';
@@ -31,4 +31,4 @@ __exportStar(require("./sync-assistant.dto"), exports);
31
31
  __exportStar(require("./sync-assistant-files.dto"), exports);
32
32
  __exportStar(require("./submit-tool-outputs.dto"), exports);
33
33
  // return intarfaces
34
- __exportStar(require("./ai-message.dto"), exports);
34
+ __exportStar(require("./ai-response.dto"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rodrigobeber/patoai-dtos",
3
- "version": "1.4.21",
3
+ "version": "1.4.22",
4
4
  "description": "Data Transfer Objects for PatoAI",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",