@webex/event-dictionary-ts 1.0.1305 → 1.0.1307
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.
|
@@ -1606,6 +1606,7 @@ export interface Event {
|
|
|
1606
1606
|
pstnDialInReferL2SIPRoapOk?: number;
|
|
1607
1607
|
pstnIvrSvcJMT?: number;
|
|
1608
1608
|
pstnIvrSvcDialOutAudioLatency?: number;
|
|
1609
|
+
pstnIvrSvcEarlyOfferDelay?: number;
|
|
1609
1610
|
videoMCCJMT?: number;
|
|
1610
1611
|
videoMCSJMT?: number;
|
|
1611
1612
|
videoCBJMT?: number;
|
|
@@ -7192,6 +7193,12 @@ export interface Event {
|
|
|
7192
7193
|
receivedFrameRateHFPSShare?: number;
|
|
7193
7194
|
renderWindowResolution?: number;
|
|
7194
7195
|
scaledResolution?: number;
|
|
7196
|
+
upSampleType?:
|
|
7197
|
+
| "UpSample_None"
|
|
7198
|
+
| "UpSample_Render"
|
|
7199
|
+
| "UpSample_VP_2"
|
|
7200
|
+
| "UpSample_DNN_2"
|
|
7201
|
+
| "UpSample_DNN_4";
|
|
7195
7202
|
/**
|
|
7196
7203
|
* Details associated with a share floor type
|
|
7197
7204
|
*/
|
|
@@ -10649,6 +10656,7 @@ export interface ClientEvent {
|
|
|
10649
10656
|
pstnDialInReferL2SIPRoapOk?: number;
|
|
10650
10657
|
pstnIvrSvcJMT?: number;
|
|
10651
10658
|
pstnIvrSvcDialOutAudioLatency?: number;
|
|
10659
|
+
pstnIvrSvcEarlyOfferDelay?: number;
|
|
10652
10660
|
videoMCCJMT?: number;
|
|
10653
10661
|
videoMCSJMT?: number;
|
|
10654
10662
|
videoCBJMT?: number;
|
|
@@ -16086,6 +16094,7 @@ export interface MediaQualityEvent {
|
|
|
16086
16094
|
receivedFrameRateHFPSShare?: number;
|
|
16087
16095
|
renderWindowResolution?: number;
|
|
16088
16096
|
scaledResolution?: number;
|
|
16097
|
+
upSampleType?: "UpSample_None" | "UpSample_Render" | "UpSample_VP_2" | "UpSample_DNN_2" | "UpSample_DNN_4";
|
|
16089
16098
|
/**
|
|
16090
16099
|
* Details associated with a share floor type
|
|
16091
16100
|
*/
|
package/package.json
CHANGED