feat: Added update message endpoint

This commit is contained in:
Davidson Gomes
2024-01-03 10:18:20 -03:00
parent a446df4620
commit 7373eea842
6 changed files with 71 additions and 0 deletions

View File

@@ -100,3 +100,9 @@ export class SendPresenceDto extends Metadata {
delay: number;
};
}
export class UpdateMessageDto extends Metadata {
number: string;
key: proto.IMessageKey;
text: string;
}