@trii/types 2.10.390 → 2.10.393

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.
@@ -52,6 +52,7 @@ export interface IMessage {
52
52
  email?: MessageEmail;
53
53
  buttons?: MessageButton[];
54
54
  poll?: MessagePoll;
55
+ note?: MessageNote;
55
56
  reactions?: MessageReaction[];
56
57
  messageReference?: MessageReference;
57
58
  comment?: CommentData;
@@ -123,6 +124,9 @@ export interface MessageText {
123
124
  previewUrl: boolean;
124
125
  body: string;
125
126
  }
127
+ export interface MessageNote {
128
+ body: string;
129
+ }
126
130
  export interface MessageAudio {
127
131
  /** para uso en front */
128
132
  id: string | '';
@@ -37,6 +37,7 @@ export interface IConversation {
37
37
  botVars: ConversationBotVar[];
38
38
  finalizedAt: Date;
39
39
  ending?: IEnding;
40
+ reOpenAt?: Date;
40
41
  createdAt: Date;
41
42
  updatedAt: Date;
42
43
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trii/types",
3
- "version": "2.10.390",
3
+ "version": "2.10.393",
4
4
  "description": "Types definitions for Trii projects - ",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",