@webex/event-dictionary-ts 1.0.2139 → 1.0.2141
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.
|
@@ -4011,6 +4011,9 @@
|
|
|
4011
4011
|
"isVideoMuted": {
|
|
4012
4012
|
"type": "boolean"
|
|
4013
4013
|
},
|
|
4014
|
+
"isVPN": {
|
|
4015
|
+
"type": "boolean"
|
|
4016
|
+
},
|
|
4014
4017
|
"joinHttpTiming": {
|
|
4015
4018
|
"type": "object",
|
|
4016
4019
|
"description": "phrased HTTP timing",
|
|
@@ -7988,8 +7991,7 @@
|
|
|
7988
7991
|
"additionalProperties": true,
|
|
7989
7992
|
"properties": {
|
|
7990
7993
|
"bwcCallId": {
|
|
7991
|
-
"type": "integer"
|
|
7992
|
-
"minimum": 0
|
|
7994
|
+
"type": "integer"
|
|
7993
7995
|
},
|
|
7994
7996
|
"bwcCallType": {
|
|
7995
7997
|
"enum": [
|
|
@@ -4588,6 +4588,9 @@
|
|
|
4588
4588
|
"isVideoMuted": {
|
|
4589
4589
|
"type": "boolean"
|
|
4590
4590
|
},
|
|
4591
|
+
"isVPN": {
|
|
4592
|
+
"type": "boolean"
|
|
4593
|
+
},
|
|
4591
4594
|
"joinHttpTiming": {
|
|
4592
4595
|
"type": "object",
|
|
4593
4596
|
"description": "phrased HTTP timing",
|
|
@@ -8565,8 +8568,7 @@
|
|
|
8565
8568
|
"additionalProperties": true,
|
|
8566
8569
|
"properties": {
|
|
8567
8570
|
"bwcCallId": {
|
|
8568
|
-
"type": "integer"
|
|
8569
|
-
"minimum": 0
|
|
8571
|
+
"type": "integer"
|
|
8570
8572
|
},
|
|
8571
8573
|
"bwcCallType": {
|
|
8572
8574
|
"enum": [
|
|
@@ -2091,6 +2091,7 @@ export interface Event {
|
|
|
2091
2091
|
joinType?: "auto" | "no-locus-join";
|
|
2092
2092
|
audioJoinType?: "phone-call-in" | "phone-call-back" | "voip" | "device-call-back" | "never-join-audio";
|
|
2093
2093
|
isVideoMuted?: boolean;
|
|
2094
|
+
isVPN?: boolean;
|
|
2094
2095
|
/**
|
|
2095
2096
|
* phrased HTTP timing
|
|
2096
2097
|
*/
|
|
@@ -18476,6 +18477,7 @@ export interface ClientEvent {
|
|
|
18476
18477
|
joinType?: "auto" | "no-locus-join";
|
|
18477
18478
|
audioJoinType?: "phone-call-in" | "phone-call-back" | "voip" | "device-call-back" | "never-join-audio";
|
|
18478
18479
|
isVideoMuted?: boolean;
|
|
18480
|
+
isVPN?: boolean;
|
|
18479
18481
|
/**
|
|
18480
18482
|
* phrased HTTP timing
|
|
18481
18483
|
*/
|
package/package.json
CHANGED