@webex/event-dictionary-ts 1.0.1978 → 1.0.1980
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.
|
@@ -3751,6 +3751,12 @@
|
|
|
3751
3751
|
},
|
|
3752
3752
|
"vendorId": {
|
|
3753
3753
|
"type": "string"
|
|
3754
|
+
},
|
|
3755
|
+
"staticPerformanceLevel": {
|
|
3756
|
+
"type": "string"
|
|
3757
|
+
},
|
|
3758
|
+
"staticPerformanceScore": {
|
|
3759
|
+
"type": "integer"
|
|
3754
3760
|
}
|
|
3755
3761
|
}
|
|
3756
3762
|
},
|
|
@@ -7188,7 +7194,7 @@
|
|
|
7188
7194
|
"callSetupTime": {
|
|
7189
7195
|
"description": "min(firstAudioPacketReceivedTime, wmeReceivedAudioTime) - joinCallTime - alertToAnswered (for Outgoing) OR min(firstAudioPacketReceivedTime, wmeReceivedAudioTime) (for Incoming, call setup time is from user press accept button to the first audio data received)",
|
|
7190
7196
|
"type": "number",
|
|
7191
|
-
"minimum":
|
|
7197
|
+
"minimum": -9223372036854776000.0,
|
|
7192
7198
|
"maximum": 9223372036854776000.0
|
|
7193
7199
|
},
|
|
7194
7200
|
"joinCallTime": {
|
|
@@ -487,6 +487,12 @@
|
|
|
487
487
|
},
|
|
488
488
|
"vendorId": {
|
|
489
489
|
"type": "string"
|
|
490
|
+
},
|
|
491
|
+
"staticPerformanceLevel": {
|
|
492
|
+
"type": "string"
|
|
493
|
+
},
|
|
494
|
+
"staticPerformanceScore": {
|
|
495
|
+
"type": "integer"
|
|
490
496
|
}
|
|
491
497
|
}
|
|
492
498
|
},
|
|
@@ -4287,6 +4293,12 @@
|
|
|
4287
4293
|
},
|
|
4288
4294
|
"vendorId": {
|
|
4289
4295
|
"type": "string"
|
|
4296
|
+
},
|
|
4297
|
+
"staticPerformanceLevel": {
|
|
4298
|
+
"type": "string"
|
|
4299
|
+
},
|
|
4300
|
+
"staticPerformanceScore": {
|
|
4301
|
+
"type": "integer"
|
|
4290
4302
|
}
|
|
4291
4303
|
}
|
|
4292
4304
|
},
|
|
@@ -7724,7 +7736,7 @@
|
|
|
7724
7736
|
"callSetupTime": {
|
|
7725
7737
|
"description": "min(firstAudioPacketReceivedTime, wmeReceivedAudioTime) - joinCallTime - alertToAnswered (for Outgoing) OR min(firstAudioPacketReceivedTime, wmeReceivedAudioTime) (for Incoming, call setup time is from user press accept button to the first audio data received)",
|
|
7726
7738
|
"type": "number",
|
|
7727
|
-
"minimum":
|
|
7739
|
+
"minimum": -9223372036854776000.0,
|
|
7728
7740
|
"maximum": 9223372036854776000.0
|
|
7729
7741
|
},
|
|
7730
7742
|
"joinCallTime": {
|
|
@@ -279,6 +279,8 @@ export interface Event {
|
|
|
279
279
|
mtaVersion?: string;
|
|
280
280
|
isWarholOpening?: boolean;
|
|
281
281
|
vendorId?: string;
|
|
282
|
+
staticPerformanceLevel?: string;
|
|
283
|
+
staticPerformanceScore?: number;
|
|
282
284
|
additionalProperties?: false;
|
|
283
285
|
};
|
|
284
286
|
emmVendorId?: string;
|
|
@@ -1942,6 +1944,8 @@ export interface Event {
|
|
|
1942
1944
|
mtaVersion?: string;
|
|
1943
1945
|
isWarholOpening?: boolean;
|
|
1944
1946
|
vendorId?: string;
|
|
1947
|
+
staticPerformanceLevel?: string;
|
|
1948
|
+
staticPerformanceScore?: number;
|
|
1945
1949
|
additionalProperties?: false;
|
|
1946
1950
|
};
|
|
1947
1951
|
emmVendorId?: string;
|
|
@@ -17121,6 +17125,8 @@ export interface ClientEvent {
|
|
|
17121
17125
|
mtaVersion?: string;
|
|
17122
17126
|
isWarholOpening?: boolean;
|
|
17123
17127
|
vendorId?: string;
|
|
17128
|
+
staticPerformanceLevel?: string;
|
|
17129
|
+
staticPerformanceScore?: number;
|
|
17124
17130
|
additionalProperties?: false;
|
|
17125
17131
|
};
|
|
17126
17132
|
emmVendorId?: string;
|
package/package.json
CHANGED