@webex/event-dictionary-ts 1.0.1330 → 1.0.1332
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.
|
@@ -6303,6 +6303,12 @@
|
|
|
6303
6303
|
"minimum": 0.0,
|
|
6304
6304
|
"maximum": 9223372036854776000.0
|
|
6305
6305
|
},
|
|
6306
|
+
"callIsConnectedTime": {
|
|
6307
|
+
"description": "The time when the call is successfully established.",
|
|
6308
|
+
"type": "number",
|
|
6309
|
+
"minimum": 0.0,
|
|
6310
|
+
"maximum": 9223372036854776000.0
|
|
6311
|
+
},
|
|
6306
6312
|
"firstAudioPacketSentTime": {
|
|
6307
6313
|
"description": "First audio packet is captured from microphone and sent to the remote.",
|
|
6308
6314
|
"type": "number",
|
|
@@ -6775,6 +6775,12 @@
|
|
|
6775
6775
|
"minimum": 0.0,
|
|
6776
6776
|
"maximum": 9223372036854776000.0
|
|
6777
6777
|
},
|
|
6778
|
+
"callIsConnectedTime": {
|
|
6779
|
+
"description": "The time when the call is successfully established.",
|
|
6780
|
+
"type": "number",
|
|
6781
|
+
"minimum": 0.0,
|
|
6782
|
+
"maximum": 9223372036854776000.0
|
|
6783
|
+
},
|
|
6778
6784
|
"firstAudioPacketSentTime": {
|
|
6779
6785
|
"description": "First audio packet is captured from microphone and sent to the remote.",
|
|
6780
6786
|
"type": "number",
|
|
@@ -9676,8 +9682,10 @@
|
|
|
9676
9682
|
},
|
|
9677
9683
|
"disconnectReason": {
|
|
9678
9684
|
"enum": [
|
|
9685
|
+
"all_participants_left",
|
|
9679
9686
|
"answered_elsewhere",
|
|
9680
9687
|
"busy",
|
|
9688
|
+
"call_max_duration",
|
|
9681
9689
|
"callback_cancel",
|
|
9682
9690
|
"callback_disconnect",
|
|
9683
9691
|
"cascade_connect_timeout",
|
|
@@ -9687,11 +9695,14 @@
|
|
|
9687
9695
|
"duplicate_call",
|
|
9688
9696
|
"forbidden",
|
|
9689
9697
|
"forced",
|
|
9698
|
+
"host_session_limit_exceeded",
|
|
9690
9699
|
"inactive",
|
|
9691
9700
|
"intent_canceled",
|
|
9692
9701
|
"intent_expired",
|
|
9693
9702
|
"invalid_join_time",
|
|
9694
9703
|
"invalid_pin",
|
|
9704
|
+
"ivr_expired",
|
|
9705
|
+
"leave_pstn_only_host",
|
|
9695
9706
|
"leave_transfer_host",
|
|
9696
9707
|
"lobby_expired",
|
|
9697
9708
|
"media_moved",
|
|
@@ -9699,6 +9710,7 @@
|
|
|
9699
9710
|
"meeting_ended",
|
|
9700
9711
|
"meeting_full",
|
|
9701
9712
|
"meeting_locked",
|
|
9713
|
+
"no_host",
|
|
9702
9714
|
"not_acceptable",
|
|
9703
9715
|
"not_found",
|
|
9704
9716
|
"observed_left",
|
|
@@ -9707,8 +9719,10 @@
|
|
|
9707
9719
|
"other",
|
|
9708
9720
|
"resource_declined",
|
|
9709
9721
|
"resource_left",
|
|
9722
|
+
"sip_host_left",
|
|
9710
9723
|
"unknown",
|
|
9711
|
-
"unreachable"
|
|
9724
|
+
"unreachable",
|
|
9725
|
+
"waiting_for_mps_end_meeting_timeout"
|
|
9712
9726
|
],
|
|
9713
9727
|
"type": "string"
|
|
9714
9728
|
},
|
|
@@ -3056,6 +3056,10 @@ export interface Event {
|
|
|
3056
3056
|
* Happens right after applyAudioSDPTime completes.
|
|
3057
3057
|
*/
|
|
3058
3058
|
applyVideoSDPTime?: number;
|
|
3059
|
+
/**
|
|
3060
|
+
* The time when the call is successfully established.
|
|
3061
|
+
*/
|
|
3062
|
+
callIsConnectedTime?: number;
|
|
3059
3063
|
/**
|
|
3060
3064
|
* First audio packet is captured from microphone and sent to the remote.
|
|
3061
3065
|
*/
|
|
@@ -4122,8 +4126,10 @@ export interface Event {
|
|
|
4122
4126
|
};
|
|
4123
4127
|
deviceState?: "idle" | "idle-observed" | "joined" | "joined-observing";
|
|
4124
4128
|
disconnectReason?:
|
|
4129
|
+
| "all_participants_left"
|
|
4125
4130
|
| "answered_elsewhere"
|
|
4126
4131
|
| "busy"
|
|
4132
|
+
| "call_max_duration"
|
|
4127
4133
|
| "callback_cancel"
|
|
4128
4134
|
| "callback_disconnect"
|
|
4129
4135
|
| "cascade_connect_timeout"
|
|
@@ -4133,11 +4139,14 @@ export interface Event {
|
|
|
4133
4139
|
| "duplicate_call"
|
|
4134
4140
|
| "forbidden"
|
|
4135
4141
|
| "forced"
|
|
4142
|
+
| "host_session_limit_exceeded"
|
|
4136
4143
|
| "inactive"
|
|
4137
4144
|
| "intent_canceled"
|
|
4138
4145
|
| "intent_expired"
|
|
4139
4146
|
| "invalid_join_time"
|
|
4140
4147
|
| "invalid_pin"
|
|
4148
|
+
| "ivr_expired"
|
|
4149
|
+
| "leave_pstn_only_host"
|
|
4141
4150
|
| "leave_transfer_host"
|
|
4142
4151
|
| "lobby_expired"
|
|
4143
4152
|
| "media_moved"
|
|
@@ -4145,6 +4154,7 @@ export interface Event {
|
|
|
4145
4154
|
| "meeting_ended"
|
|
4146
4155
|
| "meeting_full"
|
|
4147
4156
|
| "meeting_locked"
|
|
4157
|
+
| "no_host"
|
|
4148
4158
|
| "not_acceptable"
|
|
4149
4159
|
| "not_found"
|
|
4150
4160
|
| "observed_left"
|
|
@@ -4153,8 +4163,10 @@ export interface Event {
|
|
|
4153
4163
|
| "other"
|
|
4154
4164
|
| "resource_declined"
|
|
4155
4165
|
| "resource_left"
|
|
4166
|
+
| "sip_host_left"
|
|
4156
4167
|
| "unknown"
|
|
4157
|
-
| "unreachable"
|
|
4168
|
+
| "unreachable"
|
|
4169
|
+
| "waiting_for_mps_end_meeting_timeout";
|
|
4158
4170
|
/**
|
|
4159
4171
|
* Base type for the various identifiers used to connect the dots.
|
|
4160
4172
|
* In general, these should be populated whenever possible. Subtypes may make a particular key required.
|
|
@@ -12227,6 +12239,10 @@ export interface ClientEvent {
|
|
|
12227
12239
|
* Happens right after applyAudioSDPTime completes.
|
|
12228
12240
|
*/
|
|
12229
12241
|
applyVideoSDPTime?: number;
|
|
12242
|
+
/**
|
|
12243
|
+
* The time when the call is successfully established.
|
|
12244
|
+
*/
|
|
12245
|
+
callIsConnectedTime?: number;
|
|
12230
12246
|
/**
|
|
12231
12247
|
* First audio packet is captured from microphone and sent to the remote.
|
|
12232
12248
|
*/
|
package/package.json
CHANGED