@trii/types 2.10.139 → 2.10.141

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.
@@ -75,9 +75,13 @@ export interface MessageAudio {
75
75
  url: string;
76
76
  }
77
77
  export interface MessageImage {
78
+ /** para uso en front */
79
+ id: string | '';
80
+ /** para uso en front */
81
+ name: string | '';
78
82
  /**image/webp */
79
83
  mimeType: string;
80
- /**The url of the video. */
84
+ /**The url of the image. */
81
85
  url: string;
82
86
  caption: string;
83
87
  }
@@ -119,6 +123,13 @@ export interface MessageLocation {
119
123
  url: string;
120
124
  }
121
125
  export interface MessageDocument {
126
+ id: string;
127
+ /**The name for the file*/
128
+ filename: string | '';
129
+ /** mimetype o the file */
130
+ mimeType: string;
131
+ /**The url of the fie. */
132
+ url: string;
122
133
  }
123
134
  export interface MessageReference {
124
135
  messageId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trii/types",
3
- "version": "2.10.139",
3
+ "version": "2.10.141",
4
4
  "description": "Types definitions for Trii projects - ",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",