@webex/event-dictionary-ts 1.0.1304 → 1.0.1306
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.
|
@@ -133,6 +133,10 @@ export interface Event {
|
|
|
133
133
|
| "VDI_APP"
|
|
134
134
|
| "WEB_APP";
|
|
135
135
|
clientVersion?: string;
|
|
136
|
+
/**
|
|
137
|
+
* this defines the client version status. Determined by call analyzer based on client major version
|
|
138
|
+
*/
|
|
139
|
+
clientVersionStatus?: "CURRENT" | "LEGACY" | "UNSUPPORTED";
|
|
136
140
|
localClientVersion?: string;
|
|
137
141
|
modelNumber?: string;
|
|
138
142
|
joinFirstUpdateLater?: "ep-enabled" | "sp-enabled" | "not-enabled";
|
|
@@ -1414,6 +1418,10 @@ export interface Event {
|
|
|
1414
1418
|
| "VDI_APP"
|
|
1415
1419
|
| "WEB_APP";
|
|
1416
1420
|
clientVersion?: string;
|
|
1421
|
+
/**
|
|
1422
|
+
* this defines the client version status. Determined by call analyzer based on client major version
|
|
1423
|
+
*/
|
|
1424
|
+
clientVersionStatus?: "CURRENT" | "LEGACY" | "UNSUPPORTED";
|
|
1417
1425
|
localClientVersion?: string;
|
|
1418
1426
|
modelNumber?: string;
|
|
1419
1427
|
joinFirstUpdateLater?: "ep-enabled" | "sp-enabled" | "not-enabled";
|
|
@@ -7184,6 +7192,12 @@ export interface Event {
|
|
|
7184
7192
|
receivedFrameRateHFPSShare?: number;
|
|
7185
7193
|
renderWindowResolution?: number;
|
|
7186
7194
|
scaledResolution?: number;
|
|
7195
|
+
upSampleType?:
|
|
7196
|
+
| "UpSample_None"
|
|
7197
|
+
| "UpSample_Render"
|
|
7198
|
+
| "UpSample_VP_2"
|
|
7199
|
+
| "UpSample_DNN_2"
|
|
7200
|
+
| "UpSample_DNN_4";
|
|
7187
7201
|
/**
|
|
7188
7202
|
* Details associated with a share floor type
|
|
7189
7203
|
*/
|
|
@@ -10453,6 +10467,10 @@ export interface ClientEvent {
|
|
|
10453
10467
|
| "VDI_APP"
|
|
10454
10468
|
| "WEB_APP";
|
|
10455
10469
|
clientVersion?: string;
|
|
10470
|
+
/**
|
|
10471
|
+
* this defines the client version status. Determined by call analyzer based on client major version
|
|
10472
|
+
*/
|
|
10473
|
+
clientVersionStatus?: "CURRENT" | "LEGACY" | "UNSUPPORTED";
|
|
10456
10474
|
localClientVersion?: string;
|
|
10457
10475
|
modelNumber?: string;
|
|
10458
10476
|
joinFirstUpdateLater?: "ep-enabled" | "sp-enabled" | "not-enabled";
|
|
@@ -16074,6 +16092,7 @@ export interface MediaQualityEvent {
|
|
|
16074
16092
|
receivedFrameRateHFPSShare?: number;
|
|
16075
16093
|
renderWindowResolution?: number;
|
|
16076
16094
|
scaledResolution?: number;
|
|
16095
|
+
upSampleType?: "UpSample_None" | "UpSample_Render" | "UpSample_VP_2" | "UpSample_DNN_2" | "UpSample_DNN_4";
|
|
16077
16096
|
/**
|
|
16078
16097
|
* Details associated with a share floor type
|
|
16079
16098
|
*/
|
package/package.json
CHANGED