@webex/event-dictionary-ts 1.0.1866 → 1.0.1868
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.
|
@@ -282,6 +282,9 @@
|
|
|
282
282
|
"UNSUPPORTED"
|
|
283
283
|
]
|
|
284
284
|
},
|
|
285
|
+
"clientVersionToInstall": {
|
|
286
|
+
"type": "string"
|
|
287
|
+
},
|
|
285
288
|
"localClientVersion": {
|
|
286
289
|
"type": "string"
|
|
287
290
|
},
|
|
@@ -4038,6 +4041,9 @@
|
|
|
4038
4041
|
"UNSUPPORTED"
|
|
4039
4042
|
]
|
|
4040
4043
|
},
|
|
4044
|
+
"clientVersionToInstall": {
|
|
4045
|
+
"type": "string"
|
|
4046
|
+
},
|
|
4041
4047
|
"localClientVersion": {
|
|
4042
4048
|
"type": "string"
|
|
4043
4049
|
},
|
|
@@ -191,6 +191,7 @@ export interface Event {
|
|
|
191
191
|
* this defines the client version status. Determined by call analyzer based on client major version
|
|
192
192
|
*/
|
|
193
193
|
clientVersionStatus?: "CURRENT" | "LEGACY" | "UNSUPPORTED";
|
|
194
|
+
clientVersionToInstall?: string;
|
|
194
195
|
localClientVersion?: string;
|
|
195
196
|
launcherVersion?: string;
|
|
196
197
|
modelNumber?: string;
|
|
@@ -1829,6 +1830,7 @@ export interface Event {
|
|
|
1829
1830
|
* this defines the client version status. Determined by call analyzer based on client major version
|
|
1830
1831
|
*/
|
|
1831
1832
|
clientVersionStatus?: "CURRENT" | "LEGACY" | "UNSUPPORTED";
|
|
1833
|
+
clientVersionToInstall?: string;
|
|
1832
1834
|
localClientVersion?: string;
|
|
1833
1835
|
launcherVersion?: string;
|
|
1834
1836
|
modelNumber?: string;
|
|
@@ -16171,6 +16173,7 @@ export interface ClientEvent {
|
|
|
16171
16173
|
* this defines the client version status. Determined by call analyzer based on client major version
|
|
16172
16174
|
*/
|
|
16173
16175
|
clientVersionStatus?: "CURRENT" | "LEGACY" | "UNSUPPORTED";
|
|
16176
|
+
clientVersionToInstall?: string;
|
|
16174
16177
|
localClientVersion?: string;
|
|
16175
16178
|
launcherVersion?: string;
|
|
16176
16179
|
modelNumber?: string;
|
package/package.json
CHANGED