contactstudiocstools 1.0.280 → 1.0.281
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.
package/dist/module.json
CHANGED
|
@@ -136,7 +136,11 @@ export declare enum EChatMessageTypes {
|
|
|
136
136
|
option = "option",
|
|
137
137
|
file = "file",
|
|
138
138
|
contact = "contact",
|
|
139
|
-
sticker = "sticker"
|
|
139
|
+
sticker = "sticker",
|
|
140
|
+
call_terminated = "call_terminated",
|
|
141
|
+
permission_denied = "permission_denied",
|
|
142
|
+
permission_granted = "permission_granted",
|
|
143
|
+
permission_waiting = "permission_waiting"
|
|
140
144
|
}
|
|
141
145
|
export interface IChatMessage {
|
|
142
146
|
date: Date;
|
|
@@ -33,6 +33,10 @@ export var EChatMessageTypes = /* @__PURE__ */ ((EChatMessageTypes2) => {
|
|
|
33
33
|
EChatMessageTypes2["file"] = "file";
|
|
34
34
|
EChatMessageTypes2["contact"] = "contact";
|
|
35
35
|
EChatMessageTypes2["sticker"] = "sticker";
|
|
36
|
+
EChatMessageTypes2["call_terminated"] = "call_terminated";
|
|
37
|
+
EChatMessageTypes2["permission_denied"] = "permission_denied";
|
|
38
|
+
EChatMessageTypes2["permission_granted"] = "permission_granted";
|
|
39
|
+
EChatMessageTypes2["permission_waiting"] = "permission_waiting";
|
|
36
40
|
return EChatMessageTypes2;
|
|
37
41
|
})(EChatMessageTypes || {});
|
|
38
42
|
export var EPhoneStatus = /* @__PURE__ */ ((EPhoneStatus2) => {
|