@trii/types 2.10.263 → 2.10.265

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.
@@ -116,6 +116,7 @@ export interface MessageImage {
116
116
  /**The url of the image. */
117
117
  url: string;
118
118
  caption: string;
119
+ mediaid?: string;
119
120
  }
120
121
  export interface MessageVideo {
121
122
  id: string;
@@ -127,6 +128,7 @@ export interface MessageVideo {
127
128
  /**The url of the video. */
128
129
  url: string;
129
130
  caption: string;
131
+ mediaid?: string;
130
132
  }
131
133
  export interface MessageCdr {
132
134
  callerId: string;
@@ -163,6 +165,7 @@ export interface MessageDocument {
163
165
  mimeType: string;
164
166
  /**The url of the fie. */
165
167
  url: string;
168
+ mediaid?: string;
166
169
  }
167
170
  export interface MessageReference {
168
171
  messageId: string;
@@ -220,6 +223,7 @@ export interface MessageSticker {
220
223
  mimeType: string;
221
224
  /**The url of the video. */
222
225
  url: string;
226
+ mediaid?: string;
223
227
  }
224
228
  export interface MessageInfo {
225
229
  code: string;
@@ -39,6 +39,15 @@ export declare class EndingsDashboard {
39
39
  quantity: number;
40
40
  }
41
41
  export declare class MembersDashboard {
42
+ optionsList: MembersDashboardOption[];
43
+ values: MembersDashboardValue[];
44
+ }
45
+ export declare class MembersDashboardOption {
46
+ key: string;
47
+ name: string;
48
+ }
49
+ export declare class MembersDashboardValue {
50
+ key: string;
42
51
  activeConversations: number;
43
52
  inProgressConversations: number;
44
53
  expiredConversations: number;
@@ -26,6 +26,10 @@ export class EndingsDashboard {
26
26
  }
27
27
  export class MembersDashboard {
28
28
  }
29
+ export class MembersDashboardOption {
30
+ }
31
+ export class MembersDashboardValue {
32
+ }
29
33
  export class ChannelsDashboard {
30
34
  }
31
35
  export class LabelsDashboard {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trii/types",
3
- "version": "2.10.263",
3
+ "version": "2.10.265",
4
4
  "description": "Types definitions for Trii projects - ",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",