@webex/event-dictionary-ts 1.0.1304 → 1.0.1305
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";
|
|
@@ -10453,6 +10461,10 @@ export interface ClientEvent {
|
|
|
10453
10461
|
| "VDI_APP"
|
|
10454
10462
|
| "WEB_APP";
|
|
10455
10463
|
clientVersion?: string;
|
|
10464
|
+
/**
|
|
10465
|
+
* this defines the client version status. Determined by call analyzer based on client major version
|
|
10466
|
+
*/
|
|
10467
|
+
clientVersionStatus?: "CURRENT" | "LEGACY" | "UNSUPPORTED";
|
|
10456
10468
|
localClientVersion?: string;
|
|
10457
10469
|
modelNumber?: string;
|
|
10458
10470
|
joinFirstUpdateLater?: "ep-enabled" | "sp-enabled" | "not-enabled";
|
package/package.json
CHANGED