@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.
@@ -3514,6 +3514,9 @@
3514
3514
  "UNSUPPORTED"
3515
3515
  ]
3516
3516
  },
3517
+ "clientVersionToInstall": {
3518
+ "type": "string"
3519
+ },
3517
3520
  "localClientVersion": {
3518
3521
  "type": "string"
3519
3522
  },
@@ -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
@@ -27,5 +27,5 @@
27
27
  "access": "public",
28
28
  "registry": "https://registry.npmjs.org"
29
29
  },
30
- "version": "1.0.1866"
30
+ "version": "1.0.1868"
31
31
  }