@webex/event-dictionary-ts 1.0.2240 → 1.0.2242
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.
|
@@ -3991,6 +3991,9 @@
|
|
|
3991
3991
|
"other"
|
|
3992
3992
|
]
|
|
3993
3993
|
},
|
|
3994
|
+
"clientAdjustedClock": {
|
|
3995
|
+
"type": "boolean"
|
|
3996
|
+
},
|
|
3994
3997
|
"trigger": {
|
|
3995
3998
|
"enum": [
|
|
3996
3999
|
"bricklet",
|
|
@@ -14464,6 +14467,9 @@
|
|
|
14464
14467
|
},
|
|
14465
14468
|
"isMain": {
|
|
14466
14469
|
"type": "boolean"
|
|
14470
|
+
},
|
|
14471
|
+
"isCatalogOverride": {
|
|
14472
|
+
"type": "boolean"
|
|
14467
14473
|
}
|
|
14468
14474
|
}
|
|
14469
14475
|
},
|
|
@@ -1757,6 +1757,7 @@ export interface Event {
|
|
|
1757
1757
|
* End Trigger - indicate how the call was ended from client. Set in end of call events such as client.call.end, client.call.aborted
|
|
1758
1758
|
*/
|
|
1759
1759
|
endTrigger?: "ejected" | "end-meeting" | "leave" | "other";
|
|
1760
|
+
clientAdjustedClock?: boolean;
|
|
1760
1761
|
trigger?:
|
|
1761
1762
|
| "bricklet"
|
|
1762
1763
|
| "call-history"
|
|
@@ -6719,6 +6720,7 @@ export interface Event {
|
|
|
6719
6720
|
isAnswered?: boolean;
|
|
6720
6721
|
secureMedia?: boolean;
|
|
6721
6722
|
isMain?: boolean;
|
|
6723
|
+
isCatalogOverride?: boolean;
|
|
6722
6724
|
additionalProperties?: never;
|
|
6723
6725
|
}
|
|
6724
6726
|
| {
|
|
@@ -18535,6 +18537,7 @@ export interface ClientEvent {
|
|
|
18535
18537
|
* End Trigger - indicate how the call was ended from client. Set in end of call events such as client.call.end, client.call.aborted
|
|
18536
18538
|
*/
|
|
18537
18539
|
endTrigger?: "ejected" | "end-meeting" | "leave" | "other";
|
|
18540
|
+
clientAdjustedClock?: boolean;
|
|
18538
18541
|
trigger?:
|
|
18539
18542
|
| "bricklet"
|
|
18540
18543
|
| "call-history"
|
package/package.json
CHANGED