@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;
|