@webex/event-dictionary-ts 1.0.1331 → 1.0.1333
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.
|
@@ -9682,8 +9682,10 @@
|
|
|
9682
9682
|
},
|
|
9683
9683
|
"disconnectReason": {
|
|
9684
9684
|
"enum": [
|
|
9685
|
+
"all_participants_left",
|
|
9685
9686
|
"answered_elsewhere",
|
|
9686
9687
|
"busy",
|
|
9688
|
+
"call_max_duration",
|
|
9687
9689
|
"callback_cancel",
|
|
9688
9690
|
"callback_disconnect",
|
|
9689
9691
|
"cascade_connect_timeout",
|
|
@@ -9693,11 +9695,14 @@
|
|
|
9693
9695
|
"duplicate_call",
|
|
9694
9696
|
"forbidden",
|
|
9695
9697
|
"forced",
|
|
9698
|
+
"host_session_limit_exceeded",
|
|
9696
9699
|
"inactive",
|
|
9697
9700
|
"intent_canceled",
|
|
9698
9701
|
"intent_expired",
|
|
9699
9702
|
"invalid_join_time",
|
|
9700
9703
|
"invalid_pin",
|
|
9704
|
+
"ivr_expired",
|
|
9705
|
+
"leave_pstn_only_host",
|
|
9701
9706
|
"leave_transfer_host",
|
|
9702
9707
|
"lobby_expired",
|
|
9703
9708
|
"media_moved",
|
|
@@ -9705,6 +9710,7 @@
|
|
|
9705
9710
|
"meeting_ended",
|
|
9706
9711
|
"meeting_full",
|
|
9707
9712
|
"meeting_locked",
|
|
9713
|
+
"no_host",
|
|
9708
9714
|
"not_acceptable",
|
|
9709
9715
|
"not_found",
|
|
9710
9716
|
"observed_left",
|
|
@@ -9713,8 +9719,10 @@
|
|
|
9713
9719
|
"other",
|
|
9714
9720
|
"resource_declined",
|
|
9715
9721
|
"resource_left",
|
|
9722
|
+
"sip_host_left",
|
|
9716
9723
|
"unknown",
|
|
9717
|
-
"unreachable"
|
|
9724
|
+
"unreachable",
|
|
9725
|
+
"waiting_for_mps_end_meeting_timeout"
|
|
9718
9726
|
],
|
|
9719
9727
|
"type": "string"
|
|
9720
9728
|
},
|
|
@@ -4126,8 +4126,10 @@ export interface Event {
|
|
|
4126
4126
|
};
|
|
4127
4127
|
deviceState?: "idle" | "idle-observed" | "joined" | "joined-observing";
|
|
4128
4128
|
disconnectReason?:
|
|
4129
|
+
| "all_participants_left"
|
|
4129
4130
|
| "answered_elsewhere"
|
|
4130
4131
|
| "busy"
|
|
4132
|
+
| "call_max_duration"
|
|
4131
4133
|
| "callback_cancel"
|
|
4132
4134
|
| "callback_disconnect"
|
|
4133
4135
|
| "cascade_connect_timeout"
|
|
@@ -4137,11 +4139,14 @@ export interface Event {
|
|
|
4137
4139
|
| "duplicate_call"
|
|
4138
4140
|
| "forbidden"
|
|
4139
4141
|
| "forced"
|
|
4142
|
+
| "host_session_limit_exceeded"
|
|
4140
4143
|
| "inactive"
|
|
4141
4144
|
| "intent_canceled"
|
|
4142
4145
|
| "intent_expired"
|
|
4143
4146
|
| "invalid_join_time"
|
|
4144
4147
|
| "invalid_pin"
|
|
4148
|
+
| "ivr_expired"
|
|
4149
|
+
| "leave_pstn_only_host"
|
|
4145
4150
|
| "leave_transfer_host"
|
|
4146
4151
|
| "lobby_expired"
|
|
4147
4152
|
| "media_moved"
|
|
@@ -4149,6 +4154,7 @@ export interface Event {
|
|
|
4149
4154
|
| "meeting_ended"
|
|
4150
4155
|
| "meeting_full"
|
|
4151
4156
|
| "meeting_locked"
|
|
4157
|
+
| "no_host"
|
|
4152
4158
|
| "not_acceptable"
|
|
4153
4159
|
| "not_found"
|
|
4154
4160
|
| "observed_left"
|
|
@@ -4157,8 +4163,10 @@ export interface Event {
|
|
|
4157
4163
|
| "other"
|
|
4158
4164
|
| "resource_declined"
|
|
4159
4165
|
| "resource_left"
|
|
4166
|
+
| "sip_host_left"
|
|
4160
4167
|
| "unknown"
|
|
4161
|
-
| "unreachable"
|
|
4168
|
+
| "unreachable"
|
|
4169
|
+
| "waiting_for_mps_end_meeting_timeout";
|
|
4162
4170
|
/**
|
|
4163
4171
|
* Base type for the various identifiers used to connect the dots.
|
|
4164
4172
|
* In general, these should be populated whenever possible. Subtypes may make a particular key required.
|
package/package.json
CHANGED