@rodrigobeber/patoai-dtos 1.8.5 → 1.8.6

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,5 @@
1
1
  export interface ReplyMessageDto {
2
+ idMessage: number;
2
3
  chatMessageId: string;
3
4
  content: string;
4
5
  }
@@ -15,5 +15,4 @@ export * from './sync-assistant.dto';
15
15
  export * from './sync-assistant-files.dto';
16
16
  export * from './submit-tool-outputs.dto';
17
17
  export * from './text-file.dto';
18
- export * from './update-thread-message.dto';
19
18
  export * from './ai-response.dto';
@@ -31,6 +31,5 @@ __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
  __exportStar(require("./text-file.dto"), exports);
34
- __exportStar(require("./update-thread-message.dto"), exports);
35
34
  // return interfaces
36
35
  __exportStar(require("./ai-response.dto"), exports);
@@ -1,3 +1,4 @@
1
+ import { ReplyMessageDto } from "../chat";
1
2
  import { ChannelDto } from "./channel.dto";
2
3
  import { VoiceMessageDto } from "./voice-message.dto";
3
4
  export interface SendMessageDto {
@@ -8,6 +9,5 @@ export interface SendMessageDto {
8
9
  typingSpeed: number;
9
10
  voiceData?: VoiceMessageDto;
10
11
  crewCode?: string;
11
- replyMessageId?: string;
12
- replyMessage?: string;
12
+ replyMessage?: ReplyMessageDto;
13
13
  }
@@ -2,5 +2,6 @@ import { MediaInfoDto } from "../media/media-info.dto";
2
2
  export interface SentMessageDto {
3
3
  chatMessageId: string;
4
4
  content: string;
5
+ idReply?: number;
5
6
  mediaInfo?: MediaInfoDto;
6
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rodrigobeber/patoai-dtos",
3
- "version": "1.8.5",
3
+ "version": "1.8.6",
4
4
  "description": "Data Transfer Objects for PatoAI",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",